@maxim_mazurok/gapi.client.firebase-v1beta1 0.0.20221004 → 0.0.20221010
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 +16 -1
- package/package.json +1 -1
- package/tests.ts +4 -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://firebase.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20221010
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -375,6 +375,11 @@ declare namespace gapi.client {
|
|
|
375
375
|
allowMissing?: boolean;
|
|
376
376
|
/** Checksum provided in the AndroidApp entity, which if provided ensures the client has an up-to-date value before proceeding. */
|
|
377
377
|
etag?: string;
|
|
378
|
+
/**
|
|
379
|
+
* Determines whether to _immediately_ delete the App. If set to true, the App is immediately deleted from the Project and cannot be restored to the Project. If not set, defaults to
|
|
380
|
+
* false, which means that the App may be restored to the Project within 30 days using UndeleteAndroidApp.
|
|
381
|
+
*/
|
|
382
|
+
immediate?: boolean;
|
|
378
383
|
/** If set to true, the request is only validated. The App will _not_ be removed. */
|
|
379
384
|
validateOnly?: boolean;
|
|
380
385
|
}
|
|
@@ -383,6 +388,11 @@ declare namespace gapi.client {
|
|
|
383
388
|
allowMissing?: boolean;
|
|
384
389
|
/** Checksum provided in the IosApp entity, which if provided ensures the client has an up-to-date value before proceeding. */
|
|
385
390
|
etag?: string;
|
|
391
|
+
/**
|
|
392
|
+
* Determines whether to _immediately_ delete the App. If set to true, the App is immediately deleted from the Project and cannot be restored to the Project. If not set, defaults to
|
|
393
|
+
* false, which means that the App may be restored to the Project within 30 days using UndeleteIosApp
|
|
394
|
+
*/
|
|
395
|
+
immediate?: boolean;
|
|
386
396
|
/** If set to true, the request is only validated. The App will _not_ be removed. */
|
|
387
397
|
validateOnly?: boolean;
|
|
388
398
|
}
|
|
@@ -391,6 +401,11 @@ declare namespace gapi.client {
|
|
|
391
401
|
allowMissing?: boolean;
|
|
392
402
|
/** Checksum provided in the WebApp entity, which if provided ensures the client has an up-to-date value before proceeding. */
|
|
393
403
|
etag?: string;
|
|
404
|
+
/**
|
|
405
|
+
* Determines whether to _immediately_ delete the App. If set to true, the App is immediately deleted from the Project and cannot be restored to the Project. If not set, defaults to
|
|
406
|
+
* false, which means that the App may be restored to the Project within 30 days using UndeleteWebApp
|
|
407
|
+
*/
|
|
408
|
+
immediate?: boolean;
|
|
394
409
|
/** If set to true, the request is only validated. The App will _not_ be removed. */
|
|
395
410
|
validateOnly?: boolean;
|
|
396
411
|
}
|
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: 20221010
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -221,6 +221,7 @@ gapi.load('client', async () => {
|
|
|
221
221
|
}, {
|
|
222
222
|
allowMissing: true,
|
|
223
223
|
etag: "Test string",
|
|
224
|
+
immediate: true,
|
|
224
225
|
validateOnly: true,
|
|
225
226
|
});
|
|
226
227
|
/** Restores the specified AndroidApp to the FirebaseProject. */
|
|
@@ -334,6 +335,7 @@ gapi.load('client', async () => {
|
|
|
334
335
|
}, {
|
|
335
336
|
allowMissing: true,
|
|
336
337
|
etag: "Test string",
|
|
338
|
+
immediate: true,
|
|
337
339
|
validateOnly: true,
|
|
338
340
|
});
|
|
339
341
|
/** Restores the specified IosApp to the FirebaseProject. */
|
|
@@ -401,6 +403,7 @@ gapi.load('client', async () => {
|
|
|
401
403
|
}, {
|
|
402
404
|
allowMissing: true,
|
|
403
405
|
etag: "Test string",
|
|
406
|
+
immediate: true,
|
|
404
407
|
validateOnly: true,
|
|
405
408
|
});
|
|
406
409
|
/** Restores the specified WebApp to the FirebaseProject. */
|