nestjs-infisical 2.2.0 → 2.2.2
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/dist/infisical.auth.js +1 -1
- package/package.json +1 -1
package/dist/infisical.auth.js
CHANGED
|
@@ -19,7 +19,7 @@ async function fetchUniversalAuthToken(options) {
|
|
|
19
19
|
}
|
|
20
20
|
const json = (await response.json());
|
|
21
21
|
if (!json.accessToken) {
|
|
22
|
-
throw new Error('Infisical Universal Auth response missing accessToken');
|
|
22
|
+
throw new Error('Infisical Universal Auth response missing accessToken or credentials');
|
|
23
23
|
}
|
|
24
24
|
return json.accessToken;
|
|
25
25
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nestjs-infisical",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"description": "CLI-free Infisical secrets loader for NestJS that fetches secrets via the HTTP API before application bootstrap and injects them into process.env.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|