revdev 0.336.0 → 0.338.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.
|
@@ -9,12 +9,13 @@ export interface BoCreateSmmChannelRequest {
|
|
|
9
9
|
meaningTemplate?: string;
|
|
10
10
|
url: string;
|
|
11
11
|
quizTemplate?: string;
|
|
12
|
+
transcriptionTemplate?: string;
|
|
12
13
|
}
|
|
13
14
|
export interface BoSmmChannelModifier extends BoCreateSmmChannelRequest {
|
|
14
15
|
id: string;
|
|
15
16
|
active: boolean;
|
|
16
17
|
}
|
|
17
|
-
export interface BoUpdateSmmChannelRequest extends Pick<BoCreateSmmChannelRequest, "providerId" | "url" | "postTemplate" | "meaningTemplate"> {
|
|
18
|
+
export interface BoUpdateSmmChannelRequest extends Pick<BoCreateSmmChannelRequest, "providerId" | "url" | "postTemplate" | "meaningTemplate" | "transcriptionTemplate"> {
|
|
18
19
|
id: string;
|
|
19
20
|
}
|
|
20
21
|
export interface BoSmmCampaignFeedRequest extends FeedRequest {
|
|
@@ -2,6 +2,7 @@ import { EntryStatus } from "../../common";
|
|
|
2
2
|
import { WordDataGen } from "../../front";
|
|
3
3
|
import { WordGen } from "../../shared";
|
|
4
4
|
export interface BoWordRecord extends WordDataGen {
|
|
5
|
+
transcription?: string;
|
|
5
6
|
status?: EntryStatus;
|
|
6
7
|
created: string;
|
|
7
8
|
mode?: number;
|
|
@@ -14,6 +15,7 @@ export interface BoWordRecord extends WordDataGen {
|
|
|
14
15
|
tagTotal: number;
|
|
15
16
|
}
|
|
16
17
|
export interface BoWordEntity extends WordGen {
|
|
18
|
+
transcription?: string;
|
|
17
19
|
created: string;
|
|
18
20
|
mode?: number;
|
|
19
21
|
rate?: number;
|
package/lib/feed/index.d.ts
CHANGED
|
@@ -4,10 +4,14 @@ export interface CreateWordRequest {
|
|
|
4
4
|
text: string;
|
|
5
5
|
mode?: number;
|
|
6
6
|
rate?: number;
|
|
7
|
+
transcription?: string;
|
|
7
8
|
}
|
|
8
9
|
export interface UpdateWordRequest extends CreateWordRequest {
|
|
9
10
|
id: string;
|
|
10
11
|
}
|
|
12
|
+
export interface WordModifier extends UpdateWordRequest {
|
|
13
|
+
active?: boolean;
|
|
14
|
+
}
|
|
11
15
|
export interface InitWordRequest {
|
|
12
16
|
langCode: string;
|
|
13
17
|
word: LiteralWord;
|