web-manager 4.0.32 → 4.0.34
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/CHANGELOG.md +7 -0
- package/README.md +12 -2
- package/dist/modules/bindings.js +13 -7
- package/firebase-debug.log +224 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
17
|
---
|
|
18
|
+
## [4.0.33] - 2025-12-12
|
|
19
|
+
### BREAKING
|
|
20
|
+
- `@text` binding action no longer auto-detects input/textarea elements. Use `@value` for inputs instead.
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- Added `@value` binding action for explicitly setting input/textarea values.
|
|
24
|
+
|
|
18
25
|
## [4.0.31] - 2025-12-03
|
|
19
26
|
### Added
|
|
20
27
|
- Added HTML data attributes (`data-platform`, `data-runtime`, `data-device`) on initialization for CSS targeting.
|
package/README.md
CHANGED
|
@@ -272,9 +272,18 @@ Web Manager includes a powerful data binding system that automatically updates y
|
|
|
272
272
|
|
|
273
273
|
<!-- Display nested properties -->
|
|
274
274
|
<div data-wm-bind="auth.account.subscription.plan"></div>
|
|
275
|
+
```
|
|
276
|
+
|
|
277
|
+
#### Input/Textarea Value Binding
|
|
278
|
+
```html
|
|
279
|
+
<!-- Set input value -->
|
|
280
|
+
<input data-wm-bind="@value settings.theme" />
|
|
281
|
+
|
|
282
|
+
<!-- Set textarea value -->
|
|
283
|
+
<textarea data-wm-bind="@value user.bio"></textarea>
|
|
275
284
|
|
|
276
|
-
<!--
|
|
277
|
-
<input data-wm-bind="
|
|
285
|
+
<!-- Combine with other actions -->
|
|
286
|
+
<input data-wm-bind="@value auth.user.email, @attr disabled auth.user.emailVerified" />
|
|
278
287
|
```
|
|
279
288
|
|
|
280
289
|
#### Conditional Visibility
|
|
@@ -403,6 +412,7 @@ Then use the custom property in your CSS:
|
|
|
403
412
|
|
|
404
413
|
#### Supported Actions
|
|
405
414
|
- **`@text`** (default): Sets the text content of the element
|
|
415
|
+
- **`@value`**: Sets the value of an input or textarea element
|
|
406
416
|
- **`@show`**: Shows the element when condition is true
|
|
407
417
|
- **`@hide`**: Hides the element when condition is true
|
|
408
418
|
- **`@attr`**: Sets an attribute value (format: `@attr attributeName expression`)
|
package/dist/modules/bindings.js
CHANGED
|
@@ -181,6 +181,17 @@ class Bindings {
|
|
|
181
181
|
}
|
|
182
182
|
break;
|
|
183
183
|
|
|
184
|
+
case '@value':
|
|
185
|
+
// Set input/textarea value explicitly
|
|
186
|
+
// Check if this path should be updated
|
|
187
|
+
if (!this._shouldUpdatePath(expression, updatedKeys)) {
|
|
188
|
+
return;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
const inputValue = this._resolvePath(context, expression) ?? '';
|
|
192
|
+
element.value = inputValue;
|
|
193
|
+
break;
|
|
194
|
+
|
|
184
195
|
case '@text':
|
|
185
196
|
default:
|
|
186
197
|
// Set text content (default behavior)
|
|
@@ -190,13 +201,8 @@ class Bindings {
|
|
|
190
201
|
return;
|
|
191
202
|
}
|
|
192
203
|
|
|
193
|
-
const
|
|
194
|
-
|
|
195
|
-
if (element.tagName === 'INPUT' || element.tagName === 'TEXTAREA') {
|
|
196
|
-
element.value = value;
|
|
197
|
-
} else {
|
|
198
|
-
element.textContent = value;
|
|
199
|
-
}
|
|
204
|
+
const textValue = this._resolvePath(context, expression) ?? '';
|
|
205
|
+
element.textContent = textValue;
|
|
200
206
|
break;
|
|
201
207
|
}
|
|
202
208
|
}
|
package/firebase-debug.log
CHANGED
|
@@ -434,3 +434,227 @@
|
|
|
434
434
|
[debug] [2025-12-04T22:53:01.909Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
435
435
|
[debug] [2025-12-04T22:53:01.913Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
436
436
|
[debug] [2025-12-04T22:53:01.913Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
437
|
+
[debug] [2025-12-08T22:02:17.831Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
438
|
+
[debug] [2025-12-08T22:02:17.831Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
439
|
+
[debug] [2025-12-08T22:02:17.833Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
440
|
+
[debug] [2025-12-08T22:02:17.833Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
441
|
+
[debug] [2025-12-08T22:02:17.833Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
442
|
+
[debug] [2025-12-08T22:02:17.842Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
443
|
+
[debug] [2025-12-08T22:02:17.842Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
444
|
+
[debug] [2025-12-08T22:02:17.833Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
445
|
+
[debug] [2025-12-08T22:02:17.833Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
446
|
+
[debug] [2025-12-08T22:02:17.833Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
447
|
+
[debug] [2025-12-08T22:02:17.842Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
448
|
+
[debug] [2025-12-08T22:02:17.842Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
449
|
+
[debug] [2025-12-08T22:02:17.860Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
450
|
+
[debug] [2025-12-08T22:02:17.861Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
451
|
+
[debug] [2025-12-08T22:02:17.860Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
452
|
+
[debug] [2025-12-08T22:02:17.861Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
453
|
+
[debug] [2025-12-08T22:02:17.861Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
454
|
+
[debug] [2025-12-08T22:02:17.862Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
455
|
+
[debug] [2025-12-08T22:02:17.862Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
456
|
+
[debug] [2025-12-08T22:02:17.863Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
457
|
+
[debug] [2025-12-08T22:02:17.863Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
458
|
+
[debug] [2025-12-08T22:02:17.861Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
459
|
+
[debug] [2025-12-08T22:02:17.863Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
460
|
+
[debug] [2025-12-08T22:02:17.863Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
461
|
+
[debug] [2025-12-08T22:02:17.865Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
462
|
+
[debug] [2025-12-08T22:02:17.865Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
463
|
+
[debug] [2025-12-08T22:02:17.866Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
464
|
+
[debug] [2025-12-08T22:02:17.866Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
465
|
+
[debug] [2025-12-13T03:06:57.805Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
466
|
+
[debug] [2025-12-13T03:06:57.807Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
467
|
+
[debug] [2025-12-13T03:06:57.807Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
468
|
+
[debug] [2025-12-13T03:06:57.807Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
469
|
+
[debug] [2025-12-13T03:06:57.808Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
470
|
+
[debug] [2025-12-13T03:06:57.818Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
471
|
+
[debug] [2025-12-13T03:06:57.819Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
472
|
+
[debug] [2025-12-13T03:06:57.809Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
473
|
+
[debug] [2025-12-13T03:06:57.809Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
474
|
+
[debug] [2025-12-13T03:06:57.809Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
475
|
+
[debug] [2025-12-13T03:06:57.819Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
476
|
+
[debug] [2025-12-13T03:06:57.820Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
477
|
+
[debug] [2025-12-13T03:06:57.839Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
478
|
+
[debug] [2025-12-13T03:06:57.841Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
479
|
+
[debug] [2025-12-13T03:06:57.839Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
480
|
+
[debug] [2025-12-13T03:06:57.840Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
481
|
+
[debug] [2025-12-13T03:06:57.840Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
482
|
+
[debug] [2025-12-13T03:06:57.842Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
483
|
+
[debug] [2025-12-13T03:06:57.842Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
484
|
+
[debug] [2025-12-13T03:06:57.843Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
485
|
+
[debug] [2025-12-13T03:06:57.843Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
486
|
+
[debug] [2025-12-13T03:06:57.842Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
487
|
+
[debug] [2025-12-13T03:06:57.843Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
488
|
+
[debug] [2025-12-13T03:06:57.843Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
489
|
+
[debug] [2025-12-13T03:06:57.845Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
490
|
+
[debug] [2025-12-13T03:06:57.846Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
491
|
+
[debug] [2025-12-13T03:06:57.846Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
492
|
+
[debug] [2025-12-13T03:06:57.846Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
493
|
+
[debug] [2025-12-13T03:10:51.069Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
494
|
+
[debug] [2025-12-13T03:10:51.069Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
495
|
+
[debug] [2025-12-13T03:10:51.071Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
496
|
+
[debug] [2025-12-13T03:10:51.071Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
497
|
+
[debug] [2025-12-13T03:10:51.071Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
498
|
+
[debug] [2025-12-13T03:10:51.087Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
499
|
+
[debug] [2025-12-13T03:10:51.087Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
500
|
+
[debug] [2025-12-13T03:10:51.072Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
501
|
+
[debug] [2025-12-13T03:10:51.072Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
502
|
+
[debug] [2025-12-13T03:10:51.072Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
503
|
+
[debug] [2025-12-13T03:10:51.087Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
504
|
+
[debug] [2025-12-13T03:10:51.088Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
505
|
+
[debug] [2025-12-13T03:10:51.106Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
506
|
+
[debug] [2025-12-13T03:10:51.107Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
507
|
+
[debug] [2025-12-13T03:10:51.107Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
508
|
+
[debug] [2025-12-13T03:10:51.108Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
509
|
+
[debug] [2025-12-13T03:10:51.108Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
510
|
+
[debug] [2025-12-13T03:10:51.110Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
511
|
+
[debug] [2025-12-13T03:10:51.110Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
512
|
+
[debug] [2025-12-13T03:10:51.110Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
513
|
+
[debug] [2025-12-13T03:10:51.110Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
514
|
+
[debug] [2025-12-13T03:10:51.107Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
515
|
+
[debug] [2025-12-13T03:10:51.107Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
516
|
+
[debug] [2025-12-13T03:10:51.108Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
517
|
+
[debug] [2025-12-13T03:10:51.109Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
518
|
+
[debug] [2025-12-13T03:10:51.109Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
519
|
+
[debug] [2025-12-13T03:10:51.110Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
520
|
+
[debug] [2025-12-13T03:10:51.110Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
521
|
+
[debug] [2025-12-13T03:15:23.823Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
522
|
+
[debug] [2025-12-13T03:15:23.822Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
523
|
+
[debug] [2025-12-13T03:15:23.825Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
524
|
+
[debug] [2025-12-13T03:15:23.825Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
525
|
+
[debug] [2025-12-13T03:15:23.825Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
526
|
+
[debug] [2025-12-13T03:15:23.833Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
527
|
+
[debug] [2025-12-13T03:15:23.834Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
528
|
+
[debug] [2025-12-13T03:15:23.825Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
529
|
+
[debug] [2025-12-13T03:15:23.825Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
530
|
+
[debug] [2025-12-13T03:15:23.825Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
531
|
+
[debug] [2025-12-13T03:15:23.834Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
532
|
+
[debug] [2025-12-13T03:15:23.834Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
533
|
+
[debug] [2025-12-13T03:15:23.849Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
534
|
+
[debug] [2025-12-13T03:15:23.849Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
535
|
+
[debug] [2025-12-13T03:15:23.850Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
536
|
+
[debug] [2025-12-13T03:15:23.850Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
537
|
+
[debug] [2025-12-13T03:15:23.853Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
538
|
+
[debug] [2025-12-13T03:15:23.853Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
539
|
+
[debug] [2025-12-13T03:15:23.853Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
540
|
+
[debug] [2025-12-13T03:15:23.853Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
541
|
+
[debug] [2025-12-13T03:15:23.857Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
542
|
+
[debug] [2025-12-13T03:15:23.857Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
543
|
+
[debug] [2025-12-13T03:15:23.858Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
544
|
+
[debug] [2025-12-13T03:15:23.858Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
545
|
+
[debug] [2025-12-13T03:15:23.859Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
546
|
+
[debug] [2025-12-13T03:15:23.859Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
547
|
+
[debug] [2025-12-13T03:15:23.860Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
548
|
+
[debug] [2025-12-13T03:15:23.860Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
549
|
+
[debug] [2025-12-13T03:15:31.005Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
550
|
+
[debug] [2025-12-13T03:15:31.021Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
551
|
+
[debug] [2025-12-13T03:15:31.008Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
552
|
+
[debug] [2025-12-13T03:15:31.008Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
553
|
+
[debug] [2025-12-13T03:15:31.009Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
554
|
+
[debug] [2025-12-13T03:15:31.027Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
555
|
+
[debug] [2025-12-13T03:15:31.028Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
556
|
+
[debug] [2025-12-13T03:15:31.023Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
557
|
+
[debug] [2025-12-13T03:15:31.023Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
558
|
+
[debug] [2025-12-13T03:15:31.024Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
559
|
+
[debug] [2025-12-13T03:15:31.036Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
560
|
+
[debug] [2025-12-13T03:15:31.036Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
561
|
+
[debug] [2025-12-13T03:15:31.046Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
562
|
+
[debug] [2025-12-13T03:15:31.046Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
563
|
+
[debug] [2025-12-13T03:15:31.047Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
564
|
+
[debug] [2025-12-13T03:15:31.047Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
565
|
+
[debug] [2025-12-13T03:15:31.048Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
566
|
+
[debug] [2025-12-13T03:15:31.048Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
567
|
+
[debug] [2025-12-13T03:15:31.049Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
568
|
+
[debug] [2025-12-13T03:15:31.049Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
569
|
+
[debug] [2025-12-13T03:15:31.056Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
570
|
+
[debug] [2025-12-13T03:15:31.057Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
571
|
+
[debug] [2025-12-13T03:15:31.057Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
572
|
+
[debug] [2025-12-13T03:15:31.057Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
573
|
+
[debug] [2025-12-13T03:15:31.059Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
574
|
+
[debug] [2025-12-13T03:15:31.059Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
575
|
+
[debug] [2025-12-13T03:15:31.060Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
576
|
+
[debug] [2025-12-13T03:15:31.060Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
577
|
+
[debug] [2025-12-13T03:15:32.717Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
578
|
+
[debug] [2025-12-13T03:15:32.721Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
579
|
+
[debug] [2025-12-13T03:15:32.721Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
580
|
+
[debug] [2025-12-13T03:15:32.722Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
581
|
+
[debug] [2025-12-13T03:15:32.735Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
582
|
+
[debug] [2025-12-13T03:15:32.736Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
583
|
+
[debug] [2025-12-13T03:15:32.752Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
584
|
+
[debug] [2025-12-13T03:15:32.753Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
585
|
+
[debug] [2025-12-13T03:15:32.753Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
586
|
+
[debug] [2025-12-13T03:15:32.754Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
587
|
+
[debug] [2025-12-13T03:15:32.755Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
588
|
+
[debug] [2025-12-13T03:15:32.755Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
589
|
+
[debug] [2025-12-13T03:15:32.757Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
590
|
+
[debug] [2025-12-13T03:15:32.757Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
591
|
+
[debug] [2025-12-13T03:15:32.784Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
592
|
+
[debug] [2025-12-13T03:15:32.786Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
593
|
+
[debug] [2025-12-13T03:15:32.786Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
594
|
+
[debug] [2025-12-13T03:15:32.786Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
595
|
+
[debug] [2025-12-13T03:15:32.799Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
596
|
+
[debug] [2025-12-13T03:15:32.799Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
597
|
+
[debug] [2025-12-13T03:15:32.815Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
598
|
+
[debug] [2025-12-13T03:15:32.815Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
599
|
+
[debug] [2025-12-13T03:15:32.816Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
600
|
+
[debug] [2025-12-13T03:15:32.816Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
601
|
+
[debug] [2025-12-13T03:15:32.817Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
602
|
+
[debug] [2025-12-13T03:15:32.817Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
603
|
+
[debug] [2025-12-13T03:15:32.818Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
604
|
+
[debug] [2025-12-13T03:15:32.818Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
605
|
+
[debug] [2025-12-13T03:15:41.245Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
606
|
+
[debug] [2025-12-13T03:15:41.247Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
607
|
+
[debug] [2025-12-13T03:15:41.247Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
608
|
+
[debug] [2025-12-13T03:15:41.248Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
609
|
+
[debug] [2025-12-13T03:15:41.256Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
610
|
+
[debug] [2025-12-13T03:15:41.256Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
611
|
+
[debug] [2025-12-13T03:15:41.273Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
612
|
+
[debug] [2025-12-13T03:15:41.273Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
613
|
+
[debug] [2025-12-13T03:15:41.274Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
614
|
+
[debug] [2025-12-13T03:15:41.274Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
615
|
+
[debug] [2025-12-13T03:15:41.277Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
616
|
+
[debug] [2025-12-13T03:15:41.277Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
617
|
+
[debug] [2025-12-13T03:15:41.277Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
618
|
+
[debug] [2025-12-13T03:15:41.277Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
619
|
+
[debug] [2025-12-13T03:15:41.321Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
620
|
+
[debug] [2025-12-13T03:15:41.323Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
621
|
+
[debug] [2025-12-13T03:15:41.323Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
622
|
+
[debug] [2025-12-13T03:15:41.323Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
623
|
+
[debug] [2025-12-13T03:15:41.332Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
624
|
+
[debug] [2025-12-13T03:15:41.332Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
625
|
+
[debug] [2025-12-13T03:15:41.348Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
626
|
+
[debug] [2025-12-13T03:15:41.348Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
627
|
+
[debug] [2025-12-13T03:15:41.348Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
628
|
+
[debug] [2025-12-13T03:15:41.349Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
629
|
+
[debug] [2025-12-13T03:15:41.350Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
630
|
+
[debug] [2025-12-13T03:15:41.350Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
631
|
+
[debug] [2025-12-13T03:15:41.351Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
632
|
+
[debug] [2025-12-13T03:15:41.351Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
633
|
+
[debug] [2025-12-13T03:15:51.187Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
634
|
+
[debug] [2025-12-13T03:15:51.189Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
635
|
+
[debug] [2025-12-13T03:15:51.190Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
636
|
+
[debug] [2025-12-13T03:15:51.190Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
637
|
+
[debug] [2025-12-13T03:15:51.206Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
638
|
+
[debug] [2025-12-13T03:15:51.206Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
639
|
+
[debug] [2025-12-13T03:15:51.224Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
640
|
+
[debug] [2025-12-13T03:15:51.224Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
641
|
+
[debug] [2025-12-13T03:15:51.225Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
642
|
+
[debug] [2025-12-13T03:15:51.225Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
643
|
+
[debug] [2025-12-13T03:15:51.227Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
644
|
+
[debug] [2025-12-13T03:15:51.227Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
645
|
+
[debug] [2025-12-13T03:15:51.228Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
646
|
+
[debug] [2025-12-13T03:15:51.228Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
647
|
+
[debug] [2025-12-13T03:15:51.238Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
648
|
+
[debug] [2025-12-13T03:15:51.241Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
649
|
+
[debug] [2025-12-13T03:15:51.241Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
650
|
+
[debug] [2025-12-13T03:15:51.241Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
651
|
+
[debug] [2025-12-13T03:15:51.250Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
652
|
+
[debug] [2025-12-13T03:15:51.250Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
653
|
+
[debug] [2025-12-13T03:15:51.268Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
654
|
+
[debug] [2025-12-13T03:15:51.268Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
655
|
+
[debug] [2025-12-13T03:15:51.269Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
656
|
+
[debug] [2025-12-13T03:15:51.269Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
657
|
+
[debug] [2025-12-13T03:15:51.272Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
658
|
+
[debug] [2025-12-13T03:15:51.272Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
659
|
+
[debug] [2025-12-13T03:15:51.272Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
660
|
+
[debug] [2025-12-13T03:15:51.272Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-manager",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.34",
|
|
4
4
|
"description": "Easily access important variables such as the query string, current domain, and current page in a single object.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "src/index.js",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@sentry/browser": "Resolved by using OVERRIDES in web-manager (lighthouse is the issue"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@sentry/browser": "^10.
|
|
45
|
+
"@sentry/browser": "^10.30.0",
|
|
46
46
|
"firebase": "^12.6.0",
|
|
47
47
|
"itwcw-package-analytics": "^1.0.6",
|
|
48
48
|
"lodash": "^4.17.21",
|