@coreason-ai/coreason-manifest 0.78.0 → 0.80.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.
Files changed (2) hide show
  1. package/dist/ontology.d.ts +21 -6
  2. package/package.json +1 -1
@@ -5561,19 +5561,31 @@ export type TenantCid280 = string;
5561
5561
  */
5562
5562
  export type LicenseTier = "prosperity-3.0" | "commercial";
5563
5563
  /**
5564
- * The W3C Decentralized Identifier (DID) of the authority that cryptographically signed this receipt. Must be a did:key: multicodec identifier encoding an Ed25519 public key.
5564
+ * The W3C Decentralized Identifier (DID) of the authority that cryptographically signed this receipt. Must be a did:key: multicodec identifier encoding an ML-DSA (FIPS 204) or Ed25519 public key.
5565
5565
  */
5566
5566
  export type SignerDid = string;
5567
+ /**
5568
+ * The cryptographic algorithm used for the signature. Defaults to NIST FIPS 204 post-quantum ML-DSA-65.
5569
+ */
5570
+ export type SignatureAlgorithm = "Ed25519" | "ML-DSA-44" | "ML-DSA-65" | "ML-DSA-87";
5571
+ /**
5572
+ * The W3C VCDM v2.0 serialization format. 'sd-jwt' enables Selective Disclosure of entitlements.
5573
+ */
5574
+ export type CredentialFormat = "sd-jwt" | "vc-json";
5567
5575
  /**
5568
5576
  * The unique identifier of the upstream Distr license record that was validated to produce this receipt. Establishes bidirectional traceability between the CoReason trust chain and the external license lifecycle manager.
5569
5577
  */
5570
5578
  export type DistrLicenseCid = string;
5579
+ /**
5580
+ * The zk-SNARK proof confirming possession of the authorized cluster hardware fingerprint without revealing the raw physical identifiers over the wire.
5581
+ */
5582
+ export type HardwareZkProof = string | null;
5571
5583
  /**
5572
5584
  * The POSIX timestamp (seconds since epoch) when this receipt was cryptographically issued by the gateway.
5573
5585
  */
5574
5586
  export type IssuedAtEpoch = number;
5575
5587
  /**
5576
- * The POSIX timestamp (seconds since epoch) when this receipt mechanically terminates. After expiration, the WASM sandbox must refuse to unlock premium features until a fresh receipt is issued.
5588
+ * The POSIX timestamp (seconds since epoch) when this receipt mechanically terminates. After expiration, the WASM sandbox must gracefully fallback to Prosperity 3.0 mode.
5577
5589
  */
5578
5590
  export type ExpiresAtEpoch = number;
5579
5591
  /**
@@ -14332,19 +14344,22 @@ export interface CommercialLicenseState {
14332
14344
  /**
14333
14345
  * CoReason Shared Kernel Ontology
14334
14346
  *
14335
- * AGENT INSTRUCTION: A cryptographically frozen receipt bridging external license lifecycle management (Distr) into the CoReason URN Authority zero-trust verification chain. As an append-only coordinate on the Merkle-DAG, the LLM must never hallucinate a mutation to this receipt. The receipt is issued by the coreason-ecosystem gateway upon successful Distr license validation and is consumed by downstream WASM sandboxes and tensor routers to gate premium feature access.
14347
+ * AGENT INSTRUCTION: A cryptographically frozen receipt bridging external license lifecycle management (Distr) into the CoReason URN Authority zero-trust verification chain. Formatted as a W3C VCDM v2.0 credential using Selective Disclosure JWTs (SD-JWT). As an append-only coordinate on the Merkle-DAG, the LLM must never hallucinate a mutation to this receipt.
14336
14348
  *
14337
- * CAUSAL AFFORDANCE: Unlocks IP sovereignty for tenants operating under commercial license agreements by providing a cryptographically verifiable, self-contained proof of entitlement. The receipt severs the runtime dependency on the external Distr API — once issued, the receipt is locally verifiable via DID-based signature validation without network callbacks. Enables the coreason-runtime to branch execution based on `license_tier` (Prosperity vs. Commercial) and gate Forge output headers accordingly.
14349
+ * CAUSAL AFFORDANCE: Unlocks IP sovereignty for tenants operating under commercial license agreements by providing a cryptographically verifiable, self-contained proof of entitlement. It supports zk-SNARK hardware fingerprint proofs for privacy-preserving air-gapped activation. Enables the coreason-runtime to branch execution based on `license_tier` (Prosperity vs. Commercial) and gate Forge output headers accordingly.
14338
14350
  *
14339
- * EPISTEMIC BOUNDS: The `license_tier` is strictly bounded to the Literal set `["prosperity-3.0", "commercial"]`. The `signer_did` must conform to the W3C DID `did:key:z` multicodec pattern (Ed25519). The `issued_at_epoch` and `expires_at_epoch` are strict POSIX integer timestamps with `issued_at < expires_at` enforced by model validator. The `entitlements` list is canonically sorted for RFC 8785 determinism. The `distr_license_cid` is bounded to 256 chars and references the external Distr license record.
14351
+ * EPISTEMIC BOUNDS: The `license_tier` is strictly bounded to the Literal set `["prosperity-3.0", "commercial"]`. The `signer_did` must conform to the W3C DID `did:key:z` multicodec pattern (supporting Post-Quantum ML-DSA keys). The `hardware_zk_proof` must be a valid zero-knowledge succinct non-interactive argument of knowledge.
14340
14352
  *
14341
- * MCP ROUTING TRIGGERS: Commercial License Override, Distr Integration, IP Sovereignty Receipt, Zero-Trust License Verification, WASM Feature Gating, Prosperity Public License, DID-based Signing
14353
+ * MCP ROUTING TRIGGERS: Commercial License Override, VCDM v2.0, SD-JWT, zk-SNARK, ML-DSA, FIPS 204, Distr Integration, IP Sovereignty Receipt, Zero-Trust License Verification, WASM Feature Gating
14342
14354
  */
14343
14355
  export interface CommercialOverrideReceipt {
14344
14356
  tenant_cid?: TenantCid280;
14345
14357
  license_tier: LicenseTier;
14346
14358
  signer_did: SignerDid;
14359
+ signature_algorithm?: SignatureAlgorithm;
14360
+ credential_format?: CredentialFormat;
14347
14361
  distr_license_cid: DistrLicenseCid;
14362
+ hardware_zk_proof?: HardwareZkProof;
14348
14363
  issued_at_epoch: IssuedAtEpoch;
14349
14364
  expires_at_epoch: ExpiresAtEpoch;
14350
14365
  entitlements?: Entitlements1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coreason-ai/coreason-manifest",
3
- "version": "0.78.0",
3
+ "version": "0.80.0",
4
4
  "description": "TypeScript bindings for the CoReason Hollow Data Plane.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "CoReason, Inc <license@coreason.ai>",