@maxim_mazurok/gapi.client.firebase-v1beta1 0.0.20230201 → 0.0.20230202
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 +9 -1
- package/package.json +1 -1
- package/tests.ts +7 -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: 20230202
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -100,6 +100,8 @@ declare namespace gapi.client {
|
|
|
100
100
|
* Learn more about `etag` in Google's [AIP-154 standard](https://google.aip.dev/154#declarative-friendly-resources). This etag is strongly validated.
|
|
101
101
|
*/
|
|
102
102
|
etag?: string;
|
|
103
|
+
/** Output only. Timestamp of when the App will be considered expired and cannot be undeleted. This value is only provided if the App is in the `DELETED` state. */
|
|
104
|
+
expireTime?: string;
|
|
103
105
|
/**
|
|
104
106
|
* The resource name of the AndroidApp, in the format: projects/ PROJECT_IDENTIFIER/androidApps/APP_ID * PROJECT_IDENTIFIER: the parent Project's
|
|
105
107
|
* [`ProjectNumber`](../projects#FirebaseProject.FIELDS.project_number) ***(recommended)*** or its [`ProjectId`](../projects#FirebaseProject.FIELDS.project_id). Learn more about using
|
|
@@ -172,6 +174,8 @@ declare namespace gapi.client {
|
|
|
172
174
|
appId?: string;
|
|
173
175
|
/** The user-assigned display name of the Firebase App. */
|
|
174
176
|
displayName?: string;
|
|
177
|
+
/** Output only. Timestamp of when the App will be considered expired and cannot be undeleted. This value is only provided if the App is in the `DELETED` state. */
|
|
178
|
+
expireTime?: string;
|
|
175
179
|
/** The resource name of the Firebase App, in the format: projects/PROJECT_ID /iosApps/APP_ID or projects/PROJECT_ID/androidApps/APP_ID or projects/ PROJECT_ID/webApps/APP_ID */
|
|
176
180
|
name?: string;
|
|
177
181
|
/**
|
|
@@ -246,6 +250,8 @@ declare namespace gapi.client {
|
|
|
246
250
|
* Learn more about `etag` in Google's [AIP-154 standard](https://google.aip.dev/154#declarative-friendly-resources). This etag is strongly validated.
|
|
247
251
|
*/
|
|
248
252
|
etag?: string;
|
|
253
|
+
/** Output only. Timestamp of when the App will be considered expired and cannot be undeleted. This value is only provided if the App is in the `DELETED` state. */
|
|
254
|
+
expireTime?: string;
|
|
249
255
|
/**
|
|
250
256
|
* The resource name of the IosApp, in the format: projects/PROJECT_IDENTIFIER /iosApps/APP_ID * PROJECT_IDENTIFIER: the parent Project's
|
|
251
257
|
* [`ProjectNumber`](../projects#FirebaseProject.FIELDS.project_number) ***(recommended)*** or its [`ProjectId`](../projects#FirebaseProject.FIELDS.project_id). Learn more about using
|
|
@@ -530,6 +536,8 @@ declare namespace gapi.client {
|
|
|
530
536
|
* Learn more about `etag` in Google's [AIP-154 standard](https://google.aip.dev/154#declarative-friendly-resources). This etag is strongly validated.
|
|
531
537
|
*/
|
|
532
538
|
etag?: string;
|
|
539
|
+
/** Output only. Timestamp of when the App will be considered expired and cannot be undeleted. This value is only provided if the App is in the `DELETED` state. */
|
|
540
|
+
expireTime?: string;
|
|
533
541
|
/**
|
|
534
542
|
* The resource name of the WebApp, in the format: projects/PROJECT_IDENTIFIER /webApps/APP_ID * PROJECT_IDENTIFIER: the parent Project's
|
|
535
543
|
* [`ProjectNumber`](../projects#FirebaseProject.FIELDS.project_number) ***(recommended)*** or its [`ProjectId`](../projects#FirebaseProject.FIELDS.project_id). Learn more about using
|
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: 20230202
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -168,6 +168,7 @@ gapi.load('client', async () => {
|
|
|
168
168
|
appId: "Test string",
|
|
169
169
|
displayName: "Test string",
|
|
170
170
|
etag: "Test string",
|
|
171
|
+
expireTime: "Test string",
|
|
171
172
|
name: "Test string",
|
|
172
173
|
packageName: "Test string",
|
|
173
174
|
projectId: "Test string",
|
|
@@ -206,6 +207,7 @@ gapi.load('client', async () => {
|
|
|
206
207
|
appId: "Test string",
|
|
207
208
|
displayName: "Test string",
|
|
208
209
|
etag: "Test string",
|
|
210
|
+
expireTime: "Test string",
|
|
209
211
|
name: "Test string",
|
|
210
212
|
packageName: "Test string",
|
|
211
213
|
projectId: "Test string",
|
|
@@ -294,6 +296,7 @@ gapi.load('client', async () => {
|
|
|
294
296
|
bundleId: "Test string",
|
|
295
297
|
displayName: "Test string",
|
|
296
298
|
etag: "Test string",
|
|
299
|
+
expireTime: "Test string",
|
|
297
300
|
name: "Test string",
|
|
298
301
|
projectId: "Test string",
|
|
299
302
|
state: "Test string",
|
|
@@ -328,6 +331,7 @@ gapi.load('client', async () => {
|
|
|
328
331
|
bundleId: "Test string",
|
|
329
332
|
displayName: "Test string",
|
|
330
333
|
etag: "Test string",
|
|
334
|
+
expireTime: "Test string",
|
|
331
335
|
name: "Test string",
|
|
332
336
|
projectId: "Test string",
|
|
333
337
|
state: "Test string",
|
|
@@ -363,6 +367,7 @@ gapi.load('client', async () => {
|
|
|
363
367
|
],
|
|
364
368
|
displayName: "Test string",
|
|
365
369
|
etag: "Test string",
|
|
370
|
+
expireTime: "Test string",
|
|
366
371
|
name: "Test string",
|
|
367
372
|
projectId: "Test string",
|
|
368
373
|
state: "Test string",
|
|
@@ -398,6 +403,7 @@ gapi.load('client', async () => {
|
|
|
398
403
|
],
|
|
399
404
|
displayName: "Test string",
|
|
400
405
|
etag: "Test string",
|
|
406
|
+
expireTime: "Test string",
|
|
401
407
|
name: "Test string",
|
|
402
408
|
projectId: "Test string",
|
|
403
409
|
state: "Test string",
|