@sdux-vault/engine 0.3.0 → 0.8.0
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/package.json
CHANGED
|
@@ -254,6 +254,14 @@ interface FeatureCellConfig<T> {
|
|
|
254
254
|
insights?: InsightConfig;
|
|
255
255
|
}
|
|
256
256
|
|
|
257
|
+
/**
|
|
258
|
+
* Canonical license identifier for the SDuX Vault engine license.
|
|
259
|
+
*
|
|
260
|
+
* This value must match the `licenseId` field in the `VaultLicensingShape`
|
|
261
|
+
* payload supplied via `provideVault({ licenses: [...] })`.
|
|
262
|
+
*/
|
|
263
|
+
declare const VAULT_LICENSE_ID = "sdux-vault";
|
|
264
|
+
|
|
257
265
|
/**
|
|
258
266
|
* Represents a reference view of Vault-managed state, including loading, value, and error signals.
|
|
259
267
|
*/
|
|
@@ -378,13 +386,5 @@ declare function getFeatureCellToken(key: string): FeatureCellToken;
|
|
|
378
386
|
*/
|
|
379
387
|
declare const isPipelineTerminal: <T>(current: FinalState<T>) => boolean;
|
|
380
388
|
|
|
381
|
-
/**
|
|
382
|
-
* Canonical license identifier for the SDuX Vault engine license.
|
|
383
|
-
*
|
|
384
|
-
* This value must match the `licenseId` field in the `VaultLicensingShape`
|
|
385
|
-
* payload supplied via `provideVault({ licenses: [...] })`.
|
|
386
|
-
*/
|
|
387
|
-
declare const VAULT_LICENSE_ID = "sdux-vault";
|
|
388
|
-
|
|
389
389
|
export { Conductor, FeatureCellClass, LicensingAbstract, VAULT_LICENSE_ID, VaultCore, createFeatureCellToken, getFeatureCellToken, getLicensePayload, getVaultRegistryForTests, hasVaultLicense, isAuthorizedKey, isPipelineTerminal, registerFeatureCell, registerVaultSettled, resetFeatureCellRegistry, resetVaultForTests, vaultAllSettled, vaultSettled };
|
|
390
390
|
export type { ConductorConfig, FeatureCellConfig, FeatureCellShape, VaultStateRef };
|