@scaleway/sdk 1.40.0 → 1.41.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.
@@ -12,7 +12,8 @@ const unmarshalFolder = data => {
12
12
  id: data.id,
13
13
  name: data.name,
14
14
  path: data.path,
15
- projectId: data.project_id
15
+ projectId: data.project_id,
16
+ region: data.region
16
17
  };
17
18
  };
18
19
  const unmarshalSecret = data => {
package/dist/index.cjs CHANGED
@@ -497,7 +497,7 @@ const assertValidSettings = obj => {
497
497
  }
498
498
  };
499
499
 
500
- const version = 'v1.39.0';
500
+ const version = 'v1.40.0';
501
501
  const userAgent = `scaleway-sdk-js/${version}`;
502
502
 
503
503
  const isBrowser = () =>
@@ -23704,7 +23704,8 @@ const unmarshalFolder = data => {
23704
23704
  id: data.id,
23705
23705
  name: data.name,
23706
23706
  path: data.path,
23707
- projectId: data.project_id
23707
+ projectId: data.project_id,
23708
+ region: data.region
23708
23709
  };
23709
23710
  };
23710
23711
  const unmarshalSecret = data => {
package/dist/index.d.ts CHANGED
@@ -28025,6 +28025,8 @@ interface Folder {
28025
28025
  path: string;
28026
28026
  /** Date and time of the folder's creation. */
28027
28027
  createdAt?: Date;
28028
+ /** Region of the folder. */
28029
+ region: Region;
28028
28030
  }
28029
28031
  /** List folders response. */
28030
28032
  interface ListFoldersResponse {
@@ -1,4 +1,4 @@
1
- const version = 'v1.39.0';
1
+ const version = 'v1.40.0';
2
2
  const userAgent = `scaleway-sdk-js/${version}`;
3
3
 
4
4
  export { userAgent, version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/sdk",
3
- "version": "1.40.0",
3
+ "version": "1.41.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Scaleway SDK.",
6
6
  "keywords": [
@@ -35,5 +35,5 @@
35
35
  "bundledDependencies": [
36
36
  "@scaleway/random-name"
37
37
  ],
38
- "gitHead": "2871a6bff26dbbe85f11caae39632d4a9ff13f60"
38
+ "gitHead": "886419d4bd8be4b8762e5084c3760940ca62c1b2"
39
39
  }