@maxim_mazurok/gapi.client.vault-v1 0.0.20250124 → 0.0.20250130
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 +10 -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: 20250130
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -182,6 +182,8 @@ declare namespace gapi.client {
|
|
|
182
182
|
calendarOptions?: CalendarExportOptions;
|
|
183
183
|
/** Options for Drive exports. */
|
|
184
184
|
driveOptions?: DriveExportOptions;
|
|
185
|
+
/** Option available for Gemini export. */
|
|
186
|
+
geminiOptions?: GeminiExportOptions;
|
|
185
187
|
/** Options for Groups exports. */
|
|
186
188
|
groupsOptions?: GroupsExportOptions;
|
|
187
189
|
/** Options for Chat exports. */
|
|
@@ -201,6 +203,11 @@ declare namespace gapi.client {
|
|
|
201
203
|
/** The number of messages or files to be exported. */
|
|
202
204
|
totalArtifactCount?: string;
|
|
203
205
|
}
|
|
206
|
+
interface GeminiExportOptions {
|
|
207
|
+
/** The file format for exported messages. */
|
|
208
|
+
exportFormat?: string;
|
|
209
|
+
}
|
|
210
|
+
interface GeminiOptions {}
|
|
204
211
|
interface GroupsCountResult {
|
|
205
212
|
/** Error occurred when querying these accounts. */
|
|
206
213
|
accountCountErrors?: AccountCountError[];
|
|
@@ -405,6 +412,8 @@ declare namespace gapi.client {
|
|
|
405
412
|
driveOptions?: DriveOptions;
|
|
406
413
|
/** The end time for the search query. Specify in GMT. The value is rounded to 12 AM on the specified date. */
|
|
407
414
|
endTime?: string;
|
|
415
|
+
/** Set Gemini search-specific options. */
|
|
416
|
+
geminiOptions?: any;
|
|
408
417
|
/** Required when **SearchMethod** is **ROOM**. (read-only) */
|
|
409
418
|
hangoutsChatInfo?: HangoutsChatInfo;
|
|
410
419
|
/** Set Chat search-specific options. (read-only) */
|