waldur-js-client 8.0.8-dev.29 → 8.0.8-dev.30
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/LICENSE +21 -0
- package/README.md +23 -0
- package/dist/client/client.d.ts +2 -0
- package/dist/client/client.js +143 -0
- package/dist/client/index.d.ts +7 -0
- package/dist/client/index.js +4 -0
- package/dist/client/types.d.ts +119 -0
- package/dist/client/types.js +1 -0
- package/dist/client/utils.d.ts +45 -0
- package/dist/client/utils.js +284 -0
- package/dist/client.gen.d.ts +12 -0
- package/dist/client.gen.js +3 -0
- package/dist/core/auth.d.ts +18 -0
- package/dist/core/auth.js +13 -0
- package/dist/core/bodySerializer.d.ts +17 -0
- package/dist/core/bodySerializer.js +53 -0
- package/dist/core/params.d.ts +23 -0
- package/dist/core/params.js +87 -0
- package/dist/core/pathSerializer.d.ts +33 -0
- package/dist/core/pathSerializer.js +113 -0
- package/dist/core/types.d.ts +73 -0
- package/dist/core/types.js +1 -0
- package/dist/index.d.ts +3 -17
- package/dist/index.js +4 -18
- package/dist/sdk.gen.d.ts +8857 -0
- package/dist/sdk.gen.js +59079 -0
- package/dist/types.gen.d.ts +84634 -0
- package/dist/types.gen.js +2 -0
- package/package.json +30 -25
- package/src/index.ts +0 -18
- package/tsconfig.json +0 -70
package/package.json
CHANGED
|
@@ -1,34 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "waldur-js-client",
|
|
3
|
-
"version": "8.0.8-dev.
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
|
|
3
|
+
"version": "8.0.8-dev.30",
|
|
4
|
+
"description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
|
|
5
|
+
"author": "Waldur Platform",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/waldur/js-client.git"
|
|
8
10
|
},
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"@waldur/openstack": "*",
|
|
12
|
-
"@waldur/azure": "*",
|
|
13
|
-
"@waldur/aws": "*",
|
|
14
|
-
"@waldur/digitalocean": "*",
|
|
15
|
-
"@waldur/vmware": "*",
|
|
16
|
-
"@waldur/rancher": "*",
|
|
17
|
-
"@waldur/slurm": "*",
|
|
18
|
-
"@waldur/marketplace": "*",
|
|
19
|
-
"@waldur/proposal": "*",
|
|
20
|
-
"@waldur/billing": "*",
|
|
21
|
-
"@waldur/auth": "*",
|
|
22
|
-
"@waldur/structure": "*",
|
|
23
|
-
"@waldur/support": "*",
|
|
24
|
-
"@waldur/notifications": "*",
|
|
25
|
-
"@waldur/admin": "*",
|
|
26
|
-
"@waldur/openportal": "*"
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/waldur/js-client/issues"
|
|
27
13
|
},
|
|
14
|
+
"homepage": "https://github.com/waldur/js-client",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"waldur",
|
|
17
|
+
"client"
|
|
18
|
+
],
|
|
28
19
|
"devDependencies": {
|
|
29
|
-
"typescript": "^5.8.2"
|
|
20
|
+
"typescript": "^5.8.2",
|
|
21
|
+
"ts-morph": "^25.0.1",
|
|
22
|
+
"tsx": "^4.19.3"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist/**/*"
|
|
26
|
+
],
|
|
27
|
+
"main": "dist/index.js",
|
|
28
|
+
"types": "dist/index.d.ts",
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "tsc",
|
|
31
|
+
"prepublishOnly": "npm run build"
|
|
30
32
|
},
|
|
31
33
|
"exports": {
|
|
32
|
-
".": "./dist/index.js"
|
|
34
|
+
".": "./dist/index.js",
|
|
35
|
+
"./client.gen": "./dist/client.gen.js",
|
|
36
|
+
"./sdk.gen": "./dist/sdk.gen.js",
|
|
37
|
+
"./types.gen": "./dist/types.gen.js"
|
|
33
38
|
}
|
|
34
39
|
}
|
package/src/index.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
// Auto-generated legacy wrapper
|
|
2
|
-
export * from '@waldur/core';
|
|
3
|
-
export * from '@waldur/openstack';
|
|
4
|
-
export * from '@waldur/azure';
|
|
5
|
-
export * from '@waldur/aws';
|
|
6
|
-
export * from '@waldur/digitalocean';
|
|
7
|
-
export * from '@waldur/vmware';
|
|
8
|
-
export * from '@waldur/rancher';
|
|
9
|
-
export * from '@waldur/slurm';
|
|
10
|
-
export * from '@waldur/marketplace';
|
|
11
|
-
export * from '@waldur/proposal';
|
|
12
|
-
export * from '@waldur/billing';
|
|
13
|
-
export * from '@waldur/auth';
|
|
14
|
-
export * from '@waldur/structure';
|
|
15
|
-
export * from '@waldur/support';
|
|
16
|
-
export * from '@waldur/notifications';
|
|
17
|
-
export * from '@waldur/admin';
|
|
18
|
-
export * from '@waldur/openportal';
|
package/tsconfig.json
DELETED
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ES2020",
|
|
4
|
-
"module": "ESNext",
|
|
5
|
-
"moduleResolution": "bundler",
|
|
6
|
-
"declaration": true,
|
|
7
|
-
"composite": true,
|
|
8
|
-
"outDir": "./dist",
|
|
9
|
-
"rootDir": "./src",
|
|
10
|
-
"strict": true,
|
|
11
|
-
"esModuleInterop": true,
|
|
12
|
-
"skipLibCheck": true
|
|
13
|
-
},
|
|
14
|
-
"include": [
|
|
15
|
-
"src/**/*"
|
|
16
|
-
],
|
|
17
|
-
"references": [
|
|
18
|
-
{
|
|
19
|
-
"path": "../core"
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"path": "../openstack"
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"path": "../azure"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"path": "../aws"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"path": "../digitalocean"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"path": "../vmware"
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"path": "../rancher"
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"path": "../slurm"
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"path": "../marketplace"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"path": "../proposal"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"path": "../billing"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"path": "../auth"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"path": "../structure"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"path": "../support"
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"path": "../notifications"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"path": "../admin"
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"path": "../openportal"
|
|
68
|
-
}
|
|
69
|
-
]
|
|
70
|
-
}
|