From e95952b69fe7b4c7b66abdf2182ecfe3babe5cd8 Mon Sep 17 00:00:00 2001 From: CI Date: Tue, 21 Jan 2025 19:22:16 +0000 Subject: [PATCH] Updated OpenAPI specs --- json/knowledgeapi.json | 12 ++++++++++++ yaml/knowledgeapi.yaml | 23 +++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/json/knowledgeapi.json b/json/knowledgeapi.json index a115d44..e74ea97 100644 --- a/json/knowledgeapi.json +++ b/json/knowledgeapi.json @@ -89987,6 +89987,18 @@ "type": "string" }, "description": "The names of the Review Labels which will be attached to the resulting review.\n\nThis is an upsert operation, meaning the system will determine if a Review Label exists\nalready in your account, and create and append a new label if not.\n\nThe **`reviewLabelNames`** parameter will only be respected with the inclusion of a\n**`v`** parameter of `20210728` or later.\n" + }, + "delayTime": { + "type": "integer", + "description": "The amount of time to wait before sending the invitation after creation.\n\nThe **`delayTime`** parameter will only be respected with the inclusion of a\n**`v`** parameter of `20241211` or later.\n" + }, + "delayTimeUnit": { + "type": "string", + "description": "If **`delayTime`** is set, specify the unit of time. Accepted values: `hours`, `days`\n\nThe **`delayTimeUnit`** parameter will only be respected with the inclusion of a\n**`v`** parameter of `20241211` or later.\n" + }, + "sendTime": { + "type": "string", + "description": "To send invites at a later time, proved an ISO formatted date/time value, e.g.\n`2024-09-04T12:00:00`. **`delayTime`** and **`sendTime`** cannot both be set on the\nsame invite.\n\nThe **`sendTime`** parameter will only be respected with the inclusion of a\n**`v`** parameter of `20241211` or later.\n" } } } diff --git a/yaml/knowledgeapi.yaml b/yaml/knowledgeapi.yaml index 54d0fd9..817e7c4 100644 --- a/yaml/knowledgeapi.yaml +++ b/yaml/knowledgeapi.yaml @@ -119154,6 +119154,29 @@ components: The **`reviewLabelNames`** parameter will only be respected with the inclusion of a **`v`** parameter of `20210728` or later. + delayTime: + type: integer + description: | + The amount of time to wait before sending the invitation after creation. + + The **`delayTime`** parameter will only be respected with the inclusion of a + **`v`** parameter of `20241211` or later. + delayTimeUnit: + type: string + description: | + If **`delayTime`** is set, specify the unit of time. Accepted values: `hours`, `days` + + The **`delayTimeUnit`** parameter will only be respected with the inclusion of a + **`v`** parameter of `20241211` or later. + sendTime: + type: string + description: | + To send invites at a later time, proved an ISO formatted date/time value, e.g. + `2024-09-04T12:00:00`. **`delayTime`** and **`sendTime`** cannot both be set on the + same invite. + + The **`sendTime`** parameter will only be respected with the inclusion of a + **`v`** parameter of `20241211` or later. UpdateReviewInvitationRequest: allOf: - $ref: '#/components/schemas/ReviewInvitationDates'