@glissandoo/lib 1.28.0 → 1.28.2
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/functions/index.d.ts +1 -1
- package/functions/index.js +1 -1
- package/functions/regions.js +1 -1
- package/functions/user.d.ts +4 -0
- package/lang/en.json +10 -1
- package/lang/index.d.ts +9 -0
- package/package.json +1 -1
package/functions/index.d.ts
CHANGED
|
@@ -108,9 +108,9 @@ export declare enum FbFunctionName {
|
|
|
108
108
|
UserOnCreateDoc = "user-onCreateDoc",
|
|
109
109
|
UserOnLogin = "user-onLogin",
|
|
110
110
|
UserOnSignUp = "user-onSignUp",
|
|
111
|
-
UserOnRemove = "user-onRemove",
|
|
112
111
|
UserOnUpdate = "user-onUpdate",
|
|
113
112
|
UserRegister = "user-register",
|
|
113
|
+
UserRemove = "user-remove",
|
|
114
114
|
WebhookLemonway = "webhook-lemonway",
|
|
115
115
|
WebhookStripe = "webhook-stripe"
|
|
116
116
|
}
|
package/functions/index.js
CHANGED
|
@@ -112,9 +112,9 @@ var FbFunctionName;
|
|
|
112
112
|
FbFunctionName["UserOnCreateDoc"] = "user-onCreateDoc";
|
|
113
113
|
FbFunctionName["UserOnLogin"] = "user-onLogin";
|
|
114
114
|
FbFunctionName["UserOnSignUp"] = "user-onSignUp";
|
|
115
|
-
FbFunctionName["UserOnRemove"] = "user-onRemove";
|
|
116
115
|
FbFunctionName["UserOnUpdate"] = "user-onUpdate";
|
|
117
116
|
FbFunctionName["UserRegister"] = "user-register";
|
|
117
|
+
FbFunctionName["UserRemove"] = "user-remove";
|
|
118
118
|
FbFunctionName["WebhookLemonway"] = "webhook-lemonway";
|
|
119
119
|
FbFunctionName["WebhookStripe"] = "webhook-stripe";
|
|
120
120
|
})(FbFunctionName = exports.FbFunctionName || (exports.FbFunctionName = {}));
|
package/functions/regions.js
CHANGED
|
@@ -13,7 +13,7 @@ const regionByFunctions = {
|
|
|
13
13
|
[index_1.FbFunctionName.UserRegister]: GCloudRegions.UsCentral1,
|
|
14
14
|
[index_1.FbFunctionName.UserOnCreateDoc]: GCloudRegions.UsCentral1,
|
|
15
15
|
[index_1.FbFunctionName.UserOnUpdate]: GCloudRegions.UsCentral1,
|
|
16
|
-
[index_1.FbFunctionName.
|
|
16
|
+
[index_1.FbFunctionName.UserRemove]: GCloudRegions.EuropeWest6,
|
|
17
17
|
[index_1.FbFunctionName.UserOnLogin]: GCloudRegions.EuropeWest6,
|
|
18
18
|
[index_1.FbFunctionName.UserOnSignUp]: GCloudRegions.EuropeWest6,
|
|
19
19
|
[index_1.FbFunctionName.JWTGenerate]: GCloudRegions.EuropeWest6,
|
package/functions/user.d.ts
CHANGED
package/lang/en.json
CHANGED
|
@@ -236,5 +236,14 @@
|
|
|
236
236
|
"theme.claim.new.text": "{string:user.0.displayName} has claimed a review on {instrument:extra.instrumentId} for \"{string:extra.title}\"",
|
|
237
237
|
"theme.claim.new.title": "A music sheet review has been submitted by a musician",
|
|
238
238
|
"theme.claim.update.text": "{instrument:extra.instrumentId} sheet for \"{string:extra.title}\" has been added.",
|
|
239
|
-
"theme.claim.update.title": "New {instrument:extra.instrumentId} sheet has been added"
|
|
239
|
+
"theme.claim.update.title": "New {instrument:extra.instrumentId} sheet has been added",
|
|
240
|
+
"emails.common.footer.contact": "If you have any doubts, please don't hesitate to contact us. Our email is hola@glissandoo.com.",
|
|
241
|
+
"emails.common.footer.rights": "© 2023 Glissandoo.com, All rights reserved.",
|
|
242
|
+
"emails.biweeklyEventReminder.subject": "Don't miss these events!",
|
|
243
|
+
"emails.biweeklyEventReminder.title": "Events Summary",
|
|
244
|
+
"emails.biweeklyEventReminder.intro": "Hi {name}, here is a summary of the events you can't miss!",
|
|
245
|
+
"emails.biweeklyEventReminder.attendance.confirm": "Confirm",
|
|
246
|
+
"emails.biweeklyEventReminder.attendance.decline": "Decline",
|
|
247
|
+
"emails.biweeklyEventReminder.attendance.confirmed": "Going 😎",
|
|
248
|
+
"emails.biweeklyEventReminder.attendance.declined": "Not going 🥲"
|
|
240
249
|
}
|
package/lang/index.d.ts
CHANGED
|
@@ -502,6 +502,15 @@ declare const languageProvider: {
|
|
|
502
502
|
"theme.claim.new.title": string;
|
|
503
503
|
"theme.claim.update.text": string;
|
|
504
504
|
"theme.claim.update.title": string;
|
|
505
|
+
"emails.common.footer.contact": string;
|
|
506
|
+
"emails.common.footer.rights": string;
|
|
507
|
+
"emails.biweeklyEventReminder.subject": string;
|
|
508
|
+
"emails.biweeklyEventReminder.title": string;
|
|
509
|
+
"emails.biweeklyEventReminder.intro": string;
|
|
510
|
+
"emails.biweeklyEventReminder.attendance.confirm": string;
|
|
511
|
+
"emails.biweeklyEventReminder.attendance.decline": string;
|
|
512
|
+
"emails.biweeklyEventReminder.attendance.confirmed": string;
|
|
513
|
+
"emails.biweeklyEventReminder.attendance.declined": string;
|
|
505
514
|
};
|
|
506
515
|
date: {
|
|
507
516
|
locale: Locale;
|