@glissandoo/lib 1.35.1 → 1.36.1
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 -0
- package/functions/index.js +1 -0
- package/functions/regions.js +1 -0
- package/models/User/index.d.ts +1 -0
- package/models/User/index.js +3 -0
- package/models/User/types.d.ts +1 -0
- package/package.json +1 -1
package/functions/index.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ export declare enum FbFunctionName {
|
|
|
38
38
|
FederationPartnershipSendInvitationToJoinEmail = "federationPartnership-sendInvitationToJoinEmail",
|
|
39
39
|
FederationRemove = "federation-remove",
|
|
40
40
|
FederationRemoveAdmin = "federation-removeAdmin",
|
|
41
|
+
GCEventsOnCreate = "gcEvents-onCreate",
|
|
41
42
|
GroupChangeStatus = "group-changeStatus",
|
|
42
43
|
GroupCronSatistactionIndexWeekly = "group-cronSatistactionIndexWeekly",
|
|
43
44
|
GroupEdit = "group-edit",
|
package/functions/index.js
CHANGED
|
@@ -42,6 +42,7 @@ var FbFunctionName;
|
|
|
42
42
|
FbFunctionName["FederationPartnershipSendInvitationToJoinEmail"] = "federationPartnership-sendInvitationToJoinEmail";
|
|
43
43
|
FbFunctionName["FederationRemove"] = "federation-remove";
|
|
44
44
|
FbFunctionName["FederationRemoveAdmin"] = "federation-removeAdmin";
|
|
45
|
+
FbFunctionName["GCEventsOnCreate"] = "gcEvents-onCreate";
|
|
45
46
|
FbFunctionName["GroupChangeStatus"] = "group-changeStatus";
|
|
46
47
|
FbFunctionName["GroupCronSatistactionIndexWeekly"] = "group-cronSatistactionIndexWeekly";
|
|
47
48
|
FbFunctionName["GroupEdit"] = "group-edit";
|
package/functions/regions.js
CHANGED
|
@@ -17,6 +17,7 @@ const regionByFunctions = {
|
|
|
17
17
|
[index_1.FbFunctionName.UserOnLogin]: GCloudRegions.EuropeWest6,
|
|
18
18
|
[index_1.FbFunctionName.UserOnSignUp]: GCloudRegions.EuropeWest6,
|
|
19
19
|
[index_1.FbFunctionName.JWTGenerate]: GCloudRegions.EuropeWest6,
|
|
20
|
+
[index_1.FbFunctionName.GCEventsOnCreate]: GCloudRegions.EuropeWest6,
|
|
20
21
|
[index_1.FbFunctionName.GroupPublish]: GCloudRegions.EuropeWest6,
|
|
21
22
|
[index_1.FbFunctionName.GroupEdit]: GCloudRegions.EuropeWest6,
|
|
22
23
|
[index_1.FbFunctionName.GroupRemove]: GCloudRegions.UsCentral1,
|
package/models/User/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export default class User extends UserBasic<UserData> {
|
|
|
22
22
|
get language(): LanguagesTypes;
|
|
23
23
|
get createdAt(): import("../../types/firestore").Timestamp;
|
|
24
24
|
get intercomId(): string | null;
|
|
25
|
+
get messageBirdId(): string | null;
|
|
25
26
|
get groups(): string[];
|
|
26
27
|
get groupsAdmin(): string[];
|
|
27
28
|
get isAdmin(): boolean;
|
package/models/User/index.js
CHANGED
package/models/User/types.d.ts
CHANGED