@scaleway/sdk-baremetal 2.13.0 → 2.14.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.
@@ -249,6 +249,7 @@ const unmarshalOffer = (data) => {
249
249
  commercialRange: data.commercial_range,
250
250
  cpus: unmarshalArrayOfObject(data.cpus, unmarshalCPU),
251
251
  disks: unmarshalArrayOfObject(data.disks, unmarshalDisk),
252
+ dualAttach: data.dual_attach,
252
253
  enable: data.enable,
253
254
  fee: data.fee ? unmarshalMoney(data.fee) : void 0,
254
255
  gpus: unmarshalArrayOfObject(data.gpus, unmarshalGPU),
@@ -684,6 +684,10 @@ export interface Offer {
684
684
  * Zone in which is the offer is available.
685
685
  */
686
686
  zone: ScwZone;
687
+ /**
688
+ * Describe the network topology of the offer.
689
+ */
690
+ dualAttach?: boolean;
687
691
  }
688
692
  export interface Option {
689
693
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/sdk-baremetal",
3
- "version": "2.13.0",
3
+ "version": "2.14.0",
4
4
  "description": "Scaleway SDK baremetal",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -33,14 +33,14 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@scaleway/random-name": "6.0.2",
36
- "@scaleway/sdk-std": "2.8.1"
36
+ "@scaleway/sdk-std": "2.8.3"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@repo/configs": "^0.1.1",
40
- "@scaleway/sdk-client": "^2.9.0"
40
+ "@scaleway/sdk-client": "^2.11.0"
41
41
  },
42
42
  "peerDependencies": {
43
- "@scaleway/sdk-client": "^2.9.0"
43
+ "@scaleway/sdk-client": "^2.11.0"
44
44
  },
45
45
  "scripts": {
46
46
  "package:check": "pnpm publint",