@rsdoctor/sdk 1.3.11 → 1.3.12
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/dist/index.cjs +1228 -872
- package/dist/index.cjs.LICENSE.txt +1 -8
- package/dist/index.js +1231 -881
- package/dist/index.js.LICENSE.txt +1 -8
- package/dist/sdk/server/socket/api.d.ts +1 -1
- package/package.json +6 -6
|
@@ -30,13 +30,6 @@
|
|
|
30
30
|
* MIT Licensed
|
|
31
31
|
*/
|
|
32
32
|
|
|
33
|
-
/*!
|
|
34
|
-
* destroy
|
|
35
|
-
* Copyright(c) 2014 Jonathan Ong
|
|
36
|
-
* Copyright(c) 2015-2022 Douglas Christopher Wilson
|
|
37
|
-
* MIT Licensed
|
|
38
|
-
*/
|
|
39
|
-
|
|
40
33
|
/*!
|
|
41
34
|
* ee-first
|
|
42
35
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -52,7 +45,7 @@
|
|
|
52
45
|
|
|
53
46
|
/*!
|
|
54
47
|
* media-typer
|
|
55
|
-
* Copyright(c) 2014 Douglas Christopher Wilson
|
|
48
|
+
* Copyright(c) 2014-2017 Douglas Christopher Wilson
|
|
56
49
|
* MIT Licensed
|
|
57
50
|
*/
|
|
58
51
|
|
|
@@ -10,6 +10,6 @@ export declare class SocketAPILoader implements Manifest.ManifestDataLoader {
|
|
|
10
10
|
loadManifest(): Promise<Manifest.RsdoctorManifestWithShardingFiles>;
|
|
11
11
|
loadData<T extends Manifest.RsdoctorManifestMappingKeys>(key: T): Promise<Manifest.InferManifestDataValue<T>>;
|
|
12
12
|
loadData(key: string): Promise<void>;
|
|
13
|
-
get loadAPIData(): <T extends SDK.ServerAPI.API, B extends SDK.ServerAPI.InferRequestBodyType<T> = import("@rsdoctor/types/
|
|
13
|
+
get loadAPIData(): <T extends SDK.ServerAPI.API, B extends SDK.ServerAPI.InferRequestBodyType<T> = import("@rsdoctor/types/dist/common").Get<SDK.ServerAPI.RequestBodyTypes, T, void>, R extends SDK.ServerAPI.InferResponseType<T> = import("@rsdoctor/types/dist/common").Get<SDK.ServerAPI.ResponseTypes, T, void>>(...args: B extends void ? [api: T] : [api: T, body: B]) => Promise<SDK.ServerAPI.InferResponseType<T>>;
|
|
14
14
|
}
|
|
15
15
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsdoctor/sdk",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.12",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/web-infra-dev/rsdoctor",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"safer-buffer": "2.1.2",
|
|
27
27
|
"socket.io": "4.8.1",
|
|
28
28
|
"tapable": "2.2.3",
|
|
29
|
-
"@rsdoctor/client": "1.3.
|
|
30
|
-
"@rsdoctor/
|
|
31
|
-
"@rsdoctor/
|
|
32
|
-
"@rsdoctor/utils": "1.3.
|
|
29
|
+
"@rsdoctor/client": "1.3.12",
|
|
30
|
+
"@rsdoctor/types": "1.3.12",
|
|
31
|
+
"@rsdoctor/graph": "1.3.12",
|
|
32
|
+
"@rsdoctor/utils": "1.3.12"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/body-parser": "1.19.6",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@types/cors": "2.8.19",
|
|
38
38
|
"@types/fs-extra": "^11.0.4",
|
|
39
39
|
"@types/node": "^22.8.1",
|
|
40
|
-
"body-parser": "
|
|
40
|
+
"body-parser": "2.2.1",
|
|
41
41
|
"cors": "2.8.5",
|
|
42
42
|
"dayjs": "1.11.19",
|
|
43
43
|
"fs-extra": "^11.1.1",
|