@ibm-cloud/secrets-manager 2.0.7 → 2.0.9
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 +4 -0
- package/README.md +0 -2
- package/examples/secrets-manager.v2.test.js +1211 -1211
- package/package.json +2 -2
- package/secrets-manager/v2.d.ts +540 -186
- package/secrets-manager/v2.js +150 -68
- package/secrets-manager/v2.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [2.0.9](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.8...v2.0.9) (2025-02-17)
|
|
2
|
+
|
|
3
|
+
## [2.0.8](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.7...v2.0.8) (2024-10-07)
|
|
4
|
+
|
|
1
5
|
## [2.0.7](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.6...v2.0.7) (2024-09-23)
|
|
2
6
|
|
|
3
7
|
## [2.0.6](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.5...v2.0.6) (2024-09-09)
|
package/README.md
CHANGED
|
@@ -44,7 +44,6 @@ npm install @ibm-cloud/secrets-manager
|
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
## Authentication
|
|
47
|
-
|
|
48
47
|
Secrets Manager uses token-based Identity and Access Management (IAM) authentication.
|
|
49
48
|
|
|
50
49
|
With IAM authentication, you supply an API key that is used to generate an access token. Then, the access token is
|
|
@@ -56,7 +55,6 @@ using [IAM authenticators](https://github.com/IBM/ibm-cloud-sdk-common/blob/mast
|
|
|
56
55
|
authenticators from `@ibm-cloud/secrets-manager/auth`.
|
|
57
56
|
|
|
58
57
|
### Examples
|
|
59
|
-
|
|
60
58
|
#### Programmatic credentials
|
|
61
59
|
|
|
62
60
|
```js
|