Skip to content

Commit 13d6d0f

Browse files
authored
Merge branch 'main' into renovate/eslint-plugin-tsdoc-0.x
2 parents c95089d + c772664 commit 13d6d0f

File tree

7 files changed

+833
-230
lines changed

7 files changed

+833
-230
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"devDependencies": {
4747
"@commitlint/cli": "19.6.1",
4848
"@commitlint/config-conventional": "19.6.0",
49-
"@scaleway/eslint-config-react": "4.0.8",
49+
"@scaleway/eslint-config-react": "4.0.9",
5050
"@typescript-eslint/eslint-plugin": "latest",
5151
"@vitest/coverage-istanbul": "2.0.5",
5252
"@vitest/coverage-v8": "2.0.5",
@@ -62,13 +62,13 @@
6262
"husky": "9.1.7",
6363
"jsdom": "25.0.1",
6464
"lerna": "8.1.9",
65-
"lint-staged": "15.2.10",
65+
"lint-staged": "15.3.0",
6666
"prettier": "3.3.2",
6767
"read-pkg": "9.0.1",
6868
"tsc-alias": "^1.8.10",
6969
"typedoc": "0.26.6",
7070
"typescript": "5.5.4",
71-
"vite": "5.4.11",
71+
"vite": "5.4.12",
7272
"vitest": "2.0.5"
7373
},
7474
"packageManager": "[email protected]",

packages/clients/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.62.0](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2025-01-20)
7+
8+
### Features
9+
10+
- **account:** activate public generation ([#1720](https://github.com/scaleway/scaleway-sdk-js/issues/1720)) ([9760f7f](https://github.com/scaleway/scaleway-sdk-js/commit/9760f7f49714f3ba40bcd9c0a8f34e206b4e30d1))
11+
- add MFA OTP support for IAM members ([#1727](https://github.com/scaleway/scaleway-sdk-js/issues/1727)) ([5968a47](https://github.com/scaleway/scaleway-sdk-js/commit/5968a474d12f9fd9575b8636c7fb96926aa9b9f6))
12+
- **iam:** remove send_email in UpdateUserPassword ([#1718](https://github.com/scaleway/scaleway-sdk-js/issues/1718)) ([82f9381](https://github.com/scaleway/scaleway-sdk-js/commit/82f9381a93202951a103e44049af0cc2dad67025))
13+
- **serverless_jobs:** add state filter to list job runs ([#1719](https://github.com/scaleway/scaleway-sdk-js/issues/1719)) ([0ce574a](https://github.com/scaleway/scaleway-sdk-js/commit/0ce574ab86bb390eebcc0cf6f88ec7ddb34f10fb))
14+
- **tem:** add blocklisted flag ([#1711](https://github.com/scaleway/scaleway-sdk-js/issues/1711)) ([c897e18](https://github.com/scaleway/scaleway-sdk-js/commit/c897e18095b1b9fed7d3dd4bf25d2d10179fb03c))
15+
- **tem:** generate blocklist sdk ([#1707](https://github.com/scaleway/scaleway-sdk-js/issues/1707)) ([108883f](https://github.com/scaleway/scaleway-sdk-js/commit/108883f6a3fb72c029c01c8d9c54e88844093c90))
16+
617
## [2.61.0](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2025-01-13)
718

819
### Features

packages/clients/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scaleway/sdk",
3-
"version": "2.61.0",
3+
"version": "2.62.0",
44
"license": "Apache-2.0",
55
"description": "Scaleway SDK.",
66
"keywords": [

packages/clients/src/api/webhosting/v1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ const unmarshalDnsRecord = (data: unknown): DnsRecord => {
134134
return {
135135
name: data.name,
136136
priority: data.priority,
137+
rawData: data.raw_data,
137138
status: data.status,
138139
ttl: data.ttl,
139140
type: data.type,

packages/clients/src/api/webhosting/v1/types.gen.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,11 @@ export interface DnsRecord {
149149
priority?: number
150150
/** Record status. */
151151
status: DnsRecordStatus
152+
/**
153+
* Record representation as it appears in the zone file or DNS management
154+
* system.
155+
*/
156+
rawData: string
152157
}
153158

154159
export interface Nameserver {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export const version = 'v2.61.0'
1+
export const version = 'v2.62.0'
22

33
export const userAgent = `scaleway-sdk-js/${version}`

0 commit comments

Comments
 (0)