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.
@@ -28,7 +28,3 @@ export interface BoListWordFeedRequest extends FeedRequest, WordFeedExtension {
28
28
  listId: string;
29
29
  hasTran?: boolean;
30
30
  }
31
- export interface BoAddWordTranscriptionsRequest {
32
- langCode: string;
33
- wordIds: string[];
34
- }
@@ -11,4 +11,5 @@ export interface BoRuleRecord {
11
11
  export interface BoRuleModifier extends BoRuleRecord {
12
12
  contentType: ContentType;
13
13
  content: string;
14
+ note?: string;
14
15
  }
@@ -6,6 +6,7 @@ export interface BoCreateRuleRequest {
6
6
  name: string;
7
7
  contentType: ContentType;
8
8
  content: string;
9
+ note?: string;
9
10
  }
10
11
  export interface BoUpdateRuleRequest extends BoCreateRuleRequest {
11
12
  id: string;
@@ -7,7 +7,8 @@ export interface BoCreateSmmChannelRequest {
7
7
  tranLangCode: string;
8
8
  postTemplate: string;
9
9
  audioTemplate: string;
10
- tableRowTemplate: string;
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 Pick<BoCreateSmmChannelRequest, "providerId" | "url" | "postTemplate" | "audioTemplate" | "tableRowTemplate" | "meaningTemplate" | "quizTemplate"> {
20
+ export interface BoUpdateSmmChannelRequest extends Omit<BoCreateSmmChannelRequest, "provider" | "langCode" | "tranLangCode"> {
20
21
  id: string;
21
22
  }
22
23
  export interface BoSmmCampaignFeedRequest extends FeedRequest {
@@ -12,3 +12,7 @@ export interface BoWordFeedRequest extends FeedRequest, WordFeedExtension {
12
12
  active?: boolean;
13
13
  status?: EntryStatus;
14
14
  }
15
+ export interface BoAddWordTranscriptionsRequest {
16
+ langCode: string;
17
+ wordIds: string[];
18
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.345.0",
3
+ "version": "0.347.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",