@scaleway/sdk 2.27.0 → 2.29.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/api/account/v2/api.gen.d.ts +1 -1
- package/dist/api/account/v3/api.gen.d.ts +1 -1
- package/dist/api/applesilicon/v1alpha1/api.gen.d.ts +5 -1
- package/dist/api/baremetal/v1/api.gen.d.ts +1 -1
- package/dist/api/billing/v2alpha1/api.gen.d.ts +2 -1
- package/dist/api/billing/v2beta1/api.gen.d.ts +30 -5
- package/dist/api/block/v1alpha1/api.gen.d.ts +1 -1
- package/dist/api/cockpit/v1beta1/api.gen.d.ts +2 -3
- package/dist/api/container/v1beta1/api.gen.d.ts +5 -1
- package/dist/api/document_db/v1beta1/api.gen.d.ts +5 -1
- package/dist/api/domain/v2beta1/api.gen.d.ts +1 -1
- package/dist/api/flexibleip/v1alpha1/api.gen.d.ts +6 -8
- package/dist/api/function/v1beta1/api.gen.d.ts +5 -1
- package/dist/api/iam/v1alpha1/api.gen.d.ts +6 -1
- package/dist/api/instance/v1/api.gen.d.ts +5 -1
- package/dist/api/iot/v1/api.gen.d.ts +1 -1
- package/dist/api/ipam/v1/api.gen.cjs +11 -1
- package/dist/api/ipam/v1/api.gen.d.ts +3 -2
- package/dist/api/ipam/v1/api.gen.js +12 -2
- package/dist/api/ipam/v1/index.gen.d.ts +1 -1
- package/dist/api/ipam/v1/marshalling.gen.cjs +4 -0
- package/dist/api/ipam/v1/marshalling.gen.d.ts +2 -1
- package/dist/api/ipam/v1/marshalling.gen.js +4 -0
- package/dist/api/ipam/v1/types.gen.d.ts +21 -2
- package/dist/api/jobs/v1alpha1/api.gen.d.ts +5 -1
- package/dist/api/k8s/v1/api.gen.d.ts +5 -1
- package/dist/api/lb/v1/api.gen.d.ts +1 -1
- package/dist/api/llm_inference/v1beta1/api.gen.d.ts +5 -1
- package/dist/api/marketplace/v2/api.gen.d.ts +6 -1
- package/dist/api/mnq/v1beta1/api.gen.d.ts +5 -3
- package/dist/api/rdb/v1/api.gen.d.ts +6 -1
- package/dist/api/rdb/v1/index.gen.d.ts +1 -1
- package/dist/api/rdb/v1/marshalling.gen.cjs +15 -0
- package/dist/api/rdb/v1/marshalling.gen.js +15 -0
- package/dist/api/rdb/v1/types.gen.d.ts +7 -0
- package/dist/api/redis/v1/api.gen.d.ts +5 -1
- package/dist/api/registry/v1/api.gen.d.ts +5 -1
- package/dist/api/secret/v1alpha1/api.gen.d.ts +3 -2
- package/dist/api/secret/v1beta1/api.gen.d.ts +3 -2
- package/dist/api/serverless_sqldb/v1alpha1/api.gen.d.ts +1 -1
- package/dist/api/tem/v1alpha1/api.gen.d.ts +5 -1
- package/dist/api/vpc/v1/api.gen.d.ts +6 -1
- package/dist/api/vpc/v2/api.gen.d.ts +6 -1
- package/dist/api/vpcgw/v1/api.gen.d.ts +5 -1
- package/dist/api/webhosting/v1alpha1/api.gen.d.ts +5 -1
- package/dist/scw/constants.cjs +1 -1
- package/dist/scw/constants.d.ts +2 -2
- package/dist/scw/constants.js +1 -1
- package/dist/scw/custom-types.d.ts +65 -0
- package/dist/scw/errors/scw-error-from-json.d.ts +10 -0
- package/dist/scw/fetch/types.d.ts +16 -0
- package/dist/scw/locality.d.ts +2 -0
- package/node_modules/@scaleway/random-name/CHANGELOG.md +24 -0
- package/node_modules/@scaleway/random-name/dist/index.cjs +599 -0
- package/node_modules/@scaleway/random-name/dist/index.d.ts +1 -2
- package/node_modules/@scaleway/random-name/dist/index.js +595 -6
- package/node_modules/@scaleway/random-name/package.json +21 -6
- package/node_modules/@scaleway/random-name/tsconfig.build.json +16 -0
- package/node_modules/@scaleway/random-name/tsconfig.json +4 -0
- package/node_modules/@scaleway/random-name/vite.config.ts +10 -0
- package/package.json +3 -3
|
@@ -1,15 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/random-name",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "A small utility to generate a random name",
|
|
5
|
-
"type": "module",
|
|
6
5
|
"engines": {
|
|
7
|
-
"node": ">=
|
|
6
|
+
"node": ">=20.x"
|
|
8
7
|
},
|
|
9
8
|
"sideEffects": false,
|
|
9
|
+
"main": "./dist/index.cjs",
|
|
10
|
+
"type": "module",
|
|
11
|
+
"module": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
10
13
|
"exports": {
|
|
11
|
-
"
|
|
12
|
-
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"require": "./dist/index.cjs",
|
|
17
|
+
"default": "./dist/index.js"
|
|
18
|
+
}
|
|
13
19
|
},
|
|
14
20
|
"publishConfig": {
|
|
15
21
|
"access": "public"
|
|
@@ -19,5 +25,14 @@
|
|
|
19
25
|
"url": "https://github.com/scaleway/scaleway-lib",
|
|
20
26
|
"directory": "packages/random-name"
|
|
21
27
|
},
|
|
22
|
-
"license": "MIT"
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"scripts": {
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
31
|
+
"type:generate": "tsc --declaration -p tsconfig.build.json",
|
|
32
|
+
"build": "vite build --config vite.config.ts && pnpm run type:generate",
|
|
33
|
+
"build:profile": "npx vite-bundle-visualizer -c vite.config.ts",
|
|
34
|
+
"lint": "eslint --report-unused-disable-directives --cache --cache-strategy content --ext ts,tsx .",
|
|
35
|
+
"test:unit": "vitest --run --config vite.config.ts",
|
|
36
|
+
"test:unit:coverage": "pnpm test:unit --coverage"
|
|
37
|
+
}
|
|
23
38
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "./tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"noEmit": false,
|
|
5
|
+
"emitDeclarationOnly": true,
|
|
6
|
+
"rootDir": "src",
|
|
7
|
+
"outDir": "dist"
|
|
8
|
+
},
|
|
9
|
+
"exclude": [
|
|
10
|
+
"*.config.ts",
|
|
11
|
+
"*.setup.ts",
|
|
12
|
+
"**/__tests__",
|
|
13
|
+
"**/__mocks__",
|
|
14
|
+
"src/**/*.test.tsx"
|
|
15
|
+
]
|
|
16
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/sdk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.29.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Scaleway SDK.",
|
|
6
6
|
"keywords": [
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
},
|
|
35
35
|
"type": "module",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@scaleway/random-name": "
|
|
37
|
+
"@scaleway/random-name": "5.1.0"
|
|
38
38
|
},
|
|
39
39
|
"bundledDependencies": [
|
|
40
40
|
"@scaleway/random-name"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "2383bfeab75618f0d4a774d7722cbd11530e422c"
|
|
43
43
|
}
|