Skip to content

Commit c2c2d07

Browse files
authored
Merge branch 'main' into v1.5576.0
2 parents a4f54bb + e06a7a9 commit c2c2d07

File tree

5 files changed

+15
-2
lines changed

5 files changed

+15
-2
lines changed

packages/clients/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
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.50.0](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2024-10-14)
7+
8+
### Features
9+
10+
- **dedibox:** add new memory type ([#1482](https://github.com/scaleway/scaleway-sdk-js/issues/1482)) ([60e5a0d](https://github.com/scaleway/scaleway-sdk-js/commit/60e5a0df24767d774d47055d4e8a91622c62059a))
11+
- **edge_services:** add GetCurrentBilling endpoint ([#1477](https://github.com/scaleway/scaleway-sdk-js/issues/1477)) ([666c9dc](https://github.com/scaleway/scaleway-sdk-js/commit/666c9dc46f5c6b5020620d087c91ec7e6309aafa))
12+
- **iam:** add deletable and managed fields ([#1476](https://github.com/scaleway/scaleway-sdk-js/issues/1476)) ([db22c49](https://github.com/scaleway/scaleway-sdk-js/commit/db22c49c2ec62a16a0f61a2769c037fcbca87c69))
13+
- **serverless_jobs:** enable sdk for secrets ([#1467](https://github.com/scaleway/scaleway-sdk-js/issues/1467)) ([4f6f981](https://github.com/scaleway/scaleway-sdk-js/commit/4f6f98190f7173d9613489ceb1170305500b3a6f))
14+
- **tem:** add auto-configuration state in domain validation ([#1466](https://github.com/scaleway/scaleway-sdk-js/issues/1466)) ([5169271](https://github.com/scaleway/scaleway-sdk-js/commit/5169271689fbbd36e6171ae70a598ed5ca3b6335))
15+
616
## [2.49.1](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2024-10-07)
717

818
**Note:** Version bump only for package @scaleway/sdk

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.49.1",
3+
"version": "2.50.0",
44
"license": "Apache-2.0",
55
"description": "Scaleway SDK.",
66
"keywords": [

packages/clients/src/api/iam/v1alpha1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ export const unmarshalAPIKey = (data: unknown): APIKey => {
8787
createdAt: unmarshalDate(data.created_at),
8888
creationIp: data.creation_ip,
8989
defaultProjectId: data.default_project_id,
90+
deletable: data.deletable,
9091
description: data.description,
9192
editable: data.editable,
9293
expiresAt: unmarshalDate(data.expires_at),

packages/clients/src/api/iam/v1alpha1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,8 @@ export interface APIKey {
169169
defaultProjectId: string
170170
/** Defines whether or not the API key is editable. */
171171
editable: boolean
172+
/** Defines whether or not the API key is deletable. */
173+
deletable: boolean
172174
/** Defines whether or not the API key is managed. */
173175
managed: boolean
174176
/** IP address of the device that created the API key. */
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export const version = 'v2.49.1'
1+
export const version = 'v2.50.0'
22

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

0 commit comments

Comments
 (0)