@scaleway/sdk 2.62.0 → 2.63.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/webhosting/v1/marshalling.gen.cjs +1 -0
- package/dist/api/webhosting/v1/marshalling.gen.js +1 -0
- package/dist/api/webhosting/v1/types.gen.d.ts +5 -0
- package/dist/scw/constants.cjs +1 -1
- package/dist/scw/constants.d.ts +2 -2
- package/dist/scw/constants.js +1 -1
- package/node_modules/@scaleway/random-name/CHANGELOG.md +6 -0
- package/node_modules/@scaleway/random-name/dist/index.cjs +0 -2
- package/node_modules/@scaleway/random-name/dist/index.js +0 -2
- package/node_modules/@scaleway/random-name/package.json +2 -1
- package/package.json +3 -3
|
@@ -82,6 +82,11 @@ export interface DnsRecord {
|
|
|
82
82
|
priority?: number;
|
|
83
83
|
/** Record status. */
|
|
84
84
|
status: DnsRecordStatus;
|
|
85
|
+
/**
|
|
86
|
+
* Record representation as it appears in the zone file or DNS management
|
|
87
|
+
* system.
|
|
88
|
+
*/
|
|
89
|
+
rawData: string;
|
|
85
90
|
}
|
|
86
91
|
export interface Nameserver {
|
|
87
92
|
/** Hostname of the nameserver. */
|
package/dist/scw/constants.cjs
CHANGED
package/dist/scw/constants.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "v2.
|
|
2
|
-
export declare const userAgent = "scaleway-sdk-js/v2.
|
|
1
|
+
export declare const version = "v2.62.0";
|
|
2
|
+
export declare const userAgent = "scaleway-sdk-js/v2.62.0";
|
package/dist/scw/constants.js
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 5.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2179](https://github.com/scaleway/scaleway-lib/pull/2179) [`3c8926e`](https://github.com/scaleway/scaleway-lib/commit/3c8926e55b328354ee9ae1088dc42d394cf1e833) Thanks [@philibea](https://github.com/philibea)! - remove niel from list
|
|
8
|
+
|
|
3
9
|
## 5.1.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
|
@@ -446,8 +446,6 @@ const NAMES = [
|
|
|
446
446
|
"neumann",
|
|
447
447
|
// Isaac Newton invented classic mechanics and modern optics. https://en.wikipedia.org/wiki/Isaac_Newton
|
|
448
448
|
"newton",
|
|
449
|
-
// Xavier Niel - ;) https://en.wikipedia.org/wiki/Xavier_Niel
|
|
450
|
-
"niel",
|
|
451
449
|
// Florence Nightingale, more prominently known as a nurse, was also the first female member of the Royal Statistical Society and a pioneer in statistical graphics https://en.wikipedia.org/wiki/Florence_Nightingale#Statistics_and_sanitary_reform
|
|
452
450
|
"nightingale",
|
|
453
451
|
// Alfred Nobel - a Swedish chemist, engineer, innovator, and armaments manufacturer (inventor of dynamite) - https://en.wikipedia.org/wiki/Alfred_Nobel
|
|
@@ -445,8 +445,6 @@ const NAMES = [
|
|
|
445
445
|
"neumann",
|
|
446
446
|
// Isaac Newton invented classic mechanics and modern optics. https://en.wikipedia.org/wiki/Isaac_Newton
|
|
447
447
|
"newton",
|
|
448
|
-
// Xavier Niel - ;) https://en.wikipedia.org/wiki/Xavier_Niel
|
|
449
|
-
"niel",
|
|
450
448
|
// Florence Nightingale, more prominently known as a nurse, was also the first female member of the Royal Statistical Society and a pioneer in statistical graphics https://en.wikipedia.org/wiki/Florence_Nightingale#Statistics_and_sanitary_reform
|
|
451
449
|
"nightingale",
|
|
452
450
|
// Alfred Nobel - a Swedish chemist, engineer, innovator, and armaments manufacturer (inventor of dynamite) - https://en.wikipedia.org/wiki/Alfred_Nobel
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/random-name",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.1",
|
|
4
4
|
"description": "A small utility to generate a random name",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.x"
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"scripts": {
|
|
30
|
+
"prebuild": "shx rm -rf dist",
|
|
30
31
|
"typecheck": "tsc --noEmit",
|
|
31
32
|
"type:generate": "tsc --declaration -p tsconfig.build.json",
|
|
32
33
|
"build": "vite build --config vite.config.ts && pnpm run type:generate",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/sdk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.63.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": "5.1.
|
|
37
|
+
"@scaleway/random-name": "5.1.1"
|
|
38
38
|
},
|
|
39
39
|
"bundledDependencies": [
|
|
40
40
|
"@scaleway/random-name"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "0da03067b97486773c77346f11664b532adda8fc"
|
|
43
43
|
}
|