ultimate-jekyll-manager 0.0.133 → 0.0.135
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/TODO.md +4 -0
- package/dist/assets/js/libs/auth.js +35 -16
- package/dist/assets/js/libs/form-manager.js +5 -4
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/reset.html +5 -1
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/signin.html +6 -1
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/signup.html +6 -1
- package/dist/gulp/tasks/utils/github-cache.js +19 -5
- package/firebase-debug.log +252 -0
- package/package.json +1 -1
package/TODO.md
CHANGED
|
@@ -98,6 +98,10 @@ REMAKE main/misc/embed-manager.html in UJ
|
|
|
98
98
|
REMAKE the dashboard one in UJ
|
|
99
99
|
FINISH redirec.js in UJ
|
|
100
100
|
|
|
101
|
+
# Update git remote url
|
|
102
|
+
* Check git remote get-url origin
|
|
103
|
+
* Update to correct one if necessary (imagemin wont work unless tis is accurate)
|
|
104
|
+
|
|
101
105
|
# Fix notifications
|
|
102
106
|
* UJ 2.0 for a while was making a DUPLICATE notifaction in users/{uid}/notifications/{token} AND in notifications/{token}
|
|
103
107
|
* We can SAFELY DELETE the users/{uid}/notifications collection
|
|
@@ -16,6 +16,9 @@ export default function (Manager) {
|
|
|
16
16
|
// Handle DOM ready
|
|
17
17
|
webManager.dom().ready()
|
|
18
18
|
.then(async () => {
|
|
19
|
+
// Log
|
|
20
|
+
console.log('[Auth] Initialized. useAuthPopup:', useAuthPopup);
|
|
21
|
+
|
|
19
22
|
// Check for authSignout parameter first
|
|
20
23
|
await handleAuthSignout(webManager);
|
|
21
24
|
|
|
@@ -26,6 +29,9 @@ export default function (Manager) {
|
|
|
26
29
|
// This prevents the form from appearing interactive while redirect is processing
|
|
27
30
|
const hasRedirectResult = await handleRedirectResult();
|
|
28
31
|
|
|
32
|
+
// Log
|
|
33
|
+
console.log('[Auth] hasRedirectResult:', hasRedirectResult);
|
|
34
|
+
|
|
29
35
|
// If redirect result was found, don't enable the form - user will be redirected
|
|
30
36
|
if (hasRedirectResult) {
|
|
31
37
|
return;
|
|
@@ -51,7 +57,7 @@ export default function (Manager) {
|
|
|
51
57
|
const pagePath = document.documentElement.getAttribute('data-page-path');
|
|
52
58
|
|
|
53
59
|
if (!pagePath) {
|
|
54
|
-
console.warn('No data-page-path attribute found on HTML element');
|
|
60
|
+
console.warn('[Auth] No data-page-path attribute found on HTML element');
|
|
55
61
|
return;
|
|
56
62
|
}
|
|
57
63
|
|
|
@@ -64,6 +70,15 @@ export default function (Manager) {
|
|
|
64
70
|
}
|
|
65
71
|
}
|
|
66
72
|
|
|
73
|
+
function stateChangeHandler({ state }) {
|
|
74
|
+
// Hide initializing spinners and show hidden elements when state changes from initializing
|
|
75
|
+
if (state !== 'initializing') {
|
|
76
|
+
formManager.$form.querySelectorAll('.form-initializing-spinner').forEach(($el) => {
|
|
77
|
+
$el.classList.add('d-none');
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
67
82
|
// Shared validation for signin/signup forms - only validate when email provider is selected
|
|
68
83
|
function validateEmailProvider({ data, setError, $submitButton }) {
|
|
69
84
|
const provider = $submitButton?.getAttribute('data-provider');
|
|
@@ -93,39 +108,42 @@ export default function (Manager) {
|
|
|
93
108
|
|
|
94
109
|
// Initialize signin form
|
|
95
110
|
function initializeSigninForm() {
|
|
96
|
-
formManager = new FormManager('#
|
|
111
|
+
formManager = new FormManager('#auth-form', {
|
|
97
112
|
autoReady: false, // We'll call ready() after checking redirect result
|
|
98
113
|
allowResubmit: false,
|
|
99
114
|
submittingText: 'Signing in...',
|
|
100
115
|
submittedText: 'Signed In!',
|
|
101
116
|
});
|
|
102
117
|
|
|
118
|
+
formManager.on('statechange', stateChangeHandler);
|
|
103
119
|
formManager.on('validation', validateEmailProvider);
|
|
104
120
|
formManager.on('submit', createAuthSubmitHandler('signin', handleEmailSignin));
|
|
105
121
|
}
|
|
106
122
|
|
|
107
123
|
// Initialize signup form
|
|
108
124
|
function initializeSignupForm() {
|
|
109
|
-
formManager = new FormManager('#
|
|
125
|
+
formManager = new FormManager('#auth-form', {
|
|
110
126
|
autoReady: false, // We'll call ready() after checking redirect result
|
|
111
127
|
allowResubmit: false,
|
|
112
128
|
submittingText: 'Creating account...',
|
|
113
129
|
submittedText: 'Account Created!',
|
|
114
130
|
});
|
|
115
131
|
|
|
132
|
+
formManager.on('statechange', stateChangeHandler);
|
|
116
133
|
formManager.on('validation', validateEmailProvider);
|
|
117
134
|
formManager.on('submit', createAuthSubmitHandler('signup', handleEmailSignup));
|
|
118
135
|
}
|
|
119
136
|
|
|
120
137
|
// Initialize reset form
|
|
121
138
|
function initializeResetForm() {
|
|
122
|
-
formManager = new FormManager('#
|
|
139
|
+
formManager = new FormManager('#auth-form', {
|
|
123
140
|
autoReady: false, // We'll call ready() after checking redirect result
|
|
124
141
|
allowResubmit: false,
|
|
125
142
|
submittingText: 'Sending...',
|
|
126
143
|
submittedText: 'Email Sent!',
|
|
127
144
|
});
|
|
128
145
|
|
|
146
|
+
formManager.on('statechange', stateChangeHandler);
|
|
129
147
|
formManager.on('submit', ({ data }) => handlePasswordReset(data));
|
|
130
148
|
}
|
|
131
149
|
|
|
@@ -139,14 +157,14 @@ export default function (Manager) {
|
|
|
139
157
|
const result = await getRedirectResult(auth);
|
|
140
158
|
|
|
141
159
|
// Log results for debugging
|
|
142
|
-
console.log('Redirect result:', result);
|
|
160
|
+
console.log('[Auth] Redirect result:', result);
|
|
143
161
|
|
|
144
162
|
// If no result, return false to indicate no redirect was processed
|
|
145
163
|
if (!result || !result.user) {
|
|
146
164
|
return false;
|
|
147
165
|
}
|
|
148
166
|
|
|
149
|
-
console.log('Successfully authenticated via redirect:', result.user.email);
|
|
167
|
+
console.log('[Auth] Successfully authenticated via redirect:', result.user.email);
|
|
150
168
|
|
|
151
169
|
// Determine the provider from the result
|
|
152
170
|
const providerId = result.providerId || result.user.providerData?.[0]?.providerId || 'unknown';
|
|
@@ -197,7 +215,8 @@ export default function (Manager) {
|
|
|
197
215
|
}
|
|
198
216
|
|
|
199
217
|
try {
|
|
200
|
-
|
|
218
|
+
// Log
|
|
219
|
+
console.log('[Auth] Signing out user due to authSignout=true parameter');
|
|
201
220
|
|
|
202
221
|
// Sign out the user using webManager
|
|
203
222
|
await webManager.auth().signOut();
|
|
@@ -206,7 +225,7 @@ export default function (Manager) {
|
|
|
206
225
|
url.searchParams.delete('authSignout');
|
|
207
226
|
window.history.replaceState({}, document.title, url.toString());
|
|
208
227
|
} catch (error) {
|
|
209
|
-
console.error('Error signing out:', error);
|
|
228
|
+
console.error('[Auth] Error signing out:', error);
|
|
210
229
|
}
|
|
211
230
|
}
|
|
212
231
|
|
|
@@ -223,7 +242,7 @@ export default function (Manager) {
|
|
|
223
242
|
const isSubdomain = parts.length >= 3 && !hostname.includes('localhost') && !/^\d+\.\d+\.\d+\.\d+$/.test(hostname);
|
|
224
243
|
|
|
225
244
|
// Log relevant info
|
|
226
|
-
console.log('checkSubdomainAuth - hostname:', hostname, 'parts:', parts, 'isSubdomain:', isSubdomain, 'allowSubdomainAuth:', allowSubdomainAuth);
|
|
245
|
+
console.log('[Auth] checkSubdomainAuth - hostname:', hostname, 'parts:', parts, 'isSubdomain:', isSubdomain, 'allowSubdomainAuth:', allowSubdomainAuth);
|
|
227
246
|
|
|
228
247
|
// If subdomain auth is allowed, no need to redirect regardless of current domain
|
|
229
248
|
if (allowSubdomainAuth) {
|
|
@@ -241,7 +260,7 @@ export default function (Manager) {
|
|
|
241
260
|
currentUrl.hostname = apexDomain;
|
|
242
261
|
|
|
243
262
|
// Log
|
|
244
|
-
console.log('Redirecting to apex domain for authentication:', currentUrl.href);
|
|
263
|
+
console.log('[Auth] Redirecting to apex domain for authentication:', currentUrl.href);
|
|
245
264
|
|
|
246
265
|
// Perform the redirect
|
|
247
266
|
window.location.href = currentUrl.href;
|
|
@@ -256,7 +275,7 @@ export default function (Manager) {
|
|
|
256
275
|
|
|
257
276
|
// Quit if no authReturnUrl is provided
|
|
258
277
|
if (!authReturnUrl) {
|
|
259
|
-
console.warn('No authReturnUrl provided in URL parameters.');
|
|
278
|
+
console.warn('[Auth] No authReturnUrl provided in URL parameters.');
|
|
260
279
|
return;
|
|
261
280
|
}
|
|
262
281
|
|
|
@@ -307,7 +326,7 @@ export default function (Manager) {
|
|
|
307
326
|
if (error.code === 'auth/email-already-in-use') {
|
|
308
327
|
// Try to sign in with the same credentials
|
|
309
328
|
try {
|
|
310
|
-
console.log('Email already in use, attempting to sign in instead:', email);
|
|
329
|
+
console.log('[Auth] Email already in use, attempting to sign in instead:', email);
|
|
311
330
|
|
|
312
331
|
const userCredential = await attemptEmailSignIn(email, password);
|
|
313
332
|
|
|
@@ -336,7 +355,7 @@ export default function (Manager) {
|
|
|
336
355
|
const password = formData.password || '';
|
|
337
356
|
|
|
338
357
|
// Log
|
|
339
|
-
console.log('Attempting email sign-in for:', email);
|
|
358
|
+
console.log('[Auth] Attempting email sign-in for:', email);
|
|
340
359
|
|
|
341
360
|
// Sign in with email and password
|
|
342
361
|
const userCredential = await attemptEmailSignIn(email, password);
|
|
@@ -452,7 +471,7 @@ export default function (Manager) {
|
|
|
452
471
|
try {
|
|
453
472
|
// Try popup
|
|
454
473
|
const result = await signInWithPopup(auth, provider);
|
|
455
|
-
console.log('Successfully authenticated via popup:', result.user.email);
|
|
474
|
+
console.log('[Auth] Successfully authenticated via popup:', result.user.email);
|
|
456
475
|
|
|
457
476
|
// Track based on whether this is a new user
|
|
458
477
|
const isNewUser = result.additionalUserInfo?.isNewUser;
|
|
@@ -471,7 +490,7 @@ export default function (Manager) {
|
|
|
471
490
|
popupError.code === 'auth/popup-closed-by-user' ||
|
|
472
491
|
popupError.code === 'auth/cancelled-popup-request') {
|
|
473
492
|
|
|
474
|
-
console.log('Popup failed, falling back to redirect:', popupError.code);
|
|
493
|
+
console.log('[Auth] Popup failed, falling back to redirect:', popupError.code);
|
|
475
494
|
|
|
476
495
|
// Fallback to redirect
|
|
477
496
|
await signInWithRedirect(auth, provider);
|
|
@@ -484,7 +503,7 @@ export default function (Manager) {
|
|
|
484
503
|
}
|
|
485
504
|
} else {
|
|
486
505
|
// Use redirect by default
|
|
487
|
-
console.log('Using redirect for authentication');
|
|
506
|
+
console.log('[Auth] Using redirect for authentication');
|
|
488
507
|
await signInWithRedirect(auth, provider);
|
|
489
508
|
// Note: This will redirect the user away from the page
|
|
490
509
|
// The handleRedirectResult function will handle the result when they return
|
|
@@ -156,10 +156,11 @@ export class FormManager {
|
|
|
156
156
|
$autofocusField.focus();
|
|
157
157
|
|
|
158
158
|
// Move cursor to end of input if it has existing text
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
159
|
+
// Disabled because throws errors on some inputs (eg email)
|
|
160
|
+
// if (typeof $autofocusField.setSelectionRange === 'function') {
|
|
161
|
+
// const len = $autofocusField.value.length;
|
|
162
|
+
// $autofocusField.setSelectionRange(len, len);
|
|
163
|
+
// }
|
|
163
164
|
}
|
|
164
165
|
}
|
|
165
166
|
|
|
@@ -21,8 +21,11 @@ layout: themes/[ site.theme.id ]/frontend/core/cover
|
|
|
21
21
|
<p class="text-muted">Enter your email address and we'll send you a link to reset your password.</p>
|
|
22
22
|
</div>
|
|
23
23
|
|
|
24
|
+
<!-- Spinner -->
|
|
25
|
+
{% capture initializing_spinner %}<span class="spinner-border spinner-border-sm me-2 form-initializing-spinner"></span>{% endcapture %}
|
|
26
|
+
|
|
24
27
|
<!-- Reset Form -->
|
|
25
|
-
<form id="
|
|
28
|
+
<form id="auth-form" autocomplete="on" novalidate>
|
|
26
29
|
<div class="mb-4 text-start">
|
|
27
30
|
<label for="email" class="form-label fw-semibold">
|
|
28
31
|
Email <span class="text-danger">*</span>
|
|
@@ -31,6 +34,7 @@ layout: themes/[ site.theme.id ]/frontend/core/cover
|
|
|
31
34
|
</div>
|
|
32
35
|
|
|
33
36
|
<button type="submit" class="btn btn-success _btn-lg w-100 mb-4" data-provider="email" disabled>
|
|
37
|
+
{{ initializing_spinner }}
|
|
34
38
|
{% uj_icon "paper-plane", "me-2" %}
|
|
35
39
|
<span class="button-text">Send Reset Link</span>
|
|
36
40
|
</button>
|
|
@@ -36,8 +36,11 @@ social_signin:
|
|
|
36
36
|
<p class="text-muted">Sign in to your {{ site.brand.name }} account</p>
|
|
37
37
|
</div>
|
|
38
38
|
|
|
39
|
+
<!-- Spinner -->
|
|
40
|
+
{% capture initializing_spinner %}<span class="spinner-border spinner-border-sm me-2 form-initializing-spinner"></span>{% endcapture %}
|
|
41
|
+
|
|
39
42
|
<!-- Sign In Form -->
|
|
40
|
-
<form id="
|
|
43
|
+
<form id="auth-form" autocomplete="on" novalidate>
|
|
41
44
|
<!-- Hidden default submit button for Enter key -->
|
|
42
45
|
<button type="submit" class="d-none" data-provider="email" aria-hidden="true" tabindex="-1"></button>
|
|
43
46
|
|
|
@@ -45,6 +48,7 @@ social_signin:
|
|
|
45
48
|
<div class="mb-4">
|
|
46
49
|
{% for provider in page.resolved.social_signin %}
|
|
47
50
|
<button type="submit" class="btn btn-adaptive _btn-lg w-100 mb-3 d-flex align-items-center justify-content-center" data-provider="{{ provider.id }}" disabled>
|
|
51
|
+
{{ initializing_spinner }}
|
|
48
52
|
<span class="avatar avatar-xs me-2">
|
|
49
53
|
<img src="{{ provider.logo }}?cb={{ site.uj.cache_breaker }}" class="object-fit-contain" alt="{{ provider.name }} Logo"/>
|
|
50
54
|
</span>
|
|
@@ -82,6 +86,7 @@ social_signin:
|
|
|
82
86
|
</div>
|
|
83
87
|
|
|
84
88
|
<button type="submit" class="btn btn-success _btn-lg w-100 mb-3" data-provider="email" disabled>
|
|
89
|
+
{{ initializing_spinner }}
|
|
85
90
|
{% uj_icon "arrow-right-to-bracket", "me-2" %}
|
|
86
91
|
<span class="button-text">Sign In</span>
|
|
87
92
|
</button>
|
|
@@ -36,8 +36,11 @@ social_signup:
|
|
|
36
36
|
<p class="text-muted">Get started with {{ site.brand.name }} in seconds</p>
|
|
37
37
|
</div>
|
|
38
38
|
|
|
39
|
+
<!-- Spinner -->
|
|
40
|
+
{% capture initializing_spinner %}<span class="spinner-border spinner-border-sm me-2 form-initializing-spinner"></span>{% endcapture %}
|
|
41
|
+
|
|
39
42
|
<!-- Sign Up Form -->
|
|
40
|
-
<form id="
|
|
43
|
+
<form id="auth-form" autocomplete="on" novalidate>
|
|
41
44
|
<!-- Hidden default submit button for Enter key -->
|
|
42
45
|
<button type="submit" class="d-none" data-provider="email" aria-hidden="true" tabindex="-1"></button>
|
|
43
46
|
|
|
@@ -45,6 +48,7 @@ social_signup:
|
|
|
45
48
|
<div class="mb-4">
|
|
46
49
|
{% for provider in page.resolved.social_signup %}
|
|
47
50
|
<button type="submit" class="btn btn-adaptive _btn-lg w-100 mb-3 d-flex align-items-center justify-content-center" data-provider="{{ provider.id }}" disabled>
|
|
51
|
+
{{ initializing_spinner }}
|
|
48
52
|
<span class="avatar avatar-xs me-2">
|
|
49
53
|
<img src="{{ provider.logo }}?cb={{ site.uj.cache_breaker }}" class="object-fit-contain" alt="{{ provider.name }} Logo"/>
|
|
50
54
|
</span>
|
|
@@ -97,6 +101,7 @@ social_signup:
|
|
|
97
101
|
</div>
|
|
98
102
|
|
|
99
103
|
<button type="submit" class="btn btn-success _btn-lg w-100 mb-3" data-provider="email" disabled>
|
|
104
|
+
{{ initializing_spinner }}
|
|
100
105
|
{% uj_icon "user-plus", "me-2" %}
|
|
101
106
|
<span class="button-text">Create Account</span>
|
|
102
107
|
</button>
|
|
@@ -93,13 +93,27 @@ class GitHubCache {
|
|
|
93
93
|
const zip = new AdmZip(zipPath);
|
|
94
94
|
zip.extractAllTo(extractDir, true);
|
|
95
95
|
|
|
96
|
-
// Find extracted root folder
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
);
|
|
96
|
+
// Find extracted root folder - just look for the directory that was extracted
|
|
97
|
+
// GitHub zipball extracts to a single folder: {owner}-{repo}-{sha}
|
|
98
|
+
const dirContents = jetpack.list(extractDir);
|
|
99
|
+
const zipFileName = path.basename(zipPath);
|
|
100
|
+
|
|
101
|
+
this.logger.log(`📦 Zip file: ${zipFileName}`);
|
|
102
|
+
this.logger.log(`📂 Extract directory: ${extractDir}`);
|
|
103
|
+
this.logger.log(`📁 Directory contents: ${JSON.stringify(dirContents)}`);
|
|
104
|
+
|
|
105
|
+
const extractedRoot = dirContents.find(name => {
|
|
106
|
+
const fullPath = path.join(extractDir, name);
|
|
107
|
+
const isDir = jetpack.exists(fullPath) === 'dir';
|
|
108
|
+
const isNotZip = name !== zipFileName;
|
|
109
|
+
this.logger.log(` - ${name}: isDir=${isDir}, isNotZip=${isNotZip}`);
|
|
110
|
+
return isNotZip && isDir;
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
this.logger.log(`✅ Found extracted root: ${extractedRoot || 'NONE'}`);
|
|
100
114
|
|
|
101
115
|
if (!extractedRoot) {
|
|
102
|
-
throw new Error(
|
|
116
|
+
throw new Error(`Could not find extracted archive folder in: ${JSON.stringify(dirContents)}`);
|
|
103
117
|
}
|
|
104
118
|
|
|
105
119
|
const extractedFullPath = path.join(extractDir, extractedRoot);
|
package/firebase-debug.log
CHANGED
|
@@ -2144,3 +2144,255 @@
|
|
|
2144
2144
|
[debug] [2025-12-04T02:50:59.295Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2145
2145
|
[debug] [2025-12-04T02:50:59.296Z] > 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"]
|
|
2146
2146
|
[debug] [2025-12-04T02:50:59.296Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2147
|
+
[debug] [2025-12-04T03:58:41.251Z] > 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"]
|
|
2148
|
+
[debug] [2025-12-04T03:58:41.251Z] > 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"]
|
|
2149
|
+
[debug] [2025-12-04T03:58:41.253Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2150
|
+
[debug] [2025-12-04T03:58:41.253Z] > 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"]
|
|
2151
|
+
[debug] [2025-12-04T03:58:41.253Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2152
|
+
[debug] [2025-12-04T03:58:41.264Z] > 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"]
|
|
2153
|
+
[debug] [2025-12-04T03:58:41.265Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2154
|
+
[debug] [2025-12-04T03:58:41.254Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2155
|
+
[debug] [2025-12-04T03:58:41.254Z] > 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"]
|
|
2156
|
+
[debug] [2025-12-04T03:58:41.254Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2157
|
+
[debug] [2025-12-04T03:58:41.264Z] > 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"]
|
|
2158
|
+
[debug] [2025-12-04T03:58:41.265Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2159
|
+
[debug] [2025-12-04T03:58:41.317Z] > 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"]
|
|
2160
|
+
[debug] [2025-12-04T03:58:41.322Z] > 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"]
|
|
2161
|
+
[debug] [2025-12-04T03:58:41.317Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2162
|
+
[debug] [2025-12-04T03:58:41.319Z] > 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"]
|
|
2163
|
+
[debug] [2025-12-04T03:58:41.319Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2164
|
+
[debug] [2025-12-04T03:58:41.322Z] > 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"]
|
|
2165
|
+
[debug] [2025-12-04T03:58:41.322Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2166
|
+
[debug] [2025-12-04T03:58:41.322Z] > 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"]
|
|
2167
|
+
[debug] [2025-12-04T03:58:41.322Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2168
|
+
[debug] [2025-12-04T03:58:41.322Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2169
|
+
[debug] [2025-12-04T03:58: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"]
|
|
2170
|
+
[debug] [2025-12-04T03:58:41.323Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2171
|
+
[debug] [2025-12-04T03:58:41.325Z] > 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"]
|
|
2172
|
+
[debug] [2025-12-04T03:58:41.325Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2173
|
+
[debug] [2025-12-04T03:58:41.326Z] > 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"]
|
|
2174
|
+
[debug] [2025-12-04T03:58:41.326Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2175
|
+
[debug] [2025-12-04T06:19:47.937Z] > 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"]
|
|
2176
|
+
[debug] [2025-12-04T06:19:48.171Z] > 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"]
|
|
2177
|
+
[debug] [2025-12-04T06:19:47.941Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2178
|
+
[debug] [2025-12-04T06:19:47.941Z] > 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"]
|
|
2179
|
+
[debug] [2025-12-04T06:19:47.941Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2180
|
+
[debug] [2025-12-04T06:19:48.253Z] > 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"]
|
|
2181
|
+
[debug] [2025-12-04T06:19:48.253Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2182
|
+
[debug] [2025-12-04T06:19:48.391Z] > 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"]
|
|
2183
|
+
[debug] [2025-12-04T06:19:48.391Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2184
|
+
[debug] [2025-12-04T06:19:48.392Z] > 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"]
|
|
2185
|
+
[debug] [2025-12-04T06:19:48.393Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2186
|
+
[debug] [2025-12-04T06:19:48.400Z] > 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"]
|
|
2187
|
+
[debug] [2025-12-04T06:19:48.401Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2188
|
+
[debug] [2025-12-04T06:19:48.401Z] > 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"]
|
|
2189
|
+
[debug] [2025-12-04T06:19:48.401Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2190
|
+
[debug] [2025-12-04T06:19:48.181Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2191
|
+
[debug] [2025-12-04T06:19:48.181Z] > 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"]
|
|
2192
|
+
[debug] [2025-12-04T06:19:48.182Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2193
|
+
[debug] [2025-12-04T06:19:48.397Z] > 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"]
|
|
2194
|
+
[debug] [2025-12-04T06:19:48.420Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2195
|
+
[debug] [2025-12-04T06:19:48.639Z] > 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"]
|
|
2196
|
+
[debug] [2025-12-04T06:19:48.639Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2197
|
+
[debug] [2025-12-04T06:19:48.640Z] > 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"]
|
|
2198
|
+
[debug] [2025-12-04T06:19:48.640Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2199
|
+
[debug] [2025-12-04T06:19:48.642Z] > 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"]
|
|
2200
|
+
[debug] [2025-12-04T06:19:48.642Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2201
|
+
[debug] [2025-12-04T06:19:48.643Z] > 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"]
|
|
2202
|
+
[debug] [2025-12-04T06:19:48.643Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2203
|
+
[debug] [2025-12-04T06:19:48.792Z] > 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"]
|
|
2204
|
+
[debug] [2025-12-04T06:19:48.960Z] > 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"]
|
|
2205
|
+
[debug] [2025-12-04T06:19:49.020Z] > 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"]
|
|
2206
|
+
[debug] [2025-12-04T06:19:48.795Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2207
|
+
[debug] [2025-12-04T06:19:48.795Z] > 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"]
|
|
2208
|
+
[debug] [2025-12-04T06:19:48.796Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2209
|
+
[debug] [2025-12-04T06:19:49.042Z] > 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"]
|
|
2210
|
+
[debug] [2025-12-04T06:19:49.042Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2211
|
+
[debug] [2025-12-04T06:19:48.963Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2212
|
+
[debug] [2025-12-04T06:19:48.963Z] > 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"]
|
|
2213
|
+
[debug] [2025-12-04T06:19:48.964Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2214
|
+
[debug] [2025-12-04T06:19:49.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"]
|
|
2215
|
+
[debug] [2025-12-04T06:19:49.047Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2216
|
+
[debug] [2025-12-04T06:19:49.024Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2217
|
+
[debug] [2025-12-04T06:19:49.024Z] > 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"]
|
|
2218
|
+
[debug] [2025-12-04T06:19:49.024Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2219
|
+
[debug] [2025-12-04T06:19:49.103Z] > 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"]
|
|
2220
|
+
[debug] [2025-12-04T06:19:49.104Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2221
|
+
[debug] [2025-12-04T06:19:49.138Z] > 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"]
|
|
2222
|
+
[debug] [2025-12-04T06:19:49.142Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2223
|
+
[debug] [2025-12-04T06:19:49.144Z] > 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"]
|
|
2224
|
+
[debug] [2025-12-04T06:19:49.144Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2225
|
+
[debug] [2025-12-04T06:19:49.147Z] > 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"]
|
|
2226
|
+
[debug] [2025-12-04T06:19:49.149Z] > 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"]
|
|
2227
|
+
[debug] [2025-12-04T06:19:49.147Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2228
|
+
[debug] [2025-12-04T06:19:49.148Z] > 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"]
|
|
2229
|
+
[debug] [2025-12-04T06:19:49.149Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2230
|
+
[debug] [2025-12-04T06:19:49.152Z] > 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"]
|
|
2231
|
+
[debug] [2025-12-04T06:19:49.152Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2232
|
+
[debug] [2025-12-04T06:19:49.152Z] > 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"]
|
|
2233
|
+
[debug] [2025-12-04T06:19:49.153Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2234
|
+
[debug] [2025-12-04T06:19:49.149Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2235
|
+
[debug] [2025-12-04T06:19:49.149Z] > 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"]
|
|
2236
|
+
[debug] [2025-12-04T06:19:49.150Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2237
|
+
[debug] [2025-12-04T06:19:49.364Z] > 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"]
|
|
2238
|
+
[debug] [2025-12-04T06:19:49.364Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2239
|
+
[debug] [2025-12-04T06:19:49.368Z] > 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"]
|
|
2240
|
+
[debug] [2025-12-04T06:19:49.369Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2241
|
+
[debug] [2025-12-04T06:19:49.372Z] > 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"]
|
|
2242
|
+
[debug] [2025-12-04T06:19:49.373Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2243
|
+
[debug] [2025-12-04T06:19:49.373Z] > 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"]
|
|
2244
|
+
[debug] [2025-12-04T06:19:49.373Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2245
|
+
[debug] [2025-12-04T07:44:48.132Z] > 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"]
|
|
2246
|
+
[debug] [2025-12-04T07:44:48.132Z] > 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"]
|
|
2247
|
+
[debug] [2025-12-04T07:44:48.134Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2248
|
+
[debug] [2025-12-04T07:44:48.134Z] > 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"]
|
|
2249
|
+
[debug] [2025-12-04T07:44:48.134Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2250
|
+
[debug] [2025-12-04T07:44:48.143Z] > 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"]
|
|
2251
|
+
[debug] [2025-12-04T07:44:48.143Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2252
|
+
[debug] [2025-12-04T07:44:48.134Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2253
|
+
[debug] [2025-12-04T07:44:48.134Z] > 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"]
|
|
2254
|
+
[debug] [2025-12-04T07:44:48.135Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2255
|
+
[debug] [2025-12-04T07:44:48.143Z] > 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"]
|
|
2256
|
+
[debug] [2025-12-04T07:44:48.143Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2257
|
+
[debug] [2025-12-04T07:44:48.200Z] > 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"]
|
|
2258
|
+
[debug] [2025-12-04T07:44:48.202Z] > 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"]
|
|
2259
|
+
[debug] [2025-12-04T07:44:48.200Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2260
|
+
[debug] [2025-12-04T07:44:48.201Z] > 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"]
|
|
2261
|
+
[debug] [2025-12-04T07:44:48.201Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2262
|
+
[debug] [2025-12-04T07:44:48.202Z] > 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"]
|
|
2263
|
+
[debug] [2025-12-04T07:44:48.202Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2264
|
+
[debug] [2025-12-04T07:44:48.203Z] > 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"]
|
|
2265
|
+
[debug] [2025-12-04T07:44:48.203Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2266
|
+
[debug] [2025-12-04T07:44:48.203Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2267
|
+
[debug] [2025-12-04T07:44:48.203Z] > 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"]
|
|
2268
|
+
[debug] [2025-12-04T07:44:48.203Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2269
|
+
[debug] [2025-12-04T07:44:48.205Z] > 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"]
|
|
2270
|
+
[debug] [2025-12-04T07:44:48.205Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2271
|
+
[debug] [2025-12-04T07:44:48.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"]
|
|
2272
|
+
[debug] [2025-12-04T07:44:48.206Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2273
|
+
[debug] [2025-12-04T07:44:48.413Z] > 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"]
|
|
2274
|
+
[debug] [2025-12-04T07:44:48.415Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2275
|
+
[debug] [2025-12-04T07:44:48.416Z] > 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"]
|
|
2276
|
+
[debug] [2025-12-04T07:44:48.416Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2277
|
+
[debug] [2025-12-04T07:44:48.423Z] > 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"]
|
|
2278
|
+
[debug] [2025-12-04T07:44:48.424Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2279
|
+
[debug] [2025-12-04T07:44:48.476Z] > 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"]
|
|
2280
|
+
[debug] [2025-12-04T07:44:48.476Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2281
|
+
[debug] [2025-12-04T07:44:48.477Z] > 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"]
|
|
2282
|
+
[debug] [2025-12-04T07:44:48.477Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2283
|
+
[debug] [2025-12-04T07:44:48.479Z] > 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"]
|
|
2284
|
+
[debug] [2025-12-04T07:44:48.479Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2285
|
+
[debug] [2025-12-04T07:44:48.479Z] > 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"]
|
|
2286
|
+
[debug] [2025-12-04T07:44:48.479Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2287
|
+
[debug] [2025-12-04T07:44:48.499Z] > 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"]
|
|
2288
|
+
[debug] [2025-12-04T07:44:48.501Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2289
|
+
[debug] [2025-12-04T07:44:48.502Z] > 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"]
|
|
2290
|
+
[debug] [2025-12-04T07:44:48.502Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2291
|
+
[debug] [2025-12-04T07:44:48.515Z] > 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"]
|
|
2292
|
+
[debug] [2025-12-04T07:44:48.515Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2293
|
+
[debug] [2025-12-04T07:44:48.559Z] > 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"]
|
|
2294
|
+
[debug] [2025-12-04T07:44:48.559Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2295
|
+
[debug] [2025-12-04T07:44:48.560Z] > 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"]
|
|
2296
|
+
[debug] [2025-12-04T07:44:48.561Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2297
|
+
[debug] [2025-12-04T07:44:48.562Z] > 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"]
|
|
2298
|
+
[debug] [2025-12-04T07:44:48.562Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2299
|
+
[debug] [2025-12-04T07:44:48.563Z] > 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"]
|
|
2300
|
+
[debug] [2025-12-04T07:44:48.563Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2301
|
+
[debug] [2025-12-04T07:44:56.159Z] > 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"]
|
|
2302
|
+
[debug] [2025-12-04T07:44:56.161Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2303
|
+
[debug] [2025-12-04T07:44:56.161Z] > 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"]
|
|
2304
|
+
[debug] [2025-12-04T07:44:56.162Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2305
|
+
[debug] [2025-12-04T07:44:56.173Z] > 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"]
|
|
2306
|
+
[debug] [2025-12-04T07:44:56.173Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2307
|
+
[debug] [2025-12-04T07:44:56.233Z] > 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"]
|
|
2308
|
+
[debug] [2025-12-04T07:44:56.233Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2309
|
+
[debug] [2025-12-04T07:44:56.234Z] > 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"]
|
|
2310
|
+
[debug] [2025-12-04T07:44:56.234Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2311
|
+
[debug] [2025-12-04T07:44:56.236Z] > 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"]
|
|
2312
|
+
[debug] [2025-12-04T07:44:56.236Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2313
|
+
[debug] [2025-12-04T07:44:56.236Z] > 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"]
|
|
2314
|
+
[debug] [2025-12-04T07:44:56.237Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2315
|
+
[debug] [2025-12-04T07:44:56.466Z] > 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"]
|
|
2316
|
+
[debug] [2025-12-04T07:44:56.468Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2317
|
+
[debug] [2025-12-04T07:44:56.468Z] > 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"]
|
|
2318
|
+
[debug] [2025-12-04T07:44:56.468Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2319
|
+
[debug] [2025-12-04T07:44:56.479Z] > 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"]
|
|
2320
|
+
[debug] [2025-12-04T07:44:56.480Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2321
|
+
[debug] [2025-12-04T07:44:56.573Z] > 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"]
|
|
2322
|
+
[debug] [2025-12-04T07:44:56.574Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2323
|
+
[debug] [2025-12-04T07:44:56.576Z] > 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"]
|
|
2324
|
+
[debug] [2025-12-04T07:44:56.576Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2325
|
+
[debug] [2025-12-04T07:44:56.577Z] > 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"]
|
|
2326
|
+
[debug] [2025-12-04T07:44:56.577Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2327
|
+
[debug] [2025-12-04T07:44:56.578Z] > 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"]
|
|
2328
|
+
[debug] [2025-12-04T07:44:56.578Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2329
|
+
[debug] [2025-12-04T08:01:55.055Z] > 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"]
|
|
2330
|
+
[debug] [2025-12-04T08:01:55.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"]
|
|
2331
|
+
[debug] [2025-12-04T08:01:55.058Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2332
|
+
[debug] [2025-12-04T08:01:55.058Z] > 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"]
|
|
2333
|
+
[debug] [2025-12-04T08:01:55.058Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2334
|
+
[debug] [2025-12-04T08:01:55.066Z] > 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"]
|
|
2335
|
+
[debug] [2025-12-04T08:01:55.067Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2336
|
+
[debug] [2025-12-04T08:01:55.058Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2337
|
+
[debug] [2025-12-04T08:01:55.058Z] > 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"]
|
|
2338
|
+
[debug] [2025-12-04T08:01:55.058Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2339
|
+
[debug] [2025-12-04T08:01:55.067Z] > 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"]
|
|
2340
|
+
[debug] [2025-12-04T08:01:55.067Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2341
|
+
[debug] [2025-12-04T08:01:55.119Z] > 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"]
|
|
2342
|
+
[debug] [2025-12-04T08:01:55.119Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2343
|
+
[debug] [2025-12-04T08:01:55.120Z] > 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"]
|
|
2344
|
+
[debug] [2025-12-04T08:01:55.120Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2345
|
+
[debug] [2025-12-04T08:01:55.121Z] > 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"]
|
|
2346
|
+
[debug] [2025-12-04T08:01:55.122Z] > 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"]
|
|
2347
|
+
[debug] [2025-12-04T08:01:55.122Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2348
|
+
[debug] [2025-12-04T08:01:55.123Z] > 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"]
|
|
2349
|
+
[debug] [2025-12-04T08:01:55.123Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2350
|
+
[debug] [2025-12-04T08:01:55.122Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2351
|
+
[debug] [2025-12-04T08:01:55.122Z] > 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"]
|
|
2352
|
+
[debug] [2025-12-04T08:01:55.123Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2353
|
+
[debug] [2025-12-04T08:01:55.124Z] > 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"]
|
|
2354
|
+
[debug] [2025-12-04T08:01:55.124Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2355
|
+
[debug] [2025-12-04T08:01:55.125Z] > 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"]
|
|
2356
|
+
[debug] [2025-12-04T08:01:55.125Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2357
|
+
[debug] [2025-12-04T08:02:13.028Z] > 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"]
|
|
2358
|
+
[debug] [2025-12-04T08:02:13.029Z] > 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"]
|
|
2359
|
+
[debug] [2025-12-04T08:02:13.030Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2360
|
+
[debug] [2025-12-04T08:02:13.030Z] > 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"]
|
|
2361
|
+
[debug] [2025-12-04T08:02:13.030Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2362
|
+
[debug] [2025-12-04T08:02:13.039Z] > 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"]
|
|
2363
|
+
[debug] [2025-12-04T08:02:13.039Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2364
|
+
[debug] [2025-12-04T08:02:13.030Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2365
|
+
[debug] [2025-12-04T08:02:13.030Z] > 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"]
|
|
2366
|
+
[debug] [2025-12-04T08:02:13.031Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2367
|
+
[debug] [2025-12-04T08:02:13.039Z] > 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"]
|
|
2368
|
+
[debug] [2025-12-04T08:02:13.039Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2369
|
+
[debug] [2025-12-04T08:02:13.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"]
|
|
2370
|
+
[debug] [2025-12-04T08:02:13.087Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2371
|
+
[debug] [2025-12-04T08:02:13.088Z] > 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"]
|
|
2372
|
+
[debug] [2025-12-04T08:02:13.088Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2373
|
+
[debug] [2025-12-04T08:02:13.089Z] > 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"]
|
|
2374
|
+
[debug] [2025-12-04T08:02:13.090Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2375
|
+
[debug] [2025-12-04T08:02:13.090Z] > 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"]
|
|
2376
|
+
[debug] [2025-12-04T08:02:13.090Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2377
|
+
[debug] [2025-12-04T08:02:13.091Z] > 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"]
|
|
2378
|
+
[debug] [2025-12-04T08:02:13.091Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2379
|
+
[debug] [2025-12-04T08:02:13.092Z] > 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"]
|
|
2380
|
+
[debug] [2025-12-04T08:02:13.092Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2381
|
+
[debug] [2025-12-04T08:02:13.094Z] > 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"]
|
|
2382
|
+
[debug] [2025-12-04T08:02:13.094Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2383
|
+
[debug] [2025-12-04T08:02:13.094Z] > 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"]
|
|
2384
|
+
[debug] [2025-12-04T08:02:13.094Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2385
|
+
[debug] [2025-12-04T08:02:22.504Z] > 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"]
|
|
2386
|
+
[debug] [2025-12-04T08:02:22.506Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2387
|
+
[debug] [2025-12-04T08:02:22.506Z] > 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"]
|
|
2388
|
+
[debug] [2025-12-04T08:02:22.506Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2389
|
+
[debug] [2025-12-04T08:02:22.515Z] > 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"]
|
|
2390
|
+
[debug] [2025-12-04T08:02:22.516Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2391
|
+
[debug] [2025-12-04T08:02:22.582Z] > 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"]
|
|
2392
|
+
[debug] [2025-12-04T08:02:22.583Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2393
|
+
[debug] [2025-12-04T08:02:22.584Z] > 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"]
|
|
2394
|
+
[debug] [2025-12-04T08:02:22.584Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2395
|
+
[debug] [2025-12-04T08:02:22.587Z] > 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"]
|
|
2396
|
+
[debug] [2025-12-04T08:02:22.587Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2397
|
+
[debug] [2025-12-04T08:02:22.588Z] > 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"]
|
|
2398
|
+
[debug] [2025-12-04T08:02:22.588Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|