@dynamicalsystems/idl 0.9.0 → 0.11.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/index.cjs +100 -30
- package/dist/index.d.cts +79 -5
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +79 -5
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +94 -31
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -2
- package/schema/dsg-core-google-identity-v1.json +39 -0
- package/schema/dsg-core-refusal-v2.json +24 -0
- package/schema/dsg-core-refusal-v3.json +103 -0
- package/src/core/google-identity.v1.ts +42 -0
- package/src/core/identity-binding.v1.ts +2 -2
- package/src/core/refusal.v1.ts +2 -2
- package/src/core/refusal.v2.ts +21 -2
- package/src/core/refusal.v3.ts +50 -0
- package/src/index.ts +25 -8
- package/src/infra/adoption-fact.v1.ts +2 -2
- package/src/infra/resource-descriptor.v1.ts +2 -2
- package/src/infra/signed-law.v1.ts +1 -1
- package/src/kernel/bootstrap.v1.ts +1 -1
- package/src/kernel/dispatch-consume.v1.ts +1 -1
- package/src/kernel/ordinary-authority.v1.ts +2 -2
- package/src/kernel/standing-order-activation.v1.ts +2 -2
- package/src/primitives.ts +2 -2
- package/src/registry/revocations.v1.ts +1 -1
- package/src/run/decision.v1.ts +2 -2
- package/src/run/event.v1.ts +2 -2
- package/src/run/operation.v1.ts +1 -1
- package/src/run/request.v1.ts +2 -2
- package/src/run/run-summary.v1.ts +2 -2
package/dist/index.cjs
CHANGED
|
@@ -100,7 +100,7 @@ const DispatchRefusalSchema = closed({
|
|
|
100
100
|
});
|
|
101
101
|
const dispatchConsumeV1 = {
|
|
102
102
|
literal: DISPATCH_CONSUME_PROFILE,
|
|
103
|
-
|
|
103
|
+
documents: {
|
|
104
104
|
request: DispatchConsumeRequestSchema,
|
|
105
105
|
lease: DispatchLeaseSchema,
|
|
106
106
|
refusal: DispatchRefusalSchema
|
|
@@ -187,7 +187,7 @@ const ReadbackSchema = closed({
|
|
|
187
187
|
const OperationStatusSchema = ReadbackSchema;
|
|
188
188
|
const operationV1 = {
|
|
189
189
|
literal: OPERATION_PROFILE,
|
|
190
|
-
|
|
190
|
+
documents: {
|
|
191
191
|
request: OperationRequestSchema,
|
|
192
192
|
accepted: AcceptedSchema,
|
|
193
193
|
readback: ReadbackSchema
|
|
@@ -225,8 +225,8 @@ const ResourceDescriptorSchema = closed({
|
|
|
225
225
|
const resourceDescriptorV1 = {
|
|
226
226
|
literal: RESOURCE_DESCRIPTOR_PROFILE,
|
|
227
227
|
literalNote: "carried as kind (unversioned) plus schemaVersion on the document; the /1 literal is the version marker signed-law pins",
|
|
228
|
-
|
|
229
|
-
|
|
228
|
+
rootDocument: "descriptor",
|
|
229
|
+
documents: { descriptor: ResourceDescriptorSchema }
|
|
230
230
|
};
|
|
231
231
|
//#endregion
|
|
232
232
|
//#region src/infra/signed-law.v1.ts
|
|
@@ -438,7 +438,7 @@ const SignedLawBundleSchema = _sinclair_typebox.Type.Object({
|
|
|
438
438
|
const signedLawV1 = {
|
|
439
439
|
literal: SIGNED_LAW_PROFILE,
|
|
440
440
|
literalNote: "carried as the domain member of the canonical signature input, not as a bundle field",
|
|
441
|
-
|
|
441
|
+
documents: { bundle: SignedLawBundleSchema }
|
|
442
442
|
};
|
|
443
443
|
//#endregion
|
|
444
444
|
//#region src/infra/adoption-fact.v1.ts
|
|
@@ -466,8 +466,8 @@ const AdoptionFactSchema = closed({
|
|
|
466
466
|
});
|
|
467
467
|
const adoptionFactV1 = {
|
|
468
468
|
literal: ADOPTION_FACT_PROFILE,
|
|
469
|
-
|
|
470
|
-
|
|
469
|
+
rootDocument: "fact",
|
|
470
|
+
documents: { fact: AdoptionFactSchema }
|
|
471
471
|
};
|
|
472
472
|
//#endregion
|
|
473
473
|
//#region src/registry/revocations.v1.ts
|
|
@@ -530,7 +530,7 @@ const RevocationPointerSchema = _sinclair_typebox.Type.Object({
|
|
|
530
530
|
}, closed$1);
|
|
531
531
|
const revocationsV1 = {
|
|
532
532
|
literal: REVOCATIONS_PROFILE,
|
|
533
|
-
|
|
533
|
+
documents: {
|
|
534
534
|
snapshot: RevocationSchema,
|
|
535
535
|
pointer: RevocationPointerSchema
|
|
536
536
|
}
|
|
@@ -580,7 +580,7 @@ const SignedBootstrapIntentSchema = closed({
|
|
|
580
580
|
});
|
|
581
581
|
const bootstrapV1 = {
|
|
582
582
|
literal: BOOTSTRAP_PROFILE,
|
|
583
|
-
|
|
583
|
+
documents: {
|
|
584
584
|
intent: BootstrapIntentSchema,
|
|
585
585
|
signed: SignedBootstrapIntentSchema
|
|
586
586
|
}
|
|
@@ -621,8 +621,8 @@ const SignedStandingOrderActivationSchema = closed({
|
|
|
621
621
|
});
|
|
622
622
|
const standingOrderActivationV1 = {
|
|
623
623
|
literal: STANDING_ORDER_ACTIVATION_PROFILE,
|
|
624
|
-
|
|
625
|
-
|
|
624
|
+
rootDocument: "event",
|
|
625
|
+
documents: {
|
|
626
626
|
activation: StandingOrderActivationSchema,
|
|
627
627
|
signed: SignedStandingOrderActivationSchema,
|
|
628
628
|
event: StandingOrderActivationEventSchema
|
|
@@ -668,8 +668,8 @@ const OrdinaryAuthoritySchema = closed({
|
|
|
668
668
|
});
|
|
669
669
|
const ordinaryAuthorityV1 = {
|
|
670
670
|
literal: ORDINARY_AUTHORITY_PROFILE,
|
|
671
|
-
|
|
672
|
-
|
|
671
|
+
rootDocument: "authority",
|
|
672
|
+
documents: { authority: OrdinaryAuthoritySchema }
|
|
673
673
|
};
|
|
674
674
|
//#endregion
|
|
675
675
|
//#region src/run/contract-versions.ts
|
|
@@ -731,8 +731,8 @@ const EventStreamSealSchema = closed({
|
|
|
731
731
|
});
|
|
732
732
|
const eventV1 = {
|
|
733
733
|
literal: EVENT_PROFILE,
|
|
734
|
-
|
|
735
|
-
|
|
734
|
+
rootDocument: "event",
|
|
735
|
+
documents: {
|
|
736
736
|
event: EventSchema,
|
|
737
737
|
streamSeal: EventStreamSealSchema
|
|
738
738
|
}
|
|
@@ -762,8 +762,8 @@ const RunRequestSchema = closed({
|
|
|
762
762
|
});
|
|
763
763
|
const requestV1 = {
|
|
764
764
|
literal: REQUEST_PROFILE,
|
|
765
|
-
|
|
766
|
-
|
|
765
|
+
rootDocument: "request",
|
|
766
|
+
documents: { request: RunRequestSchema }
|
|
767
767
|
};
|
|
768
768
|
//#endregion
|
|
769
769
|
//#region src/run/decision.v1.ts
|
|
@@ -780,8 +780,8 @@ const RunDecisionSchema = closed({
|
|
|
780
780
|
});
|
|
781
781
|
const decisionV1 = {
|
|
782
782
|
literal: DECISION_PROFILE,
|
|
783
|
-
|
|
784
|
-
|
|
783
|
+
rootDocument: "decision",
|
|
784
|
+
documents: { decision: RunDecisionSchema }
|
|
785
785
|
};
|
|
786
786
|
//#endregion
|
|
787
787
|
//#region src/run/run-summary.v1.ts
|
|
@@ -803,8 +803,8 @@ const RunSummarySchema = closed({
|
|
|
803
803
|
});
|
|
804
804
|
const runSummaryV1 = {
|
|
805
805
|
literal: RUN_SUMMARY_PROFILE,
|
|
806
|
-
|
|
807
|
-
|
|
806
|
+
rootDocument: "summary",
|
|
807
|
+
documents: { summary: RunSummarySchema }
|
|
808
808
|
};
|
|
809
809
|
//#endregion
|
|
810
810
|
//#region src/core/refusal.v1.ts
|
|
@@ -835,8 +835,8 @@ const RefusalSchema = closed({
|
|
|
835
835
|
});
|
|
836
836
|
const refusalV1 = {
|
|
837
837
|
literal: REFUSAL_PROFILE,
|
|
838
|
-
|
|
839
|
-
|
|
838
|
+
rootDocument: "refusal",
|
|
839
|
+
documents: { refusal: RefusalSchema }
|
|
840
840
|
};
|
|
841
841
|
//#endregion
|
|
842
842
|
//#region src/core/refusal.v2.ts
|
|
@@ -862,24 +862,85 @@ const RefusalCodeV2Schema = _sinclair_typebox.Type.Union([
|
|
|
862
862
|
_sinclair_typebox.Type.Literal("validation_unavailable"),
|
|
863
863
|
_sinclair_typebox.Type.Literal("confirmation_expired")
|
|
864
864
|
]);
|
|
865
|
+
const RefusalStageV2Schema = _sinclair_typebox.Type.Union([
|
|
866
|
+
_sinclair_typebox.Type.Literal("proxy"),
|
|
867
|
+
_sinclair_typebox.Type.Literal("provider"),
|
|
868
|
+
_sinclair_typebox.Type.Literal("identity_read"),
|
|
869
|
+
_sinclair_typebox.Type.Literal("plane")
|
|
870
|
+
]);
|
|
865
871
|
const RefusalV2Schema = closed({
|
|
866
872
|
profile: _sinclair_typebox.Type.Literal(REFUSAL_V2_PROFILE),
|
|
867
873
|
code: RefusalCodeV2Schema,
|
|
868
|
-
sentence: NonEmptyString
|
|
874
|
+
sentence: NonEmptyString,
|
|
875
|
+
stage: _sinclair_typebox.Type.Optional(RefusalStageV2Schema),
|
|
876
|
+
correlationId: _sinclair_typebox.Type.Optional(NonEmptyString)
|
|
869
877
|
});
|
|
870
878
|
const refusalV2 = {
|
|
871
879
|
literal: REFUSAL_V2_PROFILE,
|
|
872
|
-
|
|
873
|
-
|
|
880
|
+
rootDocument: "refusal",
|
|
881
|
+
documents: { refusal: RefusalV2Schema }
|
|
882
|
+
};
|
|
883
|
+
//#endregion
|
|
884
|
+
//#region src/core/google-identity.v1.ts
|
|
885
|
+
const GOOGLE_IDENTITY_PROFILE = "dsg.core.google-identity/1";
|
|
886
|
+
const GOOGLE_SIGN_IN_ISSUER = "https://accounts.google.com";
|
|
887
|
+
const GoogleAccountSubject = _sinclair_typebox.Type.String({ pattern: "^accounts\\.google\\.com:[0-9]+$" });
|
|
888
|
+
const GoogleIdentitySchema = closed({
|
|
889
|
+
profile: _sinclair_typebox.Type.Literal(GOOGLE_IDENTITY_PROFILE),
|
|
890
|
+
issuer: _sinclair_typebox.Type.Literal(GOOGLE_SIGN_IN_ISSUER),
|
|
891
|
+
googleSubject: GoogleAccountSubject,
|
|
892
|
+
audience: NonEmptyString,
|
|
893
|
+
hostedDomain: _sinclair_typebox.Type.Optional(NonEmptyString),
|
|
894
|
+
email: _sinclair_typebox.Type.Optional(NonEmptyString)
|
|
895
|
+
});
|
|
896
|
+
const googleIdentityV1 = {
|
|
897
|
+
literal: GOOGLE_IDENTITY_PROFILE,
|
|
898
|
+
rootDocument: "googleIdentity",
|
|
899
|
+
documents: { googleIdentity: GoogleIdentitySchema }
|
|
900
|
+
};
|
|
901
|
+
//#endregion
|
|
902
|
+
//#region src/core/refusal.v3.ts
|
|
903
|
+
const REFUSAL_V3_PROFILE = "dsg.core.refusal/3";
|
|
904
|
+
const RefusalCodeV3Schema = _sinclair_typebox.Type.Union([
|
|
905
|
+
_sinclair_typebox.Type.Literal("organization_absent"),
|
|
906
|
+
_sinclair_typebox.Type.Literal("organization_exists"),
|
|
907
|
+
_sinclair_typebox.Type.Literal("domain_mismatch"),
|
|
908
|
+
_sinclair_typebox.Type.Literal("suspended"),
|
|
909
|
+
_sinclair_typebox.Type.Literal("organization_disabled"),
|
|
910
|
+
_sinclair_typebox.Type.Literal("claims_missing"),
|
|
911
|
+
_sinclair_typebox.Type.Literal("not_qualified"),
|
|
912
|
+
_sinclair_typebox.Type.Literal("subject_conflict")
|
|
913
|
+
]);
|
|
914
|
+
const RefusalStageV3Schema = _sinclair_typebox.Type.Union([
|
|
915
|
+
_sinclair_typebox.Type.Literal("proxy"),
|
|
916
|
+
_sinclair_typebox.Type.Literal("provider"),
|
|
917
|
+
_sinclair_typebox.Type.Literal("identity_read"),
|
|
918
|
+
_sinclair_typebox.Type.Literal("plane"),
|
|
919
|
+
_sinclair_typebox.Type.Literal("console"),
|
|
920
|
+
_sinclair_typebox.Type.Literal("kernel"),
|
|
921
|
+
_sinclair_typebox.Type.Literal("record"),
|
|
922
|
+
_sinclair_typebox.Type.Literal("claim")
|
|
923
|
+
]);
|
|
924
|
+
const RefusalV3Schema = closed({
|
|
925
|
+
profile: _sinclair_typebox.Type.Literal(REFUSAL_V3_PROFILE),
|
|
926
|
+
code: RefusalCodeV3Schema,
|
|
927
|
+
sentence: NonEmptyString,
|
|
928
|
+
stage: _sinclair_typebox.Type.Optional(RefusalStageV3Schema),
|
|
929
|
+
correlationId: _sinclair_typebox.Type.Optional(NonEmptyString),
|
|
930
|
+
detail: _sinclair_typebox.Type.Optional(NonEmptyString)
|
|
931
|
+
});
|
|
932
|
+
const refusalV3 = {
|
|
933
|
+
literal: REFUSAL_V3_PROFILE,
|
|
934
|
+
rootDocument: "refusal",
|
|
935
|
+
documents: { refusal: RefusalV3Schema }
|
|
874
936
|
};
|
|
875
937
|
//#endregion
|
|
876
938
|
//#region src/core/identity-binding.v1.ts
|
|
877
939
|
const IDENTITY_BINDING_PROFILE = "dsg.core.identity-binding/1";
|
|
878
|
-
const GOOGLE_SIGN_IN_ISSUER = "https://accounts.google.com";
|
|
879
940
|
const IdentityBindingSchema = closed({
|
|
880
941
|
profile: _sinclair_typebox.Type.Literal(IDENTITY_BINDING_PROFILE),
|
|
881
942
|
principal: Orn,
|
|
882
|
-
issuer: _sinclair_typebox.Type.Literal(
|
|
943
|
+
issuer: _sinclair_typebox.Type.Literal("https://accounts.google.com"),
|
|
883
944
|
subject: NonEmptyString,
|
|
884
945
|
decider: Orn,
|
|
885
946
|
boundAt: UtcSecond,
|
|
@@ -887,8 +948,8 @@ const IdentityBindingSchema = closed({
|
|
|
887
948
|
});
|
|
888
949
|
const identityBindingV1 = {
|
|
889
950
|
literal: IDENTITY_BINDING_PROFILE,
|
|
890
|
-
|
|
891
|
-
|
|
951
|
+
rootDocument: "binding",
|
|
952
|
+
documents: { binding: IdentityBindingSchema }
|
|
892
953
|
};
|
|
893
954
|
//#endregion
|
|
894
955
|
//#region src/index.ts
|
|
@@ -905,6 +966,8 @@ const PROFILES = {
|
|
|
905
966
|
[runSummaryV1.literal]: runSummaryV1,
|
|
906
967
|
[refusalV1.literal]: refusalV1,
|
|
907
968
|
[refusalV2.literal]: refusalV2,
|
|
969
|
+
[refusalV3.literal]: refusalV3,
|
|
970
|
+
[googleIdentityV1.literal]: googleIdentityV1,
|
|
908
971
|
[identityBindingV1.literal]: identityBindingV1,
|
|
909
972
|
[signedLawV1.literal]: signedLawV1,
|
|
910
973
|
[resourceDescriptorV1.literal]: resourceDescriptorV1,
|
|
@@ -937,7 +1000,9 @@ exports.ExecutionDocumentSchema = ExecutionDocumentSchema;
|
|
|
937
1000
|
exports.ExecutionLawSchema = ExecutionLawSchema;
|
|
938
1001
|
exports.ExecutionResourcesSchema = ExecutionResourcesSchema;
|
|
939
1002
|
exports.ExperimentRefSchema = ExperimentRefSchema;
|
|
1003
|
+
exports.GOOGLE_IDENTITY_PROFILE = GOOGLE_IDENTITY_PROFILE;
|
|
940
1004
|
exports.GOOGLE_SIGN_IN_ISSUER = GOOGLE_SIGN_IN_ISSUER;
|
|
1005
|
+
exports.GoogleIdentitySchema = GoogleIdentitySchema;
|
|
941
1006
|
exports.Hex64 = Hex64;
|
|
942
1007
|
exports.IDENTITY_BINDING_PROFILE = IDENTITY_BINDING_PROFILE;
|
|
943
1008
|
exports.IdentityBindingSchema = IdentityBindingSchema;
|
|
@@ -960,6 +1025,7 @@ exports.PROVIDER_PROTOCOL_VERSION = PROVIDER_PROTOCOL_VERSION;
|
|
|
960
1025
|
exports.PersonReference = PersonReference;
|
|
961
1026
|
exports.REFUSAL_PROFILE = REFUSAL_PROFILE;
|
|
962
1027
|
exports.REFUSAL_V2_PROFILE = REFUSAL_V2_PROFILE;
|
|
1028
|
+
exports.REFUSAL_V3_PROFILE = REFUSAL_V3_PROFILE;
|
|
963
1029
|
exports.REQUEST_PROFILE = REQUEST_PROFILE;
|
|
964
1030
|
exports.RESOURCE_DESCRIPTOR_KIND = RESOURCE_DESCRIPTOR_KIND;
|
|
965
1031
|
exports.RESOURCE_DESCRIPTOR_PROFILE = RESOURCE_DESCRIPTOR_PROFILE;
|
|
@@ -969,8 +1035,12 @@ exports.ReadbackSchema = ReadbackSchema;
|
|
|
969
1035
|
exports.Reference = Reference;
|
|
970
1036
|
exports.RefusalCodeSchema = RefusalCodeSchema;
|
|
971
1037
|
exports.RefusalCodeV2Schema = RefusalCodeV2Schema;
|
|
1038
|
+
exports.RefusalCodeV3Schema = RefusalCodeV3Schema;
|
|
972
1039
|
exports.RefusalSchema = RefusalSchema;
|
|
1040
|
+
exports.RefusalStageV2Schema = RefusalStageV2Schema;
|
|
1041
|
+
exports.RefusalStageV3Schema = RefusalStageV3Schema;
|
|
973
1042
|
exports.RefusalV2Schema = RefusalV2Schema;
|
|
1043
|
+
exports.RefusalV3Schema = RefusalV3Schema;
|
|
974
1044
|
exports.RequestCeilingsSchema = RequestCeilingsSchema;
|
|
975
1045
|
exports.ResourceDescriptorSchema = ResourceDescriptorSchema;
|
|
976
1046
|
exports.RevocationPointerSchema = RevocationPointerSchema;
|
package/dist/index.d.cts
CHANGED
|
@@ -31,14 +31,14 @@ declare const PersonReference: TObject<{
|
|
|
31
31
|
* "lease", "refusal"); vectors address a shape as "<literal>#<shape>". */
|
|
32
32
|
type ProfileEntry = {
|
|
33
33
|
readonly literal: `dsg.${string}.${string}/${number}`;
|
|
34
|
-
readonly
|
|
34
|
+
readonly documents: Readonly<Record<string, TSchema>>;
|
|
35
35
|
/** Set ONLY when the wire cannot carry the literal as a field of any
|
|
36
36
|
* shape (a frozen /1); names exactly where the literal lives instead. */
|
|
37
37
|
readonly literalNote?: string;
|
|
38
38
|
/** Names the shape non-TS consumers validate a whole document against;
|
|
39
39
|
* the emitted JSON Schema gains a root $ref to it. Only meaningful for
|
|
40
40
|
* profiles with a single document root. */
|
|
41
|
-
readonly
|
|
41
|
+
readonly rootDocument?: string;
|
|
42
42
|
};
|
|
43
43
|
//#endregion
|
|
44
44
|
//#region src/kernel/dispatch-consume.v1.d.ts
|
|
@@ -110,6 +110,7 @@ declare const DispatchRefusalSchemaValue: import("@sinclair/typebox").TObject<{
|
|
|
110
110
|
}>;
|
|
111
111
|
declare const DispatchRefusalSchema: typeof DispatchRefusalSchemaValue;
|
|
112
112
|
type DispatchRefusal = Static<typeof DispatchRefusalSchema>;
|
|
113
|
+
declare const dispatchConsumeV1: ProfileEntry;
|
|
113
114
|
//#endregion
|
|
114
115
|
//#region src/run/operation.v1.d.ts
|
|
115
116
|
declare const OPERATION_PROFILE: "dsg.run.operation/1";
|
|
@@ -308,6 +309,7 @@ declare const OperationStatusSchema: import("@sinclair/typebox").TObject<{
|
|
|
308
309
|
cost: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"reserved">, import("@sinclair/typebox").TLiteral<"provisional">, import("@sinclair/typebox").TLiteral<"reconciled">]>;
|
|
309
310
|
}>;
|
|
310
311
|
type OperationStatus = Readback;
|
|
312
|
+
declare const operationV1: ProfileEntry;
|
|
311
313
|
//#endregion
|
|
312
314
|
//#region src/infra/signed-law.v1.d.ts
|
|
313
315
|
declare const SIGNED_LAW_PROFILE: "dsg.infra.signed-law/1";
|
|
@@ -479,6 +481,7 @@ declare const SignedLawBundleSchema: import("@sinclair/typebox").TObject<{
|
|
|
479
481
|
}>;
|
|
480
482
|
}>;
|
|
481
483
|
type SignedLawBundle = Static<typeof SignedLawBundleSchema>;
|
|
484
|
+
declare const signedLawV1: ProfileEntry;
|
|
482
485
|
//#endregion
|
|
483
486
|
//#region src/infra/resource-descriptor.v1.d.ts
|
|
484
487
|
declare const RESOURCE_DESCRIPTOR_PROFILE: "dsg.infra.resource-descriptor/1";
|
|
@@ -509,6 +512,7 @@ declare const ResourceDescriptorSchemaValue: import("@sinclair/typebox").TObject
|
|
|
509
512
|
}>;
|
|
510
513
|
declare const ResourceDescriptorSchema: typeof ResourceDescriptorSchemaValue;
|
|
511
514
|
type ResourceDescriptor = Static<typeof ResourceDescriptorSchema>;
|
|
515
|
+
declare const resourceDescriptorV1: ProfileEntry;
|
|
512
516
|
//#endregion
|
|
513
517
|
//#region src/infra/adoption-fact.v1.d.ts
|
|
514
518
|
declare const ADOPTION_FACT_PROFILE: "dsg.infra.adoption-fact/1";
|
|
@@ -532,6 +536,7 @@ declare const AdoptionFactSchemaValue: import("@sinclair/typebox").TObject<{
|
|
|
532
536
|
}>;
|
|
533
537
|
declare const AdoptionFactSchema: typeof AdoptionFactSchemaValue;
|
|
534
538
|
type AdoptionFact = Static<typeof AdoptionFactSchema>;
|
|
539
|
+
declare const adoptionFactV1: ProfileEntry;
|
|
535
540
|
//#endregion
|
|
536
541
|
//#region src/registry/revocations.v1.d.ts
|
|
537
542
|
declare const REVOCATIONS_PROFILE: "dsg.registry.revocations/1";
|
|
@@ -568,6 +573,7 @@ declare const RevocationPointerSchemaValue: import("@sinclair/typebox").TObject<
|
|
|
568
573
|
}>;
|
|
569
574
|
declare const RevocationPointerSchema: typeof RevocationPointerSchemaValue;
|
|
570
575
|
type RevocationPointer = Static<typeof RevocationPointerSchema>;
|
|
576
|
+
declare const revocationsV1: ProfileEntry;
|
|
571
577
|
//#endregion
|
|
572
578
|
//#region src/kernel/bootstrap.v1.d.ts
|
|
573
579
|
declare const BOOTSTRAP_PROFILE: "dsg.kernel.bootstrap/1";
|
|
@@ -629,6 +635,7 @@ declare const SignedBootstrapIntentSchemaValue: import("@sinclair/typebox").TObj
|
|
|
629
635
|
}>;
|
|
630
636
|
declare const SignedBootstrapIntentSchema: typeof SignedBootstrapIntentSchemaValue;
|
|
631
637
|
type SignedBootstrapIntent = Static<typeof SignedBootstrapIntentSchema>;
|
|
638
|
+
declare const bootstrapV1: ProfileEntry;
|
|
632
639
|
//#endregion
|
|
633
640
|
//#region src/kernel/standing-order-activation.v1.d.ts
|
|
634
641
|
declare const STANDING_ORDER_ACTIVATION_PROFILE: "dsg.kernel.standing-order-activation/1";
|
|
@@ -729,6 +736,7 @@ declare const SignedStandingOrderActivationSchemaValue: import("@sinclair/typebo
|
|
|
729
736
|
}>;
|
|
730
737
|
declare const SignedStandingOrderActivationSchema: typeof SignedStandingOrderActivationSchemaValue;
|
|
731
738
|
type SignedStandingOrderActivation = Static<typeof SignedStandingOrderActivationSchema>;
|
|
739
|
+
declare const standingOrderActivationV1: ProfileEntry;
|
|
732
740
|
//#endregion
|
|
733
741
|
//#region src/kernel/ordinary-authority.v1.d.ts
|
|
734
742
|
declare const ORDINARY_AUTHORITY_PROFILE: "dsg.kernel.ordinary-authority/1";
|
|
@@ -761,6 +769,7 @@ declare const OrdinaryAuthoritySchemaValue: import("@sinclair/typebox").TObject<
|
|
|
761
769
|
}>;
|
|
762
770
|
declare const OrdinaryAuthoritySchema: typeof OrdinaryAuthoritySchemaValue;
|
|
763
771
|
type OrdinaryAuthority = Static<typeof OrdinaryAuthoritySchema>;
|
|
772
|
+
declare const ordinaryAuthorityV1: ProfileEntry;
|
|
764
773
|
//#endregion
|
|
765
774
|
//#region src/run/contract-versions.d.ts
|
|
766
775
|
declare const EXECUTOR_PROTOCOL_VERSION: "dsg.run.executor/1";
|
|
@@ -815,6 +824,7 @@ declare const EventStreamSealSchemaValue: import("@sinclair/typebox").TObject<{
|
|
|
815
824
|
}>;
|
|
816
825
|
declare const EventStreamSealSchema: typeof EventStreamSealSchemaValue;
|
|
817
826
|
type EventStreamSeal = Static<typeof EventStreamSealSchema>;
|
|
827
|
+
declare const eventV1: ProfileEntry;
|
|
818
828
|
//#endregion
|
|
819
829
|
//#region src/run/request.v1.d.ts
|
|
820
830
|
declare const REQUEST_PROFILE: "dsg.run.request/1";
|
|
@@ -859,6 +869,7 @@ declare const RunRequestSchemaValue: import("@sinclair/typebox").TObject<{
|
|
|
859
869
|
}>;
|
|
860
870
|
declare const RunRequestSchema: typeof RunRequestSchemaValue;
|
|
861
871
|
type RunRequest = Static<typeof RunRequestSchema>;
|
|
872
|
+
declare const requestV1: ProfileEntry;
|
|
862
873
|
//#endregion
|
|
863
874
|
//#region src/run/decision.v1.d.ts
|
|
864
875
|
declare const DECISION_PROFILE: "dsg.run.decision/1";
|
|
@@ -874,6 +885,7 @@ declare const RunDecisionSchemaValue: import("@sinclair/typebox").TObject<{
|
|
|
874
885
|
}>;
|
|
875
886
|
declare const RunDecisionSchema: typeof RunDecisionSchemaValue;
|
|
876
887
|
type RunDecision = Static<typeof RunDecisionSchema>;
|
|
888
|
+
declare const decisionV1: ProfileEntry;
|
|
877
889
|
//#endregion
|
|
878
890
|
//#region src/run/run-summary.v1.d.ts
|
|
879
891
|
declare const RUN_SUMMARY_PROFILE: "dsg.run.run-summary/1";
|
|
@@ -914,6 +926,7 @@ declare const RunSummarySchemaValue: import("@sinclair/typebox").TObject<{
|
|
|
914
926
|
}>;
|
|
915
927
|
declare const RunSummarySchema: typeof RunSummarySchemaValue;
|
|
916
928
|
type RunSummary = Static<typeof RunSummarySchema>;
|
|
929
|
+
declare const runSummaryV1: ProfileEntry;
|
|
917
930
|
//#endregion
|
|
918
931
|
//#region src/core/refusal.v1.d.ts
|
|
919
932
|
declare const REFUSAL_PROFILE: "dsg.core.refusal/1";
|
|
@@ -927,23 +940,64 @@ declare const RefusalSchemaValue: import("@sinclair/typebox").TObject<{
|
|
|
927
940
|
}>;
|
|
928
941
|
declare const RefusalSchema: typeof RefusalSchemaValue;
|
|
929
942
|
type Refusal = Static<typeof RefusalSchema>;
|
|
943
|
+
declare const refusalV1: ProfileEntry;
|
|
930
944
|
//#endregion
|
|
931
945
|
//#region src/core/refusal.v2.d.ts
|
|
932
946
|
declare const REFUSAL_V2_PROFILE: "dsg.core.refusal/2";
|
|
933
947
|
declare const RefusalCodeV2SchemaValue: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"assertion_invalid">, import("@sinclair/typebox").TLiteral<"audience_mismatch">, import("@sinclair/typebox").TLiteral<"expired">, import("@sinclair/typebox").TLiteral<"issuer_unknown">, import("@sinclair/typebox").TLiteral<"transport_unverified">, import("@sinclair/typebox").TLiteral<"relay_untrusted">, import("@sinclair/typebox").TLiteral<"identity_unbound">, import("@sinclair/typebox").TLiteral<"binding_expired">, import("@sinclair/typebox").TLiteral<"principal_suspended">, import("@sinclair/typebox").TLiteral<"not_dsg_account">, import("@sinclair/typebox").TLiteral<"session_expired">, import("@sinclair/typebox").TLiteral<"unknown_workload_class">, import("@sinclair/typebox").TLiteral<"image_not_pinned">, import("@sinclair/typebox").TLiteral<"not_a_requester">, import("@sinclair/typebox").TLiteral<"document_invalid">, import("@sinclair/typebox").TLiteral<"self_decision">, import("@sinclair/typebox").TLiteral<"no_ceiling">, import("@sinclair/typebox").TLiteral<"validation_unavailable">, import("@sinclair/typebox").TLiteral<"confirmation_expired">]>;
|
|
934
948
|
declare const RefusalCodeV2Schema: typeof RefusalCodeV2SchemaValue;
|
|
935
949
|
type RefusalCodeV2 = Static<typeof RefusalCodeV2Schema>;
|
|
950
|
+
declare const RefusalStageV2SchemaValue: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"proxy">, import("@sinclair/typebox").TLiteral<"provider">, import("@sinclair/typebox").TLiteral<"identity_read">, import("@sinclair/typebox").TLiteral<"plane">]>;
|
|
951
|
+
declare const RefusalStageV2Schema: typeof RefusalStageV2SchemaValue;
|
|
952
|
+
type RefusalStageV2 = Static<typeof RefusalStageV2Schema>;
|
|
936
953
|
declare const RefusalV2SchemaValue: import("@sinclair/typebox").TObject<{
|
|
937
954
|
profile: import("@sinclair/typebox").TLiteral<"dsg.core.refusal/2">;
|
|
938
955
|
code: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"assertion_invalid">, import("@sinclair/typebox").TLiteral<"audience_mismatch">, import("@sinclair/typebox").TLiteral<"expired">, import("@sinclair/typebox").TLiteral<"issuer_unknown">, import("@sinclair/typebox").TLiteral<"transport_unverified">, import("@sinclair/typebox").TLiteral<"relay_untrusted">, import("@sinclair/typebox").TLiteral<"identity_unbound">, import("@sinclair/typebox").TLiteral<"binding_expired">, import("@sinclair/typebox").TLiteral<"principal_suspended">, import("@sinclair/typebox").TLiteral<"not_dsg_account">, import("@sinclair/typebox").TLiteral<"session_expired">, import("@sinclair/typebox").TLiteral<"unknown_workload_class">, import("@sinclair/typebox").TLiteral<"image_not_pinned">, import("@sinclair/typebox").TLiteral<"not_a_requester">, import("@sinclair/typebox").TLiteral<"document_invalid">, import("@sinclair/typebox").TLiteral<"self_decision">, import("@sinclair/typebox").TLiteral<"no_ceiling">, import("@sinclair/typebox").TLiteral<"validation_unavailable">, import("@sinclair/typebox").TLiteral<"confirmation_expired">]>;
|
|
939
956
|
sentence: import("@sinclair/typebox").TString;
|
|
957
|
+
stage: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"proxy">, import("@sinclair/typebox").TLiteral<"provider">, import("@sinclair/typebox").TLiteral<"identity_read">, import("@sinclair/typebox").TLiteral<"plane">]>>;
|
|
958
|
+
correlationId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
940
959
|
}>;
|
|
941
960
|
declare const RefusalV2Schema: typeof RefusalV2SchemaValue;
|
|
942
961
|
type RefusalV2 = Static<typeof RefusalV2Schema>;
|
|
962
|
+
declare const refusalV2: ProfileEntry;
|
|
963
|
+
//#endregion
|
|
964
|
+
//#region src/core/google-identity.v1.d.ts
|
|
965
|
+
declare const GOOGLE_IDENTITY_PROFILE: "dsg.core.google-identity/1";
|
|
966
|
+
declare const GOOGLE_SIGN_IN_ISSUER: "https://accounts.google.com";
|
|
967
|
+
declare const GoogleIdentitySchemaValue: import("@sinclair/typebox").TObject<{
|
|
968
|
+
profile: import("@sinclair/typebox").TLiteral<"dsg.core.google-identity/1">;
|
|
969
|
+
issuer: import("@sinclair/typebox").TLiteral<"https://accounts.google.com">;
|
|
970
|
+
googleSubject: import("@sinclair/typebox").TString;
|
|
971
|
+
audience: import("@sinclair/typebox").TString;
|
|
972
|
+
hostedDomain: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
973
|
+
email: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
974
|
+
}>;
|
|
975
|
+
declare const GoogleIdentitySchema: typeof GoogleIdentitySchemaValue;
|
|
976
|
+
type GoogleIdentity = Static<typeof GoogleIdentitySchema>;
|
|
977
|
+
declare const googleIdentityV1: ProfileEntry;
|
|
978
|
+
//#endregion
|
|
979
|
+
//#region src/core/refusal.v3.d.ts
|
|
980
|
+
declare const REFUSAL_V3_PROFILE: "dsg.core.refusal/3";
|
|
981
|
+
declare const RefusalCodeV3SchemaValue: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"organization_absent">, import("@sinclair/typebox").TLiteral<"organization_exists">, import("@sinclair/typebox").TLiteral<"domain_mismatch">, import("@sinclair/typebox").TLiteral<"suspended">, import("@sinclair/typebox").TLiteral<"organization_disabled">, import("@sinclair/typebox").TLiteral<"claims_missing">, import("@sinclair/typebox").TLiteral<"not_qualified">, import("@sinclair/typebox").TLiteral<"subject_conflict">]>;
|
|
982
|
+
declare const RefusalCodeV3Schema: typeof RefusalCodeV3SchemaValue;
|
|
983
|
+
type RefusalCodeV3 = Static<typeof RefusalCodeV3Schema>;
|
|
984
|
+
declare const RefusalStageV3SchemaValue: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"proxy">, import("@sinclair/typebox").TLiteral<"provider">, import("@sinclair/typebox").TLiteral<"identity_read">, import("@sinclair/typebox").TLiteral<"plane">, import("@sinclair/typebox").TLiteral<"console">, import("@sinclair/typebox").TLiteral<"kernel">, import("@sinclair/typebox").TLiteral<"record">, import("@sinclair/typebox").TLiteral<"claim">]>;
|
|
985
|
+
declare const RefusalStageV3Schema: typeof RefusalStageV3SchemaValue;
|
|
986
|
+
type RefusalStageV3 = Static<typeof RefusalStageV3Schema>;
|
|
987
|
+
declare const RefusalV3SchemaValue: import("@sinclair/typebox").TObject<{
|
|
988
|
+
profile: import("@sinclair/typebox").TLiteral<"dsg.core.refusal/3">;
|
|
989
|
+
code: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"organization_absent">, import("@sinclair/typebox").TLiteral<"organization_exists">, import("@sinclair/typebox").TLiteral<"domain_mismatch">, import("@sinclair/typebox").TLiteral<"suspended">, import("@sinclair/typebox").TLiteral<"organization_disabled">, import("@sinclair/typebox").TLiteral<"claims_missing">, import("@sinclair/typebox").TLiteral<"not_qualified">, import("@sinclair/typebox").TLiteral<"subject_conflict">]>;
|
|
990
|
+
sentence: import("@sinclair/typebox").TString;
|
|
991
|
+
stage: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"proxy">, import("@sinclair/typebox").TLiteral<"provider">, import("@sinclair/typebox").TLiteral<"identity_read">, import("@sinclair/typebox").TLiteral<"plane">, import("@sinclair/typebox").TLiteral<"console">, import("@sinclair/typebox").TLiteral<"kernel">, import("@sinclair/typebox").TLiteral<"record">, import("@sinclair/typebox").TLiteral<"claim">]>>;
|
|
992
|
+
correlationId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
993
|
+
detail: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
994
|
+
}>;
|
|
995
|
+
declare const RefusalV3Schema: typeof RefusalV3SchemaValue;
|
|
996
|
+
type RefusalV3 = Static<typeof RefusalV3Schema>;
|
|
997
|
+
declare const refusalV3: ProfileEntry;
|
|
943
998
|
//#endregion
|
|
944
999
|
//#region src/core/identity-binding.v1.d.ts
|
|
945
1000
|
declare const IDENTITY_BINDING_PROFILE: "dsg.core.identity-binding/1";
|
|
946
|
-
declare const GOOGLE_SIGN_IN_ISSUER: "https://accounts.google.com";
|
|
947
1001
|
declare const IdentityBindingSchemaValue: import("@sinclair/typebox").TObject<{
|
|
948
1002
|
profile: import("@sinclair/typebox").TLiteral<"dsg.core.identity-binding/1">;
|
|
949
1003
|
principal: import("@sinclair/typebox").TString;
|
|
@@ -955,13 +1009,33 @@ declare const IdentityBindingSchemaValue: import("@sinclair/typebox").TObject<{
|
|
|
955
1009
|
}>;
|
|
956
1010
|
declare const IdentityBindingSchema: typeof IdentityBindingSchemaValue;
|
|
957
1011
|
type IdentityBinding = Static<typeof IdentityBindingSchema>;
|
|
1012
|
+
declare const identityBindingV1: ProfileEntry;
|
|
958
1013
|
//#endregion
|
|
959
1014
|
//#region src/index.d.ts
|
|
960
1015
|
/** Every profile this version of the package defines, keyed by literal.
|
|
961
1016
|
* Profile modules are added here as they are extracted; the rules test
|
|
962
1017
|
* and the schema emitter walk this registry, so a module that is not
|
|
963
1018
|
* registered does not exist. */
|
|
964
|
-
declare const PROFILES:
|
|
1019
|
+
declare const PROFILES: {
|
|
1020
|
+
[dispatchConsumeV1.literal]: ProfileEntry;
|
|
1021
|
+
[operationV1.literal]: ProfileEntry;
|
|
1022
|
+
[eventV1.literal]: ProfileEntry;
|
|
1023
|
+
[requestV1.literal]: ProfileEntry;
|
|
1024
|
+
[decisionV1.literal]: ProfileEntry;
|
|
1025
|
+
[runSummaryV1.literal]: ProfileEntry;
|
|
1026
|
+
[refusalV1.literal]: ProfileEntry;
|
|
1027
|
+
[refusalV2.literal]: ProfileEntry;
|
|
1028
|
+
[refusalV3.literal]: ProfileEntry;
|
|
1029
|
+
[googleIdentityV1.literal]: ProfileEntry;
|
|
1030
|
+
[identityBindingV1.literal]: ProfileEntry;
|
|
1031
|
+
[signedLawV1.literal]: ProfileEntry;
|
|
1032
|
+
[resourceDescriptorV1.literal]: ProfileEntry;
|
|
1033
|
+
[adoptionFactV1.literal]: ProfileEntry;
|
|
1034
|
+
[revocationsV1.literal]: ProfileEntry;
|
|
1035
|
+
[bootstrapV1.literal]: ProfileEntry;
|
|
1036
|
+
[ordinaryAuthorityV1.literal]: ProfileEntry;
|
|
1037
|
+
[standingOrderActivationV1.literal]: ProfileEntry;
|
|
1038
|
+
};
|
|
965
1039
|
//#endregion
|
|
966
|
-
export { ADOPTION_FACT_PROFILE, type Accepted, AcceptedSchema, type AdoptionFact, AdoptionFactSchema, BOOTSTRAP_PROFILE, type BootstrapAction, BootstrapActionSchema, type BootstrapIntent, BootstrapIntentSchema, DECISION_PROFILE, DISPATCH_CONSUME_PROFILE, DISPATCH_MAX_SKEW_SECONDS, type DispatchConsumeRequest, DispatchConsumeRequestSchema, type DispatchLease, DispatchLeaseSchema, type DispatchRefusal, type DispatchRefusalCode, DispatchRefusalCodeSchema, DispatchRefusalSchema, EVENT_LINE_PREFIX, EVENT_PROFILE, EXECUTOR_PROTOCOL_VERSION, type Event, EventSchema, type EventStreamSeal, EventStreamSealSchema, type ExecutionDocument, ExecutionDocumentSchema, type ExecutionLaw, ExecutionLawSchema, type ExecutionResources, ExecutionResourcesSchema, type ExecutorProtocolVersion, type ExperimentRef, ExperimentRefSchema, GOOGLE_SIGN_IN_ISSUER, Hex64, IDENTITY_BINDING_PROFILE, type IdentityBinding, IdentityBindingSchema, LIFECYCLE_KINDS, NonEmptyString, OPERATION_PROFILE, ORDINARY_AUTHORITY_PROFILE, type OperationBefore, OperationBeforeSchema, type OperationCleanup, OperationCleanupSchema, type OperationCost, OperationCostSchema, type OperationEvidence, OperationEvidenceSchema, type OperationExecution, OperationExecutionSchema, type OperationRequest, OperationRequestSchema, type OperationStatus, OperationStatusSchema, type OrdinaryAuthority, OrdinaryAuthoritySchema, Orn, PRICE_PROFILE_REFERENCE, PROFILES, PROVIDER_PROTOCOL_VERSION, PersonReference, type ProfileEntry, type ProviderProtocolVersion, REFUSAL_PROFILE, REFUSAL_V2_PROFILE, REQUEST_PROFILE, RESOURCE_DESCRIPTOR_KIND, RESOURCE_DESCRIPTOR_PROFILE, REVOCATIONS_PROFILE, RUN_SUMMARY_PROFILE, type Readback, ReadbackSchema, Reference, type Refusal, type RefusalCode, RefusalCodeSchema, type RefusalCodeV2, RefusalCodeV2Schema, RefusalSchema, type RefusalV2, RefusalV2Schema, type RequestCeilings, RequestCeilingsSchema, type ResourceDescriptor, ResourceDescriptorSchema, type RevocationPointer, RevocationPointerSchema, RevocationSchema, type RevocationSnapshot, type RunDecision, RunDecisionSchema, type RunRequest, RunRequestSchema, type RunSummary, type RunSummaryDecision, RunSummaryDecisionSchema, RunSummarySchema, SCOPE_REFERENCE, SIGNED_LAW_DOMAIN, SIGNED_LAW_PROFILE, STANDING_ORDER_ACTIVATION_EVENT_KIND, STANDING_ORDER_ACTIVATION_PROFILE, SafeInt, type SignedBootstrapIntent, SignedBootstrapIntentSchema, type SignedLawBundle, SignedLawBundleSchema, type SignedStandingOrderActivation, SignedStandingOrderActivationSchema, type StandingOrderActivation, type StandingOrderActivationEvent, StandingOrderActivationEventSchema, StandingOrderActivationSchema, type StandingOrderMode, StandingOrderModeSchema, UtcSecond, closed };
|
|
1040
|
+
export { ADOPTION_FACT_PROFILE, type Accepted, AcceptedSchema, type AdoptionFact, AdoptionFactSchema, BOOTSTRAP_PROFILE, type BootstrapAction, BootstrapActionSchema, type BootstrapIntent, BootstrapIntentSchema, DECISION_PROFILE, DISPATCH_CONSUME_PROFILE, DISPATCH_MAX_SKEW_SECONDS, type DispatchConsumeRequest, DispatchConsumeRequestSchema, type DispatchLease, DispatchLeaseSchema, type DispatchRefusal, type DispatchRefusalCode, DispatchRefusalCodeSchema, DispatchRefusalSchema, EVENT_LINE_PREFIX, EVENT_PROFILE, EXECUTOR_PROTOCOL_VERSION, type Event, EventSchema, type EventStreamSeal, EventStreamSealSchema, type ExecutionDocument, ExecutionDocumentSchema, type ExecutionLaw, ExecutionLawSchema, type ExecutionResources, ExecutionResourcesSchema, type ExecutorProtocolVersion, type ExperimentRef, ExperimentRefSchema, GOOGLE_IDENTITY_PROFILE, GOOGLE_SIGN_IN_ISSUER, type GoogleIdentity, GoogleIdentitySchema, Hex64, IDENTITY_BINDING_PROFILE, type IdentityBinding, IdentityBindingSchema, LIFECYCLE_KINDS, NonEmptyString, OPERATION_PROFILE, ORDINARY_AUTHORITY_PROFILE, type OperationBefore, OperationBeforeSchema, type OperationCleanup, OperationCleanupSchema, type OperationCost, OperationCostSchema, type OperationEvidence, OperationEvidenceSchema, type OperationExecution, OperationExecutionSchema, type OperationRequest, OperationRequestSchema, type OperationStatus, OperationStatusSchema, type OrdinaryAuthority, OrdinaryAuthoritySchema, Orn, PRICE_PROFILE_REFERENCE, PROFILES, PROVIDER_PROTOCOL_VERSION, PersonReference, type ProfileEntry, type ProviderProtocolVersion, REFUSAL_PROFILE, REFUSAL_V2_PROFILE, REFUSAL_V3_PROFILE, REQUEST_PROFILE, RESOURCE_DESCRIPTOR_KIND, RESOURCE_DESCRIPTOR_PROFILE, REVOCATIONS_PROFILE, RUN_SUMMARY_PROFILE, type Readback, ReadbackSchema, Reference, type Refusal, type RefusalCode, RefusalCodeSchema, type RefusalCodeV2, RefusalCodeV2Schema, type RefusalCodeV3, RefusalCodeV3Schema, RefusalSchema, type RefusalStageV2, RefusalStageV2Schema, type RefusalStageV3, RefusalStageV3Schema, type RefusalV2, RefusalV2Schema, type RefusalV3, RefusalV3Schema, type RequestCeilings, RequestCeilingsSchema, type ResourceDescriptor, ResourceDescriptorSchema, type RevocationPointer, RevocationPointerSchema, RevocationSchema, type RevocationSnapshot, type RunDecision, RunDecisionSchema, type RunRequest, RunRequestSchema, type RunSummary, type RunSummaryDecision, RunSummaryDecisionSchema, RunSummarySchema, SCOPE_REFERENCE, SIGNED_LAW_DOMAIN, SIGNED_LAW_PROFILE, STANDING_ORDER_ACTIVATION_EVENT_KIND, STANDING_ORDER_ACTIVATION_PROFILE, SafeInt, type SignedBootstrapIntent, SignedBootstrapIntentSchema, type SignedLawBundle, SignedLawBundleSchema, type SignedStandingOrderActivation, SignedStandingOrderActivationSchema, type StandingOrderActivation, type StandingOrderActivationEvent, StandingOrderActivationEventSchema, StandingOrderActivationSchema, type StandingOrderMode, StandingOrderModeSchema, UtcSecond, closed };
|
|
967
1041
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/primitives.ts","../src/kernel/dispatch-consume.v1.ts","../src/run/operation.v1.ts","../src/infra/signed-law.v1.ts","../src/infra/resource-descriptor.v1.ts","../src/infra/adoption-fact.v1.ts","../src/registry/revocations.v1.ts","../src/kernel/bootstrap.v1.ts","../src/kernel/standing-order-activation.v1.ts","../src/kernel/ordinary-authority.v1.ts","../src/run/contract-versions.ts","../src/run/event.v1.ts","../src/run/request.v1.ts","../src/run/decision.v1.ts","../src/run/run-summary.v1.ts","../src/core/refusal.v1.ts","../src/core/refusal.v2.ts","../src/core/identity-binding.v1.ts","../src/index.ts"],"mappings":";;;cAOa,SAAU,UAAU,aAAW,YAAc,MAAI,QAAQ;;cAIzD,mCAAK;;cAGL,uCAAS;cAIT,4CAAc;cAEd,qCAAO;;;;;;cAOP,iCAAG;;cAGH,WAAS;;;;;;cAOT,iBAAe;;;;;;;;KAShB;WACD;WACA,
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/primitives.ts","../src/kernel/dispatch-consume.v1.ts","../src/run/operation.v1.ts","../src/infra/signed-law.v1.ts","../src/infra/resource-descriptor.v1.ts","../src/infra/adoption-fact.v1.ts","../src/registry/revocations.v1.ts","../src/kernel/bootstrap.v1.ts","../src/kernel/standing-order-activation.v1.ts","../src/kernel/ordinary-authority.v1.ts","../src/run/contract-versions.ts","../src/run/event.v1.ts","../src/run/request.v1.ts","../src/run/decision.v1.ts","../src/run/run-summary.v1.ts","../src/core/refusal.v1.ts","../src/core/refusal.v2.ts","../src/core/google-identity.v1.ts","../src/core/refusal.v3.ts","../src/core/identity-binding.v1.ts","../src/index.ts"],"mappings":";;;cAOa,SAAU,UAAU,aAAW,YAAc,MAAI,QAAQ;;cAIzD,mCAAK;;cAGL,uCAAS;cAIT,4CAAc;cAEd,qCAAO;;;;;;cAOP,iCAAG;;cAGH,WAAS;;;;;;cAOT,iBAAe;;;;;;;;KAShB;WACD;WACA,WAAW,SAAS,eAAe;;;WAGnC;;;;WAIA;;;;cC3BE;;cAGA;cAEP,+DAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;cAwB1B,qCAAqC;KAEtC,yBAAyB,cAAc;cAE7C,sDAAwB;;;;;;;;;;;;;;;;;;;;;;;;cAqBjB,4BAA4B;KAC7B,gBAAgB,cAAc;cAEpC,4DAA8B,oCAAA,2DAAA,wDAAA,0DAAA,iDAAA,2DAAA,+EAAA;cASvB,kCAAkC;KAEnC,sBAAsB,cAAc;cAE1C,wDAA0B;;;;;cAKnB,8BAA8B;KAC/B,kBAAkB,cAAc;cAE/B,mBAAmB;;;cC7EnB;cAEP,2DAA6B;;;;;cAKtB,iCAAiC;KAElC,qBAAqB,cAAc;cAEzC,qDAAuB;;;;;;;;;;cAIhB,2BAA2B;KAC5B,eAAe,cAAc;cAEnC,0DAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAYrB,gCAAgC;KAEjC,oBAAoB,cAAc;cAExC,wDAA0B;;;;cAInB,8BAA8B;KAC/B,kBAAkB,cAAc;cAEtC,yDAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAYpB,+BAA+B;KAEhC,mBAAmB,cAAc;cAEvC,iDAAmB;;;;;;;;cAQZ,uBAAuB;KACxB,WAAW,cAAc;cAE/B,2DAA6B,oCAAA,gDAAA,iDAAA,mDAAA,gDAAA,kDAAA;cAQtB,iCAAiC;KAElC,qBAAqB,cAAc;cAEzC,yDAA2B,oCAAA,iDAAA,iDAAA,gDAAA;cAMpB,+BAA+B;KAEhC,mBAAmB,cAAc;cAEvC,0DAA4B,oCAAA,iDAAA;cACrB,gCAAgC;KAEjC,oBAAoB,cAAc;cAExC,sDAAwB,oCAAA,kDAAA,qDAAA;cAKjB,4BAA4B;KAC7B,gBAAgB,cAAc;cAEpC,iDAAmB;;;;;;;;;;;;;cAUZ,uBAAuB;KACxB,WAAW,cAAc;cAIxB,mDAAqB;;;;;;;;;;;;;KACtB,kBAAkB;cAEjB,aAAa;;;cCvIb;;cAEA;;;;;cAMA;;;cAIA;cAiPA,mDAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KACtB,kBAAkB,cAAc;cAE/B,aAAa;;;cC7Pb;;;cAGA;cAIP,2DAA6B;;;;;;;;;;;;;;;;;;;;;;cAsBtB,iCAAiC;KAElC,qBAAqB,cAAc;cAElC,sBAAsB;;;cCnCtB;cAEP,qDAAuB;;;;;;;;;;;;;;;;;;cAqBhB,2BAA2B;KAC5B,eAAe,cAAc;cAE5B,gBAAgB;;;cChChB;cAOP,mDAAqB;;;;;;;;;;;;;;;;;;;;;;;;cAmDd,yBAAyB;KAC1B,qBAAqB,cAAc;cAEzC,0DAA4B;;;;;cAQrB,gCAAgC;KAEjC,oBAAoB,cAAc;cAEjC,eAAe;;;cCpEf;cAEP,wDAA0B,oCAAA,kEAAA,+DAAA,+DAAA;cAMnB,8BAA8B;KAC/B,kBAAkB,cAAc;cAEtC,wDAA0B;;;;;;;;;;;;;;;;;;;;;;;;cA2BnB,8BAA8B;KAC/B,kBAAkB,cAAc;cAEtC,8DAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIzB,oCAAoC;KAErC,wBAAwB,cAAc;cAErC,aAAa;;;cCxDb;cACA;cAEP,0DAA4B,oCAAA,6DAAA;cAIrB,gCAAgC;KAEjC,oBAAoB,cAAc;;cAGxC,gEAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiB3B,sCAAsC;KAEvC,0BAA0B,cAAc;;cAG9C,qEAAuC;;;;;;;;;;cAOhC,2CAA2C;KAE5C,+BAA+B,cAAc;;cAGnD,sEAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKjC,4CAA4C;KAE7C,gCAAgC,cAAc;cAE7C,2BAA2B;;;cChD3B;cAKP,0DAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;cAwBrB,gCAAgC;KAEjC,oBAAoB,cAAc;cAEjC,qBAAqB;;;cCxCrB;KACD,iCAAiC;cAEhC;KACD,iCAAiC;;;cCiBhC;;;cAIA;;;;cAKA;cAYP,8CAAgB;;;;;;;;;;;;;;;;;cAiBT,oBAAoB;KACrB,QAAQ,cAAc;;;;;;;cAQ5B,wDAA0B;;;;;;;;;;;cAWnB,8BAA8B;KAC/B,kBAAkB,cAAc;cAE/B,SAAS;;;cC5ET;cAEP,sDAAwB;;;;;cAKjB,4BAA4B;KAC7B,gBAAgB,cAAc;cAEpC,wDAA0B;;;;;;cAMnB,8BAA8B;KAC/B,kBAAkB,cAAc;cAEtC,mDAAqB;;;;;;;;;;;;;;;;;;;;;;;;cASd,yBAAyB;KAC1B,aAAa,cAAc;cAE1B,WAAW;;;cCtCX;cAEP,oDAAsB;;;;;;;;;;cAUf,0BAA0B;KAC3B,cAAc,cAAc;cAE3B,YAAY;;;cCTZ;cAEP,2DAA6B;;;;;;;;;;;cAOtB,iCAAiC;KAElC,qBAAqB,cAAc;cAEzC,mDAAqB;;;;;;;;;;;;;;;;;;;;;;cAQd,yBAAyB;KAC1B,aAAa,cAAc;cAE1B,cAAc;;;cC7Bd;cAEP,oDAAsB,oCAAA,2DAAA,2DAAA,iDAAA,wDAAA,8DAAA,yDAAA,0DAAA,yDAAA,6DAAA,yDAAA,yDAAA,gEAAA,0DAAA,yDAAA,0DAAA,uDAAA;cAmBf,0BAA0B;KAC3B,cAAc,cAAc;cAElC,gDAAkB;;;;;cAKX,sBAAsB;KACvB,UAAU,cAAc;cAEvB,WAAW;;;cCxBX;cAEP,sDAAwB,oCAAA,2DAAA,2DAAA,iDAAA,wDAAA,8DAAA,yDAAA,0DAAA,yDAAA,6DAAA,yDAAA,yDAAA,gEAAA,0DAAA,yDAAA,0DAAA,uDAAA,oDAAA,gEAAA;cAqBjB,4BAA4B;KAC7B,gBAAgB,cAAc;cAEpC,uDAAyB,oCAAA,+CAAA,kDAAA,uDAAA;cAMlB,6BAA6B;KAC9B,iBAAiB,cAAc;cAErC,kDAAoB;;;;;;;cAOb,wBAAwB;KACzB,YAAY,cAAc;cAEzB,WAAW;;;cC1CX;cACA;cAMP,uDAAyB;;;;;;;;cAQlB,6BAA6B;KAC9B,iBAAiB,cAAc;cAE9B,kBAAkB;;;cC/BlB;cAEP,sDAAwB,oCAAA,6DAAA,6DAAA,yDAAA,mDAAA,+DAAA,wDAAA,uDAAA;cAUjB,4BAA4B;KAC7B,gBAAgB,cAAc;cAEpC,uDAAyB,oCAAA,+CAAA,kDAAA,uDAAA,+CAAA,iDAAA,gDAAA,gDAAA;cAUlB,6BAA6B;KAC9B,iBAAiB,cAAc;cAErC,kDAAoB;;;;;;;;cAQb,wBAAwB;KACzB,YAAY,cAAc;cAEzB,WAAW;;;cCvCX;cAGP,wDAA0B;;;;;;;;;cASnB,8BAA8B;KAC/B,kBAAkB,cAAc;cAE/B,mBAAmB;;;;;;;cC8JnB;GACV,kBAAkB,UAAQ;GAC1B,YAAY,UAAQ;GACpB,QAAQ,UAAQ;GAChB,UAAU,UAAQ;GAClB,WAAW,UAAQ;GACnB,aAAa,UAAQ;GACrB,UAAU,UAAQ;GAClB,UAAU,UAAQ;GAClB,UAAU,UAAQ;GAClB,iBAAiB,UAAQ;GACzB,kBAAkB,UAAQ;GAC1B,YAAY,UAAQ;GACpB,qBAAqB,UAAQ;GAC7B,eAAe,UAAQ;GACvB,cAAc,UAAQ;GACtB,YAAY,UAAQ;GACpB,oBAAoB,UAAQ;GAC5B,0BAA0B,UAAQ"}
|