@mx-space/api-client 1.0.1 → 1.0.3
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/.eslintcache +1 -1
- package/controllers/index.ts +9 -1
- package/controllers/recently.ts +24 -3
- package/dist/index.cjs +18 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +19 -1
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +1 -1
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.umd.js +18 -0
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/esm/controllers/index.d.ts +2 -2
- package/esm/controllers/index.js +4 -2
- package/esm/controllers/index.js.map +1 -1
- package/esm/controllers/recently.d.ts +61 -12
- package/esm/controllers/recently.js +18 -0
- package/esm/controllers/recently.js.map +1 -1
- package/lib/controllers/index.d.ts +2 -2
- package/lib/controllers/index.js +3 -1
- package/lib/controllers/index.js.map +1 -1
- package/lib/controllers/recently.d.ts +61 -12
- package/lib/controllers/recently.js +19 -1
- package/lib/controllers/recently.js.map +1 -1
- package/package.json +23 -12
- package/types/controllers/index.d.ts +2 -2
- package/types/controllers/recently.d.ts +61 -12
- package/LICENSE +0 -661
|
@@ -9,6 +9,14 @@ declare module '../core/client' {
|
|
|
9
9
|
shorthand: RecentlyController<ResponseWrapper>;
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
+
export declare enum RecentlyAttitudeResultEnum {
|
|
13
|
+
Inc = 1,
|
|
14
|
+
Dec = -1
|
|
15
|
+
}
|
|
16
|
+
export declare enum RecentlyAttitudeEnum {
|
|
17
|
+
Up = 0,
|
|
18
|
+
Down = 1
|
|
19
|
+
}
|
|
12
20
|
export declare class RecentlyController<ResponseWrapper> implements IController {
|
|
13
21
|
private readonly client;
|
|
14
22
|
base: string;
|
|
@@ -18,44 +26,85 @@ export declare class RecentlyController<ResponseWrapper> implements IController
|
|
|
18
26
|
/**
|
|
19
27
|
* 获取最新一条
|
|
20
28
|
*/
|
|
21
|
-
getLatestOne(): import("../interfaces/request").RequestProxyResult<RecentlyModel
|
|
29
|
+
getLatestOne(): import("../interfaces/request").RequestProxyResult<RecentlyModel & {
|
|
30
|
+
comments: number;
|
|
31
|
+
}, ResponseWrapper, ResponseWrapper extends unknown ? {
|
|
22
32
|
[key: string]: any;
|
|
23
|
-
data: RecentlyModel
|
|
33
|
+
data: RecentlyModel & {
|
|
34
|
+
comments: number;
|
|
35
|
+
};
|
|
24
36
|
} : ResponseWrapper extends {
|
|
25
|
-
data: RecentlyModel
|
|
37
|
+
data: RecentlyModel & {
|
|
38
|
+
comments: number;
|
|
39
|
+
};
|
|
26
40
|
} ? ResponseWrapper : Omit<ResponseWrapper, "data"> & {
|
|
27
|
-
data: RecentlyModel
|
|
41
|
+
data: RecentlyModel & {
|
|
42
|
+
comments: number;
|
|
43
|
+
};
|
|
28
44
|
}>;
|
|
29
45
|
getAll(): import("../interfaces/request").RequestProxyResult<{
|
|
30
|
-
data: RecentlyModel[]
|
|
46
|
+
data: RecentlyModel[] & {
|
|
47
|
+
comments: number;
|
|
48
|
+
};
|
|
31
49
|
}, ResponseWrapper, ResponseWrapper extends unknown ? {
|
|
32
50
|
[key: string]: any;
|
|
33
51
|
data: {
|
|
34
|
-
data: RecentlyModel[]
|
|
52
|
+
data: RecentlyModel[] & {
|
|
53
|
+
comments: number;
|
|
54
|
+
};
|
|
35
55
|
};
|
|
36
56
|
} : ResponseWrapper extends {
|
|
37
57
|
data: {
|
|
38
|
-
data: RecentlyModel[]
|
|
58
|
+
data: RecentlyModel[] & {
|
|
59
|
+
comments: number;
|
|
60
|
+
};
|
|
39
61
|
};
|
|
40
62
|
} ? ResponseWrapper : Omit<ResponseWrapper, "data"> & {
|
|
41
63
|
data: {
|
|
42
|
-
data: RecentlyModel[]
|
|
64
|
+
data: RecentlyModel[] & {
|
|
65
|
+
comments: number;
|
|
66
|
+
};
|
|
43
67
|
};
|
|
44
68
|
}>;
|
|
45
69
|
getList(before?: string | undefined, after?: string | undefined, size?: number | number): import("../interfaces/request").RequestProxyResult<{
|
|
46
|
-
data: RecentlyModel[]
|
|
70
|
+
data: RecentlyModel[] & {
|
|
71
|
+
comments: number;
|
|
72
|
+
};
|
|
73
|
+
}, ResponseWrapper, ResponseWrapper extends unknown ? {
|
|
74
|
+
[key: string]: any;
|
|
75
|
+
data: {
|
|
76
|
+
data: RecentlyModel[] & {
|
|
77
|
+
comments: number;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
} : ResponseWrapper extends {
|
|
81
|
+
data: {
|
|
82
|
+
data: RecentlyModel[] & {
|
|
83
|
+
comments: number;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
} ? ResponseWrapper : Omit<ResponseWrapper, "data"> & {
|
|
87
|
+
data: {
|
|
88
|
+
data: RecentlyModel[] & {
|
|
89
|
+
comments: number;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
}>;
|
|
93
|
+
/** 表态:点赞,点踩 */
|
|
94
|
+
attitude(id: string, attitude: RecentlyAttitudeEnum): import("../interfaces/request").RequestProxyResult<{
|
|
95
|
+
code: RecentlyAttitudeResultEnum;
|
|
47
96
|
}, ResponseWrapper, ResponseWrapper extends unknown ? {
|
|
48
97
|
[key: string]: any;
|
|
49
98
|
data: {
|
|
50
|
-
|
|
99
|
+
code: RecentlyAttitudeResultEnum;
|
|
51
100
|
};
|
|
52
101
|
} : ResponseWrapper extends {
|
|
53
102
|
data: {
|
|
54
|
-
|
|
103
|
+
code: RecentlyAttitudeResultEnum;
|
|
55
104
|
};
|
|
56
105
|
} ? ResponseWrapper : Omit<ResponseWrapper, "data"> & {
|
|
57
106
|
data: {
|
|
58
|
-
|
|
107
|
+
code: RecentlyAttitudeResultEnum;
|
|
59
108
|
};
|
|
60
109
|
}>;
|
|
61
110
|
}
|
|
@@ -1,7 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RecentlyController = void 0;
|
|
3
|
+
exports.RecentlyController = exports.RecentlyAttitudeEnum = exports.RecentlyAttitudeResultEnum = void 0;
|
|
4
4
|
const auto_bind_1 = require("../utils/auto-bind");
|
|
5
|
+
var RecentlyAttitudeResultEnum;
|
|
6
|
+
(function (RecentlyAttitudeResultEnum) {
|
|
7
|
+
RecentlyAttitudeResultEnum[RecentlyAttitudeResultEnum["Inc"] = 1] = "Inc";
|
|
8
|
+
RecentlyAttitudeResultEnum[RecentlyAttitudeResultEnum["Dec"] = -1] = "Dec";
|
|
9
|
+
})(RecentlyAttitudeResultEnum = exports.RecentlyAttitudeResultEnum || (exports.RecentlyAttitudeResultEnum = {}));
|
|
10
|
+
var RecentlyAttitudeEnum;
|
|
11
|
+
(function (RecentlyAttitudeEnum) {
|
|
12
|
+
RecentlyAttitudeEnum[RecentlyAttitudeEnum["Up"] = 0] = "Up";
|
|
13
|
+
RecentlyAttitudeEnum[RecentlyAttitudeEnum["Down"] = 1] = "Down";
|
|
14
|
+
})(RecentlyAttitudeEnum = exports.RecentlyAttitudeEnum || (exports.RecentlyAttitudeEnum = {}));
|
|
5
15
|
class RecentlyController {
|
|
6
16
|
constructor(client) {
|
|
7
17
|
this.client = client;
|
|
@@ -30,6 +40,14 @@ class RecentlyController {
|
|
|
30
40
|
},
|
|
31
41
|
});
|
|
32
42
|
}
|
|
43
|
+
/** 表态:点赞,点踩 */
|
|
44
|
+
attitude(id, attitude) {
|
|
45
|
+
return this.proxy.attitude(id).get({
|
|
46
|
+
params: {
|
|
47
|
+
attitude,
|
|
48
|
+
},
|
|
49
|
+
});
|
|
50
|
+
}
|
|
33
51
|
}
|
|
34
52
|
exports.RecentlyController = RecentlyController;
|
|
35
53
|
//# sourceMappingURL=recently.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"recently.js","sourceRoot":"","sources":["../../controllers/recently.ts"],"names":[],"mappings":";;;AAIA,iDAA4C;AAc5C,MAAa,kBAAkB;IAI7B,YAA6B,MAAkB;QAAlB,WAAM,GAAN,MAAM,CAAY;QAH/C,SAAI,GAAG,UAAU,CAAA;QACjB,SAAI,GAAG,CAAC,UAAU,EAAE,WAAW,CAAC,CAAA;QAG9B,IAAA,oBAAQ,EAAC,IAAI,CAAC,CAAA;IAChB,CAAC;IAED,IAAI,KAAK;QACP,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;IACrC,CAAC;IACD;;OAEG;IACH,YAAY;QACV,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,
|
|
1
|
+
{"version":3,"file":"recently.js","sourceRoot":"","sources":["../../controllers/recently.ts"],"names":[],"mappings":";;;AAIA,iDAA4C;AAc5C,IAAY,0BAGX;AAHD,WAAY,0BAA0B;IACpC,yEAAO,CAAA;IACP,0EAAQ,CAAA;AACV,CAAC,EAHW,0BAA0B,GAA1B,kCAA0B,KAA1B,kCAA0B,QAGrC;AAED,IAAY,oBAGX;AAHD,WAAY,oBAAoB;IAC9B,2DAAE,CAAA;IACF,+DAAI,CAAA;AACN,CAAC,EAHW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAG/B;AAED,MAAa,kBAAkB;IAI7B,YAA6B,MAAkB;QAAlB,WAAM,GAAN,MAAM,CAAY;QAH/C,SAAI,GAAG,UAAU,CAAA;QACjB,SAAI,GAAG,CAAC,UAAU,EAAE,WAAW,CAAC,CAAA;QAG9B,IAAA,oBAAQ,EAAC,IAAI,CAAC,CAAA;IAChB,CAAC;IAED,IAAI,KAAK;QACP,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;IACrC,CAAC;IACD;;OAEG;IACH,YAAY;QACV,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,EAAwC,CAAA;IACtE,CAAC;IAED,MAAM;QACJ,OAAO,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,EAErB,CAAA;IACN,CAAC;IAED,OAAO,CACL,MAA2B,EAC3B,KAA0B,EAC1B,IAAsB;QAEtB,OAAO,IAAI,CAAC,KAAK,CAAC,GAAG,CAAmD;YACtE,MAAM,EAAE;gBACN,MAAM;gBACN,KAAK;gBACL,IAAI;aACL;SACF,CAAC,CAAA;IACJ,CAAC;IAED,gBAAgB;IAChB,QAAQ,CAAC,EAAU,EAAE,QAA8B;QACjD,OAAO,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,GAAG,CAAuC;YACvE,MAAM,EAAE;gBACN,QAAQ;aACT;SACF,CAAC,CAAA;IACJ,CAAC;CACF;AA9CD,gDA8CC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mx-space/api-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A api client for mx-space server@next",
|
|
6
6
|
"author": "Innei",
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
"import": "./dist/*.js",
|
|
31
31
|
"require": "./dist/*.cjs"
|
|
32
32
|
},
|
|
33
|
+
"./lib/*": {
|
|
34
|
+
"types": "./lib/*.d.ts",
|
|
35
|
+
"import": "./lib/*.js",
|
|
36
|
+
"require": "./lib/*.js"
|
|
37
|
+
},
|
|
38
|
+
"./esm/*": {
|
|
39
|
+
"types": "./esm/*.d.ts",
|
|
40
|
+
"import": "./esm/*.js",
|
|
41
|
+
"require": "./esm/*.js"
|
|
42
|
+
},
|
|
33
43
|
"./dist/adaptors/*": {
|
|
34
44
|
"types": "./types/adaptors/*.d.ts",
|
|
35
45
|
"import": "./dist/adaptors/*.js",
|
|
@@ -77,6 +87,16 @@
|
|
|
77
87
|
"engines": {
|
|
78
88
|
"pnpm": ">=6"
|
|
79
89
|
},
|
|
90
|
+
"scripts": {
|
|
91
|
+
"prebuild": "rm -rf lib && rm -rf esm",
|
|
92
|
+
"build": "concurrently \"tsc --build tsconfig.build.json\" \"tsc --build tsconfig.cjs.json\"",
|
|
93
|
+
"postbuild": "concurrently \"tsc-alias -p tsconfig.build.json\" \"tsc-alias -p tsconfig.cjs.json\" \"npm run types\"",
|
|
94
|
+
"types": "rm -rf types && tsc --build tsconfig.types.json && tsc-alias -p tsconfig.types.json",
|
|
95
|
+
"package": "NODE_ENV=production concurrently \"npm run build\" \"rollup -c\"",
|
|
96
|
+
"prepackage": "rm -rf dist",
|
|
97
|
+
"test": "vitest",
|
|
98
|
+
"dev": "vitest"
|
|
99
|
+
},
|
|
80
100
|
"devDependencies": {
|
|
81
101
|
"@rollup/plugin-commonjs": "22.0.2",
|
|
82
102
|
"@rollup/plugin-node-resolve": "14.0.1",
|
|
@@ -87,6 +107,7 @@
|
|
|
87
107
|
"abort-controller": "3.0.0",
|
|
88
108
|
"axios": "*",
|
|
89
109
|
"camelcase-keys": "*",
|
|
110
|
+
"concurrently": "7.6.0",
|
|
90
111
|
"cors": "2.8.5",
|
|
91
112
|
"dts-bundle-generator": "7.0.0",
|
|
92
113
|
"express": "4.18.2",
|
|
@@ -99,15 +120,5 @@
|
|
|
99
120
|
"rollup-plugin-terser": "7.0.2",
|
|
100
121
|
"tsc-alias": "1.7.0",
|
|
101
122
|
"umi-request": "1.4.0"
|
|
102
|
-
},
|
|
103
|
-
"scripts": {
|
|
104
|
-
"prebuild": "rm -rf lib && rm -rf esm",
|
|
105
|
-
"build": "tsc --build tsconfig.build.json && tsc --build tsconfig.cjs.json",
|
|
106
|
-
"postbuild": "tsc-alias -p tsconfig.build.json && tsc-alias -p tsconfig.cjs.json && npm run types",
|
|
107
|
-
"types": "rm -rf types && tsc --build tsconfig.types.json && tsc-alias -p tsconfig.types.json",
|
|
108
|
-
"package": "NODE_ENV=production npm run build && rollup -c",
|
|
109
|
-
"prepackage": "rm -rf dist",
|
|
110
|
-
"test": "vitest",
|
|
111
|
-
"dev": "vite"
|
|
112
123
|
}
|
|
113
|
-
}
|
|
124
|
+
}
|
|
@@ -6,7 +6,7 @@ import { NoteController } from './note';
|
|
|
6
6
|
import { PageController } from './page';
|
|
7
7
|
import { PostController } from './post';
|
|
8
8
|
import { ProjectController } from './project';
|
|
9
|
-
import { RecentlyController } from './recently';
|
|
9
|
+
import { RecentlyAttitudeEnum, RecentlyAttitudeResultEnum, RecentlyController } from './recently';
|
|
10
10
|
import { SayController } from './say';
|
|
11
11
|
import { SearchController } from './search';
|
|
12
12
|
import { ServerlessController } from './severless';
|
|
@@ -15,4 +15,4 @@ import { TopicController } from './topic';
|
|
|
15
15
|
import { UserController } from './user';
|
|
16
16
|
export declare const allControllers: (typeof AggregateController | typeof CategoryController | typeof CommentController | typeof LinkController | typeof NoteController | typeof PageController | typeof PostController | typeof ProjectController | typeof RecentlyController | typeof SayController | typeof SearchController | typeof ServerlessController | typeof SnippetController | typeof TopicController | typeof UserController)[];
|
|
17
17
|
export declare const allContollerNames: readonly ["aggregate", "category", "comment", "link", "note", "page", "post", "project", "topic", "recently", "say", "search", "snippet", "serverless", "user", "friend", "master", "shorthand"];
|
|
18
|
-
export { AggregateController, CategoryController, CommentController, LinkController, NoteController, PageController, PostController, ProjectController, RecentlyController, SayController, SearchController, SnippetController, ServerlessController, UserController, TopicController, };
|
|
18
|
+
export { AggregateController, CategoryController, CommentController, LinkController, NoteController, PageController, PostController, ProjectController, RecentlyController, SayController, SearchController, SnippetController, ServerlessController, UserController, TopicController, RecentlyAttitudeEnum, RecentlyAttitudeResultEnum, };
|
|
@@ -9,6 +9,14 @@ declare module '../core/client' {
|
|
|
9
9
|
shorthand: RecentlyController<ResponseWrapper>;
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
+
export declare enum RecentlyAttitudeResultEnum {
|
|
13
|
+
Inc = 1,
|
|
14
|
+
Dec = -1
|
|
15
|
+
}
|
|
16
|
+
export declare enum RecentlyAttitudeEnum {
|
|
17
|
+
Up = 0,
|
|
18
|
+
Down = 1
|
|
19
|
+
}
|
|
12
20
|
export declare class RecentlyController<ResponseWrapper> implements IController {
|
|
13
21
|
private readonly client;
|
|
14
22
|
base: string;
|
|
@@ -18,44 +26,85 @@ export declare class RecentlyController<ResponseWrapper> implements IController
|
|
|
18
26
|
/**
|
|
19
27
|
* 获取最新一条
|
|
20
28
|
*/
|
|
21
|
-
getLatestOne(): import("../interfaces/request").RequestProxyResult<RecentlyModel
|
|
29
|
+
getLatestOne(): import("../interfaces/request").RequestProxyResult<RecentlyModel & {
|
|
30
|
+
comments: number;
|
|
31
|
+
}, ResponseWrapper, ResponseWrapper extends unknown ? {
|
|
22
32
|
[key: string]: any;
|
|
23
|
-
data: RecentlyModel
|
|
33
|
+
data: RecentlyModel & {
|
|
34
|
+
comments: number;
|
|
35
|
+
};
|
|
24
36
|
} : ResponseWrapper extends {
|
|
25
|
-
data: RecentlyModel
|
|
37
|
+
data: RecentlyModel & {
|
|
38
|
+
comments: number;
|
|
39
|
+
};
|
|
26
40
|
} ? ResponseWrapper : Omit<ResponseWrapper, "data"> & {
|
|
27
|
-
data: RecentlyModel
|
|
41
|
+
data: RecentlyModel & {
|
|
42
|
+
comments: number;
|
|
43
|
+
};
|
|
28
44
|
}>;
|
|
29
45
|
getAll(): import("../interfaces/request").RequestProxyResult<{
|
|
30
|
-
data: RecentlyModel[]
|
|
46
|
+
data: RecentlyModel[] & {
|
|
47
|
+
comments: number;
|
|
48
|
+
};
|
|
31
49
|
}, ResponseWrapper, ResponseWrapper extends unknown ? {
|
|
32
50
|
[key: string]: any;
|
|
33
51
|
data: {
|
|
34
|
-
data: RecentlyModel[]
|
|
52
|
+
data: RecentlyModel[] & {
|
|
53
|
+
comments: number;
|
|
54
|
+
};
|
|
35
55
|
};
|
|
36
56
|
} : ResponseWrapper extends {
|
|
37
57
|
data: {
|
|
38
|
-
data: RecentlyModel[]
|
|
58
|
+
data: RecentlyModel[] & {
|
|
59
|
+
comments: number;
|
|
60
|
+
};
|
|
39
61
|
};
|
|
40
62
|
} ? ResponseWrapper : Omit<ResponseWrapper, "data"> & {
|
|
41
63
|
data: {
|
|
42
|
-
data: RecentlyModel[]
|
|
64
|
+
data: RecentlyModel[] & {
|
|
65
|
+
comments: number;
|
|
66
|
+
};
|
|
43
67
|
};
|
|
44
68
|
}>;
|
|
45
69
|
getList(before?: string | undefined, after?: string | undefined, size?: number | number): import("../interfaces/request").RequestProxyResult<{
|
|
46
|
-
data: RecentlyModel[]
|
|
70
|
+
data: RecentlyModel[] & {
|
|
71
|
+
comments: number;
|
|
72
|
+
};
|
|
73
|
+
}, ResponseWrapper, ResponseWrapper extends unknown ? {
|
|
74
|
+
[key: string]: any;
|
|
75
|
+
data: {
|
|
76
|
+
data: RecentlyModel[] & {
|
|
77
|
+
comments: number;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
} : ResponseWrapper extends {
|
|
81
|
+
data: {
|
|
82
|
+
data: RecentlyModel[] & {
|
|
83
|
+
comments: number;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
} ? ResponseWrapper : Omit<ResponseWrapper, "data"> & {
|
|
87
|
+
data: {
|
|
88
|
+
data: RecentlyModel[] & {
|
|
89
|
+
comments: number;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
}>;
|
|
93
|
+
/** 表态:点赞,点踩 */
|
|
94
|
+
attitude(id: string, attitude: RecentlyAttitudeEnum): import("../interfaces/request").RequestProxyResult<{
|
|
95
|
+
code: RecentlyAttitudeResultEnum;
|
|
47
96
|
}, ResponseWrapper, ResponseWrapper extends unknown ? {
|
|
48
97
|
[key: string]: any;
|
|
49
98
|
data: {
|
|
50
|
-
|
|
99
|
+
code: RecentlyAttitudeResultEnum;
|
|
51
100
|
};
|
|
52
101
|
} : ResponseWrapper extends {
|
|
53
102
|
data: {
|
|
54
|
-
|
|
103
|
+
code: RecentlyAttitudeResultEnum;
|
|
55
104
|
};
|
|
56
105
|
} ? ResponseWrapper : Omit<ResponseWrapper, "data"> & {
|
|
57
106
|
data: {
|
|
58
|
-
|
|
107
|
+
code: RecentlyAttitudeResultEnum;
|
|
59
108
|
};
|
|
60
109
|
}>;
|
|
61
110
|
}
|