revdev 0.68.0 → 0.70.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.
- package/lib/admin/request/image.d.ts +3 -0
- package/lib/admin/request/image.js +2 -0
- package/lib/admin/request/index.d.ts +3 -7
- package/lib/admin/request/index.js +13 -0
- package/lib/admin/request/list.d.ts +4 -0
- package/lib/admin/request/list.js +2 -0
- package/lib/admin/request/word.d.ts +4 -0
- package/lib/admin/request/word.js +2 -0
- package/lib/general/request.d.ts +6 -1
- package/package.json +1 -1
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
3
|
-
|
|
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);
|
package/lib/general/request.d.ts
CHANGED
|
@@ -7,10 +7,15 @@ export interface CodeRequest {
|
|
|
7
7
|
export interface IdRequest {
|
|
8
8
|
id: string;
|
|
9
9
|
}
|
|
10
|
-
export interface
|
|
10
|
+
export interface UserLinkRequest {
|
|
11
11
|
id: string;
|
|
12
12
|
link: boolean;
|
|
13
13
|
}
|
|
14
|
+
export interface EntityLinkRequest {
|
|
15
|
+
parentId: string;
|
|
16
|
+
childId: string | string[];
|
|
17
|
+
link: boolean;
|
|
18
|
+
}
|
|
14
19
|
export interface LinkSetRequest {
|
|
15
20
|
destinationId: string;
|
|
16
21
|
sourceIds: string[];
|