@maxim_mazurok/gapi.client.driveactivity-v2 0.0.20230102 → 0.0.20230110
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 +8 -7
- package/package.json +1 -1
- package/tests.ts +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://driveactivity.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230110
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -348,27 +348,28 @@ declare namespace gapi.client {
|
|
|
348
348
|
subtype?: string;
|
|
349
349
|
}
|
|
350
350
|
interface QueryDriveActivityRequest {
|
|
351
|
-
/** Return activities for this Drive folder
|
|
351
|
+
/** Return activities for this Drive folder, plus all children and descendants. The format is `items/ITEM_ID`. */
|
|
352
352
|
ancestorName?: string;
|
|
353
|
-
/** Details on how to consolidate related actions that make up the activity. If not set, then related actions
|
|
353
|
+
/** Details on how to consolidate related actions that make up the activity. If not set, then related actions aren't consolidated. */
|
|
354
354
|
consolidationStrategy?: ConsolidationStrategy;
|
|
355
355
|
/**
|
|
356
356
|
* The filtering for items returned from this query request. The format of the filter string is a sequence of expressions, joined by an optional "AND", where each expression is of the
|
|
357
357
|
* form "field operator value". Supported fields: - `time`: Uses numerical operators on date values either in terms of milliseconds since Jan 1, 1970 or in RFC 3339 format. Examples: -
|
|
358
358
|
* `time > 1452409200000 AND time <= 1492812924310` - `time >= "2016-01-10T01:02:03-05:00"` - `detail.action_detail_case`: Uses the "has" operator (:) and either a singular value or a
|
|
359
|
-
* list of allowed action types enclosed in parentheses
|
|
359
|
+
* list of allowed action types enclosed in parentheses, separated by a space. To exclude a result from the response, prepend a hyphen (`-`) to the beginning of the filter string.
|
|
360
|
+
* Examples: - `detail.action_detail_case:RENAME` - `detail.action_detail_case:(CREATE RESTORE)` - `-detail.action_detail_case:MOVE`
|
|
360
361
|
*/
|
|
361
362
|
filter?: string;
|
|
362
363
|
/** Return activities for this Drive item. The format is `items/ITEM_ID`. */
|
|
363
364
|
itemName?: string;
|
|
364
365
|
/**
|
|
365
|
-
* The
|
|
366
|
+
* The minimum number of activities desired in the response; the server attempts to return at least this quantity. The server may also return fewer activities if it has a partial
|
|
366
367
|
* response ready before the request times out. If not set, a default value is used.
|
|
367
368
|
*/
|
|
368
369
|
pageSize?: number;
|
|
369
370
|
/**
|
|
370
|
-
* The token
|
|
371
|
-
* first page of results
|
|
371
|
+
* The token identifies which page of results to return. Set this to the next_page_token value returned from a previous query to obtain the following page of results. If not set, the
|
|
372
|
+
* first page of results is returned.
|
|
372
373
|
*/
|
|
373
374
|
pageToken?: string;
|
|
374
375
|
}
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230110
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|