@coreason-ai/coreason-manifest 0.86.0 → 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 +74 -4
- 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
|
/**
|
|
@@ -3007,6 +3021,8 @@ export type TemporalIntervalProof = string | null;
|
|
|
3007
3021
|
export type TemporalCircuitHash = string | null;
|
|
3008
3022
|
/**
|
|
3009
3023
|
* The array of Area of Interest perimeters dictating spatial telemetry isolation.
|
|
3024
|
+
*
|
|
3025
|
+
* @maxItems 100
|
|
3010
3026
|
*/
|
|
3011
3027
|
export type ActiveSpatialSubscriptions = VolumetricPartitionState[];
|
|
3012
3028
|
/**
|
|
@@ -3019,6 +3035,8 @@ export type FoveatedPrivacyEpsilon = number | null;
|
|
|
3019
3035
|
export type TopologyClass68 = "dag";
|
|
3020
3036
|
/**
|
|
3021
3037
|
* The strict, topologically bounded matrix of directed causal edges.
|
|
3038
|
+
*
|
|
3039
|
+
* @maxItems 10000
|
|
3022
3040
|
*/
|
|
3023
3041
|
export type Edges = [unknown, unknown][];
|
|
3024
3042
|
/**
|
|
@@ -3267,10 +3285,14 @@ export type StakedMagnitude = number;
|
|
|
3267
3285
|
export type ImpliedProbability = number;
|
|
3268
3286
|
/**
|
|
3269
3287
|
* The immutable ledger of all stakes placed by the swarm.
|
|
3288
|
+
*
|
|
3289
|
+
* @maxItems 10000
|
|
3270
3290
|
*/
|
|
3271
3291
|
export type OrderBook = HypothesisStakeReceipt[];
|
|
3272
3292
|
/**
|
|
3273
3293
|
* The live algorithmic betting markets resolving swarm consensus.
|
|
3294
|
+
*
|
|
3295
|
+
* @maxItems 1000
|
|
3274
3296
|
*/
|
|
3275
3297
|
export type ActivePredictionMarkets = PredictionMarketState[];
|
|
3276
3298
|
/**
|
|
@@ -3293,6 +3315,8 @@ export type WinningHypothesisCid = string;
|
|
|
3293
3315
|
export type FalsifiedHypothesisCids = string[];
|
|
3294
3316
|
/**
|
|
3295
3317
|
* The immutable records of finalized markets and reputation capital distributions.
|
|
3318
|
+
*
|
|
3319
|
+
* @maxItems 1000
|
|
3296
3320
|
*/
|
|
3297
3321
|
export type ResolvedMarkets = MarketResolutionState[];
|
|
3298
3322
|
/**
|
|
@@ -3489,6 +3513,7 @@ export type TopologyClass75 = "macro_federation";
|
|
|
3489
3513
|
* The nodes forming the PBFT ring.
|
|
3490
3514
|
*
|
|
3491
3515
|
* @minItems 3
|
|
3516
|
+
* @maxItems 1000
|
|
3492
3517
|
*/
|
|
3493
3518
|
export type ParticipantCids = [NodeCIDState, NodeCIDState, NodeCIDState, ...NodeCIDState[]];
|
|
3494
3519
|
/**
|
|
@@ -3637,6 +3662,8 @@ export type TenantCid186 = string;
|
|
|
3637
3662
|
export type DiscourseType = "preamble" | "methodology" | "argumentation" | "findings" | "conclusion" | "addendum";
|
|
3638
3663
|
/**
|
|
3639
3664
|
* Explicit pointers linking this discourse block to the specific AtomicPropositionState nodes extracted from its text.
|
|
3665
|
+
*
|
|
3666
|
+
* @maxItems 1000
|
|
3640
3667
|
*/
|
|
3641
3668
|
export type ContainedPropositions = NodeCIDState[];
|
|
3642
3669
|
/**
|
|
@@ -3734,6 +3761,8 @@ export type TopologyClass82 = "manifold_mapping";
|
|
|
3734
3761
|
export type IsometryPreservationScore = number;
|
|
3735
3762
|
/**
|
|
3736
3763
|
* Optional geometric projections binding this discrete node to a continuous spatial rendering environment.
|
|
3764
|
+
*
|
|
3765
|
+
* @maxItems 100
|
|
3737
3766
|
*/
|
|
3738
3767
|
export type SpatialManifoldMappings = ContinuousManifoldMappingContract[];
|
|
3739
3768
|
/**
|
|
@@ -3798,6 +3827,8 @@ export type ColumnSpan = number;
|
|
|
3798
3827
|
export type TextPayload = string;
|
|
3799
3828
|
/**
|
|
3800
3829
|
* The complete, sorted array of constituent cell geometries.
|
|
3830
|
+
*
|
|
3831
|
+
* @maxItems 10000
|
|
3801
3832
|
*/
|
|
3802
3833
|
export type Cells = TabularCellState[];
|
|
3803
3834
|
/**
|
|
@@ -3818,6 +3849,8 @@ export type ParentKey = string;
|
|
|
3818
3849
|
export type ChildKey = string;
|
|
3819
3850
|
/**
|
|
3820
3851
|
* Explicit state projection inputs.
|
|
3852
|
+
*
|
|
3853
|
+
* @maxItems 100
|
|
3821
3854
|
*/
|
|
3822
3855
|
export type InputMappings = InputMappingContract[];
|
|
3823
3856
|
/**
|
|
@@ -3834,6 +3867,8 @@ export type ChildKey1 = string;
|
|
|
3834
3867
|
export type ParentKey1 = string;
|
|
3835
3868
|
/**
|
|
3836
3869
|
* Explicit state projection outputs.
|
|
3870
|
+
*
|
|
3871
|
+
* @maxItems 100
|
|
3837
3872
|
*/
|
|
3838
3873
|
export type OutputMappings = OutputMappingContract[];
|
|
3839
3874
|
/**
|
|
@@ -3899,10 +3934,14 @@ export type AuthorNodeCid = string;
|
|
|
3899
3934
|
export type LamportTimestamp = number;
|
|
3900
3935
|
/**
|
|
3901
3936
|
* The Grow-Only Set (G-Set) of newly transmutated semantic vertices.
|
|
3937
|
+
*
|
|
3938
|
+
* @maxItems 10000
|
|
3902
3939
|
*/
|
|
3903
3940
|
export type AddSet = NodeCIDState[];
|
|
3904
3941
|
/**
|
|
3905
3942
|
* The set of non-monotonic timeline caps.
|
|
3943
|
+
*
|
|
3944
|
+
* @maxItems 10000
|
|
3906
3945
|
*/
|
|
3907
3946
|
export type TerminateSet = TemporalEdgeInvalidationIntent[];
|
|
3908
3947
|
/**
|
|
@@ -4169,6 +4208,8 @@ export type SourceEventCid1 = string;
|
|
|
4169
4208
|
export type InfluenceWeight = number;
|
|
4170
4209
|
/**
|
|
4171
4210
|
* Immutable audit trail of prior states that forced this specific cognitive synthesis.
|
|
4211
|
+
*
|
|
4212
|
+
* @maxItems 1000
|
|
4172
4213
|
*/
|
|
4173
4214
|
export type CausalAttributions = CausalAttributionState[];
|
|
4174
4215
|
/**
|
|
@@ -4246,6 +4287,8 @@ export type IllocutionaryForceProfile = "assertive" | "directive_normative" | "c
|
|
|
4246
4287
|
export type TextChunk1 = string;
|
|
4247
4288
|
/**
|
|
4248
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
|
|
4249
4292
|
*/
|
|
4250
4293
|
export type AnaphoricResolutionCids = NodeCIDState[];
|
|
4251
4294
|
/**
|
|
@@ -4274,6 +4317,8 @@ export type LowerBound = number | null;
|
|
|
4274
4317
|
export type UpperBound = number | null;
|
|
4275
4318
|
/**
|
|
4276
4319
|
* Explicit mathematical boundaries extracted from the text that empirically limit the certainty or scope of the proposition.
|
|
4320
|
+
*
|
|
4321
|
+
* @maxItems 100
|
|
4277
4322
|
*/
|
|
4278
4323
|
export type StatisticalQualifiers = EmpiricalStatisticalProfile[];
|
|
4279
4324
|
/**
|
|
@@ -5094,6 +5139,8 @@ export type TopologyClass123 = "epistemic_starvation";
|
|
|
5094
5139
|
export type StarvedEdgeCid = string;
|
|
5095
5140
|
/**
|
|
5096
5141
|
* The array of citations evaluated that fell below the required NLI threshold.
|
|
5142
|
+
*
|
|
5143
|
+
* @maxItems 1000
|
|
5097
5144
|
*/
|
|
5098
5145
|
export type FailedCitations = EvidentiaryCitationState[];
|
|
5099
5146
|
/**
|
|
@@ -5376,6 +5423,8 @@ export type AuctionMechanismProfile = "sealed_bid" | "dutch" | "vickrey";
|
|
|
5376
5423
|
export type TenantCid267 = string;
|
|
5377
5424
|
/**
|
|
5378
5425
|
* The array of received bids.
|
|
5426
|
+
*
|
|
5427
|
+
* @maxItems 1000
|
|
5379
5428
|
*/
|
|
5380
5429
|
export type Bids = AgentBidIntent[];
|
|
5381
5430
|
/**
|
|
@@ -5559,6 +5608,8 @@ export type TenantCid279 = string;
|
|
|
5559
5608
|
export type Jti = string;
|
|
5560
5609
|
/**
|
|
5561
5610
|
* An array of older JWT IDs that this token explicitly invalidates.
|
|
5611
|
+
*
|
|
5612
|
+
* @maxItems 100
|
|
5562
5613
|
*/
|
|
5563
5614
|
export type Supersedes = string[];
|
|
5564
5615
|
/**
|
|
@@ -5567,6 +5618,8 @@ export type Supersedes = string[];
|
|
|
5567
5618
|
export type Exp = number;
|
|
5568
5619
|
/**
|
|
5569
5620
|
* The granted access rights (e.g., 'COMMERCIAL_USE', 'IP_SOVEREIGNTY_EXCEPTION').
|
|
5621
|
+
*
|
|
5622
|
+
* @maxItems 1000
|
|
5570
5623
|
*/
|
|
5571
5624
|
export type Entitlements = string[];
|
|
5572
5625
|
/**
|
|
@@ -5612,13 +5665,15 @@ export type ExpiresAtEpoch = number;
|
|
|
5612
5665
|
/**
|
|
5613
5666
|
* The standard JWT Expiration Time claim representing the POSIX timestamp when the receipt mechanically terminates.
|
|
5614
5667
|
*/
|
|
5615
|
-
export type Exp1 = number
|
|
5668
|
+
export type Exp1 = number;
|
|
5616
5669
|
/**
|
|
5617
5670
|
* The standard JWT Issued At claim representing the POSIX timestamp when the receipt was issued.
|
|
5618
5671
|
*/
|
|
5619
|
-
export type Iat = number
|
|
5672
|
+
export type Iat = number;
|
|
5620
5673
|
/**
|
|
5621
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
|
|
5622
5677
|
*/
|
|
5623
5678
|
export type Entitlements1 = string[];
|
|
5624
5679
|
/**
|
|
@@ -5749,6 +5804,8 @@ export type TenantCid287 = string;
|
|
|
5749
5804
|
export type CapabilityCid2 = string;
|
|
5750
5805
|
/**
|
|
5751
5806
|
* The strictly bounded set of ToolIdentifiers this delegation permits.
|
|
5807
|
+
*
|
|
5808
|
+
* @maxItems 1000
|
|
5752
5809
|
*/
|
|
5753
5810
|
export type AllowedToolCids = CapabilityPointerState[];
|
|
5754
5811
|
/**
|
|
@@ -5861,6 +5918,7 @@ export type TenantCid295 = string;
|
|
|
5861
5918
|
* The strict array of strict W3C DIDs (NodeIdentifierStates) representing concurrent topology branches.
|
|
5862
5919
|
*
|
|
5863
5920
|
* @minItems 2
|
|
5921
|
+
* @maxItems 100
|
|
5864
5922
|
*/
|
|
5865
5923
|
export type ConcurrentBranchCids = [NodeCIDState, NodeCIDState, ...NodeCIDState[]];
|
|
5866
5924
|
/**
|
|
@@ -5901,6 +5959,8 @@ export type SourceSemanticNodeCid = string | null;
|
|
|
5901
5959
|
export type Justification19 = string;
|
|
5902
5960
|
/**
|
|
5903
5961
|
* The foundational premises supporting this claim.
|
|
5962
|
+
*
|
|
5963
|
+
* @maxItems 100
|
|
5904
5964
|
*/
|
|
5905
5965
|
export type Warrants = EvidentiaryWarrantState[];
|
|
5906
5966
|
/**
|
|
@@ -5967,6 +6027,7 @@ export type ProofCid = string;
|
|
|
5967
6027
|
* The strictly ordered sequence of axioms forming the reasoning path.
|
|
5968
6028
|
*
|
|
5969
6029
|
* @minItems 1
|
|
6030
|
+
* @maxItems 1000
|
|
5970
6031
|
*/
|
|
5971
6032
|
export type AxiomaticChain = [EpistemicAxiomState, ...EpistemicAxiomState[]];
|
|
5972
6033
|
/**
|
|
@@ -5980,6 +6041,7 @@ export type TenantCid304 = string;
|
|
|
5980
6041
|
export type GraphCid1 = string;
|
|
5981
6042
|
/**
|
|
5982
6043
|
* @minItems 1
|
|
6044
|
+
* @maxItems 1000
|
|
5983
6045
|
*/
|
|
5984
6046
|
export type VerifiedAxioms = [EpistemicAxiomState, ...EpistemicAxiomState[]];
|
|
5985
6047
|
/**
|
|
@@ -6162,6 +6224,8 @@ export type ActionSpaces = CognitiveActionSpaceManifest[];
|
|
|
6162
6224
|
export type ProfileCIDState = string;
|
|
6163
6225
|
/**
|
|
6164
6226
|
* The strict array of foundational model personas available.
|
|
6227
|
+
*
|
|
6228
|
+
* @maxItems 100
|
|
6165
6229
|
*/
|
|
6166
6230
|
export type SupportedPersonas = ProfileCIDState[];
|
|
6167
6231
|
/**
|
|
@@ -6366,6 +6430,8 @@ export type InvariantCid = string;
|
|
|
6366
6430
|
export type CategoricalCohorts = string[];
|
|
6367
6431
|
/**
|
|
6368
6432
|
* The valid chronological windows encompassing the artifact.
|
|
6433
|
+
*
|
|
6434
|
+
* @maxItems 1000
|
|
6369
6435
|
*/
|
|
6370
6436
|
export type TemporalObservationHorizons = TemporalBoundsProfile2[];
|
|
6371
6437
|
/**
|
|
@@ -6786,6 +6852,8 @@ export type AuthorNodeCid1 = string;
|
|
|
6786
6852
|
export type LamportTimestamp1 = number;
|
|
6787
6853
|
/**
|
|
6788
6854
|
* The exact, ordered sequence of deterministic state vector mutations.
|
|
6855
|
+
*
|
|
6856
|
+
* @maxItems 1000
|
|
6789
6857
|
*/
|
|
6790
6858
|
export type Patches = StateMutationIntent[];
|
|
6791
6859
|
/**
|
|
@@ -6798,6 +6866,8 @@ export type TenantCid352 = string;
|
|
|
6798
6866
|
export type EpistemicCoordinate = string;
|
|
6799
6867
|
/**
|
|
6800
6868
|
* The explicit array of cryptographic pointers to past immutable EpistemicLedgerState blocks.
|
|
6869
|
+
*
|
|
6870
|
+
* @maxItems 10000
|
|
6801
6871
|
*/
|
|
6802
6872
|
export type CrystallizedLedgerCids = string[];
|
|
6803
6873
|
/**
|
|
@@ -14517,8 +14587,8 @@ export interface CommercialOverrideReceipt {
|
|
|
14517
14587
|
hardware_zk_proof?: HardwareZkProof;
|
|
14518
14588
|
issued_at_epoch: IssuedAtEpoch;
|
|
14519
14589
|
expires_at_epoch: ExpiresAtEpoch;
|
|
14520
|
-
exp
|
|
14521
|
-
iat
|
|
14590
|
+
exp: Exp1;
|
|
14591
|
+
iat: Iat;
|
|
14522
14592
|
entitlements?: Entitlements1;
|
|
14523
14593
|
network_mode: NetworkMode;
|
|
14524
14594
|
federation_enabled?: FederationEnabled;
|
package/package.json
CHANGED