web-manager 4.0.28 → 4.0.30
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 +16 -0
- package/dist/index.js +10 -2
- package/dist/modules/notifications.js +6 -37
- package/firebase-debug.log +140 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,22 @@ 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.29] - 2025-12-02
|
|
19
|
+
### Fixed
|
|
20
|
+
- Fixed notification subscription storing to incorrect Firestore path (`users/{uid}/notifications/{token}` → `notifications/{token}`).
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- Refactored `_saveSubscription` to use internal Firestore wrapper instead of direct Firebase imports.
|
|
24
|
+
|
|
25
|
+
## [4.0.28] - 2025-12-01
|
|
26
|
+
### Added
|
|
27
|
+
- Added `exports` field to package.json for explicit module resolution support.
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
- Updated `@sentry/browser` from pinned `10.11.0` to `^10.27.0`.
|
|
31
|
+
- Updated `firebase` from `^12.3.0` to `^12.6.0`.
|
|
32
|
+
- Updated `prepare-package` dev dependency from `^1.2.2` to `^1.2.5`.
|
|
33
|
+
|
|
18
34
|
## [4.0.0] - 2025-09-11
|
|
19
35
|
### ⚠️ BREAKING
|
|
20
36
|
- Updated to ITW 3.0 standard.
|
package/dist/index.js
CHANGED
|
@@ -486,6 +486,11 @@ class Manager {
|
|
|
486
486
|
|
|
487
487
|
async _checkVersion() {
|
|
488
488
|
if (this.isDevelopment()) {
|
|
489
|
+
/* @dev-only:start */
|
|
490
|
+
{
|
|
491
|
+
console.log('[Version] Skipping version check in development mode');
|
|
492
|
+
}
|
|
493
|
+
/* @dev-only:end */
|
|
489
494
|
return;
|
|
490
495
|
}
|
|
491
496
|
|
|
@@ -526,12 +531,15 @@ class Manager {
|
|
|
526
531
|
// Add 1 hour to current build time to account for npm build process
|
|
527
532
|
buildTimeCurrent.setHours(buildTimeCurrent.getHours() + 1);
|
|
528
533
|
|
|
534
|
+
// Log version info
|
|
535
|
+
console.log(`[Version] Current build time: ${buildTimeCurrent.toISOString()}, Live build time: ${buildTimeLive.toISOString()}`);
|
|
536
|
+
|
|
529
537
|
// If live version is newer, reload the page
|
|
530
538
|
if (buildTimeCurrent >= buildTimeLive) {
|
|
531
539
|
return; // No update needed
|
|
532
540
|
}
|
|
533
541
|
|
|
534
|
-
console.log('New version detected, reloading page...');
|
|
542
|
+
console.log('[Version] New version detected, reloading page...');
|
|
535
543
|
|
|
536
544
|
// Force page reload
|
|
537
545
|
window.onbeforeunload = function () {
|
|
@@ -540,7 +548,7 @@ class Manager {
|
|
|
540
548
|
|
|
541
549
|
window.location.reload(true);
|
|
542
550
|
} catch (error) {
|
|
543
|
-
console.warn('Version check
|
|
551
|
+
console.warn('[Version] Failed version check:', error);
|
|
544
552
|
}
|
|
545
553
|
}
|
|
546
554
|
}
|
|
@@ -254,14 +254,13 @@ class Notifications {
|
|
|
254
254
|
// Save subscription to Firestore
|
|
255
255
|
async _saveSubscription(token) {
|
|
256
256
|
try {
|
|
257
|
-
const firestore = this.manager.
|
|
257
|
+
const firestore = this.manager.firestore();
|
|
258
258
|
const user = this.manager.auth().getUser();
|
|
259
259
|
|
|
260
|
-
if (!
|
|
260
|
+
if (!token) {
|
|
261
261
|
return;
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
-
const { doc, getDoc, setDoc, updateDoc, deleteDoc } = await import('firebase/firestore');
|
|
265
264
|
const { getContext } = await import('./utilities.js');
|
|
266
265
|
|
|
267
266
|
const now = new Date();
|
|
@@ -273,10 +272,10 @@ class Notifications {
|
|
|
273
272
|
const clientData = context.client;
|
|
274
273
|
|
|
275
274
|
// Reference to the notification document (ID is the token)
|
|
276
|
-
const
|
|
275
|
+
const notificationDoc = firestore.doc(`notifications/${token}`);
|
|
277
276
|
|
|
278
277
|
// Check if document already exists
|
|
279
|
-
const existingDoc = await
|
|
278
|
+
const existingDoc = await notificationDoc.get();
|
|
280
279
|
const existingData = existingDoc.exists() ? existingDoc.data() : null;
|
|
281
280
|
|
|
282
281
|
// Determine if we need to update
|
|
@@ -303,7 +302,7 @@ class Notifications {
|
|
|
303
302
|
uid: currentUid
|
|
304
303
|
};
|
|
305
304
|
|
|
306
|
-
await
|
|
305
|
+
await notificationDoc.set(subscriptionData);
|
|
307
306
|
|
|
308
307
|
} else if (needsUpdate) {
|
|
309
308
|
// Existing subscription needs update (userId changed)
|
|
@@ -318,40 +317,10 @@ class Notifications {
|
|
|
318
317
|
uid: currentUid
|
|
319
318
|
};
|
|
320
319
|
|
|
321
|
-
await
|
|
320
|
+
await notificationDoc.update(updateData);
|
|
322
321
|
}
|
|
323
322
|
// If no update needed, do nothing
|
|
324
323
|
|
|
325
|
-
// Update user's notification reference if authenticated
|
|
326
|
-
if (user && (!existingData || needsUpdate)) {
|
|
327
|
-
await setDoc(
|
|
328
|
-
doc(firestore, 'users', user.uid, 'notifications', token),
|
|
329
|
-
{
|
|
330
|
-
token,
|
|
331
|
-
created: existingData?.created || {
|
|
332
|
-
timestamp,
|
|
333
|
-
timestampUNIX
|
|
334
|
-
},
|
|
335
|
-
updated: {
|
|
336
|
-
timestamp,
|
|
337
|
-
timestampUNIX
|
|
338
|
-
},
|
|
339
|
-
active: true
|
|
340
|
-
},
|
|
341
|
-
{ merge: true }
|
|
342
|
-
);
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
// Remove old user reference if user changed
|
|
346
|
-
if (existingUid && existingUid !== currentUid && existingUid !== null) {
|
|
347
|
-
try {
|
|
348
|
-
await deleteDoc(doc(firestore, 'users', existingUid, 'notifications', token));
|
|
349
|
-
} catch (err) {
|
|
350
|
-
// Ignore errors when cleaning up old references
|
|
351
|
-
console.log('Could not clean up old user notification reference:', err.message);
|
|
352
|
-
}
|
|
353
|
-
}
|
|
354
|
-
|
|
355
324
|
} catch (error) {
|
|
356
325
|
console.error('Save subscription error:', error);
|
|
357
326
|
// Don't throw - this is not critical for the subscription process
|
package/firebase-debug.log
CHANGED
|
@@ -182,3 +182,143 @@
|
|
|
182
182
|
[debug] [2025-12-02T03:40:02.199Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
183
183
|
[debug] [2025-12-02T03:40:02.199Z] > 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"]
|
|
184
184
|
[debug] [2025-12-02T03:40:02.200Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
185
|
+
[debug] [2025-12-02T09:42:31.673Z] > 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"]
|
|
186
|
+
[debug] [2025-12-02T09:42:31.674Z] > 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"]
|
|
187
|
+
[debug] [2025-12-02T09:42:31.676Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
188
|
+
[debug] [2025-12-02T09:42:31.676Z] > 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"]
|
|
189
|
+
[debug] [2025-12-02T09:42:31.676Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
190
|
+
[debug] [2025-12-02T09:42:31.688Z] > 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"]
|
|
191
|
+
[debug] [2025-12-02T09:42:31.688Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
192
|
+
[debug] [2025-12-02T09:42:31.676Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
193
|
+
[debug] [2025-12-02T09:42:31.676Z] > 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"]
|
|
194
|
+
[debug] [2025-12-02T09:42:31.676Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
195
|
+
[debug] [2025-12-02T09:42:31.688Z] > 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"]
|
|
196
|
+
[debug] [2025-12-02T09:42:31.688Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
197
|
+
[debug] [2025-12-02T09:42:31.699Z] > 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"]
|
|
198
|
+
[debug] [2025-12-02T09:42:31.700Z] > 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"]
|
|
199
|
+
[debug] [2025-12-02T09:42:31.699Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
200
|
+
[debug] [2025-12-02T09:42:31.700Z] > 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"]
|
|
201
|
+
[debug] [2025-12-02T09:42:31.700Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
202
|
+
[debug] [2025-12-02T09:42:31.702Z] > 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"]
|
|
203
|
+
[debug] [2025-12-02T09:42:31.702Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
204
|
+
[debug] [2025-12-02T09:42:31.702Z] > 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"]
|
|
205
|
+
[debug] [2025-12-02T09:42:31.703Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
206
|
+
[debug] [2025-12-02T09:42:31.700Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
207
|
+
[debug] [2025-12-02T09:42:31.701Z] > 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"]
|
|
208
|
+
[debug] [2025-12-02T09:42:31.701Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
209
|
+
[debug] [2025-12-02T09:42:31.702Z] > 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"]
|
|
210
|
+
[debug] [2025-12-02T09:42:31.702Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
211
|
+
[debug] [2025-12-02T09:42:31.703Z] > 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"]
|
|
212
|
+
[debug] [2025-12-02T09:42:31.703Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
213
|
+
[debug] [2025-12-02T09:43:57.774Z] > 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"]
|
|
214
|
+
[debug] [2025-12-02T09:43:57.775Z] > 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"]
|
|
215
|
+
[debug] [2025-12-02T09:43:57.777Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
216
|
+
[debug] [2025-12-02T09:43:57.777Z] > 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"]
|
|
217
|
+
[debug] [2025-12-02T09:43:57.777Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
218
|
+
[debug] [2025-12-02T09:43:57.790Z] > 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"]
|
|
219
|
+
[debug] [2025-12-02T09:43:57.791Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
220
|
+
[debug] [2025-12-02T09:43:57.777Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
221
|
+
[debug] [2025-12-02T09:43:57.777Z] > 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"]
|
|
222
|
+
[debug] [2025-12-02T09:43:57.777Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
223
|
+
[debug] [2025-12-02T09:43:57.791Z] > 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"]
|
|
224
|
+
[debug] [2025-12-02T09:43:57.792Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
225
|
+
[debug] [2025-12-02T09:43:57.802Z] > 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"]
|
|
226
|
+
[debug] [2025-12-02T09:43:57.803Z] > 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"]
|
|
227
|
+
[debug] [2025-12-02T09:43:57.803Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
228
|
+
[debug] [2025-12-02T09:43:57.803Z] > 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"]
|
|
229
|
+
[debug] [2025-12-02T09:43:57.803Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
230
|
+
[debug] [2025-12-02T09:43: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"]
|
|
231
|
+
[debug] [2025-12-02T09:43:57.805Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
232
|
+
[debug] [2025-12-02T09:43: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"]
|
|
233
|
+
[debug] [2025-12-02T09:43:57.805Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
234
|
+
[debug] [2025-12-02T09:43:57.804Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
235
|
+
[debug] [2025-12-02T09:43:57.804Z] > 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"]
|
|
236
|
+
[debug] [2025-12-02T09:43:57.804Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
237
|
+
[debug] [2025-12-02T09:43:57.806Z] > 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"]
|
|
238
|
+
[debug] [2025-12-02T09:43:57.806Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
239
|
+
[debug] [2025-12-02T09:43:57.806Z] > 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"]
|
|
240
|
+
[debug] [2025-12-02T09:43:57.807Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
241
|
+
[debug] [2025-12-02T09:47:00.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"]
|
|
242
|
+
[debug] [2025-12-02T09:47:00.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"]
|
|
243
|
+
[debug] [2025-12-02T09:47:00.943Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
244
|
+
[debug] [2025-12-02T09:47:00.943Z] > 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"]
|
|
245
|
+
[debug] [2025-12-02T09:47:00.943Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
246
|
+
[debug] [2025-12-02T09:47:00.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"]
|
|
247
|
+
[debug] [2025-12-02T09:47:00.960Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
248
|
+
[debug] [2025-12-02T09:47:00.944Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
249
|
+
[debug] [2025-12-02T09:47:00.944Z] > 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"]
|
|
250
|
+
[debug] [2025-12-02T09:47:00.944Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
251
|
+
[debug] [2025-12-02T09:47:00.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"]
|
|
252
|
+
[debug] [2025-12-02T09:47:00.961Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
253
|
+
[debug] [2025-12-02T09:47:00.972Z] > 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"]
|
|
254
|
+
[debug] [2025-12-02T09:47:00.973Z] > 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"]
|
|
255
|
+
[debug] [2025-12-02T09:47:00.973Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
256
|
+
[debug] [2025-12-02T09:47:00.973Z] > 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"]
|
|
257
|
+
[debug] [2025-12-02T09:47:00.974Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
258
|
+
[debug] [2025-12-02T09:47:00.975Z] > 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"]
|
|
259
|
+
[debug] [2025-12-02T09:47:00.975Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
260
|
+
[debug] [2025-12-02T09:47:00.975Z] > 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"]
|
|
261
|
+
[debug] [2025-12-02T09:47:00.976Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
262
|
+
[debug] [2025-12-02T09:47:00.973Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
263
|
+
[debug] [2025-12-02T09:47:00.974Z] > 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"]
|
|
264
|
+
[debug] [2025-12-02T09:47:00.974Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
265
|
+
[debug] [2025-12-02T09:47:00.976Z] > 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"]
|
|
266
|
+
[debug] [2025-12-02T09:47:00.976Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
267
|
+
[debug] [2025-12-02T09:47:00.977Z] > 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"]
|
|
268
|
+
[debug] [2025-12-02T09:47:00.977Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
269
|
+
[debug] [2025-12-02T11:00:24.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"]
|
|
270
|
+
[debug] [2025-12-02T11:00:24.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"]
|
|
271
|
+
[debug] [2025-12-02T11:00:24.208Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
272
|
+
[debug] [2025-12-02T11:00:24.208Z] > 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"]
|
|
273
|
+
[debug] [2025-12-02T11:00:24.208Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
274
|
+
[debug] [2025-12-02T11:00:24.216Z] > 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"]
|
|
275
|
+
[debug] [2025-12-02T11:00:24.217Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
276
|
+
[debug] [2025-12-02T11:00:24.208Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
277
|
+
[debug] [2025-12-02T11:00:24.208Z] > 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"]
|
|
278
|
+
[debug] [2025-12-02T11:00:24.208Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
279
|
+
[debug] [2025-12-02T11:00:24.220Z] > 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"]
|
|
280
|
+
[debug] [2025-12-02T11:00:24.221Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
281
|
+
[debug] [2025-12-02T11:00:24.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"]
|
|
282
|
+
[debug] [2025-12-02T11:00:24.234Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
283
|
+
[debug] [2025-12-02T11:00:24.235Z] > 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"]
|
|
284
|
+
[debug] [2025-12-02T11:00:24.235Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
285
|
+
[debug] [2025-12-02T11:00:24.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"]
|
|
286
|
+
[debug] [2025-12-02T11:00:24.237Z] > 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"]
|
|
287
|
+
[debug] [2025-12-02T11:00:24.237Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
288
|
+
[debug] [2025-12-02T11:00:24.237Z] > 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"]
|
|
289
|
+
[debug] [2025-12-02T11:00:24.237Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
290
|
+
[debug] [2025-12-02T11:00:24.236Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
291
|
+
[debug] [2025-12-02T11:00:24.237Z] > 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"]
|
|
292
|
+
[debug] [2025-12-02T11:00:24.237Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
293
|
+
[debug] [2025-12-02T11:00:24.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"]
|
|
294
|
+
[debug] [2025-12-02T11:00:24.238Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
295
|
+
[debug] [2025-12-02T11:00:24.239Z] > 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"]
|
|
296
|
+
[debug] [2025-12-02T11:00:24.239Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
297
|
+
[debug] [2025-12-02T21:13:04.552Z] > 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"]
|
|
298
|
+
[debug] [2025-12-02T21:13:04.553Z] > 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"]
|
|
299
|
+
[debug] [2025-12-02T21:13:04.554Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
300
|
+
[debug] [2025-12-02T21:13:04.555Z] > 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"]
|
|
301
|
+
[debug] [2025-12-02T21:13:04.555Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
302
|
+
[debug] [2025-12-02T21:13:04.567Z] > 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"]
|
|
303
|
+
[debug] [2025-12-02T21:13:04.568Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
304
|
+
[debug] [2025-12-02T21:13:04.555Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
305
|
+
[debug] [2025-12-02T21:13:04.556Z] > 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"]
|
|
306
|
+
[debug] [2025-12-02T21:13:04.556Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
307
|
+
[debug] [2025-12-02T21:13:04.569Z] > 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"]
|
|
308
|
+
[debug] [2025-12-02T21:13:04.569Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
309
|
+
[debug] [2025-12-02T21:13:04.580Z] > 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"]
|
|
310
|
+
[debug] [2025-12-02T21:13:04.581Z] > 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"]
|
|
311
|
+
[debug] [2025-12-02T21:13:04.580Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
312
|
+
[debug] [2025-12-02T21:13:04.581Z] > 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"]
|
|
313
|
+
[debug] [2025-12-02T21:13:04.581Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
314
|
+
[debug] [2025-12-02T21:13:04.583Z] > 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"]
|
|
315
|
+
[debug] [2025-12-02T21:13:04.583Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
316
|
+
[debug] [2025-12-02T21:13:04.583Z] > 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"]
|
|
317
|
+
[debug] [2025-12-02T21:13:04.583Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
318
|
+
[debug] [2025-12-02T21:13:04.582Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
319
|
+
[debug] [2025-12-02T21:13:04.583Z] > 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"]
|
|
320
|
+
[debug] [2025-12-02T21:13:04.583Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
321
|
+
[debug] [2025-12-02T21:13:04.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"]
|
|
322
|
+
[debug] [2025-12-02T21:13:04.584Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
323
|
+
[debug] [2025-12-02T21:13:04.585Z] > 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"]
|
|
324
|
+
[debug] [2025-12-02T21:13:04.585Z] > 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.30",
|
|
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",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"replace": {}
|
|
40
40
|
},
|
|
41
41
|
"notes": {
|
|
42
|
-
"@sentry/browser": "
|
|
42
|
+
"@sentry/browser": "Resolved by using OVERRIDES in web-manager (lighthouse is the issue"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@sentry/browser": "^10.27.0",
|