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.
package/lib/back/smm/entity.d.ts
CHANGED
|
@@ -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
|
-
|
|
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" | "
|
|
38
|
+
export interface BoUpdateSmmCampaignRequest extends Pick<BoCreateSmmCampaignRequest, "name" | "cronExpression" | "timeZone" | "type"> {
|
|
38
39
|
id: string;
|
|
39
40
|
}
|
|
40
41
|
export interface BoSmmChannelFeedRequest extends FeedRequest {
|
package/lib/common/enums.d.ts
CHANGED
package/lib/common/enums.js
CHANGED
|
@@ -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 = {}));
|