web-manager 4.0.27 → 4.0.29
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 +9 -0
- package/dist/modules/notifications.js +6 -37
- package/firebase-debug.log +140 -0
- package/package.json +9 -4
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,15 @@ 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.28] - 2025-12-01
|
|
19
|
+
### Added
|
|
20
|
+
- Added `exports` field to package.json for explicit module resolution support.
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- Updated `@sentry/browser` from pinned `10.11.0` to `^10.27.0`.
|
|
24
|
+
- Updated `firebase` from `^12.3.0` to `^12.6.0`.
|
|
25
|
+
- Updated `prepare-package` dev dependency from `^1.2.2` to `^1.2.5`.
|
|
26
|
+
|
|
18
27
|
## [4.0.0] - 2025-09-11
|
|
19
28
|
### ⚠️ BREAKING
|
|
20
29
|
- Updated to ITW 3.0 standard.
|
|
@@ -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
|
@@ -126,3 +126,143 @@
|
|
|
126
126
|
[debug] [2025-11-19T20:05:55.139Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
127
127
|
[debug] [2025-11-19T20:05:55.140Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
128
128
|
[debug] [2025-11-19T20:05:55.140Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
129
|
+
[debug] [2025-12-02T02:13:10.769Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
130
|
+
[debug] [2025-12-02T02:13:10.769Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
131
|
+
[debug] [2025-12-02T02:13:10.771Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
132
|
+
[debug] [2025-12-02T02:13:10.771Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
133
|
+
[debug] [2025-12-02T02:13:10.771Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
134
|
+
[debug] [2025-12-02T02:13:10.784Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
135
|
+
[debug] [2025-12-02T02:13:10.784Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
136
|
+
[debug] [2025-12-02T02:13:10.771Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
137
|
+
[debug] [2025-12-02T02:13:10.772Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
138
|
+
[debug] [2025-12-02T02:13:10.772Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
139
|
+
[debug] [2025-12-02T02:13:10.784Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
140
|
+
[debug] [2025-12-02T02:13:10.785Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
141
|
+
[debug] [2025-12-02T02:13:10.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"]
|
|
142
|
+
[debug] [2025-12-02T02:13:10.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"]
|
|
143
|
+
[debug] [2025-12-02T02:13:10.795Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
144
|
+
[debug] [2025-12-02T02:13:10.796Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
145
|
+
[debug] [2025-12-02T02:13:10.796Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
146
|
+
[debug] [2025-12-02T02:13:10.797Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
147
|
+
[debug] [2025-12-02T02:13:10.797Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
148
|
+
[debug] [2025-12-02T02:13:10.798Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
149
|
+
[debug] [2025-12-02T02:13:10.798Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
150
|
+
[debug] [2025-12-02T02:13:10.796Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
151
|
+
[debug] [2025-12-02T02:13:10.796Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
152
|
+
[debug] [2025-12-02T02:13:10.796Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
153
|
+
[debug] [2025-12-02T02:13:10.798Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
154
|
+
[debug] [2025-12-02T02:13:10.798Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
155
|
+
[debug] [2025-12-02T02:13:10.799Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
156
|
+
[debug] [2025-12-02T02:13:10.799Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
157
|
+
[debug] [2025-12-02T03:40:02.170Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
158
|
+
[debug] [2025-12-02T03:40:02.170Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
159
|
+
[debug] [2025-12-02T03:40:02.172Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
160
|
+
[debug] [2025-12-02T03:40:02.172Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
161
|
+
[debug] [2025-12-02T03:40:02.172Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
162
|
+
[debug] [2025-12-02T03:40:02.184Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
163
|
+
[debug] [2025-12-02T03:40:02.184Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
164
|
+
[debug] [2025-12-02T03:40:02.172Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
165
|
+
[debug] [2025-12-02T03:40:02.172Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
166
|
+
[debug] [2025-12-02T03:40:02.172Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
167
|
+
[debug] [2025-12-02T03:40:02.184Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
168
|
+
[debug] [2025-12-02T03:40:02.184Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
169
|
+
[debug] [2025-12-02T03:40:02.196Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
170
|
+
[debug] [2025-12-02T03:40:02.196Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
171
|
+
[debug] [2025-12-02T03:40:02.197Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
172
|
+
[debug] [2025-12-02T03:40:02.197Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
173
|
+
[debug] [2025-12-02T03:40:02.197Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
174
|
+
[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"]
|
|
175
|
+
[debug] [2025-12-02T03:40:02.199Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
176
|
+
[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"]
|
|
177
|
+
[debug] [2025-12-02T03:40:02.199Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
178
|
+
[debug] [2025-12-02T03:40:02.197Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
179
|
+
[debug] [2025-12-02T03:40:02.197Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
180
|
+
[debug] [2025-12-02T03:40:02.197Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
181
|
+
[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"]
|
|
182
|
+
[debug] [2025-12-02T03:40:02.199Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
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
|
+
[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)
|
package/package.json
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-manager",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.29",
|
|
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",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./dist/index.js",
|
|
9
|
+
"./modules/*": "./dist/modules/*",
|
|
10
|
+
"./package.json": "./package.json"
|
|
11
|
+
},
|
|
7
12
|
"scripts": {
|
|
8
13
|
"start": "npm run prepare:watch",
|
|
9
14
|
"test": "./node_modules/mocha/bin/mocha test/ --recursive --timeout=10000",
|
|
@@ -37,14 +42,14 @@
|
|
|
37
42
|
"@sentry/browser": "10.12.0+ BREAKS ULTIMATE-JEKYLL. Version 10.12.0 introduced createConsolaReporter - This was a NEW export added to @sentry/browser that didn't exist in 10.8.0. The problem is:"
|
|
38
43
|
},
|
|
39
44
|
"dependencies": {
|
|
40
|
-
"@sentry/browser": "10.
|
|
41
|
-
"firebase": "^12.
|
|
45
|
+
"@sentry/browser": "^10.27.0",
|
|
46
|
+
"firebase": "^12.6.0",
|
|
42
47
|
"itwcw-package-analytics": "^1.0.6",
|
|
43
48
|
"lodash": "^4.17.21",
|
|
44
49
|
"resolve-account": "^2.0.1"
|
|
45
50
|
},
|
|
46
51
|
"devDependencies": {
|
|
47
52
|
"mocha": "^8.4.0",
|
|
48
|
-
"prepare-package": "^1.2.
|
|
53
|
+
"prepare-package": "^1.2.5"
|
|
49
54
|
}
|
|
50
55
|
}
|