revdev 0.360.0 → 0.361.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.
@@ -15,4 +15,5 @@ export interface BoRuleModifier extends BoRuleRecord {
15
15
  content: string;
16
16
  note?: string;
17
17
  exerciseTotal: number;
18
+ description: string;
18
19
  }
@@ -8,6 +8,7 @@ export interface BoCreateRuleRequest {
8
8
  content: string;
9
9
  note?: string;
10
10
  predefinedOptions?: string[];
11
+ description: string;
11
12
  }
12
13
  export interface BoUpdateRuleRequest extends BoCreateRuleRequest {
13
14
  id: string;
@@ -19,10 +19,11 @@ export interface BoSmmCampaignRecord {
19
19
  channel: NameGen;
20
20
  list?: NameGen;
21
21
  table?: NameGen;
22
+ rule?: NameGen;
22
23
  cronExpression: string;
23
24
  timeZone: string;
24
- wordsPosted: number;
25
- wordsTotal: number;
25
+ postsCount: number;
26
+ postsTotal: number;
26
27
  type: SmmCampaignType;
27
28
  }
28
29
  export interface BoSmmPostRecord {
@@ -31,6 +31,7 @@ export interface BoCreateSmmCampaignRequest {
31
31
  channelId: string;
32
32
  listId?: string;
33
33
  tableId?: string;
34
+ ruleId?: string;
34
35
  cronExpression: string;
35
36
  timeZone: string;
36
37
  type: SmmCampaignType;
@@ -117,6 +117,7 @@ export declare enum PermissionName {
117
117
  export declare enum AiPromptName {
118
118
  WordTags = "wordTags",
119
119
  Rule = "rule",
120
+ RuleDescription = "ruleDescription",
120
121
  WordSynonym = "wordSynonym",
121
122
  WordMeaning = "wordMeaning",
122
123
  WordTranscription = "wordTranscription",
@@ -149,6 +149,7 @@ var AiPromptName;
149
149
  (function (AiPromptName) {
150
150
  AiPromptName["WordTags"] = "wordTags";
151
151
  AiPromptName["Rule"] = "rule";
152
+ AiPromptName["RuleDescription"] = "ruleDescription";
152
153
  AiPromptName["WordSynonym"] = "wordSynonym";
153
154
  AiPromptName["WordMeaning"] = "wordMeaning";
154
155
  AiPromptName["WordTranscription"] = "wordTranscription";
@@ -9,6 +9,7 @@ export interface FeRuleRecord {
9
9
  export interface FeRuleEntity extends FeRuleRecord {
10
10
  contentType: ContentType;
11
11
  content: string;
12
+ description: string;
12
13
  }
13
14
  export interface FeRuleKnowingResult {
14
15
  changed: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.360.0",
3
+ "version": "0.361.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",