You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by oc...@apache.org on 2023/01/31 03:17:37 UTC

[trafficcontrol-trafficops-types] 05/07: Fix request-context Jobs missing property

This is an automated email from the ASF dual-hosted git repository.

ocket8888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git

commit 142b37f321321fed313408c6e65d3a20e152c97a
Author: ocket8888 <oc...@apache.org>
AuthorDate: Mon Jan 30 19:43:36 2023 -0700

    Fix request-context Jobs missing property
---
 src/invalidation.ts | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/invalidation.ts b/src/invalidation.ts
index d465f58..38b000a 100644
--- a/src/invalidation.ts
+++ b/src/invalidation.ts
@@ -61,6 +61,8 @@ export interface ResponseInvalidationJob {
 export interface RequestInvalidationJob {
 	/** The XMLID of the Delivery Service to which the Job will apply. */
 	deliveryService: string;
+	/** The type of revalidation to perform. */
+	invalidationType: JobType;
 	/** A pattern that matches content to be invalidated. */
 	regex: string;
 	/** The effective starting date/time for the Job. */