revdev 0.334.0 → 0.336.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.
@@ -18,7 +18,7 @@ export interface BoSmmCampaignRecord {
18
18
  status: SmmCampaignStatus;
19
19
  channel: NameGen;
20
20
  list: NameGen;
21
- cronIntervalFormat: string;
21
+ cronExpression: string;
22
22
  timeZone: string;
23
23
  wordsPosted: number;
24
24
  wordsTotal: number;
@@ -21,12 +21,13 @@ export interface BoSmmCampaignFeedRequest extends FeedRequest {
21
21
  channelId?: string;
22
22
  active?: boolean;
23
23
  listId?: string;
24
+ type?: SmmCampaignType;
24
25
  }
25
26
  export interface BoCreateSmmCampaignRequest {
26
27
  name: string;
27
28
  channelId: string;
28
29
  listId: string;
29
- cronIntervalFormat: string;
30
+ cronExpression: string;
30
31
  timeZone: string;
31
32
  type: SmmCampaignType;
32
33
  }
@@ -34,7 +35,7 @@ export interface BoSmmCampaignModifier extends BoCreateSmmCampaignRequest {
34
35
  id: string;
35
36
  active: boolean;
36
37
  }
37
- export interface BoUpdateSmmCampaignRequest extends Pick<BoCreateSmmCampaignRequest, "name" | "cronIntervalFormat" | "timeZone" | "type"> {
38
+ export interface BoUpdateSmmCampaignRequest extends Pick<BoCreateSmmCampaignRequest, "name" | "cronExpression" | "timeZone" | "type"> {
38
39
  id: string;
39
40
  }
40
41
  export interface BoSmmChannelFeedRequest extends FeedRequest {
@@ -118,5 +118,6 @@ export declare enum AiPromptName {
118
118
  WordTags = "wordTags",
119
119
  Rule = "rule",
120
120
  WordSynonym = "wordSynonym",
121
- WordMeaning = "wordMeaning"
121
+ WordMeaning = "wordMeaning",
122
+ WordTranscription = "wordTranscription"
122
123
  }
@@ -151,4 +151,5 @@ var AiPromptName;
151
151
  AiPromptName["Rule"] = "rule";
152
152
  AiPromptName["WordSynonym"] = "wordSynonym";
153
153
  AiPromptName["WordMeaning"] = "wordMeaning";
154
+ AiPromptName["WordTranscription"] = "wordTranscription";
154
155
  })(AiPromptName || (exports.AiPromptName = AiPromptName = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.334.0",
3
+ "version": "0.336.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",