@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.
@@ -66,6 +66,7 @@ const unmarshalDnsRecord = (data) => {
66
66
  return {
67
67
  name: data.name,
68
68
  priority: data.priority,
69
+ rawData: data.raw_data,
69
70
  status: data.status,
70
71
  ttl: data.ttl,
71
72
  type: data.type,
@@ -64,6 +64,7 @@ const unmarshalDnsRecord = (data) => {
64
64
  return {
65
65
  name: data.name,
66
66
  priority: data.priority,
67
+ rawData: data.raw_data,
67
68
  status: data.status,
68
69
  ttl: data.ttl,
69
70
  type: data.type,
@@ -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. */
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const version = "v2.61.0";
3
+ const version = "v2.62.0";
4
4
  const userAgent = `scaleway-sdk-js/${version}`;
5
5
  exports.userAgent = userAgent;
6
6
  exports.version = version;
@@ -1,2 +1,2 @@
1
- export declare const version = "v2.61.0";
2
- export declare const userAgent = "scaleway-sdk-js/v2.61.0";
1
+ export declare const version = "v2.62.0";
2
+ export declare const userAgent = "scaleway-sdk-js/v2.62.0";
@@ -1,4 +1,4 @@
1
- const version = "v2.61.0";
1
+ const version = "v2.62.0";
2
2
  const userAgent = `scaleway-sdk-js/${version}`;
3
3
  export {
4
4
  userAgent,
@@ -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.0",
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.62.0",
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.0"
37
+ "@scaleway/random-name": "5.1.1"
38
38
  },
39
39
  "bundledDependencies": [
40
40
  "@scaleway/random-name"
41
41
  ],
42
- "gitHead": "873dce905e291a5592434bc43da3c85c57e82c10"
42
+ "gitHead": "0da03067b97486773c77346f11664b532adda8fc"
43
43
  }