@apicity/google 0.6.1 → 0.6.3

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/README.md CHANGED
@@ -29,7 +29,399 @@ const google = createGoogle({ apiKey: process.env.GOOGLE_API_KEY! });
29
29
 
30
30
  ## API Reference
31
31
 
32
- 2 endpoints across 1 group. Each method mirrors an upstream URL path.
32
+ 28 endpoints across 2 groups. Each method mirrors an upstream URL path.
33
+
34
+ ### googleFlow
35
+
36
+ <details>
37
+ <summary><code>DELETE</code> <b><code>google.v1.googleFlow.accounts</code></b></summary>
38
+
39
+ <code>DELETE https://api.useapi.net/v1/google-flow/accounts/{email}</code>
40
+
41
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/delete-google-flow-accounts-email)
42
+
43
+ ```typescript
44
+ const res = await google.v1.googleFlow.accounts({ /* ... */ });
45
+ ```
46
+
47
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
48
+
49
+ </details>
50
+
51
+ <details>
52
+ <summary><code>DELETE</code> <b><code>google.v1.googleFlow.characters</code></b></summary>
53
+
54
+ <code>DELETE https://api.useapi.net/v1/google-flow/characters/{ref}</code>
55
+
56
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/delete-google-flow-characters-ref)
57
+
58
+ ```typescript
59
+ const res = await google.v1.googleFlow.characters({ /* ... */ });
60
+ ```
61
+
62
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
63
+
64
+ </details>
65
+
66
+ <details>
67
+ <summary><code>DELETE</code> <b><code>google.v1.googleFlow.voices</code></b></summary>
68
+
69
+ <code>DELETE https://api.useapi.net/v1/google-flow/voices/{ref}</code>
70
+
71
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/delete-google-flow-voices-ref)
72
+
73
+ ```typescript
74
+ const res = await google.v1.googleFlow.voices({ /* ... */ });
75
+ ```
76
+
77
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
78
+
79
+ </details>
80
+
81
+ <details>
82
+ <summary><code>GET</code> <b><code>google.v1.googleFlow.accounts</code></b></summary>
83
+
84
+ <code>GET https://api.useapi.net/v1/google-flow/accounts</code>
85
+
86
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/get-google-flow-accounts)
87
+
88
+ ```typescript
89
+ const res = await google.v1.googleFlow.accounts({ /* ... */ });
90
+ ```
91
+
92
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
93
+
94
+ </details>
95
+
96
+ <details>
97
+ <summary><code>GET</code> <b><code>google.v1.googleFlow.accounts.captchaProviders</code></b></summary>
98
+
99
+ <code>GET https://api.useapi.net/v1/google-flow/accounts/captcha-providers</code>
100
+
101
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/get-google-flow-accounts-captcha-providers)
102
+
103
+ ```typescript
104
+ const res = await google.v1.googleFlow.accounts.captchaProviders({ /* ... */ });
105
+ ```
106
+
107
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
108
+
109
+ </details>
110
+
111
+ <details>
112
+ <summary><code>GET</code> <b><code>google.v1.googleFlow.accounts.captchaStats</code></b></summary>
113
+
114
+ <code>GET https://api.useapi.net/v1/google-flow/accounts/captcha-stats{query}</code>
115
+
116
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/get-google-flow-accounts-captcha-stats)
117
+
118
+ ```typescript
119
+ const res = await google.v1.googleFlow.accounts.captchaStats({ /* ... */ });
120
+ ```
121
+
122
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
123
+
124
+ </details>
125
+
126
+ <details>
127
+ <summary><code>GET</code> <b><code>google.v1.googleFlow.accounts.retrieve</code></b></summary>
128
+
129
+ <code>GET https://api.useapi.net/v1/google-flow/accounts/{email}</code>
130
+
131
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/get-google-flow-accounts-email)
132
+
133
+ ```typescript
134
+ const res = await google.v1.googleFlow.accounts.retrieve({ /* ... */ });
135
+ ```
136
+
137
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
138
+
139
+ </details>
140
+
141
+ <details>
142
+ <summary><code>GET</code> <b><code>google.v1.googleFlow.assets.retrieve</code></b></summary>
143
+
144
+ <code>GET https://api.useapi.net/v1/google-flow/assets/{mediaGenerationId}</code>
145
+
146
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/get-google-flow-assets-mediagenerationid)
147
+
148
+ ```typescript
149
+ const res = await google.v1.googleFlow.assets.retrieve({ /* ... */ });
150
+ ```
151
+
152
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
153
+
154
+ </details>
155
+
156
+ <details>
157
+ <summary><code>GET</code> <b><code>google.v1.googleFlow.characters</code></b></summary>
158
+
159
+ <code>GET https://api.useapi.net/v1/google-flow/characters{query}</code>
160
+
161
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/get-google-flow-characters)
162
+
163
+ ```typescript
164
+ const res = await google.v1.googleFlow.characters({ /* ... */ });
165
+ ```
166
+
167
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
168
+
169
+ </details>
170
+
171
+ <details>
172
+ <summary><code>GET</code> <b><code>google.v1.googleFlow.characters.retrieve</code></b></summary>
173
+
174
+ <code>GET https://api.useapi.net/v1/google-flow/characters/{ref}</code>
175
+
176
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/get-google-flow-characters-ref)
177
+
178
+ ```typescript
179
+ const res = await google.v1.googleFlow.characters.retrieve({ /* ... */ });
180
+ ```
181
+
182
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
183
+
184
+ </details>
185
+
186
+ <details>
187
+ <summary><code>GET</code> <b><code>google.v1.googleFlow.jobs</code></b></summary>
188
+
189
+ <code>GET https://api.useapi.net/v1/google-flow/jobs{query}</code>
190
+
191
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/get-google-flow-jobs)
192
+
193
+ ```typescript
194
+ const res = await google.v1.googleFlow.jobs({ /* ... */ });
195
+ ```
196
+
197
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
198
+
199
+ </details>
200
+
201
+ <details>
202
+ <summary><code>GET</code> <b><code>google.v1.googleFlow.jobs.retrieve</code></b></summary>
203
+
204
+ <code>GET https://api.useapi.net/v1/google-flow/jobs/{jobId}</code>
205
+
206
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/get-google-flow-jobs-jobid)
207
+
208
+ ```typescript
209
+ const res = await google.v1.googleFlow.jobs.retrieve({ /* ... */ });
210
+ ```
211
+
212
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
213
+
214
+ </details>
215
+
216
+ <details>
217
+ <summary><code>GET</code> <b><code>google.v1.googleFlow.voices</code></b></summary>
218
+
219
+ <code>GET https://api.useapi.net/v1/google-flow/voices{query}</code>
220
+
221
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/get-google-flow-voices)
222
+
223
+ ```typescript
224
+ const res = await google.v1.googleFlow.voices({ /* ... */ });
225
+ ```
226
+
227
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
228
+
229
+ </details>
230
+
231
+ <details>
232
+ <summary><code>GET</code> <b><code>google.v1.googleFlow.voices.retrieve</code></b></summary>
233
+
234
+ <code>GET https://api.useapi.net/v1/google-flow/voices/{ref}</code>
235
+
236
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/get-google-flow-voices-ref)
237
+
238
+ ```typescript
239
+ const res = await google.v1.googleFlow.voices.retrieve({ /* ... */ });
240
+ ```
241
+
242
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
243
+
244
+ </details>
245
+
246
+ <details>
247
+ <summary><code>POST</code> <b><code>google.v1.googleFlow.accounts</code></b></summary>
248
+
249
+ <code>POST https://api.useapi.net/v1/google-flow/accounts</code>
250
+
251
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/post-google-flow-accounts)
252
+
253
+ ```typescript
254
+ const res = await google.v1.googleFlow.accounts({ /* ... */ });
255
+ ```
256
+
257
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
258
+
259
+ </details>
260
+
261
+ <details>
262
+ <summary><code>POST</code> <b><code>google.v1.googleFlow.accounts.captchaProviders</code></b></summary>
263
+
264
+ <code>POST https://api.useapi.net/v1/google-flow/accounts/captcha-providers</code>
265
+
266
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/post-google-flow-accounts-captcha-providers)
267
+
268
+ ```typescript
269
+ const res = await google.v1.googleFlow.accounts.captchaProviders({ /* ... */ });
270
+ ```
271
+
272
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
273
+
274
+ </details>
275
+
276
+ <details>
277
+ <summary><code>POST</code> <b><code>google.v1.googleFlow.assets</code></b></summary>
278
+
279
+ <code>POST https://api.useapi.net/v1/google-flow/assets</code>
280
+
281
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/post-google-flow-assets-email)
282
+
283
+ ```typescript
284
+ const res = await google.v1.googleFlow.assets({ /* ... */ });
285
+ ```
286
+
287
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
288
+
289
+ </details>
290
+
291
+ <details>
292
+ <summary><code>POST</code> <b><code>google.v1.googleFlow.characters</code></b></summary>
293
+
294
+ <code>POST https://api.useapi.net/v1/google-flow/characters</code>
295
+
296
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/post-google-flow-characters)
297
+
298
+ ```typescript
299
+ const res = await google.v1.googleFlow.characters({ /* ... */ });
300
+ ```
301
+
302
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
303
+
304
+ </details>
305
+
306
+ <details>
307
+ <summary><code>POST</code> <b><code>google.v1.googleFlow.images</code></b></summary>
308
+
309
+ <code>POST https://api.useapi.net/v1/google-flow/images</code>
310
+
311
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/post-google-flow-images)
312
+
313
+ ```typescript
314
+ const res = await google.v1.googleFlow.images({ /* ... */ });
315
+ ```
316
+
317
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
318
+
319
+ </details>
320
+
321
+ <details>
322
+ <summary><code>POST</code> <b><code>google.v1.googleFlow.images.upscale</code></b></summary>
323
+
324
+ <code>POST https://api.useapi.net/v1/google-flow/images/upscale</code>
325
+
326
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/post-google-flow-images-upscale)
327
+
328
+ ```typescript
329
+ const res = await google.v1.googleFlow.images.upscale({ /* ... */ });
330
+ ```
331
+
332
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
333
+
334
+ </details>
335
+
336
+ <details>
337
+ <summary><code>POST</code> <b><code>google.v1.googleFlow.videos</code></b></summary>
338
+
339
+ <code>POST https://api.useapi.net/v1/google-flow/videos</code>
340
+
341
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/post-google-flow-videos)
342
+
343
+ ```typescript
344
+ const res = await google.v1.googleFlow.videos({ /* ... */ });
345
+ ```
346
+
347
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
348
+
349
+ </details>
350
+
351
+ <details>
352
+ <summary><code>POST</code> <b><code>google.v1.googleFlow.videos.concatenate</code></b></summary>
353
+
354
+ <code>POST https://api.useapi.net/v1/google-flow/videos/concatenate</code>
355
+
356
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/post-google-flow-videos-concatenate)
357
+
358
+ ```typescript
359
+ const res = await google.v1.googleFlow.videos.concatenate({ /* ... */ });
360
+ ```
361
+
362
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
363
+
364
+ </details>
365
+
366
+ <details>
367
+ <summary><code>POST</code> <b><code>google.v1.googleFlow.videos.extend</code></b></summary>
368
+
369
+ <code>POST https://api.useapi.net/v1/google-flow/videos/extend</code>
370
+
371
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/post-google-flow-videos-extend)
372
+
373
+ ```typescript
374
+ const res = await google.v1.googleFlow.videos.extend({ /* ... */ });
375
+ ```
376
+
377
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
378
+
379
+ </details>
380
+
381
+ <details>
382
+ <summary><code>POST</code> <b><code>google.v1.googleFlow.videos.gif</code></b></summary>
383
+
384
+ <code>POST https://api.useapi.net/v1/google-flow/videos/gif</code>
385
+
386
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/post-google-flow-videos-gif)
387
+
388
+ ```typescript
389
+ const res = await google.v1.googleFlow.videos.gif({ /* ... */ });
390
+ ```
391
+
392
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
393
+
394
+ </details>
395
+
396
+ <details>
397
+ <summary><code>POST</code> <b><code>google.v1.googleFlow.videos.upscale</code></b></summary>
398
+
399
+ <code>POST https://api.useapi.net/v1/google-flow/videos/upscale</code>
400
+
401
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/post-google-flow-videos-upscale)
402
+
403
+ ```typescript
404
+ const res = await google.v1.googleFlow.videos.upscale({ /* ... */ });
405
+ ```
406
+
407
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
408
+
409
+ </details>
410
+
411
+ <details>
412
+ <summary><code>POST</code> <b><code>google.v1.googleFlow.voices</code></b></summary>
413
+
414
+ <code>POST https://api.useapi.net/v1/google-flow/voices</code>
415
+
416
+ [Upstream docs ↗](https://useapi.net/docs/api-google-flow-v1/post-google-flow-voices)
417
+
418
+ ```typescript
419
+ const res = await google.v1.googleFlow.voices({ /* ... */ });
420
+ ```
421
+
422
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
423
+
424
+ </details>
33
425
 
34
426
  ### publishers
35
427
 
@@ -73,6 +465,39 @@ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
73
465
 
74
466
  </details>
75
467
 
468
+ ### v1internal
469
+
470
+ <details>
471
+ <summary><code>POST</code> <b><code>google.v1internal.retrieveUserQuota</code></b></summary>
472
+
473
+ <code>POST https://cloudcode-pa.googleapis.com/v1internal:retrieveUserQuota</code>
474
+
475
+ [Upstream docs ↗](https://cloud.google.com/gemini/docs/quotas)
476
+
477
+ Antigravity / Cloud Code usage. Authenticates with the Antigravity OAuth
478
+ bearer token (`oauthToken`, falling back to `apiKey`), not the API key header.
479
+ Each returned bucket carries `remainingFraction` (0–1); the usage percentage the
480
+ Antigravity UI renders is `(1 - remainingFraction) * 100`. Rolling windows (the
481
+ ~5h session window vs the weekly 1w window) are distinguished by each bucket's
482
+ `resetTime` horizon and/or `tokenType`.
483
+
484
+ ```typescript
485
+ const google = createGoogle({
486
+ apiKey: process.env.GOOGLE_API_KEY!,
487
+ oauthToken: process.env.ANTIGRAVITY_OAUTH_TOKEN,
488
+ });
489
+
490
+ const usage = await google.v1internal.retrieveUserQuota();
491
+ for (const bucket of usage.buckets ?? []) {
492
+ const usagePercent = (1 - (bucket.remainingFraction ?? 0)) * 100;
493
+ console.log(bucket.modelId, bucket.tokenType, `${usagePercent}%`);
494
+ }
495
+ ```
496
+
497
+ Source: [`packages/provider/google/src/google.ts`](src/google.ts)
498
+
499
+ </details>
500
+
76
501
  Part of the [apicity](https://github.com/justintanner/apicity) monorepo.
77
502
 
78
503
  ## License
@@ -1 +1 @@
1
- {"version":3,"file":"example.d.ts","sourceRoot":"","sources":["../../src/example.ts"],"names":[],"mappings":"AAOA,MAAM,WAAW,eAAe;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,QAAA,MAAM,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,eAAe,CAsC7C,CAAC;AAEF,eAAe,QAAQ,CAAC;AAOxB,wBAAgB,cAAc,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,GAAG,CAAC,CA6ChD"}
1
+ {"version":3,"file":"example.d.ts","sourceRoot":"","sources":["../../src/example.ts"],"names":[],"mappings":"AAOA,MAAM,WAAW,eAAe;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,QAAA,MAAM,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,eAAe,CAsJ7C,CAAC;AAEF,eAAe,QAAQ,CAAC;AAOxB,wBAAgB,cAAc,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,GAAG,CAAC,CA6ChD"}
@@ -5,6 +5,118 @@
5
5
  // integration-test recording. `attachExamples` walks the provider tree and
6
6
  // hangs the matching entry off each endpoint function as `.example`.
7
7
  const EXAMPLES = {
8
+ "GET v1.googleFlow.accounts.captchaStats": {
9
+ "source": "google-flow/contracts",
10
+ "payload": {
11
+ "anonymized": true,
12
+ "date": "2026-06-25",
13
+ "limit": 10
14
+ }
15
+ },
16
+ "GET v1.googleFlow.characters": {
17
+ "source": "google-flow/contracts",
18
+ "payload": {
19
+ "email": "user@example.com"
20
+ }
21
+ },
22
+ "GET v1.googleFlow.jobs": {
23
+ "source": "google-flow/contracts",
24
+ "payload": {
25
+ "options": "history"
26
+ }
27
+ },
28
+ "GET v1.googleFlow.voices": {
29
+ "source": "google-flow/contracts",
30
+ "payload": {
31
+ "email": "user@example.com",
32
+ "source": "user"
33
+ }
34
+ },
35
+ "POST v1.googleFlow.accounts": {
36
+ "source": "google-flow/contracts",
37
+ "payload": {
38
+ "cookies": "SID=fixture;"
39
+ }
40
+ },
41
+ "POST v1.googleFlow.accounts.captchaProviders": {
42
+ "source": "google-flow/contracts",
43
+ "payload": {
44
+ "CapSolver": "provider-key"
45
+ }
46
+ },
47
+ "POST v1.googleFlow.characters": {
48
+ "source": "google-flow/contracts",
49
+ "payload": {
50
+ "displayName": "Ari",
51
+ "imageReference_1": "media-1"
52
+ }
53
+ },
54
+ "POST v1.googleFlow.images": {
55
+ "source": "google-flow/contracts",
56
+ "payload": {
57
+ "prompt": "A clean product photo",
58
+ "count": 1
59
+ }
60
+ },
61
+ "POST v1.googleFlow.images.upscale": {
62
+ "source": "google-flow/contracts",
63
+ "payload": {
64
+ "mediaGenerationId": "image-1",
65
+ "resolution": "2k"
66
+ }
67
+ },
68
+ "POST v1.googleFlow.videos": {
69
+ "source": "google-flow/contracts",
70
+ "payload": {
71
+ "prompt": "A slow camera push through a studio",
72
+ "count": 1
73
+ }
74
+ },
75
+ "POST v1.googleFlow.videos.concatenate": {
76
+ "source": "google-flow/contracts",
77
+ "payload": {
78
+ "media": [
79
+ {
80
+ "mediaGenerationId": "video-1",
81
+ "trimStart": 1
82
+ },
83
+ {
84
+ "mediaGenerationId": "video-2",
85
+ "trimEnd": 1
86
+ }
87
+ ]
88
+ }
89
+ },
90
+ "POST v1.googleFlow.videos.extend": {
91
+ "source": "google-flow/contracts",
92
+ "payload": {
93
+ "mediaGenerationId": "video-1",
94
+ "prompt": "Continue the motion"
95
+ }
96
+ },
97
+ "POST v1.googleFlow.videos.gif": {
98
+ "source": "google-flow/contracts",
99
+ "payload": {
100
+ "mediaGenerationId": "video-1"
101
+ }
102
+ },
103
+ "POST v1.googleFlow.videos.upscale": {
104
+ "source": "google-flow/contracts",
105
+ "payload": {
106
+ "mediaGenerationId": "video-1",
107
+ "resolution": "1080p"
108
+ }
109
+ },
110
+ "POST v1.googleFlow.voices": {
111
+ "source": "google-flow/contracts",
112
+ "payload": {
113
+ "email": "user@example.com",
114
+ "voice": "Aoede",
115
+ "displayName": "Narrator",
116
+ "dialog": "Hello there",
117
+ "voicePerformance": "Warm and clear"
118
+ }
119
+ },
8
120
  "POST v1.publishers.google.models.countTokens": {
9
121
  "source": "google/count-tokens",
10
122
  "payload": {
@@ -1 +1 @@
1
- {"version":3,"file":"example.js","sourceRoot":"","sources":["../../src/example.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"example.js","sourceRoot":"","sources":["../../src/example.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"google.d.ts","sourceRoot":"","sources":["../../src/google.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAKV,aAAa,EACb,cAAc,EACf,MAAM,SAAS,CAAC;AA0CjB,wBAAgB,YAAY,CAAC,IAAI,EAAE,aAAa,GAAG,cAAc,CA2GhE"}
1
+ {"version":3,"file":"google.d.ts","sourceRoot":"","sources":["../../src/google.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EA2BV,aAAa,EACb,cAAc,EAGf,MAAM,SAAS,CAAC;AAyHjB,wBAAgB,YAAY,CAAC,IAAI,EAAE,aAAa,GAAG,cAAc,CAklBhE"}