revdev 0.320.0 → 0.322.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.
@@ -12,6 +12,9 @@ export interface BoListRecord {
12
12
  wordTotal: number;
13
13
  userTotal: number;
14
14
  image?: ImageGen;
15
+ audioFilled: number;
16
+ imageFilled: number;
17
+ tagFilled: number;
15
18
  }
16
19
  export interface BoListModifier extends BoUpdateListRequest {
17
20
  image?: ImageGen;
@@ -21,7 +21,7 @@ export interface BoTagRecord {
21
21
  interface BoTagRefRecord {
22
22
  id: string;
23
23
  active: boolean;
24
- status: EntryStatus;
24
+ status?: EntryStatus;
25
25
  rate: number;
26
26
  tag: TagGen;
27
27
  contrib: DualContribGen;
@@ -27,12 +27,13 @@ export declare enum SocialProvider {
27
27
  Telegram = "telegram"
28
28
  }
29
29
  export declare enum SmmCampaignStatus {
30
- IN_PROGRESS = 1,
31
- COMPLETED = 2
30
+ InProgress = 1,
31
+ Completed = 2
32
32
  }
33
33
  export declare enum SmmCampaignType {
34
- POST = "POST",
35
- QUIZ = "QUIZ"
34
+ Post = "post",
35
+ Quiz = "quiz",
36
+ Audio = "audio"
36
37
  }
37
38
  export declare enum ExerciseType {
38
39
  Regular = "regular",
@@ -38,13 +38,14 @@ var SocialProvider;
38
38
  })(SocialProvider || (exports.SocialProvider = SocialProvider = {}));
39
39
  var SmmCampaignStatus;
40
40
  (function (SmmCampaignStatus) {
41
- SmmCampaignStatus[SmmCampaignStatus["IN_PROGRESS"] = 1] = "IN_PROGRESS";
42
- SmmCampaignStatus[SmmCampaignStatus["COMPLETED"] = 2] = "COMPLETED";
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["POST"] = "POST";
47
- SmmCampaignType["QUIZ"] = "QUIZ";
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.320.0",
3
+ "version": "0.322.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",