@halo-dev/api-client 2.21.1 → 2.23.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/dist/{index.d.mts → index.d.ts} +849 -10270
- package/dist/index.iife.js +4 -4
- package/dist/index.js +23054 -0
- package/package.json +44 -21
- package/dist/index.mjs +0 -4
package/package.json
CHANGED
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@halo-dev/api-client",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.23.0",
|
|
4
4
|
"description": "API Client for Halo 2",
|
|
5
5
|
"homepage": "https://github.com/halo-dev/halo/tree/main/ui/packages/api-client#readme",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/halo-dev/halo/issues"
|
|
8
8
|
},
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "https://github.com/halo-dev/halo.git",
|
|
12
|
-
"directory": "ui/packages/api-client"
|
|
13
|
-
},
|
|
14
9
|
"license": "GPL-3.0",
|
|
15
10
|
"author": "@halo-dev",
|
|
16
11
|
"contributors": [
|
|
@@ -19,13 +14,19 @@
|
|
|
19
14
|
"url": "https://github.com/ruibaby"
|
|
20
15
|
}
|
|
21
16
|
],
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/halo-dev/halo.git",
|
|
20
|
+
"directory": "ui/packages/api-client"
|
|
25
21
|
},
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"type": "module",
|
|
26
|
+
"sideEffects": false,
|
|
27
|
+
"main": "./dist/index.js",
|
|
28
|
+
"module": "./dist/index.js",
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
29
30
|
"typesVersions": {
|
|
30
31
|
"*": {
|
|
31
32
|
"*": [
|
|
@@ -34,22 +35,44 @@
|
|
|
34
35
|
]
|
|
35
36
|
}
|
|
36
37
|
},
|
|
37
|
-
"
|
|
38
|
-
"dist"
|
|
39
|
-
|
|
38
|
+
"exports": {
|
|
39
|
+
".": "./dist/index.js",
|
|
40
|
+
"./package.json": "./package.json"
|
|
41
|
+
},
|
|
40
42
|
"dependencies": {
|
|
41
|
-
"qs": "^6.
|
|
43
|
+
"qs": "^6.14.0"
|
|
42
44
|
},
|
|
43
45
|
"devDependencies": {
|
|
44
|
-
"@openapitools/openapi-generator-cli": "^2.
|
|
45
|
-
"@types/qs": "^6.
|
|
46
|
-
"rimraf": "^5.0.
|
|
46
|
+
"@openapitools/openapi-generator-cli": "^2.28.1",
|
|
47
|
+
"@types/qs": "^6.14.0",
|
|
48
|
+
"rimraf": "^5.0.10"
|
|
47
49
|
},
|
|
48
50
|
"peerDependencies": {
|
|
49
|
-
"axios": "^1.
|
|
51
|
+
"axios": "^1.12.*"
|
|
52
|
+
},
|
|
53
|
+
"inlinedDependencies": {
|
|
54
|
+
"es-errors": "1.3.0",
|
|
55
|
+
"object-inspect": "1.13.4",
|
|
56
|
+
"side-channel-list": "1.0.0",
|
|
57
|
+
"es-object-atoms": "1.1.1",
|
|
58
|
+
"math-intrinsics": "1.1.0",
|
|
59
|
+
"gopd": "1.2.0",
|
|
60
|
+
"es-define-property": "1.0.1",
|
|
61
|
+
"has-symbols": "1.1.0",
|
|
62
|
+
"get-proto": "1.0.1",
|
|
63
|
+
"function-bind": "1.1.2",
|
|
64
|
+
"call-bind-apply-helpers": "1.0.2",
|
|
65
|
+
"dunder-proto": "1.0.1",
|
|
66
|
+
"hasown": "2.0.2",
|
|
67
|
+
"get-intrinsic": "1.3.0",
|
|
68
|
+
"call-bound": "1.0.4",
|
|
69
|
+
"side-channel-map": "1.0.1",
|
|
70
|
+
"side-channel-weakmap": "1.0.2",
|
|
71
|
+
"side-channel": "1.1.0",
|
|
72
|
+
"qs": "6.14.0"
|
|
50
73
|
},
|
|
51
74
|
"scripts": {
|
|
52
75
|
"build": "tsdown",
|
|
53
|
-
"gen": "rimraf --glob './src/**' && openapi-generator-cli generate -i ../../../api-docs/openapi/v3_0/aggregated.json -g typescript-axios -c ./.openapi_config.yaml -o ./src --type-mappings='set=Array'"
|
|
76
|
+
"gen": "rimraf --glob './src/**' && openapi-generator-cli generate -i ../../../api-docs/openapi/v3_0/aggregated.json -g typescript-axios -c ./.openapi_config.yaml -o ./src --type-mappings='set=Array' --global-property apiDocs=false,modelDocs=false"
|
|
54
77
|
}
|
|
55
78
|
}
|