@maxim_mazurok/gapi.client.vault-v1 0.0.20231121 → 0.0.20231213

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.
Files changed (2) hide show
  1. package/index.d.ts +25 -1
  2. 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: 20231121
12
+ // Revision: 20231213
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -64,6 +64,22 @@ declare namespace gapi.client {
64
64
  /** To send a notification email to the added account, set to **true**. To not send a notification email, set to **false**. */
65
65
  sendEmails?: boolean;
66
66
  }
67
+ interface CalendarExportOptions {
68
+ /** The file format for exported text messages. */
69
+ exportFormat?: string;
70
+ }
71
+ interface CalendarOptions {
72
+ /** Matches only those events whose location contains all of the words in the given set. If the string contains quoted phrases, this method only matches those events whose location contain the exact phrase. Entries in the set are considered in "and". Word splitting example: ["New Zealand"] vs ["New","Zealand"] "New Zealand": matched by both "New and better Zealand": only matched by the later */
73
+ locationQuery?: string[];
74
+ /** Matches only those events that do not contain any of the words in the given set in title, description, location, or attendees. Entries in the set are considered in "or". */
75
+ minusWords?: string[];
76
+ /** Matches only those events whose attendees contain all of the words in the given set. Entries in the set are considered in "and". */
77
+ peopleQuery?: string[];
78
+ /** Matches only events for which the custodian gave one of these responses. If the set is empty or contains ATTENDEE_RESPONSE_UNSPECIFIED there will be no filtering on responses. */
79
+ responseStatuses?: string[];
80
+ /** Search the current version of the Calendar event, but export the contents of the last version saved before 12:00 AM UTC on the specified date. Enter the date in UTC. */
81
+ versionDate?: string;
82
+ }
67
83
  interface CancelOperationRequest {}
68
84
  interface CloseMatterRequest {}
69
85
  interface CloseMatterResponse {
@@ -148,6 +164,8 @@ declare namespace gapi.client {
148
164
  matterId?: string;
149
165
  /** The export name. Don't use special characters (~!$'(),;@:/?) in the name, they can prevent you from downloading exports. */
150
166
  name?: string;
167
+ /** Output only. Identifies the parent export that spawned this child export. This is only set on child exports. */
168
+ parentExportId?: string;
151
169
  /** The query parameters used to create the export. */
152
170
  query?: Query;
153
171
  /** Output only. The requester of the export. */
@@ -158,6 +176,8 @@ declare namespace gapi.client {
158
176
  status?: string;
159
177
  }
160
178
  interface ExportOptions {
179
+ /** Option available for Calendar export. */
180
+ calendarOptions?: CalendarExportOptions;
161
181
  /** Options for Drive exports. */
162
182
  driveOptions?: DriveExportOptions;
163
183
  /** Options for Groups exports. */
@@ -320,6 +340,8 @@ declare namespace gapi.client {
320
340
  interface MailExportOptions {
321
341
  /** The file format for exported messages. */
322
342
  exportFormat?: string;
343
+ /** Optional. To enable exporting linked Drive files, set to **true**. */
344
+ exportLinkedDriveFiles?: boolean;
323
345
  /** To export confidential mode content, set to **true**. */
324
346
  showConfidentialModeContent?: boolean;
325
347
  /** To use the new export system, set to **true**. */
@@ -368,6 +390,8 @@ declare namespace gapi.client {
368
390
  interface Query {
369
391
  /** Required when **SearchMethod** is **ACCOUNT**. */
370
392
  accountInfo?: AccountInfo;
393
+ /** Set Calendar search-specific options. */
394
+ calendarOptions?: CalendarOptions;
371
395
  /** The Google Workspace service to search. */
372
396
  corpus?: string;
373
397
  /** The data source to search. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.vault-v1",
3
- "version": "0.0.20231121",
3
+ "version": "0.0.20231213",
4
4
  "description": "TypeScript typings for Google Vault API v1",
5
5
  "repository": {
6
6
  "type": "git",