@scaleway/configuration-loader 0.1.0-beta.4 → 0.1.0-beta.5

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 0.1.0-beta.5 (2022-12-05)
7
+
8
+ **Note:** Version bump only for package @scaleway/configuration-loader
9
+
6
10
  ## 0.1.0-beta.4 (2022-11-23)
7
11
 
8
12
  **Note:** Version bump only for package @scaleway/configuration-loader
package/dist/index.d.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * @public
5
5
  */
6
- declare type Profile = {
6
+ type Profile = {
7
7
  /**
8
8
  * You need an access key and a secret key to connect to Scaleway API.
9
9
  * Generate your token at the following address: {@link https://console.scaleway.com/project/credentials}
@@ -45,7 +45,7 @@ declare type Profile = {
45
45
  secretKey?: string;
46
46
  };
47
47
  /** Parameters to load the profile from the configuration file */
48
- declare type ProfileFromFileParams = {
48
+ type ProfileFromFileParams = {
49
49
  /**
50
50
  * The path at which to locate the configuration file.
51
51
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/configuration-loader",
3
- "version": "0.1.0-beta.4",
3
+ "version": "0.1.0-beta.5",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Load configuration via file or environment for NodeJS.",
6
6
  "main": "dist/index.cjs",
@@ -19,7 +19,7 @@
19
19
  },
20
20
  "type": "module",
21
21
  "devDependencies": {
22
- "@types/node": "^17.0.45"
22
+ "@types/node": "^18.11.10"
23
23
  },
24
- "gitHead": "5484de96723e18038b6a8781ebb941a1f270f49a"
24
+ "gitHead": "faf2bb1eb9936864eaa32b16a895056dc7213a96"
25
25
  }