@maxim_mazurok/gapi.client.firebase-v1beta1 0.0.20220906 → 0.0.20220908

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 (3) hide show
  1. package/index.d.ts +5 -1
  2. package/package.json +1 -1
  3. package/tests.ts +13 -1
package/index.d.ts CHANGED
@@ -10,7 +10,7 @@
10
10
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
11
11
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
12
12
  // Generated from: https://firebase.googleapis.com/$discovery/rest?version=v1beta1
13
- // Revision: 20220906
13
+ // Revision: 20220908
14
14
 
15
15
  /// <reference types="gapi.client" />
16
16
 
@@ -107,6 +107,10 @@ declare namespace gapi.client {
107
107
  packageName?: string;
108
108
  /** Output only. Immutable. A user-assigned unique identifier of the parent FirebaseProject for the `AndroidApp`. */
109
109
  projectId?: string;
110
+ /** The SHA1 certificate hashes for the AndroidApp. */
111
+ sha1Hashes?: string[];
112
+ /** The SHA256 certificate hashes for the AndroidApp. */
113
+ sha256Hashes?: string[];
110
114
  /** Output only. The lifecycle state of the App. */
111
115
  state?: string;
112
116
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.firebase-v1beta1",
3
- "version": "0.0.20220906",
3
+ "version": "0.0.20220908",
4
4
  "description": "TypeScript typings for Firebase Management API v1beta1",
5
5
  "license": "MIT",
6
6
  "author": {
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: 20220906
6
+ // Revision: 20220908
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -170,6 +170,12 @@ gapi.load('client', async () => {
170
170
  name: "Test string",
171
171
  packageName: "Test string",
172
172
  projectId: "Test string",
173
+ sha1Hashes: [
174
+ "Test string"
175
+ ],
176
+ sha256Hashes: [
177
+ "Test string"
178
+ ],
173
179
  state: "Test string",
174
180
  });
175
181
  /** Gets the specified AndroidApp. */
@@ -201,6 +207,12 @@ gapi.load('client', async () => {
201
207
  name: "Test string",
202
208
  packageName: "Test string",
203
209
  projectId: "Test string",
210
+ sha1Hashes: [
211
+ "Test string"
212
+ ],
213
+ sha256Hashes: [
214
+ "Test string"
215
+ ],
204
216
  state: "Test string",
205
217
  });
206
218
  /** Removes the specified AndroidApp from the FirebaseProject. */