@forgezero/vault 0.1.5 → 0.1.6

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/index.d.ts CHANGED
@@ -132,6 +132,8 @@ export interface EntryMeta {
132
132
  export interface Change {
133
133
  name: string;
134
134
  version: number;
135
+ /** True when ciphertext was destroyed and the local value must be removed. */
136
+ deleted?: boolean;
135
137
  }
136
138
  export declare const DEFAULT_API_URL = "https://api.forgezero.net";
137
139
  export declare const DEFAULT_REQUEST_TIMEOUT_MS = 15000;
@@ -272,4 +274,4 @@ export declare function systemdCredentials(options?: SystemdCredentialOptions):
272
274
  readonly name: 'systemd';
273
275
  get(reference: string, field: string): Promise<string>;
274
276
  };
275
- export declare const VERSION = "0.1.5";
277
+ export declare const VERSION = "0.1.6";
package/dist/index.js CHANGED
@@ -367,7 +367,7 @@ function systemdCredentials(options = {}) {
367
367
  }
368
368
  };
369
369
  }
370
- var VERSION = "0.1.5";
370
+ var VERSION = "0.1.6";
371
371
  export {
372
372
  vaultCredentials,
373
373
  systemdCredentials,
package/dist/providers.js CHANGED
@@ -367,7 +367,7 @@ function systemdCredentials(options = {}) {
367
367
  }
368
368
  };
369
369
  }
370
- var VERSION = "0.1.5";
370
+ var VERSION = "0.1.6";
371
371
 
372
372
  // src/providers.ts
373
373
  var MISSING = new Set(["ENTRY_NOT_FOUND", "VERSION_NOT_FOUND"]);
package/dist/schema.js CHANGED
@@ -367,7 +367,7 @@ function systemdCredentials(options = {}) {
367
367
  }
368
368
  };
369
369
  }
370
- var VERSION = "0.1.5";
370
+ var VERSION = "0.1.6";
371
371
 
372
372
  // src/schema.ts
373
373
  function managedSchemas(vault, options = {}) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "//": "Publishing happens from an operator's machine, not CI \u2014 CLAUDE.md records that the absence of CI is deliberate. npm's `provenance` attests a tarball was built by a recognised CI provider from a named commit, so it cannot be produced here: it was set, and the first publish failed with `Automatic provenance generation not supported for provider: null`. A setting that can never be satisfied is worse than none, because it reads as a guarantee nobody is getting. Restore it the day this publishes from CI, and not before.",
3
3
  "name": "@forgezero/vault",
4
- "version": "0.1.5",
4
+ "version": "0.1.6",
5
5
  "type": "module",
6
6
  "publishConfig": {
7
7
  "access": "public"