revdev 0.320.0 → 0.321.0
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/lib/back/tag/entity.d.ts +1 -1
- package/lib/common/enums.d.ts +5 -4
- package/lib/common/enums.js +5 -4
- package/package.json +1 -1
package/lib/back/tag/entity.d.ts
CHANGED
package/lib/common/enums.d.ts
CHANGED
|
@@ -27,12 +27,13 @@ export declare enum SocialProvider {
|
|
|
27
27
|
Telegram = "telegram"
|
|
28
28
|
}
|
|
29
29
|
export declare enum SmmCampaignStatus {
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
InProgress = 1,
|
|
31
|
+
Completed = 2
|
|
32
32
|
}
|
|
33
33
|
export declare enum SmmCampaignType {
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
Post = "post",
|
|
35
|
+
Quiz = "quiz",
|
|
36
|
+
Audio = "audio"
|
|
36
37
|
}
|
|
37
38
|
export declare enum ExerciseType {
|
|
38
39
|
Regular = "regular",
|
package/lib/common/enums.js
CHANGED
|
@@ -38,13 +38,14 @@ var SocialProvider;
|
|
|
38
38
|
})(SocialProvider || (exports.SocialProvider = SocialProvider = {}));
|
|
39
39
|
var SmmCampaignStatus;
|
|
40
40
|
(function (SmmCampaignStatus) {
|
|
41
|
-
SmmCampaignStatus[SmmCampaignStatus["
|
|
42
|
-
SmmCampaignStatus[SmmCampaignStatus["
|
|
41
|
+
SmmCampaignStatus[SmmCampaignStatus["InProgress"] = 1] = "InProgress";
|
|
42
|
+
SmmCampaignStatus[SmmCampaignStatus["Completed"] = 2] = "Completed";
|
|
43
43
|
})(SmmCampaignStatus || (exports.SmmCampaignStatus = SmmCampaignStatus = {}));
|
|
44
44
|
var SmmCampaignType;
|
|
45
45
|
(function (SmmCampaignType) {
|
|
46
|
-
SmmCampaignType["
|
|
47
|
-
SmmCampaignType["
|
|
46
|
+
SmmCampaignType["Post"] = "post";
|
|
47
|
+
SmmCampaignType["Quiz"] = "quiz";
|
|
48
|
+
SmmCampaignType["Audio"] = "audio";
|
|
48
49
|
})(SmmCampaignType || (exports.SmmCampaignType = SmmCampaignType = {}));
|
|
49
50
|
var ExerciseType;
|
|
50
51
|
(function (ExerciseType) {
|