@maxim_mazurok/gapi.client.analyticshub-v1 0.0.20230916 → 0.0.20231002
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 -8
- 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://analyticshub.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231002
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -315,20 +315,20 @@ declare namespace gapi.client {
|
|
|
315
315
|
/** Output only. API version used to start the operation. */
|
|
316
316
|
apiVersion?:
|
|
317
317
|
string;
|
|
318
|
-
/**
|
|
319
|
-
* Output only. Identifies whether the user has requested cancellation of the operation. Operations that have been cancelled successfully have Operation.error value with a
|
|
320
|
-
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
321
|
-
*/
|
|
322
|
-
cancelRequested?:
|
|
323
|
-
boolean;
|
|
324
318
|
/** Output only. The time the operation was created. */
|
|
325
319
|
createTime?:
|
|
326
320
|
string;
|
|
327
321
|
/** Output only. The time the operation finished running. */
|
|
328
322
|
endTime?:
|
|
329
323
|
string;
|
|
324
|
+
/**
|
|
325
|
+
* Output only. Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a
|
|
326
|
+
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
327
|
+
*/
|
|
328
|
+
requestedCancellation?:
|
|
329
|
+
boolean;
|
|
330
330
|
/** Output only. Human-readable status of the operation, if any. */
|
|
331
|
-
|
|
331
|
+
statusMessage?:
|
|
332
332
|
string;
|
|
333
333
|
/** Output only. Server-defined resource path for the target of the operation. */
|
|
334
334
|
target?:
|
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: 20231002
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|