@glissandoo/lib 1.7.3 → 1.7.5
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 +65 -56
- package/functions/index.js +65 -56
- package/functions/regions.d.ts +1 -0
- package/functions/regions.js +11 -1
- package/functions/user.d.ts +0 -6
- package/helpers/instruments/index.d.ts +2 -0
- package/helpers/instruments/index.js +5 -1
- package/lang/ca.json +2 -0
- package/lang/de.json +8 -6
- package/lang/en.json +2 -0
- package/lang/es.json +2 -0
- package/lang/eu.json +2 -0
- package/lang/gl.json +2 -0
- package/lang/index.d.ts +14 -0
- package/lang/pt.json +2 -0
- package/package.json +1 -1
package/functions/index.d.ts
CHANGED
|
@@ -1,91 +1,100 @@
|
|
|
1
1
|
export declare enum FbFunctionName {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
UserOnCreateDoc = "user-onCreateDoc",
|
|
5
|
-
UserOnUpdate = "user-onUpdate",
|
|
6
|
-
JWTGenerate = "jwt-generate",
|
|
7
|
-
GroupPublish = "group-publish",
|
|
8
|
-
GroupEdit = "group-edit",
|
|
9
|
-
GroupRemove = "group-remove",
|
|
10
|
-
GroupChangeStatus = "group-changeStatus",
|
|
11
|
-
GroupOnCreate = "group-onCreate",
|
|
12
|
-
GroupOnUpdate = "group-onUpdate",
|
|
13
|
-
GroupGetById = "group-getById",
|
|
14
|
-
GroupSendInvitationEmail = "group-sendInvitationEmail",
|
|
15
|
-
GroupPlayerUpdateInstruments = "groupPlayer-updateInstruments",
|
|
16
|
-
GroupPlayerAdd = "groupPlayer-add",
|
|
17
|
-
GroupPlayerJoin = "groupPlayer-joinGroup",
|
|
18
|
-
GroupPlayerRemove = "groupPlayer-remove",
|
|
19
|
-
GroupPlayerLeave = "groupPlayer-leave",
|
|
20
|
-
GroupPlayerSwitchAdmin = "groupPlayer-switchAdmin",
|
|
21
|
-
GroupPlayerOnUpdate = "groupPlayer-onUpdate",
|
|
22
|
-
GroupPlayerEventOnUpdate = "groupPlayerEvent-onUpdate",
|
|
23
|
-
GroupRepertoryPublish = "groupRepertory-publish",
|
|
24
|
-
GroupRepertoryEdit = "groupRepertory-edit",
|
|
25
|
-
GroupRepertoryRemove = "groupRepertory-remove",
|
|
26
|
-
GroupRepertoryDownloadThemeFiles = "groupRepertory-downloadThemeFiles",
|
|
27
|
-
GroupRepertoryIdentifyInstruments = "groupRepertory-identifyInstruments",
|
|
28
|
-
GroupRepertoryClaimMusicSheet = "groupRepertory-claimMusicSheet",
|
|
29
|
-
GroupRepertoryOnCreate = "groupRepertory-onCreate",
|
|
30
|
-
GroupRepertoryOnUpdate = "groupRepertory-onUpdate",
|
|
31
|
-
CommunicationPublish = "communication-publish",
|
|
2
|
+
Auth = "auth",
|
|
3
|
+
CommunicationCommentPublish = "communicationComment-publish",
|
|
32
4
|
CommunicationEdit = "communication-edit",
|
|
5
|
+
CommunicationPublish = "communication-publish",
|
|
33
6
|
CommunicationRemove = "communication-remove",
|
|
34
|
-
CommunicationCommentPublish = "communicationComment-publish",
|
|
35
|
-
EventPublish = "event-publish",
|
|
36
|
-
EventNotifyPendingPlayers = "event-notifyPendingPlayers",
|
|
37
|
-
EventSetRollcall = "event-setRollCall",
|
|
38
7
|
EventEdit = "event-edit",
|
|
39
8
|
EventEditDatetime = "event-editDatetime",
|
|
40
|
-
|
|
9
|
+
EventNotifyPendingPlayers = "event-notifyPendingPlayers",
|
|
41
10
|
EventOnCreate = "event-onCreate",
|
|
42
11
|
EventOnUpdate = "event-onUpdate",
|
|
43
|
-
EventPlayerSwitchAssistance = "eventPlayer-switchAssistance",
|
|
44
12
|
EventPlayerEdit = "eventPlayer-edit",
|
|
45
|
-
|
|
13
|
+
EventPlayerSwitchAssistance = "eventPlayer-switchAssistance",
|
|
14
|
+
EventPublish = "event-publish",
|
|
15
|
+
EventRemove = "event-remove",
|
|
46
16
|
EventRepertoryDownloadPdf = "eventRepertory-downloadPdf",
|
|
47
|
-
|
|
17
|
+
EventRepertoryEdit = "eventRepertory-edit",
|
|
18
|
+
EventSetRollcall = "event-setRollCall",
|
|
48
19
|
FederationAddConfirmedAdmin = "federation-addConfirmedAdmin",
|
|
49
|
-
|
|
20
|
+
FederationAddPendingAdmin = "federation-addPendingAdmin",
|
|
50
21
|
FederationConfirmAdmin = "federation-confirmAdmin",
|
|
51
22
|
FederationCreate = "federation-create",
|
|
52
23
|
FederationEdit = "federation-edit",
|
|
53
|
-
FederationRemove = "federation-remove",
|
|
54
24
|
FederationGetEvents = "federation-getEvents",
|
|
55
25
|
FederationPartnershipAdd = "federationPartnership-add",
|
|
56
26
|
FederationPartnershipAddManual = "federationPartnership-addManual",
|
|
57
|
-
|
|
58
|
-
FederationPartnershipRemoveManual = "federationPartnership-removeManual",
|
|
27
|
+
FederationPartnershipConnect = "federationPartnership-connect",
|
|
59
28
|
FederationPartnershipEditManual = "federationPartnership-editManual",
|
|
60
29
|
FederationPartnershipGetByToken = "federationPartnership-getByToken",
|
|
61
|
-
|
|
30
|
+
FederationPartnershipRemove = "federationPartnership-remove",
|
|
31
|
+
FederationPartnershipRemoveManual = "federationPartnership-removeManual",
|
|
62
32
|
FederationPartnershipSendInvitationToJoinEmail = "federationPartnership-sendInvitationToJoinEmail",
|
|
33
|
+
FederationRemove = "federation-remove",
|
|
34
|
+
FederationRemoveAdmin = "federation-removeAdmin",
|
|
35
|
+
GroupChangeStatus = "group-changeStatus",
|
|
36
|
+
GroupCronSatistactionIndexWeekly = "group-cronSatistactionIndexWeekly",
|
|
37
|
+
GroupEdit = "group-edit",
|
|
38
|
+
GroupGetById = "group-getById",
|
|
39
|
+
GroupOnCreate = "group-onCreate",
|
|
40
|
+
GroupOnUpdate = "group-onUpdate",
|
|
41
|
+
GroupPlayerAdd = "groupPlayer-add",
|
|
42
|
+
GroupPlayerEventOnUpdate = "groupPlayerEvent-onUpdate",
|
|
43
|
+
GroupPlayerJoin = "groupPlayer-joinGroup",
|
|
44
|
+
GroupPlayerLeave = "groupPlayer-leave",
|
|
45
|
+
GroupPlayerOnUpdate = "groupPlayer-onUpdate",
|
|
46
|
+
GroupPlayerRemove = "groupPlayer-remove",
|
|
47
|
+
GroupPlayerSwitchAdmin = "groupPlayer-switchAdmin",
|
|
48
|
+
GroupPlayerUpdateInstruments = "groupPlayer-updateInstruments",
|
|
49
|
+
GroupPublish = "group-publish",
|
|
50
|
+
GroupRemove = "group-remove",
|
|
51
|
+
GroupRepertoryClaimMusicSheet = "groupRepertory-claimMusicSheet",
|
|
52
|
+
GroupRepertoryDownloadThemeFiles = "groupRepertory-downloadThemeFiles",
|
|
53
|
+
GroupRepertoryEdit = "groupRepertory-edit",
|
|
54
|
+
GroupRepertoryIdentifyInstruments = "groupRepertory-identifyInstruments",
|
|
55
|
+
GroupRepertoryOnCreate = "groupRepertory-onCreate",
|
|
56
|
+
GroupRepertoryOnUpdate = "groupRepertory-onUpdate",
|
|
57
|
+
GroupRepertoryPublish = "groupRepertory-publish",
|
|
58
|
+
GroupRepertoryRemove = "groupRepertory-remove",
|
|
59
|
+
GroupSendInvitationEmail = "group-sendInvitationEmail",
|
|
60
|
+
JWTGenerate = "jwt-generate",
|
|
61
|
+
MetricsDaily = "metrics-daily",
|
|
62
|
+
MetricsWeekly = "metrics-weekly",
|
|
63
|
+
MiscAddSubscriber = "misc-addSubscriber",
|
|
64
|
+
MiscScheduledFirestoreExport = "misc-scheduledFirestoreExport",
|
|
63
65
|
MiscValidateUsername = "misc-validateUsername",
|
|
64
66
|
NotificationMarkAllAsReaded = "notification-markAllAsReaded",
|
|
65
67
|
PartnerAdd = "partner-add",
|
|
66
68
|
PartnerEdit = "partner-edit",
|
|
67
|
-
PartnerRemove = "partner-remove",
|
|
68
|
-
PartnerOnUpdate = "partner-onUpdate",
|
|
69
69
|
PartnerGetByToken = "partner-getByToken",
|
|
70
|
+
PartnerOnUpdate = "partner-onUpdate",
|
|
71
|
+
PartnerRemove = "partner-remove",
|
|
72
|
+
PartnerSendVerification = "partner-sendVerification",
|
|
70
73
|
PartnerValidate = "partner-validate",
|
|
71
74
|
PartnerValidateIBAN = "partner-validateIBAN",
|
|
72
|
-
|
|
73
|
-
SubscriptionAdd = "subscription-add",
|
|
74
|
-
SubscriptionCancel = "subscription-cancel",
|
|
75
|
-
SubscriptionResume = "subscription-resume",
|
|
75
|
+
PartnershipAddConfirmedAdmin = "partnership-addConfirmedAdmin",
|
|
76
76
|
PartnershipCreate = "partnership-create",
|
|
77
77
|
PartnershipEdit = "partnership-edit",
|
|
78
78
|
PartnershipGetBalance = "partnership-getBalance",
|
|
79
|
-
PartnershipOnUpdate = "partnership-onUpdate",
|
|
80
|
-
PartnershipAddConfirmedAdmin = "partnership-addConfirmedAdmin",
|
|
81
|
-
PartnershipRemoveAdmin = "partnership-removeAdmin",
|
|
82
79
|
PartnershipGetMandateRequest = "partnership-getMandateRequest",
|
|
80
|
+
PartnershipGroupAdd = "partnershipGroup-add",
|
|
81
|
+
PartnershipGroupRemove = "partnershipGroup-remove",
|
|
83
82
|
PartnershipOnMandateCreated = "partnership-onMandateCreated",
|
|
83
|
+
PartnershipOnUpdate = "partnership-onUpdate",
|
|
84
84
|
PartnershipPlanAdd = "partnershipPlan-add",
|
|
85
85
|
PartnershipPlanEdit = "partnershipPlan-edit",
|
|
86
|
-
PartnershipPlanRemove = "partnershipPlan-remove",
|
|
87
86
|
PartnershipPlanOnUpdate = "partnershipPlan-onUpdate",
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
87
|
+
PartnershipPlanRemove = "partnershipPlan-remove",
|
|
88
|
+
PartnershipRemoveAdmin = "partnership-removeAdmin",
|
|
89
|
+
ReminderEvening = "reminder-evening",
|
|
90
|
+
ReminderMorning = "reminder-morning",
|
|
91
|
+
ReminderRollCall = "reminder-rollCall",
|
|
92
|
+
SubscriptionAdd = "subscription-add",
|
|
93
|
+
SubscriptionCancel = "subscription-cancel",
|
|
94
|
+
SubscriptionPaymentSchedule = "subscription-paymentSchedule",
|
|
95
|
+
SubscriptionResume = "subscription-resume",
|
|
96
|
+
UserOnCreateDoc = "user-onCreateDoc",
|
|
97
|
+
UserOnUpdate = "user-onUpdate",
|
|
98
|
+
UserRegister = "user-register",
|
|
99
|
+
WebhookLemonway = "webhook-lemonway"
|
|
91
100
|
}
|
package/functions/index.js
CHANGED
|
@@ -3,93 +3,102 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.FbFunctionName = void 0;
|
|
4
4
|
var FbFunctionName;
|
|
5
5
|
(function (FbFunctionName) {
|
|
6
|
-
FbFunctionName["
|
|
7
|
-
FbFunctionName["
|
|
8
|
-
FbFunctionName["UserOnCreateDoc"] = "user-onCreateDoc";
|
|
9
|
-
FbFunctionName["UserOnUpdate"] = "user-onUpdate";
|
|
10
|
-
FbFunctionName["JWTGenerate"] = "jwt-generate";
|
|
11
|
-
FbFunctionName["GroupPublish"] = "group-publish";
|
|
12
|
-
FbFunctionName["GroupEdit"] = "group-edit";
|
|
13
|
-
FbFunctionName["GroupRemove"] = "group-remove";
|
|
14
|
-
FbFunctionName["GroupChangeStatus"] = "group-changeStatus";
|
|
15
|
-
FbFunctionName["GroupOnCreate"] = "group-onCreate";
|
|
16
|
-
FbFunctionName["GroupOnUpdate"] = "group-onUpdate";
|
|
17
|
-
FbFunctionName["GroupGetById"] = "group-getById";
|
|
18
|
-
FbFunctionName["GroupSendInvitationEmail"] = "group-sendInvitationEmail";
|
|
19
|
-
FbFunctionName["GroupPlayerUpdateInstruments"] = "groupPlayer-updateInstruments";
|
|
20
|
-
FbFunctionName["GroupPlayerAdd"] = "groupPlayer-add";
|
|
21
|
-
FbFunctionName["GroupPlayerJoin"] = "groupPlayer-joinGroup";
|
|
22
|
-
FbFunctionName["GroupPlayerRemove"] = "groupPlayer-remove";
|
|
23
|
-
FbFunctionName["GroupPlayerLeave"] = "groupPlayer-leave";
|
|
24
|
-
FbFunctionName["GroupPlayerSwitchAdmin"] = "groupPlayer-switchAdmin";
|
|
25
|
-
FbFunctionName["GroupPlayerOnUpdate"] = "groupPlayer-onUpdate";
|
|
26
|
-
FbFunctionName["GroupPlayerEventOnUpdate"] = "groupPlayerEvent-onUpdate";
|
|
27
|
-
FbFunctionName["GroupRepertoryPublish"] = "groupRepertory-publish";
|
|
28
|
-
FbFunctionName["GroupRepertoryEdit"] = "groupRepertory-edit";
|
|
29
|
-
FbFunctionName["GroupRepertoryRemove"] = "groupRepertory-remove";
|
|
30
|
-
FbFunctionName["GroupRepertoryDownloadThemeFiles"] = "groupRepertory-downloadThemeFiles";
|
|
31
|
-
FbFunctionName["GroupRepertoryIdentifyInstruments"] = "groupRepertory-identifyInstruments";
|
|
32
|
-
FbFunctionName["GroupRepertoryClaimMusicSheet"] = "groupRepertory-claimMusicSheet";
|
|
33
|
-
FbFunctionName["GroupRepertoryOnCreate"] = "groupRepertory-onCreate";
|
|
34
|
-
FbFunctionName["GroupRepertoryOnUpdate"] = "groupRepertory-onUpdate";
|
|
35
|
-
FbFunctionName["CommunicationPublish"] = "communication-publish";
|
|
6
|
+
FbFunctionName["Auth"] = "auth";
|
|
7
|
+
FbFunctionName["CommunicationCommentPublish"] = "communicationComment-publish";
|
|
36
8
|
FbFunctionName["CommunicationEdit"] = "communication-edit";
|
|
9
|
+
FbFunctionName["CommunicationPublish"] = "communication-publish";
|
|
37
10
|
FbFunctionName["CommunicationRemove"] = "communication-remove";
|
|
38
|
-
FbFunctionName["CommunicationCommentPublish"] = "communicationComment-publish";
|
|
39
|
-
FbFunctionName["EventPublish"] = "event-publish";
|
|
40
|
-
FbFunctionName["EventNotifyPendingPlayers"] = "event-notifyPendingPlayers";
|
|
41
|
-
FbFunctionName["EventSetRollcall"] = "event-setRollCall";
|
|
42
11
|
FbFunctionName["EventEdit"] = "event-edit";
|
|
43
12
|
FbFunctionName["EventEditDatetime"] = "event-editDatetime";
|
|
44
|
-
FbFunctionName["
|
|
13
|
+
FbFunctionName["EventNotifyPendingPlayers"] = "event-notifyPendingPlayers";
|
|
45
14
|
FbFunctionName["EventOnCreate"] = "event-onCreate";
|
|
46
15
|
FbFunctionName["EventOnUpdate"] = "event-onUpdate";
|
|
47
|
-
FbFunctionName["EventPlayerSwitchAssistance"] = "eventPlayer-switchAssistance";
|
|
48
16
|
FbFunctionName["EventPlayerEdit"] = "eventPlayer-edit";
|
|
49
|
-
FbFunctionName["
|
|
17
|
+
FbFunctionName["EventPlayerSwitchAssistance"] = "eventPlayer-switchAssistance";
|
|
18
|
+
FbFunctionName["EventPublish"] = "event-publish";
|
|
19
|
+
FbFunctionName["EventRemove"] = "event-remove";
|
|
50
20
|
FbFunctionName["EventRepertoryDownloadPdf"] = "eventRepertory-downloadPdf";
|
|
51
|
-
FbFunctionName["
|
|
21
|
+
FbFunctionName["EventRepertoryEdit"] = "eventRepertory-edit";
|
|
22
|
+
FbFunctionName["EventSetRollcall"] = "event-setRollCall";
|
|
52
23
|
FbFunctionName["FederationAddConfirmedAdmin"] = "federation-addConfirmedAdmin";
|
|
53
|
-
FbFunctionName["
|
|
24
|
+
FbFunctionName["FederationAddPendingAdmin"] = "federation-addPendingAdmin";
|
|
54
25
|
FbFunctionName["FederationConfirmAdmin"] = "federation-confirmAdmin";
|
|
55
26
|
FbFunctionName["FederationCreate"] = "federation-create";
|
|
56
27
|
FbFunctionName["FederationEdit"] = "federation-edit";
|
|
57
|
-
FbFunctionName["FederationRemove"] = "federation-remove";
|
|
58
28
|
FbFunctionName["FederationGetEvents"] = "federation-getEvents";
|
|
59
29
|
FbFunctionName["FederationPartnershipAdd"] = "federationPartnership-add";
|
|
60
30
|
FbFunctionName["FederationPartnershipAddManual"] = "federationPartnership-addManual";
|
|
61
|
-
FbFunctionName["
|
|
62
|
-
FbFunctionName["FederationPartnershipRemoveManual"] = "federationPartnership-removeManual";
|
|
31
|
+
FbFunctionName["FederationPartnershipConnect"] = "federationPartnership-connect";
|
|
63
32
|
FbFunctionName["FederationPartnershipEditManual"] = "federationPartnership-editManual";
|
|
64
33
|
FbFunctionName["FederationPartnershipGetByToken"] = "federationPartnership-getByToken";
|
|
65
|
-
FbFunctionName["
|
|
34
|
+
FbFunctionName["FederationPartnershipRemove"] = "federationPartnership-remove";
|
|
35
|
+
FbFunctionName["FederationPartnershipRemoveManual"] = "federationPartnership-removeManual";
|
|
66
36
|
FbFunctionName["FederationPartnershipSendInvitationToJoinEmail"] = "federationPartnership-sendInvitationToJoinEmail";
|
|
37
|
+
FbFunctionName["FederationRemove"] = "federation-remove";
|
|
38
|
+
FbFunctionName["FederationRemoveAdmin"] = "federation-removeAdmin";
|
|
39
|
+
FbFunctionName["GroupChangeStatus"] = "group-changeStatus";
|
|
40
|
+
FbFunctionName["GroupCronSatistactionIndexWeekly"] = "group-cronSatistactionIndexWeekly";
|
|
41
|
+
FbFunctionName["GroupEdit"] = "group-edit";
|
|
42
|
+
FbFunctionName["GroupGetById"] = "group-getById";
|
|
43
|
+
FbFunctionName["GroupOnCreate"] = "group-onCreate";
|
|
44
|
+
FbFunctionName["GroupOnUpdate"] = "group-onUpdate";
|
|
45
|
+
FbFunctionName["GroupPlayerAdd"] = "groupPlayer-add";
|
|
46
|
+
FbFunctionName["GroupPlayerEventOnUpdate"] = "groupPlayerEvent-onUpdate";
|
|
47
|
+
FbFunctionName["GroupPlayerJoin"] = "groupPlayer-joinGroup";
|
|
48
|
+
FbFunctionName["GroupPlayerLeave"] = "groupPlayer-leave";
|
|
49
|
+
FbFunctionName["GroupPlayerOnUpdate"] = "groupPlayer-onUpdate";
|
|
50
|
+
FbFunctionName["GroupPlayerRemove"] = "groupPlayer-remove";
|
|
51
|
+
FbFunctionName["GroupPlayerSwitchAdmin"] = "groupPlayer-switchAdmin";
|
|
52
|
+
FbFunctionName["GroupPlayerUpdateInstruments"] = "groupPlayer-updateInstruments";
|
|
53
|
+
FbFunctionName["GroupPublish"] = "group-publish";
|
|
54
|
+
FbFunctionName["GroupRemove"] = "group-remove";
|
|
55
|
+
FbFunctionName["GroupRepertoryClaimMusicSheet"] = "groupRepertory-claimMusicSheet";
|
|
56
|
+
FbFunctionName["GroupRepertoryDownloadThemeFiles"] = "groupRepertory-downloadThemeFiles";
|
|
57
|
+
FbFunctionName["GroupRepertoryEdit"] = "groupRepertory-edit";
|
|
58
|
+
FbFunctionName["GroupRepertoryIdentifyInstruments"] = "groupRepertory-identifyInstruments";
|
|
59
|
+
FbFunctionName["GroupRepertoryOnCreate"] = "groupRepertory-onCreate";
|
|
60
|
+
FbFunctionName["GroupRepertoryOnUpdate"] = "groupRepertory-onUpdate";
|
|
61
|
+
FbFunctionName["GroupRepertoryPublish"] = "groupRepertory-publish";
|
|
62
|
+
FbFunctionName["GroupRepertoryRemove"] = "groupRepertory-remove";
|
|
63
|
+
FbFunctionName["GroupSendInvitationEmail"] = "group-sendInvitationEmail";
|
|
64
|
+
FbFunctionName["JWTGenerate"] = "jwt-generate";
|
|
65
|
+
FbFunctionName["MetricsDaily"] = "metrics-daily";
|
|
66
|
+
FbFunctionName["MetricsWeekly"] = "metrics-weekly";
|
|
67
|
+
FbFunctionName["MiscAddSubscriber"] = "misc-addSubscriber";
|
|
68
|
+
FbFunctionName["MiscScheduledFirestoreExport"] = "misc-scheduledFirestoreExport";
|
|
67
69
|
FbFunctionName["MiscValidateUsername"] = "misc-validateUsername";
|
|
68
70
|
FbFunctionName["NotificationMarkAllAsReaded"] = "notification-markAllAsReaded";
|
|
69
71
|
FbFunctionName["PartnerAdd"] = "partner-add";
|
|
70
72
|
FbFunctionName["PartnerEdit"] = "partner-edit";
|
|
71
|
-
FbFunctionName["PartnerRemove"] = "partner-remove";
|
|
72
|
-
FbFunctionName["PartnerOnUpdate"] = "partner-onUpdate";
|
|
73
73
|
FbFunctionName["PartnerGetByToken"] = "partner-getByToken";
|
|
74
|
+
FbFunctionName["PartnerOnUpdate"] = "partner-onUpdate";
|
|
75
|
+
FbFunctionName["PartnerRemove"] = "partner-remove";
|
|
76
|
+
FbFunctionName["PartnerSendVerification"] = "partner-sendVerification";
|
|
74
77
|
FbFunctionName["PartnerValidate"] = "partner-validate";
|
|
75
78
|
FbFunctionName["PartnerValidateIBAN"] = "partner-validateIBAN";
|
|
76
|
-
FbFunctionName["
|
|
77
|
-
FbFunctionName["SubscriptionAdd"] = "subscription-add";
|
|
78
|
-
FbFunctionName["SubscriptionCancel"] = "subscription-cancel";
|
|
79
|
-
FbFunctionName["SubscriptionResume"] = "subscription-resume";
|
|
79
|
+
FbFunctionName["PartnershipAddConfirmedAdmin"] = "partnership-addConfirmedAdmin";
|
|
80
80
|
FbFunctionName["PartnershipCreate"] = "partnership-create";
|
|
81
81
|
FbFunctionName["PartnershipEdit"] = "partnership-edit";
|
|
82
82
|
FbFunctionName["PartnershipGetBalance"] = "partnership-getBalance";
|
|
83
|
-
FbFunctionName["PartnershipOnUpdate"] = "partnership-onUpdate";
|
|
84
|
-
FbFunctionName["PartnershipAddConfirmedAdmin"] = "partnership-addConfirmedAdmin";
|
|
85
|
-
FbFunctionName["PartnershipRemoveAdmin"] = "partnership-removeAdmin";
|
|
86
83
|
FbFunctionName["PartnershipGetMandateRequest"] = "partnership-getMandateRequest";
|
|
84
|
+
FbFunctionName["PartnershipGroupAdd"] = "partnershipGroup-add";
|
|
85
|
+
FbFunctionName["PartnershipGroupRemove"] = "partnershipGroup-remove";
|
|
87
86
|
FbFunctionName["PartnershipOnMandateCreated"] = "partnership-onMandateCreated";
|
|
87
|
+
FbFunctionName["PartnershipOnUpdate"] = "partnership-onUpdate";
|
|
88
88
|
FbFunctionName["PartnershipPlanAdd"] = "partnershipPlan-add";
|
|
89
89
|
FbFunctionName["PartnershipPlanEdit"] = "partnershipPlan-edit";
|
|
90
|
-
FbFunctionName["PartnershipPlanRemove"] = "partnershipPlan-remove";
|
|
91
90
|
FbFunctionName["PartnershipPlanOnUpdate"] = "partnershipPlan-onUpdate";
|
|
92
|
-
FbFunctionName["
|
|
93
|
-
FbFunctionName["
|
|
94
|
-
FbFunctionName["
|
|
91
|
+
FbFunctionName["PartnershipPlanRemove"] = "partnershipPlan-remove";
|
|
92
|
+
FbFunctionName["PartnershipRemoveAdmin"] = "partnership-removeAdmin";
|
|
93
|
+
FbFunctionName["ReminderEvening"] = "reminder-evening";
|
|
94
|
+
FbFunctionName["ReminderMorning"] = "reminder-morning";
|
|
95
|
+
FbFunctionName["ReminderRollCall"] = "reminder-rollCall";
|
|
96
|
+
FbFunctionName["SubscriptionAdd"] = "subscription-add";
|
|
97
|
+
FbFunctionName["SubscriptionCancel"] = "subscription-cancel";
|
|
98
|
+
FbFunctionName["SubscriptionPaymentSchedule"] = "subscription-paymentSchedule";
|
|
99
|
+
FbFunctionName["SubscriptionResume"] = "subscription-resume";
|
|
100
|
+
FbFunctionName["UserOnCreateDoc"] = "user-onCreateDoc";
|
|
101
|
+
FbFunctionName["UserOnUpdate"] = "user-onUpdate";
|
|
102
|
+
FbFunctionName["UserRegister"] = "user-register";
|
|
103
|
+
FbFunctionName["WebhookLemonway"] = "webhook-lemonway";
|
|
95
104
|
})(FbFunctionName = exports.FbFunctionName || (exports.FbFunctionName = {}));
|
package/functions/regions.d.ts
CHANGED
package/functions/regions.js
CHANGED
|
@@ -4,13 +4,13 @@ exports.getFunctionRegion = exports.GCloudRegions = void 0;
|
|
|
4
4
|
const index_1 = require("./index");
|
|
5
5
|
var GCloudRegions;
|
|
6
6
|
(function (GCloudRegions) {
|
|
7
|
+
GCloudRegions["EuropeWest1"] = "europe-west1";
|
|
7
8
|
GCloudRegions["EuropeWest6"] = "europe-west6";
|
|
8
9
|
GCloudRegions["UsCentral1"] = "us-central1";
|
|
9
10
|
})(GCloudRegions = exports.GCloudRegions || (exports.GCloudRegions = {}));
|
|
10
11
|
const defaultRegion = GCloudRegions.UsCentral1;
|
|
11
12
|
const regionByFunctions = {
|
|
12
13
|
[index_1.FbFunctionName.UserRegister]: GCloudRegions.UsCentral1,
|
|
13
|
-
[index_1.FbFunctionName.UserGetToken]: GCloudRegions.EuropeWest6,
|
|
14
14
|
[index_1.FbFunctionName.UserOnCreateDoc]: GCloudRegions.UsCentral1,
|
|
15
15
|
[index_1.FbFunctionName.UserOnUpdate]: GCloudRegions.UsCentral1,
|
|
16
16
|
[index_1.FbFunctionName.JWTGenerate]: GCloudRegions.EuropeWest6,
|
|
@@ -98,6 +98,16 @@ const regionByFunctions = {
|
|
|
98
98
|
[index_1.FbFunctionName.PartnershipGroupAdd]: GCloudRegions.EuropeWest6,
|
|
99
99
|
[index_1.FbFunctionName.PartnershipGroupRemove]: GCloudRegions.EuropeWest6,
|
|
100
100
|
[index_1.FbFunctionName.MiscAddSubscriber]: GCloudRegions.EuropeWest6,
|
|
101
|
+
[index_1.FbFunctionName.Auth]: GCloudRegions.UsCentral1,
|
|
102
|
+
[index_1.FbFunctionName.GroupCronSatistactionIndexWeekly]: GCloudRegions.EuropeWest6,
|
|
103
|
+
[index_1.FbFunctionName.MetricsDaily]: GCloudRegions.EuropeWest6,
|
|
104
|
+
[index_1.FbFunctionName.MetricsWeekly]: GCloudRegions.EuropeWest6,
|
|
105
|
+
[index_1.FbFunctionName.MiscScheduledFirestoreExport]: GCloudRegions.EuropeWest6,
|
|
106
|
+
[index_1.FbFunctionName.ReminderEvening]: GCloudRegions.EuropeWest1,
|
|
107
|
+
[index_1.FbFunctionName.ReminderMorning]: GCloudRegions.EuropeWest1,
|
|
108
|
+
[index_1.FbFunctionName.ReminderRollCall]: GCloudRegions.EuropeWest1,
|
|
109
|
+
[index_1.FbFunctionName.SubscriptionPaymentSchedule]: GCloudRegions.EuropeWest6,
|
|
110
|
+
[index_1.FbFunctionName.WebhookLemonway]: GCloudRegions.EuropeWest6,
|
|
101
111
|
};
|
|
102
112
|
const getFunctionRegion = (fn) => regionByFunctions[fn] || defaultRegion;
|
|
103
113
|
exports.getFunctionRegion = getFunctionRegion;
|
package/functions/user.d.ts
CHANGED
|
@@ -16,7 +16,9 @@ export declare enum InstrumentId {
|
|
|
16
16
|
Cello = "cello",
|
|
17
17
|
Choir = "choir",
|
|
18
18
|
Clarinet = "clarinet",
|
|
19
|
+
ClarinetAlto = "altoClarinet",
|
|
19
20
|
ClarinetBass = "bassClarinet",
|
|
21
|
+
ClarinetContrabass = "contrabassClarinet",
|
|
20
22
|
ClarinetLittle = "littleClarinet",
|
|
21
23
|
ContraAlto = "contraAlto",
|
|
22
24
|
Cornet = "cornet",
|
|
@@ -22,7 +22,9 @@ var InstrumentId;
|
|
|
22
22
|
InstrumentId["Cello"] = "cello";
|
|
23
23
|
InstrumentId["Choir"] = "choir";
|
|
24
24
|
InstrumentId["Clarinet"] = "clarinet";
|
|
25
|
+
InstrumentId["ClarinetAlto"] = "altoClarinet";
|
|
25
26
|
InstrumentId["ClarinetBass"] = "bassClarinet";
|
|
27
|
+
InstrumentId["ClarinetContrabass"] = "contrabassClarinet";
|
|
26
28
|
InstrumentId["ClarinetLittle"] = "littleClarinet";
|
|
27
29
|
InstrumentId["ContraAlto"] = "contraAlto";
|
|
28
30
|
InstrumentId["Cornet"] = "cornet";
|
|
@@ -94,7 +96,9 @@ exports.InstrumentIcons = {
|
|
|
94
96
|
[InstrumentId.Cajon]: 'cajon',
|
|
95
97
|
[InstrumentId.Cello]: 'cello',
|
|
96
98
|
[InstrumentId.Choir]: 'choirMen',
|
|
97
|
-
[InstrumentId.ClarinetBass]: '
|
|
99
|
+
[InstrumentId.ClarinetBass]: 'bassClarinet',
|
|
100
|
+
[InstrumentId.ClarinetAlto]: 'bassClarinet',
|
|
101
|
+
[InstrumentId.ClarinetContrabass]: 'contrabassClarinet',
|
|
98
102
|
[InstrumentId.ClarinetLittle]: 'clarinet',
|
|
99
103
|
[InstrumentId.Clarinet]: 'clarinet',
|
|
100
104
|
[InstrumentId.ContraAlto]: 'choirWomen',
|
package/lang/ca.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"group.players.remove.text": "Ja no formes part de {string:group.0.displayName}",
|
|
32
32
|
"group.players.remove.title": "Grup suprimit",
|
|
33
33
|
"instruments.accordion": "Acordió",
|
|
34
|
+
"instruments.altoClarinet": "Clarinet Alt",
|
|
34
35
|
"instruments.altoSaxophone": "Saxofó alt",
|
|
35
36
|
"instruments.bagpipes": "Sac de gemecs",
|
|
36
37
|
"instruments.bandurria": "Bandúrria",
|
|
@@ -49,6 +50,7 @@
|
|
|
49
50
|
"instruments.clarinet": "Clarinet",
|
|
50
51
|
"instruments.contraAlto": "Contralt",
|
|
51
52
|
"instruments.contraBass": "Contrafagot",
|
|
53
|
+
"instruments.contrabassClarinet": "Clarinete Contrabaix",
|
|
52
54
|
"instruments.cornet": "Corneta",
|
|
53
55
|
"instruments.counterTenor": "Contratenor",
|
|
54
56
|
"instruments.cymbals": "Plats",
|
package/lang/de.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"group.players.remove.text": "Du bist nicht mehr Teil von {string:group.0.displayName}",
|
|
32
32
|
"group.players.remove.title": "Gruppe löschen",
|
|
33
33
|
"instruments.accordion": "Akkordeon",
|
|
34
|
+
"instruments.altoClarinet": "Alt-Klarinette",
|
|
34
35
|
"instruments.altoSaxophone": "Altsaxophon",
|
|
35
36
|
"instruments.bagpipes": "Dudelsack",
|
|
36
37
|
"instruments.bandurria": "Bandurria",
|
|
@@ -49,6 +50,7 @@
|
|
|
49
50
|
"instruments.clarinet": "Klarinette",
|
|
50
51
|
"instruments.contraAlto": "Altstimme",
|
|
51
52
|
"instruments.contraBass": "Kontrafagott",
|
|
53
|
+
"instruments.contrabassClarinet": "Kontrabassklarinette",
|
|
52
54
|
"instruments.cornet": "Horn",
|
|
53
55
|
"instruments.counterTenor": "Countertenor",
|
|
54
56
|
"instruments.cymbals": "Zimbeln",
|
|
@@ -130,8 +132,8 @@
|
|
|
130
132
|
"performance.edit.locality.title": "Auftritt - Die Anschrift wurde geändert",
|
|
131
133
|
"performance.edit.repertory.text": "Die Noten von {string:event.0.displayName} wurden aktualisiert",
|
|
132
134
|
"performance.edit.repertory.title": "Auftritt - Die Noten wurden geändert",
|
|
133
|
-
"performance.edit.stage.text": "
|
|
134
|
-
"performance.edit.stage.title": "
|
|
135
|
+
"performance.edit.stage.text": "Die Phase von {string:event.0.displayName} wurde aktualisiert",
|
|
136
|
+
"performance.edit.stage.title": "Konzert - Bühne hat sich geändert",
|
|
135
137
|
"performance.edit.title.text": "Der Titel von {string:event.0.displayName} wurde aktualisiert",
|
|
136
138
|
"performance.edit.title.title": "Auftritt - Der Titel wurde geändert",
|
|
137
139
|
"performance.eveningReminder.confirm.text": "{string:event.0.displayName} von {string:group.0.displayName} morgen um {date:event.0.datetime:time}",
|
|
@@ -169,8 +171,8 @@
|
|
|
169
171
|
"practice.edit.locality.title": "Die Anschrift der Probe wurde geändert",
|
|
170
172
|
"practice.edit.repertory.text": "Die Noten der Probe für {date:event.0.datetime:date} wurden aktualisiert",
|
|
171
173
|
"practice.edit.repertory.title": "Probe - Die Noten wurden geändert",
|
|
172
|
-
"practice.edit.stage.text": "
|
|
173
|
-
"practice.edit.stage.title": "
|
|
174
|
+
"practice.edit.stage.text": "Die Bühne für die Probe {date:event.0.datetime:date} wurde aktualisiert",
|
|
175
|
+
"practice.edit.stage.title": "Probe - Bühne geändert",
|
|
174
176
|
"practice.edit.title.text": "Der Probentitel für {date:event.0.datetime:date} wurde aktualisiert",
|
|
175
177
|
"practice.edit.title.title": "Probe - Der Titel wurde geändert",
|
|
176
178
|
"practice.eveningReminder.confirm.text": "Probe von {string:group.0.displayName} morgen um {date:event.0.datetime:time}",
|
|
@@ -203,8 +205,8 @@
|
|
|
203
205
|
"practices.edit.locality.title": "Probe - Die Anschrift wurde geändert",
|
|
204
206
|
"practices.edit.repertory.text": "Die Noten einer Reihe von Proben wurden aktualisiert",
|
|
205
207
|
"practices.edit.repertory.title": "Probe - Die Noten wurden geändert",
|
|
206
|
-
"practices.edit.stage.text": "
|
|
207
|
-
"practices.edit.stage.title": "
|
|
208
|
+
"practices.edit.stage.text": "Die Phase mehrerer Proben wurde aktualisiert",
|
|
209
|
+
"practices.edit.stage.title": "Proben - Bühne geändert",
|
|
208
210
|
"practices.edit.title.text": "Der Titel einer Reihe von Proben wurde aktualisiert",
|
|
209
211
|
"practices.edit.title.title": "Probe - Der Titel wurde geändert",
|
|
210
212
|
"practices.players.add.text": "Du wurdest zu einer Reihe von Proben von {date:event.0.datetime:shortDate} bis {date:event.1.datetime:shortDate} hinzugefügt.",
|
package/lang/en.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"group.players.remove.text": "You are no longer part of {string:group.0.displayName}",
|
|
32
32
|
"group.players.remove.title": "Delete group",
|
|
33
33
|
"instruments.accordion": "Accordion",
|
|
34
|
+
"instruments.altoClarinet": "Alto Clarinet",
|
|
34
35
|
"instruments.altoSaxophone": "Alto Saxophone",
|
|
35
36
|
"instruments.bagpipes": "Bagpipes",
|
|
36
37
|
"instruments.bandurria": "Bandurria",
|
|
@@ -49,6 +50,7 @@
|
|
|
49
50
|
"instruments.clarinet": "Clarinet",
|
|
50
51
|
"instruments.contraAlto": "Contralto",
|
|
51
52
|
"instruments.contraBass": "Contrabass",
|
|
53
|
+
"instruments.contrabassClarinet": "Contrabass Clarinet",
|
|
52
54
|
"instruments.cornet": "Cornet",
|
|
53
55
|
"instruments.counterTenor": "Countertenor",
|
|
54
56
|
"instruments.cymbals": "Cymbals",
|
package/lang/es.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"group.players.remove.text": "Ya no formas parte de {string:group.0.displayName}",
|
|
32
32
|
"group.players.remove.title": "Grupo suprimido",
|
|
33
33
|
"instruments.accordion": "Acordeón",
|
|
34
|
+
"instruments.altoClarinet": "Clarinete Alto",
|
|
34
35
|
"instruments.altoSaxophone": "Saxofón alto",
|
|
35
36
|
"instruments.bagpipes": "Gaita",
|
|
36
37
|
"instruments.bandurria": "Bandurria",
|
|
@@ -49,6 +50,7 @@
|
|
|
49
50
|
"instruments.clarinet": "Clarinete",
|
|
50
51
|
"instruments.contraAlto": "Contralto",
|
|
51
52
|
"instruments.contraBass": "Contrafagot",
|
|
53
|
+
"instruments.contrabassClarinet": "Clarinete Contrabajo",
|
|
52
54
|
"instruments.cornet": "Corneta",
|
|
53
55
|
"instruments.counterTenor": "Contratenor",
|
|
54
56
|
"instruments.cymbals": "Platos",
|
package/lang/eu.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"group.players.remove.text": "Dagoeneko ez zara {string:group.0.displayName} taldeko kide",
|
|
32
32
|
"group.players.remove.title": "Ezabatu taldea",
|
|
33
33
|
"instruments.accordion": "Akordeoia",
|
|
34
|
+
"instruments.altoClarinet": "Klarinete Altua",
|
|
34
35
|
"instruments.altoSaxophone": "Saxofoi altua",
|
|
35
36
|
"instruments.bagpipes": "Gaita",
|
|
36
37
|
"instruments.bandurria": "Bandurria",
|
|
@@ -49,6 +50,7 @@
|
|
|
49
50
|
"instruments.clarinet": "Klarinetea",
|
|
50
51
|
"instruments.contraAlto": "Kontraltoa",
|
|
51
52
|
"instruments.contraBass": "Kontrafagota",
|
|
53
|
+
"instruments.contrabassClarinet": "Klarinete Kontrabaxua",
|
|
52
54
|
"instruments.cornet": "Korneta",
|
|
53
55
|
"instruments.counterTenor": "Kontratenorra",
|
|
54
56
|
"instruments.cymbals": "Zinbalak",
|
package/lang/gl.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"group.players.remove.text": "Xa non es parte de {string:group.0.displayName}",
|
|
32
32
|
"group.players.remove.title": "Grupo eliminado",
|
|
33
33
|
"instruments.accordion": "Acordeón",
|
|
34
|
+
"instruments.altoClarinet": "Clarinete Alto",
|
|
34
35
|
"instruments.altoSaxophone": "Saxofón alto",
|
|
35
36
|
"instruments.bagpipes": "Gaita",
|
|
36
37
|
"instruments.bandurria": "Bandurria",
|
|
@@ -49,6 +50,7 @@
|
|
|
49
50
|
"instruments.clarinet": "Clarinete",
|
|
50
51
|
"instruments.contraAlto": "Contralto",
|
|
51
52
|
"instruments.contraBass": "Contrabajo",
|
|
53
|
+
"instruments.contrabassClarinet": "Clarinete Contrabaixo",
|
|
52
54
|
"instruments.cornet": "Corneta",
|
|
53
55
|
"instruments.counterTenor": "Contratenor",
|
|
54
56
|
"instruments.cymbals": "Platos",
|
package/lang/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ declare const languageProvider: {
|
|
|
44
44
|
"group.players.remove.text": string;
|
|
45
45
|
"group.players.remove.title": string;
|
|
46
46
|
"instruments.accordion": string;
|
|
47
|
+
"instruments.altoClarinet": string;
|
|
47
48
|
"instruments.altoSaxophone": string;
|
|
48
49
|
"instruments.bagpipes": string;
|
|
49
50
|
"instruments.bandurria": string;
|
|
@@ -62,6 +63,7 @@ declare const languageProvider: {
|
|
|
62
63
|
"instruments.clarinet": string;
|
|
63
64
|
"instruments.contraAlto": string;
|
|
64
65
|
"instruments.contraBass": string;
|
|
66
|
+
"instruments.contrabassClarinet": string;
|
|
65
67
|
"instruments.cornet": string;
|
|
66
68
|
"instruments.counterTenor": string;
|
|
67
69
|
"instruments.cymbals": string;
|
|
@@ -273,6 +275,7 @@ declare const languageProvider: {
|
|
|
273
275
|
"group.players.remove.text": string;
|
|
274
276
|
"group.players.remove.title": string;
|
|
275
277
|
"instruments.accordion": string;
|
|
278
|
+
"instruments.altoClarinet": string;
|
|
276
279
|
"instruments.altoSaxophone": string;
|
|
277
280
|
"instruments.bagpipes": string;
|
|
278
281
|
"instruments.bandurria": string;
|
|
@@ -291,6 +294,7 @@ declare const languageProvider: {
|
|
|
291
294
|
"instruments.clarinet": string;
|
|
292
295
|
"instruments.contraAlto": string;
|
|
293
296
|
"instruments.contraBass": string;
|
|
297
|
+
"instruments.contrabassClarinet": string;
|
|
294
298
|
"instruments.cornet": string;
|
|
295
299
|
"instruments.counterTenor": string;
|
|
296
300
|
"instruments.cymbals": string;
|
|
@@ -502,6 +506,7 @@ declare const languageProvider: {
|
|
|
502
506
|
"group.players.remove.text": string;
|
|
503
507
|
"group.players.remove.title": string;
|
|
504
508
|
"instruments.accordion": string;
|
|
509
|
+
"instruments.altoClarinet": string;
|
|
505
510
|
"instruments.altoSaxophone": string;
|
|
506
511
|
"instruments.bagpipes": string;
|
|
507
512
|
"instruments.bandurria": string;
|
|
@@ -520,6 +525,7 @@ declare const languageProvider: {
|
|
|
520
525
|
"instruments.clarinet": string;
|
|
521
526
|
"instruments.contraAlto": string;
|
|
522
527
|
"instruments.contraBass": string;
|
|
528
|
+
"instruments.contrabassClarinet": string;
|
|
523
529
|
"instruments.cornet": string;
|
|
524
530
|
"instruments.counterTenor": string;
|
|
525
531
|
"instruments.cymbals": string;
|
|
@@ -731,6 +737,7 @@ declare const languageProvider: {
|
|
|
731
737
|
"group.players.remove.text": string;
|
|
732
738
|
"group.players.remove.title": string;
|
|
733
739
|
"instruments.accordion": string;
|
|
740
|
+
"instruments.altoClarinet": string;
|
|
734
741
|
"instruments.altoSaxophone": string;
|
|
735
742
|
"instruments.bagpipes": string;
|
|
736
743
|
"instruments.bandurria": string;
|
|
@@ -749,6 +756,7 @@ declare const languageProvider: {
|
|
|
749
756
|
"instruments.clarinet": string;
|
|
750
757
|
"instruments.contraAlto": string;
|
|
751
758
|
"instruments.contraBass": string;
|
|
759
|
+
"instruments.contrabassClarinet": string;
|
|
752
760
|
"instruments.cornet": string;
|
|
753
761
|
"instruments.counterTenor": string;
|
|
754
762
|
"instruments.cymbals": string;
|
|
@@ -960,6 +968,7 @@ declare const languageProvider: {
|
|
|
960
968
|
"group.players.remove.text": string;
|
|
961
969
|
"group.players.remove.title": string;
|
|
962
970
|
"instruments.accordion": string;
|
|
971
|
+
"instruments.altoClarinet": string;
|
|
963
972
|
"instruments.altoSaxophone": string;
|
|
964
973
|
"instruments.bagpipes": string;
|
|
965
974
|
"instruments.bandurria": string;
|
|
@@ -978,6 +987,7 @@ declare const languageProvider: {
|
|
|
978
987
|
"instruments.clarinet": string;
|
|
979
988
|
"instruments.contraAlto": string;
|
|
980
989
|
"instruments.contraBass": string;
|
|
990
|
+
"instruments.contrabassClarinet": string;
|
|
981
991
|
"instruments.cornet": string;
|
|
982
992
|
"instruments.counterTenor": string;
|
|
983
993
|
"instruments.cymbals": string;
|
|
@@ -1189,6 +1199,7 @@ declare const languageProvider: {
|
|
|
1189
1199
|
"group.players.remove.text": string;
|
|
1190
1200
|
"group.players.remove.title": string;
|
|
1191
1201
|
"instruments.accordion": string;
|
|
1202
|
+
"instruments.altoClarinet": string;
|
|
1192
1203
|
"instruments.altoSaxophone": string;
|
|
1193
1204
|
"instruments.bagpipes": string;
|
|
1194
1205
|
"instruments.bandurria": string;
|
|
@@ -1207,6 +1218,7 @@ declare const languageProvider: {
|
|
|
1207
1218
|
"instruments.clarinet": string;
|
|
1208
1219
|
"instruments.contraAlto": string;
|
|
1209
1220
|
"instruments.contraBass": string;
|
|
1221
|
+
"instruments.contrabassClarinet": string;
|
|
1210
1222
|
"instruments.cornet": string;
|
|
1211
1223
|
"instruments.counterTenor": string;
|
|
1212
1224
|
"instruments.cymbals": string;
|
|
@@ -1418,6 +1430,7 @@ declare const languageProvider: {
|
|
|
1418
1430
|
"group.players.remove.text": string;
|
|
1419
1431
|
"group.players.remove.title": string;
|
|
1420
1432
|
"instruments.accordion": string;
|
|
1433
|
+
"instruments.altoClarinet": string;
|
|
1421
1434
|
"instruments.altoSaxophone": string;
|
|
1422
1435
|
"instruments.bagpipes": string;
|
|
1423
1436
|
"instruments.bandurria": string;
|
|
@@ -1436,6 +1449,7 @@ declare const languageProvider: {
|
|
|
1436
1449
|
"instruments.clarinet": string;
|
|
1437
1450
|
"instruments.contraAlto": string;
|
|
1438
1451
|
"instruments.contraBass": string;
|
|
1452
|
+
"instruments.contrabassClarinet": string;
|
|
1439
1453
|
"instruments.cornet": string;
|
|
1440
1454
|
"instruments.counterTenor": string;
|
|
1441
1455
|
"instruments.cymbals": string;
|
package/lang/pt.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"group.players.remove.text": "Você não faz mais parte do {string:group.0.displayName}",
|
|
32
32
|
"group.players.remove.title": "Excluir grupo",
|
|
33
33
|
"instruments.accordion": "Acordeão",
|
|
34
|
+
"instruments.altoClarinet": "Clarinete Alto",
|
|
34
35
|
"instruments.altoSaxophone": "Saxofone alto",
|
|
35
36
|
"instruments.bagpipes": "Gaita de Foles",
|
|
36
37
|
"instruments.bandurria": "Bandurria",
|
|
@@ -49,6 +50,7 @@
|
|
|
49
50
|
"instruments.clarinet": "Clarinete",
|
|
50
51
|
"instruments.contraAlto": "Contralto",
|
|
51
52
|
"instruments.contraBass": "Contrabaixo",
|
|
53
|
+
"instruments.contrabassClarinet": "Clarinete contrabaixo",
|
|
52
54
|
"instruments.cornet": "Cornetim",
|
|
53
55
|
"instruments.counterTenor": "Contratenor",
|
|
54
56
|
"instruments.cymbals": "Pratos",
|