Skip to content

Commit 4688167

Browse files
yoshi-automationsofisl
authored andcommitted
feat(vault): update the API
#### vault:v1 The following keys were added: - schemas.CorpusQuery.properties.calendarQuery.$ref - schemas.CorpusQuery.properties.calendarQuery.description - schemas.HeldCalendarQuery.description - schemas.HeldCalendarQuery.id - schemas.HeldCalendarQuery.type
1 parent c6c298f commit 4688167

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

discovery/vault-v1.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1203,7 +1203,7 @@
12031203
}
12041204
}
12051205
},
1206-
"revision": "20240226",
1206+
"revision": "20240617",
12071207
"rootUrl": "https://vault.googleapis.com/",
12081208
"schemas": {
12091209
"AccountCount": {
@@ -1478,6 +1478,10 @@
14781478
"description": "Service-specific options for holds.",
14791479
"id": "CorpusQuery",
14801480
"properties": {
1481+
"calendarQuery": {
1482+
"$ref": "HeldCalendarQuery",
1483+
"description": "Service-specific options for Calendar holds. If set, **CorpusType** must be **CALENDAR**."
1484+
},
14811485
"driveQuery": {
14821486
"$ref": "HeldDriveQuery",
14831487
"description": "Service-specific options for Drive holds. If set, **CorpusType** must be **DRIVE**."
@@ -1896,6 +1900,12 @@
18961900
},
18971901
"type": "object"
18981902
},
1903+
"HeldCalendarQuery": {
1904+
"description": "Options for Calendar holds.",
1905+
"id": "HeldCalendarQuery",
1906+
"properties": {},
1907+
"type": "object"
1908+
},
18991909
"HeldDriveQuery": {
19001910
"description": "Options for Drive holds.",
19011911
"id": "HeldDriveQuery",

src/apis/vault/v1.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,10 @@ export namespace vault_v1 {
298298
* Service-specific options for holds.
299299
*/
300300
export interface Schema$CorpusQuery {
301+
/**
302+
* Service-specific options for Calendar holds. If set, **CorpusType** must be **CALENDAR**.
303+
*/
304+
calendarQuery?: Schema$HeldCalendarQuery;
301305
/**
302306
* Service-specific options for Drive holds. If set, **CorpusType** must be **DRIVE**.
303307
*/
@@ -589,6 +593,10 @@ export namespace vault_v1 {
589593
*/
590594
lastName?: string | null;
591595
}
596+
/**
597+
* Options for Calendar holds.
598+
*/
599+
export interface Schema$HeldCalendarQuery {}
592600
/**
593601
* Options for Drive holds.
594602
*/

0 commit comments

Comments
 (0)