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 <[email protected]> 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. */
