@coreason-ai/coreason-manifest 0.85.1 → 0.87.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 +105 -0
- package/package.json +1 -1
package/dist/ontology.d.ts
CHANGED
|
@@ -204,6 +204,7 @@ export type TopologyClass2 = "macro_adversarial";
|
|
|
204
204
|
* Nodes assigned to the Blue Team.
|
|
205
205
|
*
|
|
206
206
|
* @minItems 1
|
|
207
|
+
* @maxItems 1000
|
|
207
208
|
*/
|
|
208
209
|
export type BlueTeamCids = [NodeCIDState, ...NodeCIDState[]];
|
|
209
210
|
/**
|
|
@@ -214,6 +215,7 @@ export type NodeCIDState = string;
|
|
|
214
215
|
* Nodes assigned to the Red Team.
|
|
215
216
|
*
|
|
216
217
|
* @minItems 1
|
|
218
|
+
* @maxItems 1000
|
|
217
219
|
*/
|
|
218
220
|
export type RedTeamCids = [NodeCIDState, ...NodeCIDState[]];
|
|
219
221
|
/**
|
|
@@ -262,6 +264,8 @@ export type PresentationFormat = "jwt_vc" | "ldp_vc" | "sd_jwt" | "zkp_vc";
|
|
|
262
264
|
export type CryptographicProofBlob = string;
|
|
263
265
|
/**
|
|
264
266
|
* The wallet of selective disclosure credentials proving the agent's identity, clearance, and budget authorization.
|
|
267
|
+
*
|
|
268
|
+
* @maxItems 100
|
|
265
269
|
*/
|
|
266
270
|
export type CredentialPresentations = VerifiableCredentialPresentationReceipt[];
|
|
267
271
|
/**
|
|
@@ -396,12 +400,14 @@ export type CapabilityCid = string;
|
|
|
396
400
|
* The strictly bounded array of foundational AlgebraicRefinementContracts representing the P state geometry.
|
|
397
401
|
*
|
|
398
402
|
* @minItems 1
|
|
403
|
+
* @maxItems 100
|
|
399
404
|
*/
|
|
400
405
|
export type Preconditions = [AlgebraicRefinementContract, ...AlgebraicRefinementContract[]];
|
|
401
406
|
/**
|
|
402
407
|
* The strictly bounded array of subsequent AlgebraicRefinementContracts representing the Q state geometry.
|
|
403
408
|
*
|
|
404
409
|
* @minItems 1
|
|
410
|
+
* @maxItems 100
|
|
405
411
|
*/
|
|
406
412
|
export type Postconditions = [AlgebraicRefinementContract, ...AlgebraicRefinementContract[]];
|
|
407
413
|
/**
|
|
@@ -584,6 +590,8 @@ export type PrismTargetPointer = string;
|
|
|
584
590
|
export type StrictIsomorphism = boolean;
|
|
585
591
|
/**
|
|
586
592
|
* Profunctor mappings for side-effect-free state synchronization.
|
|
593
|
+
*
|
|
594
|
+
* @maxItems 100
|
|
587
595
|
*/
|
|
588
596
|
export type StateSynchronizationOptics = OpticalMappingContract[];
|
|
589
597
|
/**
|
|
@@ -718,6 +726,9 @@ export type AgentRole = "generator" | "critic" | "synthesizer";
|
|
|
718
726
|
*/
|
|
719
727
|
export type StochasticTensor = string;
|
|
720
728
|
export type EpistemicEntropy = number;
|
|
729
|
+
/**
|
|
730
|
+
* @maxItems 1000
|
|
731
|
+
*/
|
|
721
732
|
export type StochasticGraph = StochasticNodeState[];
|
|
722
733
|
/**
|
|
723
734
|
* The Hard Multi-Tenancy segregation identifier. Enforces mathematical quarantine by binding the state physically to a specific sovereign client environment. Defaults to the RFC 8785 (JCS) SHA-256 hash of the CoReason, Inc. incorporation JSON: {"date_of_incorporation":"2025-10-16","file_number":"10369312","jurisdiction":"US-DE","legal_name":"CoReason, Inc."}
|
|
@@ -1010,6 +1021,8 @@ export type DerivationModeProfile = "direct_translation" | "abductive_upsampling
|
|
|
1010
1021
|
export type JustificationHash = string | null;
|
|
1011
1022
|
/**
|
|
1012
1023
|
* The mathematical chain of custody binding this virtual coordinate back to physical vectors.
|
|
1024
|
+
*
|
|
1025
|
+
* @maxItems 100
|
|
1013
1026
|
*/
|
|
1014
1027
|
export type LeafProvenance = EpistemicProvenanceReceipt[];
|
|
1015
1028
|
/**
|
|
@@ -1217,6 +1230,7 @@ export type FormalLogicClauses = string;
|
|
|
1217
1230
|
* Explicit pointers to the AtomicPropositionState or EpistemicOntologicalReificationReceipt nodes that causally justify this new mapping rule.
|
|
1218
1231
|
*
|
|
1219
1232
|
* @minItems 1
|
|
1233
|
+
* @maxItems 100
|
|
1220
1234
|
*/
|
|
1221
1235
|
export type JustificationEvidenceCids = [NodeCIDState, ...NodeCIDState[]];
|
|
1222
1236
|
/**
|
|
@@ -2254,6 +2268,8 @@ export type AsyncObservationPort = string | null;
|
|
|
2254
2268
|
export type EmitTelemetryOnRevision = boolean;
|
|
2255
2269
|
/**
|
|
2256
2270
|
* The declarative array of proactive oversight hooks bound to this node's lifecycle.
|
|
2271
|
+
*
|
|
2272
|
+
* @maxItems 1000
|
|
2257
2273
|
*/
|
|
2258
2274
|
export type InterventionPolicies = InterventionPolicy[];
|
|
2259
2275
|
/**
|
|
@@ -2443,6 +2459,8 @@ export type TargetModules = [string, ...string[]];
|
|
|
2443
2459
|
export type EvictionTtlSeconds = number | null;
|
|
2444
2460
|
/**
|
|
2445
2461
|
* The declarative array of ephemeral PEFT/LoRA weights required to be hot-swapped during this agent's execution.
|
|
2462
|
+
*
|
|
2463
|
+
* @maxItems 1000
|
|
2446
2464
|
*/
|
|
2447
2465
|
export type PeftAdapters = PeftAdapterContract[];
|
|
2448
2466
|
/**
|
|
@@ -2655,6 +2673,8 @@ export type FlowEstimationMatrix = string;
|
|
|
2655
2673
|
export type LocalExplorationK = number;
|
|
2656
2674
|
/**
|
|
2657
2675
|
* The array of cognitive intents and structural proposals emitted by this agent.
|
|
2676
|
+
*
|
|
2677
|
+
* @maxItems 1000
|
|
2658
2678
|
*/
|
|
2659
2679
|
export type EmittedIntents = AnyIntent[];
|
|
2660
2680
|
/**
|
|
@@ -2675,6 +2695,8 @@ export type ArchitecturalIntent1 = string | null;
|
|
|
2675
2695
|
export type Justification3 = string | null;
|
|
2676
2696
|
/**
|
|
2677
2697
|
* The declarative array of proactive oversight hooks bound to this node's lifecycle.
|
|
2698
|
+
*
|
|
2699
|
+
* @maxItems 1000
|
|
2678
2700
|
*/
|
|
2679
2701
|
export type InterventionPolicies1 = InterventionPolicy[];
|
|
2680
2702
|
/**
|
|
@@ -2709,6 +2731,8 @@ export type ArchitecturalIntent2 = string | null;
|
|
|
2709
2731
|
export type Justification4 = string | null;
|
|
2710
2732
|
/**
|
|
2711
2733
|
* The declarative array of proactive oversight hooks bound to this node's lifecycle.
|
|
2734
|
+
*
|
|
2735
|
+
* @maxItems 1000
|
|
2712
2736
|
*/
|
|
2713
2737
|
export type InterventionPolicies2 = InterventionPolicy[];
|
|
2714
2738
|
/**
|
|
@@ -2739,6 +2763,8 @@ export type ArchitecturalIntent3 = string | null;
|
|
|
2739
2763
|
export type Justification5 = string | null;
|
|
2740
2764
|
/**
|
|
2741
2765
|
* The declarative array of proactive oversight hooks bound to this node's lifecycle.
|
|
2766
|
+
*
|
|
2767
|
+
* @maxItems 1000
|
|
2742
2768
|
*/
|
|
2743
2769
|
export type InterventionPolicies3 = InterventionPolicy[];
|
|
2744
2770
|
/**
|
|
@@ -2995,6 +3021,8 @@ export type TemporalIntervalProof = string | null;
|
|
|
2995
3021
|
export type TemporalCircuitHash = string | null;
|
|
2996
3022
|
/**
|
|
2997
3023
|
* The array of Area of Interest perimeters dictating spatial telemetry isolation.
|
|
3024
|
+
*
|
|
3025
|
+
* @maxItems 100
|
|
2998
3026
|
*/
|
|
2999
3027
|
export type ActiveSpatialSubscriptions = VolumetricPartitionState[];
|
|
3000
3028
|
/**
|
|
@@ -3007,6 +3035,8 @@ export type FoveatedPrivacyEpsilon = number | null;
|
|
|
3007
3035
|
export type TopologyClass68 = "dag";
|
|
3008
3036
|
/**
|
|
3009
3037
|
* The strict, topologically bounded matrix of directed causal edges.
|
|
3038
|
+
*
|
|
3039
|
+
* @maxItems 10000
|
|
3010
3040
|
*/
|
|
3011
3041
|
export type Edges = [unknown, unknown][];
|
|
3012
3042
|
/**
|
|
@@ -3255,10 +3285,14 @@ export type StakedMagnitude = number;
|
|
|
3255
3285
|
export type ImpliedProbability = number;
|
|
3256
3286
|
/**
|
|
3257
3287
|
* The immutable ledger of all stakes placed by the swarm.
|
|
3288
|
+
*
|
|
3289
|
+
* @maxItems 10000
|
|
3258
3290
|
*/
|
|
3259
3291
|
export type OrderBook = HypothesisStakeReceipt[];
|
|
3260
3292
|
/**
|
|
3261
3293
|
* The live algorithmic betting markets resolving swarm consensus.
|
|
3294
|
+
*
|
|
3295
|
+
* @maxItems 1000
|
|
3262
3296
|
*/
|
|
3263
3297
|
export type ActivePredictionMarkets = PredictionMarketState[];
|
|
3264
3298
|
/**
|
|
@@ -3281,6 +3315,8 @@ export type WinningHypothesisCid = string;
|
|
|
3281
3315
|
export type FalsifiedHypothesisCids = string[];
|
|
3282
3316
|
/**
|
|
3283
3317
|
* The immutable records of finalized markets and reputation capital distributions.
|
|
3318
|
+
*
|
|
3319
|
+
* @maxItems 1000
|
|
3284
3320
|
*/
|
|
3285
3321
|
export type ResolvedMarkets = MarketResolutionState[];
|
|
3286
3322
|
/**
|
|
@@ -3477,6 +3513,7 @@ export type TopologyClass75 = "macro_federation";
|
|
|
3477
3513
|
* The nodes forming the PBFT ring.
|
|
3478
3514
|
*
|
|
3479
3515
|
* @minItems 3
|
|
3516
|
+
* @maxItems 1000
|
|
3480
3517
|
*/
|
|
3481
3518
|
export type ParticipantCids = [NodeCIDState, NodeCIDState, NodeCIDState, ...NodeCIDState[]];
|
|
3482
3519
|
/**
|
|
@@ -3625,6 +3662,8 @@ export type TenantCid186 = string;
|
|
|
3625
3662
|
export type DiscourseType = "preamble" | "methodology" | "argumentation" | "findings" | "conclusion" | "addendum";
|
|
3626
3663
|
/**
|
|
3627
3664
|
* Explicit pointers linking this discourse block to the specific AtomicPropositionState nodes extracted from its text.
|
|
3665
|
+
*
|
|
3666
|
+
* @maxItems 1000
|
|
3628
3667
|
*/
|
|
3629
3668
|
export type ContainedPropositions = NodeCIDState[];
|
|
3630
3669
|
/**
|
|
@@ -3722,6 +3761,8 @@ export type TopologyClass82 = "manifold_mapping";
|
|
|
3722
3761
|
export type IsometryPreservationScore = number;
|
|
3723
3762
|
/**
|
|
3724
3763
|
* Optional geometric projections binding this discrete node to a continuous spatial rendering environment.
|
|
3764
|
+
*
|
|
3765
|
+
* @maxItems 100
|
|
3725
3766
|
*/
|
|
3726
3767
|
export type SpatialManifoldMappings = ContinuousManifoldMappingContract[];
|
|
3727
3768
|
/**
|
|
@@ -3786,6 +3827,8 @@ export type ColumnSpan = number;
|
|
|
3786
3827
|
export type TextPayload = string;
|
|
3787
3828
|
/**
|
|
3788
3829
|
* The complete, sorted array of constituent cell geometries.
|
|
3830
|
+
*
|
|
3831
|
+
* @maxItems 10000
|
|
3789
3832
|
*/
|
|
3790
3833
|
export type Cells = TabularCellState[];
|
|
3791
3834
|
/**
|
|
@@ -3806,6 +3849,8 @@ export type ParentKey = string;
|
|
|
3806
3849
|
export type ChildKey = string;
|
|
3807
3850
|
/**
|
|
3808
3851
|
* Explicit state projection inputs.
|
|
3852
|
+
*
|
|
3853
|
+
* @maxItems 100
|
|
3809
3854
|
*/
|
|
3810
3855
|
export type InputMappings = InputMappingContract[];
|
|
3811
3856
|
/**
|
|
@@ -3822,6 +3867,8 @@ export type ChildKey1 = string;
|
|
|
3822
3867
|
export type ParentKey1 = string;
|
|
3823
3868
|
/**
|
|
3824
3869
|
* Explicit state projection outputs.
|
|
3870
|
+
*
|
|
3871
|
+
* @maxItems 100
|
|
3825
3872
|
*/
|
|
3826
3873
|
export type OutputMappings = OutputMappingContract[];
|
|
3827
3874
|
/**
|
|
@@ -3842,6 +3889,8 @@ export type ArchitecturalIntent15 = string | null;
|
|
|
3842
3889
|
export type Justification17 = string | null;
|
|
3843
3890
|
/**
|
|
3844
3891
|
* The declarative array of proactive oversight hooks bound to this node's lifecycle.
|
|
3892
|
+
*
|
|
3893
|
+
* @maxItems 1000
|
|
3845
3894
|
*/
|
|
3846
3895
|
export type InterventionPolicies4 = InterventionPolicy[];
|
|
3847
3896
|
/**
|
|
@@ -3885,10 +3934,14 @@ export type AuthorNodeCid = string;
|
|
|
3885
3934
|
export type LamportTimestamp = number;
|
|
3886
3935
|
/**
|
|
3887
3936
|
* The Grow-Only Set (G-Set) of newly transmutated semantic vertices.
|
|
3937
|
+
*
|
|
3938
|
+
* @maxItems 10000
|
|
3888
3939
|
*/
|
|
3889
3940
|
export type AddSet = NodeCIDState[];
|
|
3890
3941
|
/**
|
|
3891
3942
|
* The set of non-monotonic timeline caps.
|
|
3943
|
+
*
|
|
3944
|
+
* @maxItems 10000
|
|
3892
3945
|
*/
|
|
3893
3946
|
export type TerminateSet = TemporalEdgeInvalidationIntent[];
|
|
3894
3947
|
/**
|
|
@@ -4155,6 +4208,8 @@ export type SourceEventCid1 = string;
|
|
|
4155
4208
|
export type InfluenceWeight = number;
|
|
4156
4209
|
/**
|
|
4157
4210
|
* Immutable audit trail of prior states that forced this specific cognitive synthesis.
|
|
4211
|
+
*
|
|
4212
|
+
* @maxItems 1000
|
|
4158
4213
|
*/
|
|
4159
4214
|
export type CausalAttributions = CausalAttributionState[];
|
|
4160
4215
|
/**
|
|
@@ -4232,6 +4287,8 @@ export type IllocutionaryForceProfile = "assertive" | "directive_normative" | "c
|
|
|
4232
4287
|
export type TextChunk1 = string;
|
|
4233
4288
|
/**
|
|
4234
4289
|
* Explicit array of entity DIDs/CIDs resolving implicit references (e.g., pronouns) within the text chunk back to explicit nodes.
|
|
4290
|
+
*
|
|
4291
|
+
* @maxItems 100
|
|
4235
4292
|
*/
|
|
4236
4293
|
export type AnaphoricResolutionCids = NodeCIDState[];
|
|
4237
4294
|
/**
|
|
@@ -4260,6 +4317,8 @@ export type LowerBound = number | null;
|
|
|
4260
4317
|
export type UpperBound = number | null;
|
|
4261
4318
|
/**
|
|
4262
4319
|
* Explicit mathematical boundaries extracted from the text that empirically limit the certainty or scope of the proposition.
|
|
4320
|
+
*
|
|
4321
|
+
* @maxItems 100
|
|
4263
4322
|
*/
|
|
4264
4323
|
export type StatisticalQualifiers = EmpiricalStatisticalProfile[];
|
|
4265
4324
|
/**
|
|
@@ -4597,6 +4656,7 @@ export type SourceChainCid = string;
|
|
|
4597
4656
|
export type TargetSourceConcept = string;
|
|
4598
4657
|
/**
|
|
4599
4658
|
* @minItems 1
|
|
4659
|
+
* @maxItems 1000
|
|
4600
4660
|
*/
|
|
4601
4661
|
export type PredictedTopKTokens = [string, ...string[]];
|
|
4602
4662
|
/**
|
|
@@ -5079,6 +5139,8 @@ export type TopologyClass123 = "epistemic_starvation";
|
|
|
5079
5139
|
export type StarvedEdgeCid = string;
|
|
5080
5140
|
/**
|
|
5081
5141
|
* The array of citations evaluated that fell below the required NLI threshold.
|
|
5142
|
+
*
|
|
5143
|
+
* @maxItems 1000
|
|
5082
5144
|
*/
|
|
5083
5145
|
export type FailedCitations = EvidentiaryCitationState[];
|
|
5084
5146
|
/**
|
|
@@ -5361,6 +5423,8 @@ export type AuctionMechanismProfile = "sealed_bid" | "dutch" | "vickrey";
|
|
|
5361
5423
|
export type TenantCid267 = string;
|
|
5362
5424
|
/**
|
|
5363
5425
|
* The array of received bids.
|
|
5426
|
+
*
|
|
5427
|
+
* @maxItems 1000
|
|
5364
5428
|
*/
|
|
5365
5429
|
export type Bids = AgentBidIntent[];
|
|
5366
5430
|
/**
|
|
@@ -5437,6 +5501,8 @@ export type MutuallyExclusiveClusters = string[][];
|
|
|
5437
5501
|
export type EnforcementAction = "halt_and_quarantine" | "sever_causal_chain";
|
|
5438
5502
|
/**
|
|
5439
5503
|
* A deterministic array of DIDs authorized to validate this manifest.
|
|
5504
|
+
*
|
|
5505
|
+
* @maxItems 1000
|
|
5440
5506
|
*/
|
|
5441
5507
|
export type TrustedValidators = NodeCIDState[];
|
|
5442
5508
|
/**
|
|
@@ -5542,6 +5608,8 @@ export type TenantCid279 = string;
|
|
|
5542
5608
|
export type Jti = string;
|
|
5543
5609
|
/**
|
|
5544
5610
|
* An array of older JWT IDs that this token explicitly invalidates.
|
|
5611
|
+
*
|
|
5612
|
+
* @maxItems 100
|
|
5545
5613
|
*/
|
|
5546
5614
|
export type Supersedes = string[];
|
|
5547
5615
|
/**
|
|
@@ -5550,6 +5618,8 @@ export type Supersedes = string[];
|
|
|
5550
5618
|
export type Exp = number;
|
|
5551
5619
|
/**
|
|
5552
5620
|
* The granted access rights (e.g., 'COMMERCIAL_USE', 'IP_SOVEREIGNTY_EXCEPTION').
|
|
5621
|
+
*
|
|
5622
|
+
* @maxItems 1000
|
|
5553
5623
|
*/
|
|
5554
5624
|
export type Entitlements = string[];
|
|
5555
5625
|
/**
|
|
@@ -5592,8 +5662,18 @@ export type IssuedAtEpoch = number;
|
|
|
5592
5662
|
* The POSIX timestamp (seconds since epoch) when this receipt mechanically terminates. After expiration, the WASM sandbox must gracefully fallback to Prosperity 3.0 mode.
|
|
5593
5663
|
*/
|
|
5594
5664
|
export type ExpiresAtEpoch = number;
|
|
5665
|
+
/**
|
|
5666
|
+
* The standard JWT Expiration Time claim representing the POSIX timestamp when the receipt mechanically terminates.
|
|
5667
|
+
*/
|
|
5668
|
+
export type Exp1 = number;
|
|
5669
|
+
/**
|
|
5670
|
+
* The standard JWT Issued At claim representing the POSIX timestamp when the receipt was issued.
|
|
5671
|
+
*/
|
|
5672
|
+
export type Iat = number;
|
|
5595
5673
|
/**
|
|
5596
5674
|
* The specific feature flags and access rights granted by the commercial license. Examples: 'IP_SOVEREIGNTY_EXCEPTION', 'COMMERCIAL_USE', 'PRIVATE_NETWORK_FEDERATION', 'UNLIMITED_FORGE_OUTPUT'.
|
|
5675
|
+
*
|
|
5676
|
+
* @maxItems 1000
|
|
5597
5677
|
*/
|
|
5598
5678
|
export type Entitlements1 = string[];
|
|
5599
5679
|
/**
|
|
@@ -5724,6 +5804,8 @@ export type TenantCid287 = string;
|
|
|
5724
5804
|
export type CapabilityCid2 = string;
|
|
5725
5805
|
/**
|
|
5726
5806
|
* The strictly bounded set of ToolIdentifiers this delegation permits.
|
|
5807
|
+
*
|
|
5808
|
+
* @maxItems 1000
|
|
5727
5809
|
*/
|
|
5728
5810
|
export type AllowedToolCids = CapabilityPointerState[];
|
|
5729
5811
|
/**
|
|
@@ -5836,6 +5918,7 @@ export type TenantCid295 = string;
|
|
|
5836
5918
|
* The strict array of strict W3C DIDs (NodeIdentifierStates) representing concurrent topology branches.
|
|
5837
5919
|
*
|
|
5838
5920
|
* @minItems 2
|
|
5921
|
+
* @maxItems 100
|
|
5839
5922
|
*/
|
|
5840
5923
|
export type ConcurrentBranchCids = [NodeCIDState, NodeCIDState, ...NodeCIDState[]];
|
|
5841
5924
|
/**
|
|
@@ -5876,6 +5959,8 @@ export type SourceSemanticNodeCid = string | null;
|
|
|
5876
5959
|
export type Justification19 = string;
|
|
5877
5960
|
/**
|
|
5878
5961
|
* The foundational premises supporting this claim.
|
|
5962
|
+
*
|
|
5963
|
+
* @maxItems 100
|
|
5879
5964
|
*/
|
|
5880
5965
|
export type Warrants = EvidentiaryWarrantState[];
|
|
5881
5966
|
/**
|
|
@@ -5942,6 +6027,7 @@ export type ProofCid = string;
|
|
|
5942
6027
|
* The strictly ordered sequence of axioms forming the reasoning path.
|
|
5943
6028
|
*
|
|
5944
6029
|
* @minItems 1
|
|
6030
|
+
* @maxItems 1000
|
|
5945
6031
|
*/
|
|
5946
6032
|
export type AxiomaticChain = [EpistemicAxiomState, ...EpistemicAxiomState[]];
|
|
5947
6033
|
/**
|
|
@@ -5955,6 +6041,7 @@ export type TenantCid304 = string;
|
|
|
5955
6041
|
export type GraphCid1 = string;
|
|
5956
6042
|
/**
|
|
5957
6043
|
* @minItems 1
|
|
6044
|
+
* @maxItems 1000
|
|
5958
6045
|
*/
|
|
5959
6046
|
export type VerifiedAxioms = [EpistemicAxiomState, ...EpistemicAxiomState[]];
|
|
5960
6047
|
/**
|
|
@@ -6017,6 +6104,8 @@ export type TenantCid308 = string;
|
|
|
6017
6104
|
export type History = AnyStateEvent[];
|
|
6018
6105
|
/**
|
|
6019
6106
|
* A strict sequence of CIDs representing historical nodes that have been severed from the causal graph via defeasible logic.
|
|
6107
|
+
*
|
|
6108
|
+
* @maxItems 10000
|
|
6020
6109
|
*/
|
|
6021
6110
|
export type RetractedNodes = string[];
|
|
6022
6111
|
/**
|
|
@@ -6043,6 +6132,8 @@ export type StateHash = string;
|
|
|
6043
6132
|
export type Checkpoints = TemporalCheckpointState[];
|
|
6044
6133
|
/**
|
|
6045
6134
|
* Causal invalidations actively enforced on the execution tree.
|
|
6135
|
+
*
|
|
6136
|
+
* @maxItems 1000
|
|
6046
6137
|
*/
|
|
6047
6138
|
export type ActiveRollbacks = RollbackIntent[];
|
|
6048
6139
|
/**
|
|
@@ -6063,6 +6154,8 @@ export type MaxRetainedTokens = number;
|
|
|
6063
6154
|
export type ProtectedEventCids = string[];
|
|
6064
6155
|
/**
|
|
6065
6156
|
* The active state-differential payload muting specific causal subgraphs due to falsification.
|
|
6157
|
+
*
|
|
6158
|
+
* @maxItems 1000
|
|
6066
6159
|
*/
|
|
6067
6160
|
export type ActiveCascades = DefeasibleCascadeEvent[];
|
|
6068
6161
|
/**
|
|
@@ -6109,6 +6202,8 @@ export type IdentifiedKnowledgeGaps = string[];
|
|
|
6109
6202
|
export type EmpathyConfidenceScore = number;
|
|
6110
6203
|
/**
|
|
6111
6204
|
* Empathetic models of other agents to compress and target outgoing communications.
|
|
6205
|
+
*
|
|
6206
|
+
* @maxItems 1000
|
|
6112
6207
|
*/
|
|
6113
6208
|
export type TheoryOfMindMatrices = TheoryOfMindSnapshot[];
|
|
6114
6209
|
/**
|
|
@@ -6129,6 +6224,8 @@ export type ActionSpaces = CognitiveActionSpaceManifest[];
|
|
|
6129
6224
|
export type ProfileCIDState = string;
|
|
6130
6225
|
/**
|
|
6131
6226
|
* The strict array of foundational model personas available.
|
|
6227
|
+
*
|
|
6228
|
+
* @maxItems 100
|
|
6132
6229
|
*/
|
|
6133
6230
|
export type SupportedPersonas = ProfileCIDState[];
|
|
6134
6231
|
/**
|
|
@@ -6333,6 +6430,8 @@ export type InvariantCid = string;
|
|
|
6333
6430
|
export type CategoricalCohorts = string[];
|
|
6334
6431
|
/**
|
|
6335
6432
|
* The valid chronological windows encompassing the artifact.
|
|
6433
|
+
*
|
|
6434
|
+
* @maxItems 1000
|
|
6336
6435
|
*/
|
|
6337
6436
|
export type TemporalObservationHorizons = TemporalBoundsProfile2[];
|
|
6338
6437
|
/**
|
|
@@ -6753,6 +6852,8 @@ export type AuthorNodeCid1 = string;
|
|
|
6753
6852
|
export type LamportTimestamp1 = number;
|
|
6754
6853
|
/**
|
|
6755
6854
|
* The exact, ordered sequence of deterministic state vector mutations.
|
|
6855
|
+
*
|
|
6856
|
+
* @maxItems 1000
|
|
6756
6857
|
*/
|
|
6757
6858
|
export type Patches = StateMutationIntent[];
|
|
6758
6859
|
/**
|
|
@@ -6765,6 +6866,8 @@ export type TenantCid352 = string;
|
|
|
6765
6866
|
export type EpistemicCoordinate = string;
|
|
6766
6867
|
/**
|
|
6767
6868
|
* The explicit array of cryptographic pointers to past immutable EpistemicLedgerState blocks.
|
|
6869
|
+
*
|
|
6870
|
+
* @maxItems 10000
|
|
6768
6871
|
*/
|
|
6769
6872
|
export type CrystallizedLedgerCids = string[];
|
|
6770
6873
|
/**
|
|
@@ -14484,6 +14587,8 @@ export interface CommercialOverrideReceipt {
|
|
|
14484
14587
|
hardware_zk_proof?: HardwareZkProof;
|
|
14485
14588
|
issued_at_epoch: IssuedAtEpoch;
|
|
14486
14589
|
expires_at_epoch: ExpiresAtEpoch;
|
|
14590
|
+
exp: Exp1;
|
|
14591
|
+
iat: Iat;
|
|
14487
14592
|
entitlements?: Entitlements1;
|
|
14488
14593
|
network_mode: NetworkMode;
|
|
14489
14594
|
federation_enabled?: FederationEnabled;
|
package/package.json
CHANGED