@wrcb/cb-common 1.0.178 → 1.0.180
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/events/subjects.d.ts +16 -16
- package/build/events/subjects.js +16 -16
- package/package.json +1 -1
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
export declare enum Subjects {
|
|
2
|
-
NewPasswordGenerated = "
|
|
3
|
-
UserUpdated = "
|
|
4
|
-
UserCreated = "
|
|
5
|
-
CommentCreated = "
|
|
6
|
-
ToggledBlockUser = "
|
|
7
|
-
CommentUpdated = "
|
|
8
|
-
PredictionCreated = "
|
|
9
|
-
PredictionStarted = "
|
|
10
|
-
PredictionPaused = "
|
|
11
|
-
PredictionFinished = "
|
|
12
|
-
PredictionDeleted = "
|
|
13
|
-
PredictionUpdated = "
|
|
14
|
-
PredictionResultProcessed = "
|
|
15
|
-
BetMade = "
|
|
16
|
-
DepositMade = "
|
|
17
|
-
WithdrawalMade = "
|
|
2
|
+
NewPasswordGenerated = "NewPasswordGenerated",
|
|
3
|
+
UserUpdated = "UserUpdated",
|
|
4
|
+
UserCreated = "UserCreated",
|
|
5
|
+
CommentCreated = "CommentCreated",
|
|
6
|
+
ToggledBlockUser = "ToggledBlockUser",
|
|
7
|
+
CommentUpdated = "CommentUpdated",
|
|
8
|
+
PredictionCreated = "PredictionCreated",
|
|
9
|
+
PredictionStarted = "PredictionStarted",
|
|
10
|
+
PredictionPaused = "PredictionPaused",
|
|
11
|
+
PredictionFinished = "PredictionFinished",
|
|
12
|
+
PredictionDeleted = "PredictionDeleted",
|
|
13
|
+
PredictionUpdated = "PredictionUpdated",
|
|
14
|
+
PredictionResultProcessed = "PredictionResultProcessed",
|
|
15
|
+
BetMade = "BetMade",
|
|
16
|
+
DepositMade = "DepositMade",
|
|
17
|
+
WithdrawalMade = "WithdrawalMade"
|
|
18
18
|
}
|
package/build/events/subjects.js
CHANGED
|
@@ -3,20 +3,20 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.Subjects = void 0;
|
|
4
4
|
var Subjects;
|
|
5
5
|
(function (Subjects) {
|
|
6
|
-
Subjects["NewPasswordGenerated"] = "
|
|
7
|
-
Subjects["UserUpdated"] = "
|
|
8
|
-
Subjects["UserCreated"] = "
|
|
9
|
-
Subjects["CommentCreated"] = "
|
|
10
|
-
Subjects["ToggledBlockUser"] = "
|
|
11
|
-
Subjects["CommentUpdated"] = "
|
|
12
|
-
Subjects["PredictionCreated"] = "
|
|
13
|
-
Subjects["PredictionStarted"] = "
|
|
14
|
-
Subjects["PredictionPaused"] = "
|
|
15
|
-
Subjects["PredictionFinished"] = "
|
|
16
|
-
Subjects["PredictionDeleted"] = "
|
|
17
|
-
Subjects["PredictionUpdated"] = "
|
|
18
|
-
Subjects["PredictionResultProcessed"] = "
|
|
19
|
-
Subjects["BetMade"] = "
|
|
20
|
-
Subjects["DepositMade"] = "
|
|
21
|
-
Subjects["WithdrawalMade"] = "
|
|
6
|
+
Subjects["NewPasswordGenerated"] = "NewPasswordGenerated";
|
|
7
|
+
Subjects["UserUpdated"] = "UserUpdated";
|
|
8
|
+
Subjects["UserCreated"] = "UserCreated";
|
|
9
|
+
Subjects["CommentCreated"] = "CommentCreated";
|
|
10
|
+
Subjects["ToggledBlockUser"] = "ToggledBlockUser";
|
|
11
|
+
Subjects["CommentUpdated"] = "CommentUpdated";
|
|
12
|
+
Subjects["PredictionCreated"] = "PredictionCreated";
|
|
13
|
+
Subjects["PredictionStarted"] = "PredictionStarted";
|
|
14
|
+
Subjects["PredictionPaused"] = "PredictionPaused";
|
|
15
|
+
Subjects["PredictionFinished"] = "PredictionFinished";
|
|
16
|
+
Subjects["PredictionDeleted"] = "PredictionDeleted";
|
|
17
|
+
Subjects["PredictionUpdated"] = "PredictionUpdated";
|
|
18
|
+
Subjects["PredictionResultProcessed"] = "PredictionResultProcessed";
|
|
19
|
+
Subjects["BetMade"] = "BetMade";
|
|
20
|
+
Subjects["DepositMade"] = "DepositMade";
|
|
21
|
+
Subjects["WithdrawalMade"] = "WithdrawalMade";
|
|
22
22
|
})(Subjects || (exports.Subjects = Subjects = {}));
|