@maxim_mazurok/gapi.client.vault-v1 0.0.20250211 → 0.0.20250212
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +11 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://vault.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250212
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -138,6 +138,14 @@ declare namespace gapi.client {
|
|
|
138
138
|
/** Total count of messages. */
|
|
139
139
|
totalCount?: string;
|
|
140
140
|
}
|
|
141
|
+
interface DriveDocumentIds {
|
|
142
|
+
/** Required. A list of Drive document IDs. */
|
|
143
|
+
ids?: string[];
|
|
144
|
+
}
|
|
145
|
+
interface DriveDocumentInfo {
|
|
146
|
+
/** Specify Drive documents by document ID. */
|
|
147
|
+
documentIds?: DriveDocumentIds;
|
|
148
|
+
}
|
|
141
149
|
interface DriveExportOptions {
|
|
142
150
|
/** To include access level information for users with [indirect access](https://support.google.com/vault/answer/6099459#metadata) to files, set to **true**. */
|
|
143
151
|
includeAccessInfo?: boolean;
|
|
@@ -408,6 +416,8 @@ declare namespace gapi.client {
|
|
|
408
416
|
corpus?: string;
|
|
409
417
|
/** The data source to search. */
|
|
410
418
|
dataScope?: string;
|
|
419
|
+
/** Required when **SearchMethod** is **DRIVE_DOCUMENT**. */
|
|
420
|
+
driveDocumentInfo?: DriveDocumentInfo;
|
|
411
421
|
/** Set Drive search-specific options. */
|
|
412
422
|
driveOptions?: DriveOptions;
|
|
413
423
|
/** The end time for the search query. Specify in GMT. The value is rounded to 12 AM on the specified date. */
|