revdev 0.197.0 → 0.198.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.
@@ -1,8 +1,9 @@
1
- export * from "./locale-text";
1
+ export * from "./localeText";
2
2
  export * from "./common";
3
3
  export * from "./list";
4
4
  export * from "./word";
5
5
  export * from "./tran";
6
+ export * from "./speechPart";
6
7
  export * from "./tag";
7
8
  export * from "./user";
8
9
  export * from "./general";
package/lib/back/index.js CHANGED
@@ -10,11 +10,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
10
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
- __exportStar(require("./locale-text"), exports);
13
+ __exportStar(require("./localeText"), exports);
14
14
  __exportStar(require("./common"), exports);
15
15
  __exportStar(require("./list"), exports);
16
16
  __exportStar(require("./word"), exports);
17
17
  __exportStar(require("./tran"), exports);
18
+ __exportStar(require("./speechPart"), exports);
18
19
  __exportStar(require("./tag"), exports);
19
20
  __exportStar(require("./user"), exports);
20
21
  __exportStar(require("./general"), exports);
@@ -0,0 +1,7 @@
1
+ export interface BoSpeechPartRecord {
2
+ id: string;
3
+ code: string;
4
+ rate: number;
5
+ active: boolean;
6
+ adminId?: string;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ export * from "./entity";
2
+ export * from "./request";
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
+ };
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./entity"), exports);
14
+ __exportStar(require("./request"), exports);
@@ -0,0 +1,10 @@
1
+ export interface BoCreateSpeechPartRequest {
2
+ code: string;
3
+ rate: number;
4
+ active: boolean;
5
+ }
6
+ export interface BoUpdateSpeechPartRequest extends BoCreateSpeechPartRequest {
7
+ id: string;
8
+ }
9
+ export interface BoSpeechPartModifier extends BoUpdateSpeechPartRequest {
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -4,10 +4,10 @@ export interface BoTranFeedRequest extends FeedRequest {
4
4
  langCode?: string;
5
5
  speechPartId?: string;
6
6
  }
7
- export interface DbTranStatusUpdateRequest {
7
+ export interface BoTranStatusUpdateRequest {
8
8
  id: string;
9
9
  status: EntryStatus;
10
10
  }
11
- export interface DbTranStatusUpdateModifier extends DbTranStatusUpdateRequest {
11
+ export interface BoTranStatusUpdateModifier extends BoTranStatusUpdateRequest {
12
12
  active: boolean;
13
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.197.0",
3
+ "version": "0.198.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
File without changes
File without changes
File without changes