@scaleway/sdk-dedibox 1.0.1 → 1.1.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.
|
@@ -396,6 +396,7 @@ const unmarshalServer = (data) => {
|
|
|
396
396
|
unmarshalNetworkInterface
|
|
397
397
|
),
|
|
398
398
|
ipv6Slaac: data.ipv6_slaac,
|
|
399
|
+
isHds: data.is_hds,
|
|
399
400
|
isOutsourced: data.is_outsourced,
|
|
400
401
|
isRpnv2Member: data.is_rpnv2_member,
|
|
401
402
|
level: data.level ? unmarshalServiceLevel(data.level) : void 0,
|
|
@@ -394,6 +394,7 @@ const unmarshalServer = (data) => {
|
|
|
394
394
|
unmarshalNetworkInterface
|
|
395
395
|
),
|
|
396
396
|
ipv6Slaac: data.ipv6_slaac,
|
|
397
|
+
isHds: data.is_hds,
|
|
397
398
|
isOutsourced: data.is_outsourced,
|
|
398
399
|
isRpnv2Member: data.is_rpnv2_member,
|
|
399
400
|
level: data.level ? unmarshalServiceLevel(data.level) : void 0,
|
package/dist/v1/types.gen.d.ts
CHANGED
|
@@ -566,6 +566,10 @@ export interface Server {
|
|
|
566
566
|
* Whether or not the server is already part of an rpnv2 group.
|
|
567
567
|
*/
|
|
568
568
|
isRpnv2Member: boolean;
|
|
569
|
+
/**
|
|
570
|
+
* Whether or not the server is HDS.
|
|
571
|
+
*/
|
|
572
|
+
isHds: boolean;
|
|
569
573
|
}
|
|
570
574
|
export interface FailoverBlock {
|
|
571
575
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/sdk-dedibox",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Scaleway SDK dedibox",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -26,21 +26,18 @@
|
|
|
26
26
|
"directory": "packages_generated/dedibox"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": ">=20.
|
|
29
|
+
"node": ">=20.19.1"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@scaleway/random-name": "5.1.1",
|
|
33
|
-
"@scaleway/sdk-std": "1.0.
|
|
33
|
+
"@scaleway/sdk-std": "1.0.3"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@scaleway/sdk-client": "^1.2.
|
|
36
|
+
"@scaleway/sdk-client": "^1.2.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@scaleway/sdk-client": "^1.2.
|
|
39
|
+
"@scaleway/sdk-client": "^1.2.2"
|
|
40
40
|
},
|
|
41
|
-
"bundledDependencies": [
|
|
42
|
-
"@scaleway/random-name"
|
|
43
|
-
],
|
|
44
41
|
"scripts": {
|
|
45
42
|
"package:check": "pnpm publint",
|
|
46
43
|
"typecheck": "tsc --noEmit",
|