@vellumai/credential-executor 0.5.10 → 0.5.11
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.
|
@@ -73,8 +73,8 @@ export interface InjectionTemplate {
|
|
|
73
73
|
export type SecureKeyDeleteResult = "deleted" | "not-found" | "error";
|
|
74
74
|
|
|
75
75
|
/**
|
|
76
|
-
* Abstraction over the underlying secure-key backend (e.g.
|
|
77
|
-
*
|
|
76
|
+
* Abstraction over the underlying secure-key backend (e.g. encrypted file
|
|
77
|
+
* store). Implementations handle platform-specific details.
|
|
78
78
|
*/
|
|
79
79
|
export interface SecureKeyBackend {
|
|
80
80
|
/** Retrieve a secret value by key. Returns undefined if not found. */
|
|
@@ -233,7 +233,7 @@ export class StaticCredentialMetadataStore {
|
|
|
233
233
|
|
|
234
234
|
/**
|
|
235
235
|
* Throws if the metadata file has an unrecognized version.
|
|
236
|
-
* Call this before performing irreversible
|
|
236
|
+
* Call this before performing irreversible credential store operations
|
|
237
237
|
* so the operation fails cleanly before any side effects.
|
|
238
238
|
*/
|
|
239
239
|
assertWritable(): void {
|