revdev 0.67.0 → 0.69.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.
@@ -0,0 +1,3 @@
1
+ export interface BoCreateImageRequest {
2
+ content: string;
3
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,7 +1,3 @@
1
- import { FeedRequest, LanguageFeedRequest } from "../../feed";
2
- export interface BoWordFeedRequest extends LanguageFeedRequest {
3
- mode?: string;
4
- }
5
- export interface BoListWordFeedRequest extends FeedRequest {
6
- listId?: string;
7
- }
1
+ export * from "./image";
2
+ export * from "./list";
3
+ export * from "./word";
@@ -1,2 +1,15 @@
1
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
+ };
2
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./image"), exports);
14
+ __exportStar(require("./list"), exports);
15
+ __exportStar(require("./word"), exports);
@@ -0,0 +1,4 @@
1
+ import { FeedRequest } from "../../feed";
2
+ export interface BoListWordFeedRequest extends FeedRequest {
3
+ listId?: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ import { LanguageFeedRequest } from "../../feed";
2
+ export interface BoWordFeedRequest extends LanguageFeedRequest {
3
+ mode?: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -7,10 +7,15 @@ export interface CodeRequest {
7
7
  export interface IdRequest {
8
8
  id: string;
9
9
  }
10
- export interface LinkRequest {
10
+ export interface UserLinkRequest {
11
11
  id: string;
12
12
  link: boolean;
13
13
  }
14
+ export interface EntityLinkRequest {
15
+ parentId: string;
16
+ childId: string;
17
+ link: boolean;
18
+ }
14
19
  export interface LinkSetRequest {
15
20
  destinationId: string;
16
21
  sourceIds: string[];
@@ -16,7 +16,6 @@ export interface FeWord {
16
16
  translations?: FeTranslation[];
17
17
  }
18
18
  export interface FeWordTag {
19
- id: string;
20
19
  wordId: string;
21
20
  tagCode: string;
22
21
  reaction: FeReactionInfo;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.67.0",
3
+ "version": "0.69.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",