backend-manager 5.0.199 → 5.0.201
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
CHANGED
|
@@ -14,6 +14,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
14
14
|
- `Fixed` for any bug fixes.
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
|
+
# [5.0.201] - 2026-05-08
|
|
18
|
+
### Changed
|
|
19
|
+
- Account deletion confirmation email now includes a "Deletion details:" block with the user's account email, UID, and deletion timestamp (UTC) — matching the pattern used in the data-request download email.
|
|
20
|
+
|
|
21
|
+
# [5.0.200] - 2026-05-05
|
|
22
|
+
### Changed
|
|
23
|
+
- Bumped `uuid` from `^13.0.2` to `^14.0.0`. uuid v14 is ESM-only, but Node 22+'s native `require(esm)` support means existing CommonJS call sites (`require('uuid').v4`, `.v5`, etc.) work unchanged.
|
|
24
|
+
|
|
17
25
|
# [5.0.199] - 2026-04-23
|
|
18
26
|
### Fixed
|
|
19
27
|
- Storage helper (`Manager.storage().get()` / `.set()`) was referencing `_.get` and `_.set` without a lodash namespace import — lodash is destructured at the top of the file, so `_` was undefined and every call crashed. Destructured `get` and `set` (aliased as `_get` / `_set`) and updated both call sites.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "backend-manager",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.201",
|
|
4
4
|
"description": "Quick tools for developing Firebase functions",
|
|
5
5
|
"main": "src/manager/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -49,19 +49,20 @@
|
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@firebase/rules-unit-testing": "^5.0.
|
|
52
|
+
"@firebase/rules-unit-testing": "^5.0.1",
|
|
53
|
+
"@google-cloud/firestore": "^7.11.6",
|
|
53
54
|
"@google-cloud/pubsub": "^5.3.0",
|
|
54
55
|
"@google-cloud/storage": "^7.19.0",
|
|
55
|
-
"@inquirer/prompts": "^8.4.
|
|
56
|
+
"@inquirer/prompts": "^8.4.2",
|
|
56
57
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
57
58
|
"@octokit/rest": "^22.0.1",
|
|
58
59
|
"@sendgrid/mail": "^8.1.6",
|
|
59
|
-
"@sentry/node": "^10.
|
|
60
|
+
"@sentry/node": "^10.52.0",
|
|
60
61
|
"body-parser": "^2.2.2",
|
|
61
62
|
"busboy": "^1.6.0",
|
|
62
63
|
"chalk": "^5.6.2",
|
|
63
64
|
"cors": "^2.8.6",
|
|
64
|
-
"dotenv": "^17.4.
|
|
65
|
+
"dotenv": "^17.4.2",
|
|
65
66
|
"express": "^5.2.1",
|
|
66
67
|
"fs-jetpack": "^5.1.0",
|
|
67
68
|
"glob": "^13.0.6",
|
|
@@ -75,25 +76,25 @@
|
|
|
75
76
|
"markdown-it": "^14.1.1",
|
|
76
77
|
"mime-types": "^3.0.2",
|
|
77
78
|
"moment": "^2.30.1",
|
|
78
|
-
"nanoid": "^5.1.
|
|
79
|
+
"nanoid": "^5.1.11",
|
|
79
80
|
"node-powertools": "^3.0.0",
|
|
80
81
|
"npm-api": "^1.0.1",
|
|
81
82
|
"pushid": "^1.0.0",
|
|
82
|
-
"sanitize-html": "^2.17.
|
|
83
|
-
"stripe": "^22.
|
|
83
|
+
"sanitize-html": "^2.17.3",
|
|
84
|
+
"stripe": "^22.1.1",
|
|
84
85
|
"uid-generator": "^2.0.0",
|
|
85
|
-
"uuid": "^
|
|
86
|
+
"uuid": "^14.0.0",
|
|
86
87
|
"wonderful-fetch": "^2.0.5",
|
|
87
88
|
"wonderful-log": "^1.0.7",
|
|
88
89
|
"wonderful-version": "^1.3.2",
|
|
89
|
-
"yaml": "^2.8.
|
|
90
|
+
"yaml": "^2.8.4",
|
|
90
91
|
"yargs": "^18.0.0"
|
|
91
92
|
},
|
|
92
93
|
"devDependencies": {
|
|
93
94
|
"prepare-package": "^2.1.0"
|
|
94
95
|
},
|
|
95
96
|
"peerDependencies": {
|
|
96
|
-
"firebase-admin": "^13.
|
|
97
|
+
"firebase-admin": "^13.9.0",
|
|
97
98
|
"firebase-functions": "^7.2.5"
|
|
98
99
|
}
|
|
99
100
|
}
|
|
@@ -204,6 +204,7 @@
|
|
|
204
204
|
"99.com",
|
|
205
205
|
"99cows.com",
|
|
206
206
|
"99experts.com",
|
|
207
|
+
"99mail.us",
|
|
207
208
|
"9mail.cf",
|
|
208
209
|
"9me.site",
|
|
209
210
|
"9mot.ru",
|
|
@@ -214,6 +215,7 @@
|
|
|
214
215
|
"a45.in",
|
|
215
216
|
"a7996.com",
|
|
216
217
|
"aa5zy64.com",
|
|
218
|
+
"aabkmail.com",
|
|
217
219
|
"aachendate.de",
|
|
218
220
|
"aakk.link",
|
|
219
221
|
"aakkmail.com",
|
|
@@ -227,6 +229,7 @@
|
|
|
227
229
|
"abevw.com",
|
|
228
230
|
"abilitywe.us",
|
|
229
231
|
"abo-free.fr.nf",
|
|
232
|
+
"aboodbab.com",
|
|
230
233
|
"abouse.space",
|
|
231
234
|
"abovewe.us",
|
|
232
235
|
"absolutewe.us",
|
|
@@ -472,6 +475,7 @@
|
|
|
472
475
|
"appc.se",
|
|
473
476
|
"appinventor.nl",
|
|
474
477
|
"appixie.com",
|
|
478
|
+
"apple.edu.pl",
|
|
475
479
|
"appmail.uk",
|
|
476
480
|
"apps.dj",
|
|
477
481
|
"appzily.com",
|
|
@@ -551,6 +555,7 @@
|
|
|
551
555
|
"b2bx.net",
|
|
552
556
|
"b2cmail.de",
|
|
553
557
|
"b7s.ru",
|
|
558
|
+
"babyeat.food",
|
|
554
559
|
"backilnge.com",
|
|
555
560
|
"bacteroidmail.com",
|
|
556
561
|
"badgerland.eu",
|
|
@@ -790,6 +795,7 @@
|
|
|
790
795
|
"california.edu.pl",
|
|
791
796
|
"californiafitnessdeals.com",
|
|
792
797
|
"calima.asso.st",
|
|
798
|
+
"calmriver.info",
|
|
793
799
|
"cam4you.cc",
|
|
794
800
|
"cameltok.com",
|
|
795
801
|
"camera47.net",
|
|
@@ -906,6 +912,7 @@
|
|
|
906
912
|
"clandest.in",
|
|
907
913
|
"classesmail.com",
|
|
908
914
|
"claudd.com",
|
|
915
|
+
"clearbeam.pro",
|
|
909
916
|
"clearwatermail.info",
|
|
910
917
|
"click-email.com",
|
|
911
918
|
"clickdeal.co",
|
|
@@ -1102,6 +1109,7 @@
|
|
|
1102
1109
|
"dealja.com",
|
|
1103
1110
|
"deallabs.org",
|
|
1104
1111
|
"dealrek.com",
|
|
1112
|
+
"deapad.com",
|
|
1105
1113
|
"decep.com",
|
|
1106
1114
|
"decodewp.com",
|
|
1107
1115
|
"dede.infos.st",
|
|
@@ -1128,6 +1136,7 @@
|
|
|
1128
1136
|
"dengekibunko.ga",
|
|
1129
1137
|
"dengekibunko.gq",
|
|
1130
1138
|
"dengekibunko.ml",
|
|
1139
|
+
"denipl.net",
|
|
1131
1140
|
"deornaumail.com",
|
|
1132
1141
|
"der-kombi.de",
|
|
1133
1142
|
"derkombi.de",
|
|
@@ -1293,6 +1302,7 @@
|
|
|
1293
1302
|
"dropjar.com",
|
|
1294
1303
|
"droplar.com",
|
|
1295
1304
|
"dropmail.me",
|
|
1305
|
+
"dropons.com",
|
|
1296
1306
|
"dropsin.net",
|
|
1297
1307
|
"drowblock.com",
|
|
1298
1308
|
"drugsellers.com",
|
|
@@ -1312,6 +1322,7 @@
|
|
|
1312
1322
|
"duk33.com",
|
|
1313
1323
|
"dukedish.com",
|
|
1314
1324
|
"dulich84.com",
|
|
1325
|
+
"dulieu.io.vn",
|
|
1315
1326
|
"dumalu.com",
|
|
1316
1327
|
"dumbass.nl",
|
|
1317
1328
|
"dump-email.info",
|
|
@@ -1385,6 +1396,7 @@
|
|
|
1385
1396
|
"einrot.de",
|
|
1386
1397
|
"eintagsmail.de",
|
|
1387
1398
|
"eiveg.com",
|
|
1399
|
+
"elafans.com",
|
|
1388
1400
|
"eldobhato-level.hu",
|
|
1389
1401
|
"elearningjournal.org",
|
|
1390
1402
|
"electro.mn",
|
|
@@ -1671,6 +1683,7 @@
|
|
|
1671
1683
|
"fastyamaha.com",
|
|
1672
1684
|
"fatflap.com",
|
|
1673
1685
|
"faxico.com",
|
|
1686
|
+
"faxzu.com",
|
|
1674
1687
|
"faybetsy.com",
|
|
1675
1688
|
"fbhotro.com",
|
|
1676
1689
|
"fbi.one",
|
|
@@ -1812,6 +1825,7 @@
|
|
|
1812
1825
|
"frm.ovh",
|
|
1813
1826
|
"front14.org",
|
|
1814
1827
|
"frostmail.fr.nf",
|
|
1828
|
+
"frostypeak.info",
|
|
1815
1829
|
"frwdmail.com",
|
|
1816
1830
|
"fsitip.com",
|
|
1817
1831
|
"fthcapital.com",
|
|
@@ -2110,6 +2124,7 @@
|
|
|
2110
2124
|
"hasanmail.ml",
|
|
2111
2125
|
"hat-geld.de",
|
|
2112
2126
|
"hatespam.org",
|
|
2127
|
+
"hathitrannhien.edu.vn",
|
|
2113
2128
|
"hawrong.com",
|
|
2114
2129
|
"haydoo.com",
|
|
2115
2130
|
"hazelnut4u.com",
|
|
@@ -2144,6 +2159,7 @@
|
|
|
2144
2159
|
"hidemail.pro",
|
|
2145
2160
|
"hidemail.us",
|
|
2146
2161
|
"hidesmail.net",
|
|
2162
|
+
"hidingmail.net",
|
|
2147
2163
|
"hidmail.org",
|
|
2148
2164
|
"hidzz.com",
|
|
2149
2165
|
"hiemail.net",
|
|
@@ -2341,6 +2357,7 @@
|
|
|
2341
2357
|
"inoutmail.info",
|
|
2342
2358
|
"inoutmail.net",
|
|
2343
2359
|
"inpwa.com",
|
|
2360
|
+
"inreur.com",
|
|
2344
2361
|
"insanony.art",
|
|
2345
2362
|
"insanony.one",
|
|
2346
2363
|
"insanony.store",
|
|
@@ -2410,6 +2427,7 @@
|
|
|
2410
2427
|
"itaolo.com",
|
|
2411
2428
|
"itcompu.com",
|
|
2412
2429
|
"itfast.net",
|
|
2430
|
+
"itmo.edu.pl",
|
|
2413
2431
|
"itsbds.com",
|
|
2414
2432
|
"itsedit.click",
|
|
2415
2433
|
"itsjiff.com",
|
|
@@ -2434,6 +2452,7 @@
|
|
|
2434
2452
|
"jailbreakeverything.com",
|
|
2435
2453
|
"jaipas.lu",
|
|
2436
2454
|
"jajxz.com",
|
|
2455
|
+
"jakarta.io.vn",
|
|
2437
2456
|
"jakemsr.com",
|
|
2438
2457
|
"janproz.com",
|
|
2439
2458
|
"japnc.com",
|
|
@@ -2636,6 +2655,7 @@
|
|
|
2636
2655
|
"kwilco.net",
|
|
2637
2656
|
"kwtest.io",
|
|
2638
2657
|
"kyal.pl",
|
|
2658
|
+
"kynninc.com",
|
|
2639
2659
|
"kyois.com",
|
|
2640
2660
|
"kyriog.fr",
|
|
2641
2661
|
"kyuusei.fr.nf",
|
|
@@ -2749,6 +2769,7 @@
|
|
|
2749
2769
|
"logsmarter.net",
|
|
2750
2770
|
"logular.com",
|
|
2751
2771
|
"loh.pp.ua",
|
|
2772
|
+
"lohinja.com",
|
|
2752
2773
|
"loin.in",
|
|
2753
2774
|
"lolfreak.net",
|
|
2754
2775
|
"lolmail.biz",
|
|
@@ -2890,6 +2911,8 @@
|
|
|
2890
2911
|
"mailed.ro",
|
|
2891
2912
|
"maileimer.de",
|
|
2892
2913
|
"maileme101.com",
|
|
2914
|
+
"mailer.edu.pl",
|
|
2915
|
+
"mailer.io.vn",
|
|
2893
2916
|
"mailers.edu.pl",
|
|
2894
2917
|
"mailexpire.com",
|
|
2895
2918
|
"mailf5.com",
|
|
@@ -2966,6 +2989,7 @@
|
|
|
2966
2989
|
"mailnoop.store",
|
|
2967
2990
|
"mailnull.com",
|
|
2968
2991
|
"mailnuo.com",
|
|
2992
|
+
"mailo.edu.pl",
|
|
2969
2993
|
"mailonaut.com",
|
|
2970
2994
|
"mailorc.com",
|
|
2971
2995
|
"mailorg.org",
|
|
@@ -3028,6 +3052,7 @@
|
|
|
3028
3052
|
"malayalamdtp.com",
|
|
3029
3053
|
"malioter.pro",
|
|
3030
3054
|
"mama3.org",
|
|
3055
|
+
"mamabood.com",
|
|
3031
3056
|
"mamulenok.ru",
|
|
3032
3057
|
"mandraghen.cf",
|
|
3033
3058
|
"manifestgenerator.com",
|
|
@@ -3123,6 +3148,7 @@
|
|
|
3123
3148
|
"minhquang2000.com",
|
|
3124
3149
|
"minimail.gq",
|
|
3125
3150
|
"ministry-of-silly-walks.de",
|
|
3151
|
+
"minitts.net",
|
|
3126
3152
|
"minsmail.com",
|
|
3127
3153
|
"mintemail.com",
|
|
3128
3154
|
"minuteafter.com",
|
|
@@ -3364,9 +3390,11 @@
|
|
|
3364
3390
|
"newaddr.com",
|
|
3365
3391
|
"newbpotato.tk",
|
|
3366
3392
|
"newbreedapps.com",
|
|
3393
|
+
"newdelhi.io.vn",
|
|
3367
3394
|
"newfilm24.ru",
|
|
3368
3395
|
"newideasfornewpeople.info",
|
|
3369
3396
|
"newmail.top",
|
|
3397
|
+
"newyork.io.vn",
|
|
3370
3398
|
"next.ovh",
|
|
3371
3399
|
"nextmail.info",
|
|
3372
3400
|
"nextstopvalhalla.com",
|
|
@@ -3388,6 +3416,7 @@
|
|
|
3388
3416
|
"nickmxh.com",
|
|
3389
3417
|
"nicknassar.com",
|
|
3390
3418
|
"nightorb.com",
|
|
3419
|
+
"nik.edu.pl",
|
|
3391
3420
|
"nikora.fr.nf",
|
|
3392
3421
|
"nincsmail.com",
|
|
3393
3422
|
"nincsmail.hu",
|
|
@@ -4024,6 +4053,7 @@
|
|
|
4024
4053
|
"safetymail.info",
|
|
4025
4054
|
"safetypost.de",
|
|
4026
4055
|
"saharanightstempe.com",
|
|
4056
|
+
"sahildash.dev",
|
|
4027
4057
|
"sailmail.io",
|
|
4028
4058
|
"sajutadollars.com",
|
|
4029
4059
|
"saleis.live",
|
|
@@ -4161,6 +4191,7 @@
|
|
|
4161
4191
|
"siteinfox.com",
|
|
4162
4192
|
"siteposter.net",
|
|
4163
4193
|
"six25.biz",
|
|
4194
|
+
"sixoplus.com",
|
|
4164
4195
|
"sizzlemctwizzle.com",
|
|
4165
4196
|
"sjuaq.com",
|
|
4166
4197
|
"skeefmail.com",
|
|
@@ -81,7 +81,7 @@ module.exports = async ({ assistant, Manager, user, settings, libraries }) => {
|
|
|
81
81
|
// Send confirmation email (fire-and-forget)
|
|
82
82
|
const shouldSend = !assistant.isTesting() || process.env.TEST_EXTENDED_MODE;
|
|
83
83
|
if (email && shouldSend) {
|
|
84
|
-
sendConfirmationEmail(assistant, email, reason, userData?.personal?.name?.first);
|
|
84
|
+
sendConfirmationEmail(assistant, email, uid, reason, userData?.personal?.name?.first);
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
return assistant.respond({ success: true });
|
|
@@ -90,7 +90,7 @@ module.exports = async ({ assistant, Manager, user, settings, libraries }) => {
|
|
|
90
90
|
/**
|
|
91
91
|
* Send account deletion confirmation email (fire-and-forget)
|
|
92
92
|
*/
|
|
93
|
-
function sendConfirmationEmail(assistant, email, reason, firstName) {
|
|
93
|
+
function sendConfirmationEmail(assistant, email, uid, reason, firstName) {
|
|
94
94
|
const Manager = assistant.Manager;
|
|
95
95
|
const brandName = Manager.config.brand.name;
|
|
96
96
|
const mailer = Manager.Email(assistant);
|
|
@@ -98,6 +98,7 @@ function sendConfirmationEmail(assistant, email, reason, firstName) {
|
|
|
98
98
|
const reasonLine = reason
|
|
99
99
|
? `\n\n**Reason provided:** ${reason}`
|
|
100
100
|
: '';
|
|
101
|
+
const deletionDate = new Date().toUTCString();
|
|
101
102
|
|
|
102
103
|
mailer.send({
|
|
103
104
|
to: email,
|
|
@@ -114,6 +115,12 @@ function sendConfirmationEmail(assistant, email, reason, firstName) {
|
|
|
114
115
|
title: 'Account Deleted',
|
|
115
116
|
message: `${greeting} **${brandName}** account and all associated personal data have been permanently deleted from our systems. This action is irreversible.${reasonLine}
|
|
116
117
|
|
|
118
|
+
**Deletion details:**
|
|
119
|
+
|
|
120
|
+
- **Account email:** ${email}
|
|
121
|
+
- **Account UID:** ${uid}
|
|
122
|
+
- **Deletion date:** ${deletionDate}
|
|
123
|
+
|
|
117
124
|
**What this means:**
|
|
118
125
|
|
|
119
126
|
- Your account credentials and profile information have been removed.
|