revdev 0.248.0 → 0.250.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.
@@ -1,7 +1,6 @@
1
- import { SocialProvider } from "../../common";
1
+ import { SmmCampaignStatus, SocialProvider } from "../../common";
2
2
  import { WordGen } from "../../shared";
3
3
  import { BoListRecord } from "../list";
4
- import { SmmCampaignStatus } from "./enum";
5
4
  export interface BoSmmChannelRecord {
6
5
  id: string;
7
6
  provider: SocialProvider;
@@ -1,3 +1,2 @@
1
1
  export * from "./entity";
2
2
  export * from "./request";
3
- export * from "./enum";
@@ -12,4 +12,3 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
13
  __exportStar(require("./entity"), exports);
14
14
  __exportStar(require("./request"), exports);
15
- __exportStar(require("./enum"), exports);
@@ -26,3 +26,7 @@ export declare enum SocialProvider {
26
26
  Google = "google",
27
27
  Telegram = "telegram"
28
28
  }
29
+ export declare enum SmmCampaignStatus {
30
+ IN_PROGRESS = 1,
31
+ COMPLETED = 2
32
+ }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SocialProvider = exports.EntryStatus = exports.QuizMode = exports.UserReaction = exports.WordMode = exports.Knowing = void 0;
3
+ exports.SmmCampaignStatus = exports.SocialProvider = exports.EntryStatus = exports.QuizMode = exports.UserReaction = exports.WordMode = exports.Knowing = void 0;
4
4
  var Knowing;
5
5
  (function (Knowing) {
6
6
  Knowing[Knowing["Known"] = 1] = "Known";
@@ -36,3 +36,8 @@ var SocialProvider;
36
36
  SocialProvider["Google"] = "google";
37
37
  SocialProvider["Telegram"] = "telegram";
38
38
  })(SocialProvider = exports.SocialProvider || (exports.SocialProvider = {}));
39
+ var SmmCampaignStatus;
40
+ (function (SmmCampaignStatus) {
41
+ SmmCampaignStatus[SmmCampaignStatus["IN_PROGRESS"] = 1] = "IN_PROGRESS";
42
+ SmmCampaignStatus[SmmCampaignStatus["COMPLETED"] = 2] = "COMPLETED";
43
+ })(SmmCampaignStatus = exports.SmmCampaignStatus || (exports.SmmCampaignStatus = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.248.0",
3
+ "version": "0.250.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -1,4 +0,0 @@
1
- export declare enum SmmCampaignStatus {
2
- IN_PROGRESS = "IN_PROGRESS",
3
- COMPLETED = "COMPLETED"
4
- }
@@ -1,8 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SmmCampaignStatus = void 0;
4
- var SmmCampaignStatus;
5
- (function (SmmCampaignStatus) {
6
- SmmCampaignStatus["IN_PROGRESS"] = "IN_PROGRESS";
7
- SmmCampaignStatus["COMPLETED"] = "COMPLETED";
8
- })(SmmCampaignStatus = exports.SmmCampaignStatus || (exports.SmmCampaignStatus = {}));