revdev 0.345.0 → 0.347.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.
|
@@ -7,7 +7,8 @@ export interface BoCreateSmmChannelRequest {
|
|
|
7
7
|
tranLangCode: string;
|
|
8
8
|
postTemplate: string;
|
|
9
9
|
audioTemplate: string;
|
|
10
|
-
|
|
10
|
+
firstRowTemplate: string;
|
|
11
|
+
rowTemplate: string;
|
|
11
12
|
meaningTemplate?: string;
|
|
12
13
|
url: string;
|
|
13
14
|
quizTemplate: string;
|
|
@@ -16,7 +17,7 @@ export interface BoSmmChannelModifier extends BoCreateSmmChannelRequest {
|
|
|
16
17
|
id: string;
|
|
17
18
|
active: boolean;
|
|
18
19
|
}
|
|
19
|
-
export interface BoUpdateSmmChannelRequest extends
|
|
20
|
+
export interface BoUpdateSmmChannelRequest extends Omit<BoCreateSmmChannelRequest, "provider" | "langCode" | "tranLangCode"> {
|
|
20
21
|
id: string;
|
|
21
22
|
}
|
|
22
23
|
export interface BoSmmCampaignFeedRequest extends FeedRequest {
|