@coreason-ai/coreason-manifest 0.91.2 → 0.93.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/dist/ontology.d.ts +5 -0
- package/package.json +1 -1
package/dist/ontology.d.ts
CHANGED
|
@@ -5666,6 +5666,10 @@ export type DistrLicenseCid = string;
|
|
|
5666
5666
|
* The zk-SNARK proof confirming possession of the authorized cluster hardware fingerprint without revealing the raw physical identifiers over the wire.
|
|
5667
5667
|
*/
|
|
5668
5668
|
export type HardwareZkProof = string | null;
|
|
5669
|
+
/**
|
|
5670
|
+
* The cryptographic signature of the receipt.
|
|
5671
|
+
*/
|
|
5672
|
+
export type Signature = string | null;
|
|
5669
5673
|
/**
|
|
5670
5674
|
* The POSIX timestamp (seconds since epoch) when this receipt was cryptographically issued by the gateway.
|
|
5671
5675
|
*/
|
|
@@ -14621,6 +14625,7 @@ export interface CommercialOverrideReceipt {
|
|
|
14621
14625
|
credential_format?: CredentialFormat;
|
|
14622
14626
|
distr_license_cid: DistrLicenseCid;
|
|
14623
14627
|
hardware_zk_proof?: HardwareZkProof;
|
|
14628
|
+
signature?: Signature;
|
|
14624
14629
|
issued_at_epoch: IssuedAtEpoch;
|
|
14625
14630
|
expires_at_epoch: ExpiresAtEpoch;
|
|
14626
14631
|
exp: Exp1;
|
package/package.json
CHANGED