@otters.ai/common-backend 1.0.103 → 1.0.105
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/build/enum/subjects.d.ts +3 -1
- package/build/enum/subjects.js +3 -0
- package/build/interface/email/inviteEmailStruct.d.ts +8 -0
- package/build/interface/email/inviteEmailStruct.js +2 -0
- package/build/interface/index.d.ts +2 -0
- package/build/interface/index.js +3 -0
- package/build/interface/mapCreated/mapUpdateRolesStruct.d.ts +9 -0
- package/build/interface/mapCreated/mapUpdateRolesStruct.js +2 -0
- package/package.json +1 -1
package/build/enum/subjects.d.ts
CHANGED
|
@@ -8,11 +8,13 @@ export declare enum Subjects {
|
|
|
8
8
|
CompanyUpdated = "company:updated",
|
|
9
9
|
MapCreated = "map:created",
|
|
10
10
|
MapUpdated = "map:updated",
|
|
11
|
+
MapRoleUpdated = "map:roleUpdated",
|
|
11
12
|
DefaultGoalCreated = "defaultGoal:created",
|
|
12
13
|
GoalCreated = "goal:created",
|
|
13
14
|
GoalUpdated = "goal:updated",
|
|
14
15
|
UserCreated = "user:created",
|
|
15
16
|
UserUpdated = "user:updated",
|
|
16
17
|
ActivityCreated = "activity:created",
|
|
17
|
-
ActivityUpdated = "activity:updated"
|
|
18
|
+
ActivityUpdated = "activity:updated",
|
|
19
|
+
InviteEmail = "invite:email"
|
|
18
20
|
}
|
package/build/enum/subjects.js
CHANGED
|
@@ -14,6 +14,7 @@ var Subjects;
|
|
|
14
14
|
// Map...
|
|
15
15
|
Subjects["MapCreated"] = "map:created";
|
|
16
16
|
Subjects["MapUpdated"] = "map:updated";
|
|
17
|
+
Subjects["MapRoleUpdated"] = "map:roleUpdated";
|
|
17
18
|
// Goal...
|
|
18
19
|
Subjects["DefaultGoalCreated"] = "defaultGoal:created";
|
|
19
20
|
Subjects["GoalCreated"] = "goal:created";
|
|
@@ -24,4 +25,6 @@ var Subjects;
|
|
|
24
25
|
// Activity...
|
|
25
26
|
Subjects["ActivityCreated"] = "activity:created";
|
|
26
27
|
Subjects["ActivityUpdated"] = "activity:updated";
|
|
28
|
+
// Email...
|
|
29
|
+
Subjects["InviteEmail"] = "invite:email";
|
|
27
30
|
})(Subjects || (exports.Subjects = Subjects = {}));
|
|
@@ -11,6 +11,7 @@ export * from './company/companyStruct';
|
|
|
11
11
|
export * from './mapCreated/mapCreatedStruct';
|
|
12
12
|
export * from './mapCreated/mapUpdatedStruct';
|
|
13
13
|
export * from './mapCreated/mapStruct';
|
|
14
|
+
export * from './mapCreated/mapUpdateRolesStruct';
|
|
14
15
|
export * from './goal/goalCreatedStruct';
|
|
15
16
|
export * from './goal/defaultGoalCreatedStruct';
|
|
16
17
|
export * from './goal/goalActivityDetailsStruct';
|
|
@@ -21,3 +22,4 @@ export * from './activity/activityUpdatedStruct';
|
|
|
21
22
|
export * from './user/userCreated';
|
|
22
23
|
export * from './user/userUpdated';
|
|
23
24
|
export * from './user/user';
|
|
25
|
+
export * from './email/inviteEmailStruct';
|
package/build/interface/index.js
CHANGED
|
@@ -29,6 +29,7 @@ __exportStar(require("./company/companyStruct"), exports);
|
|
|
29
29
|
__exportStar(require("./mapCreated/mapCreatedStruct"), exports);
|
|
30
30
|
__exportStar(require("./mapCreated/mapUpdatedStruct"), exports);
|
|
31
31
|
__exportStar(require("./mapCreated/mapStruct"), exports);
|
|
32
|
+
__exportStar(require("./mapCreated/mapUpdateRolesStruct"), exports);
|
|
32
33
|
// goal...
|
|
33
34
|
__exportStar(require("./goal/goalCreatedStruct"), exports);
|
|
34
35
|
__exportStar(require("./goal/defaultGoalCreatedStruct"), exports);
|
|
@@ -42,3 +43,5 @@ __exportStar(require("./activity/activityUpdatedStruct"), exports);
|
|
|
42
43
|
__exportStar(require("./user/userCreated"), exports);
|
|
43
44
|
__exportStar(require("./user/userUpdated"), exports);
|
|
44
45
|
__exportStar(require("./user/user"), exports);
|
|
46
|
+
// email...
|
|
47
|
+
__exportStar(require("./email/inviteEmailStruct"), exports);
|