@openvtc/trust-tasks 0.17.2 → 0.17.4

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/CHANGELOG.md CHANGED
@@ -11,6 +11,118 @@ The package versions over **its own API** — what a consumer compiles against
11
11
  not over `SPEC.md`. Below 1.0 a breaking change bumps the leading non-zero
12
12
  component.
13
13
 
14
+ ## 0.17.4 — 2026-09-07
15
+
16
+
17
+ ### Specifications
18
+
19
+ - **provision**: Separate where an admin lives from how far it reaches (#385)
20
+
21
+ `provision/integration` writes the minted admin's ACL entry naming the
22
+ target context, and there is no way to ask for any other shape. That is
23
+ right for every integration-class consumer — a mediator acts where it was
24
+ provisioned — and it makes one consumer unrepresentable: an operator
25
+ console, whose whole job is administering the maintainer, needs an entry
26
+ with no context list at all.
27
+
28
+ The obvious spelling, making `context` optional to mean "everywhere", is
29
+ the wrong one. A console still has to keep its own configuration
30
+ somewhere, and that somewhere is one ordinary context; dropping `context`
31
+ would leave it with nowhere to put it, and would collapse "provision me
32
+ everywhere" and "provision me wherever you like" into the same document.
33
+
34
+ So `adminScope` is a second axis beside `context`, not a replacement for
35
+ it: `context` says where the admin DID is minted and where its owner
36
+ keeps its configuration, `adminScope` says whether the ACL entry names
37
+ that context or nothing at all. `context` is resolved on every request
38
+ either way.
39
+
40
+ Two MUSTs come with it. `unrestricted` is refused with `forbidden` unless
41
+ the relayer is itself a super-admin, because routing a grant through a
42
+ provisioning maintainer does not launder authority the caller does not
43
+ hold. And the outcome is echoed as `summary.adminScope` rather than
44
+ inferred from the ask — a maintainer that predates the member ignores it
45
+ and writes a context-scoped entry, which is otherwise indistinguishable
46
+ from success. `summary.context` is echoed for the same reason: a producer
47
+ that omitted `context` and let inference run currently has no way to learn
48
+ where it landed except by guessing at the maintainer's layout, which is
49
+ precisely the thing the inference rules exist because it cannot do.
50
+
51
+ - **persona**: The step-up approval is the maintainer's state, not the request's (#384)
52
+
53
+ #377 said `present` must refuse a `stepUp` claim when "no fresh approval bound
54
+ to that previewId **accompanies the request**". The request has no member to put
55
+ one in — `present` carries `contextId`, `previewId`, `challenge`, `mint` and
56
+ `ext` — so the rule as written was unimplementable, and the implementation found
57
+ it immediately.
58
+
59
+ The fix is not a new member. **An approval a producer carried would be a bearer
60
+ token**, and a bearer token authorising a disclosure is replayable by whoever
61
+ holds it — the property the single-use `previewId` exists to deny. So the rule
62
+ now says what it should have said: the maintainer holds the approval, bound to
63
+ the preview, sharing that preview's lifetime. Consumed with it, expired with it,
64
+ and unable to outlive the decision it belongs to.
65
+
66
+ Also stated explicitly, because it is what makes the error retryable and was
67
+ previously only implied by the error's own description: the refusal MUST NOT
68
+ consume the preview.
69
+
70
+ - **persona**: Say what kind of prefix rule 3 means (#382)
71
+
72
+ The VTA implementation asked, and the answer was not written down: is the
73
+ "longest registered prefix" matched over bytes or over dot segments?
74
+
75
+ It matters because **the same task answers the same question differently a few
76
+ lines away.** `attribute/list`'s `typePrefix` is explicitly a byte comparison
77
+ over UTF-8 and says so — "a prefix that ends mid-segment is a byte comparison
78
+ like any other" — so an implementer meeting that first would reasonably carry it
79
+ into §4, and `paymentology.card` would join the `payment` family.
80
+
81
+ Rule 3 can only tighten, so that reading yields spurious strictness rather than
82
+ a leak: an unrelated token gated behind a step-up nobody asked for. Wrong, and
83
+ worth stating, without pretending it was a hole.
84
+
85
+ Also stated: a proper prefix, so a token is not its own prefix — rule 2 has
86
+ already answered for an exact match, and a token compared against the floor
87
+ would contradict "an exact entry is used as written".
88
+
89
+ And a note for whoever extends the table: **"longest" is not currently
90
+ observable.** No two nested families disagree on any axis, and the floor is
91
+ already maximal on `sensitivity` and `mask`, so rule 3 can only move `release`
92
+ today — a shortest-prefix implementation passes every outcome these entries can
93
+ express. The rule is written for the table that adds `payment.crypto` with a
94
+ treatment of its own, and an implementation should be tested on the mechanism
95
+ rather than on a result the current entries make unobservable.
96
+
97
+ Third round of gaps found by implementing this table rather than reading it.
98
+
99
+ ## 0.17.3 — 2026-09-07
100
+
101
+
102
+ ### Specifications
103
+
104
+ - **persona**: Say what a mask does at its two edges (#380)
105
+
106
+ Two clients implemented this table independently and both met the same two
107
+ questions, neither of which `maskStyles` answered.
108
+
109
+ **A value shorter than the tail a style keeps.** `last4` of a four-character
110
+ value is the value — a four-digit card number printed whole is not a masked card
111
+ number. Both clients masked in full. Now stated.
112
+
113
+ **Whether a mask tracks the value's length.** Both drew a fixed run, and the
114
+ reasoning is worth keeping rather than rediscovering: a run of one character per
115
+ character hidden publishes the length of a passport number, a date of birth or a
116
+ card, which is what the mask was drawn to withhold and is often enough to
117
+ identify the format on its own. The exact width is the client's; that it does
118
+ not vary with the value is not.
119
+
120
+ They guessed alike, which is luck rather than a specification — and the third
121
+ implementation is the one that would have differed.
122
+
123
+ Also stated for `emailLocal`: a value with no local part or no `@` is masked in
124
+ full rather than guessed at.
125
+
14
126
  ## 0.17.2 — 2026-09-07
15
127
 
16
128
 
@@ -28,6 +28,10 @@ export interface ProvisionIntegrationPayload {
28
28
  * When `true`, the maintainer provisions the target context inline if it does not already exist. Requires super-admin role on the maintainer; context-admin callers MUST receive `provision/integration:forbidden` against a missing context. Idempotent when the context already exists.
29
29
  */
30
30
  createContext?: boolean;
31
+ /**
32
+ * How wide the ACL entry the maintainer writes for the minted admin is. `context` (the default, and what every integration-class consumer wants) binds the admin to `context` alone. `unrestricted` binds it to no context at all — the shape an ACL reads as a super-admin, able to act in every context the maintainer holds today and in every one created later — and is what an operator console asks for. `context` is resolved and authoritative in BOTH cases: it is where the admin DID is minted and the home a consumer stores its own configuration under, so `unrestricted` widens the grant without making the target context optional. A maintainer MUST refuse `unrestricted` with `provision/integration:forbidden` unless the relayer is itself a super-admin, because no admin may confer authority it does not hold. A maintainer that does not implement this member ignores it and writes a `context`-scoped entry; that is why the outcome is echoed as `summary.adminScope` rather than assumed from the ask.
33
+ */
34
+ adminScope?: "context" | "unrestricted";
31
35
  /**
32
36
  * Ecosystem-defined extension members per SPEC.md §4.5.1.
33
37
  */
@@ -236,6 +240,14 @@ export interface ProvisionSummary {
236
240
  * True when `payload.createContext` was honoured and the maintainer provisioned the target context inline. False when the context already existed (or when `createContext` was omitted / false).
237
241
  */
238
242
  contextCreated?: boolean;
243
+ /**
244
+ * The context the integration was provisioned into — `payload.context` verbatim when it was sent, otherwise the one "Context inference" resolved. Present so a producer that omitted `context` learns where it landed, rather than re-deriving it from its own view of the maintainer's layout and being wrong in exactly the deployments the inference rules exist for. Absent from maintainers that predate this member.
245
+ */
246
+ context?: string;
247
+ /**
248
+ * The scope of the ACL entry the maintainer actually wrote for `adminDid`. Echoed rather than assumed: a maintainer that does not implement `payload.adminScope` ignores an `unrestricted` ask and writes a `context`-scoped entry, and a producer that read its own request back would record authority it does not have. Absent from maintainers that predate this member, which a producer MUST read as `context`.
249
+ */
250
+ adminScope?: "context" | "unrestricted";
239
251
  }
240
252
  /** Shared definitions this specification references, re-exported under the names it used to declare them with. */
241
253
  export type { DigestMultibase, Ext };
@@ -291,6 +303,12 @@ export declare const PAYLOAD_SCHEMA: {
291
303
  readonly default: false;
292
304
  readonly description: "When `true`, the maintainer provisions the target context inline if it does not already exist. Requires super-admin role on the maintainer; context-admin callers MUST receive `provision/integration:forbidden` against a missing context. Idempotent when the context already exists.";
293
305
  };
306
+ readonly adminScope: {
307
+ readonly type: "string";
308
+ readonly enum: readonly ["context", "unrestricted"];
309
+ readonly default: "context";
310
+ readonly description: "How wide the ACL entry the maintainer writes for the minted admin is. `context` (the default, and what every integration-class consumer wants) binds the admin to `context` alone. `unrestricted` binds it to no context at all — the shape an ACL reads as a super-admin, able to act in every context the maintainer holds today and in every one created later — and is what an operator console asks for. `context` is resolved and authoritative in BOTH cases: it is where the admin DID is minted and the home a consumer stores its own configuration under, so `unrestricted` widens the grant without making the target context optional. A maintainer MUST refuse `unrestricted` with `provision/integration:forbidden` unless the relayer is itself a super-admin, because no admin may confer authority it does not hold. A maintainer that does not implement this member ignores it and writes a `context`-scoped entry; that is why the outcome is echoed as `summary.adminScope` rather than assumed from the ask.";
311
+ };
294
312
  readonly ext: {
295
313
  readonly $ref: "#/$defs/Ext";
296
314
  readonly description: "Ecosystem-defined extension members per SPEC.md §4.5.1.";
@@ -581,6 +599,16 @@ export declare const PAYLOAD_SCHEMA: {
581
599
  readonly default: false;
582
600
  readonly description: "True when `payload.createContext` was honoured and the maintainer provisioned the target context inline. False when the context already existed (or when `createContext` was omitted / false).";
583
601
  };
602
+ readonly context: {
603
+ readonly type: "string";
604
+ readonly minLength: 1;
605
+ readonly description: "The context the integration was provisioned into — `payload.context` verbatim when it was sent, otherwise the one \"Context inference\" resolved. Present so a producer that omitted `context` learns where it landed, rather than re-deriving it from its own view of the maintainer's layout and being wrong in exactly the deployments the inference rules exist for. Absent from maintainers that predate this member.";
606
+ };
607
+ readonly adminScope: {
608
+ readonly type: "string";
609
+ readonly enum: readonly ["context", "unrestricted"];
610
+ readonly description: "The scope of the ACL entry the maintainer actually wrote for `adminDid`. Echoed rather than assumed: a maintainer that does not implement `payload.adminScope` ignores an `unrestricted` ask and writes a `context`-scoped entry, and a producer that read its own request back would record authority it does not have. Absent from maintainers that predate this member, which a producer MUST read as `context`.";
611
+ };
584
612
  };
585
613
  };
586
614
  readonly Ext: {
@@ -892,6 +920,16 @@ export declare const RESPONSE_PAYLOAD_SCHEMA: {
892
920
  readonly default: false;
893
921
  readonly description: "True when `payload.createContext` was honoured and the maintainer provisioned the target context inline. False when the context already existed (or when `createContext` was omitted / false).";
894
922
  };
923
+ readonly context: {
924
+ readonly type: "string";
925
+ readonly minLength: 1;
926
+ readonly description: "The context the integration was provisioned into — `payload.context` verbatim when it was sent, otherwise the one \"Context inference\" resolved. Present so a producer that omitted `context` learns where it landed, rather than re-deriving it from its own view of the maintainer's layout and being wrong in exactly the deployments the inference rules exist for. Absent from maintainers that predate this member.";
927
+ };
928
+ readonly adminScope: {
929
+ readonly type: "string";
930
+ readonly enum: readonly ["context", "unrestricted"];
931
+ readonly description: "The scope of the ACL entry the maintainer actually wrote for `adminDid`. Echoed rather than assumed: a maintainer that does not implement `payload.adminScope` ignores an `unrestricted` ask and writes a `context`-scoped entry, and a producer that read its own request back would record authority it does not have. Absent from maintainers that predate this member, which a producer MUST read as `context`.";
932
+ };
895
933
  };
896
934
  };
897
935
  readonly Ext: {
@@ -961,6 +999,12 @@ export declare const SPEC: {
961
999
  readonly default: false;
962
1000
  readonly description: "When `true`, the maintainer provisions the target context inline if it does not already exist. Requires super-admin role on the maintainer; context-admin callers MUST receive `provision/integration:forbidden` against a missing context. Idempotent when the context already exists.";
963
1001
  };
1002
+ readonly adminScope: {
1003
+ readonly type: "string";
1004
+ readonly enum: readonly ["context", "unrestricted"];
1005
+ readonly default: "context";
1006
+ readonly description: "How wide the ACL entry the maintainer writes for the minted admin is. `context` (the default, and what every integration-class consumer wants) binds the admin to `context` alone. `unrestricted` binds it to no context at all — the shape an ACL reads as a super-admin, able to act in every context the maintainer holds today and in every one created later — and is what an operator console asks for. `context` is resolved and authoritative in BOTH cases: it is where the admin DID is minted and the home a consumer stores its own configuration under, so `unrestricted` widens the grant without making the target context optional. A maintainer MUST refuse `unrestricted` with `provision/integration:forbidden` unless the relayer is itself a super-admin, because no admin may confer authority it does not hold. A maintainer that does not implement this member ignores it and writes a `context`-scoped entry; that is why the outcome is echoed as `summary.adminScope` rather than assumed from the ask.";
1007
+ };
964
1008
  readonly ext: {
965
1009
  readonly $ref: "#/$defs/Ext";
966
1010
  readonly description: "Ecosystem-defined extension members per SPEC.md §4.5.1.";
@@ -1251,6 +1295,16 @@ export declare const SPEC: {
1251
1295
  readonly default: false;
1252
1296
  readonly description: "True when `payload.createContext` was honoured and the maintainer provisioned the target context inline. False when the context already existed (or when `createContext` was omitted / false).";
1253
1297
  };
1298
+ readonly context: {
1299
+ readonly type: "string";
1300
+ readonly minLength: 1;
1301
+ readonly description: "The context the integration was provisioned into — `payload.context` verbatim when it was sent, otherwise the one \"Context inference\" resolved. Present so a producer that omitted `context` learns where it landed, rather than re-deriving it from its own view of the maintainer's layout and being wrong in exactly the deployments the inference rules exist for. Absent from maintainers that predate this member.";
1302
+ };
1303
+ readonly adminScope: {
1304
+ readonly type: "string";
1305
+ readonly enum: readonly ["context", "unrestricted"];
1306
+ readonly description: "The scope of the ACL entry the maintainer actually wrote for `adminDid`. Echoed rather than assumed: a maintainer that does not implement `payload.adminScope` ignores an `unrestricted` ask and writes a `context`-scoped entry, and a producer that read its own request back would record authority it does not have. Absent from maintainers that predate this member, which a producer MUST read as `context`.";
1307
+ };
1254
1308
  };
1255
1309
  };
1256
1310
  readonly Ext: {
@@ -1573,6 +1627,16 @@ export declare const RESPONSE_SPEC: {
1573
1627
  readonly default: false;
1574
1628
  readonly description: "True when `payload.createContext` was honoured and the maintainer provisioned the target context inline. False when the context already existed (or when `createContext` was omitted / false).";
1575
1629
  };
1630
+ readonly context: {
1631
+ readonly type: "string";
1632
+ readonly minLength: 1;
1633
+ readonly description: "The context the integration was provisioned into — `payload.context` verbatim when it was sent, otherwise the one \"Context inference\" resolved. Present so a producer that omitted `context` learns where it landed, rather than re-deriving it from its own view of the maintainer's layout and being wrong in exactly the deployments the inference rules exist for. Absent from maintainers that predate this member.";
1634
+ };
1635
+ readonly adminScope: {
1636
+ readonly type: "string";
1637
+ readonly enum: readonly ["context", "unrestricted"];
1638
+ readonly description: "The scope of the ACL entry the maintainer actually wrote for `adminDid`. Echoed rather than assumed: a maintainer that does not implement `payload.adminScope` ignores an `unrestricted` ask and writes a `context`-scoped entry, and a producer that read its own request back would record authority it does not have. Absent from maintainers that predate this member, which a producer MUST read as `context`.";
1639
+ };
1576
1640
  };
1577
1641
  };
1578
1642
  readonly Ext: {
@@ -1 +1 @@
1
- {"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../src/provision/integration/0.3/payload.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../src/provision/integration/0.3/payload.ts"],"names":[],"mappings":"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"}
@@ -55,6 +55,15 @@ export const PAYLOAD_SCHEMA = {
55
55
  "default": false,
56
56
  "description": "When `true`, the maintainer provisions the target context inline if it does not already exist. Requires super-admin role on the maintainer; context-admin callers MUST receive `provision/integration:forbidden` against a missing context. Idempotent when the context already exists."
57
57
  },
58
+ "adminScope": {
59
+ "type": "string",
60
+ "enum": [
61
+ "context",
62
+ "unrestricted"
63
+ ],
64
+ "default": "context",
65
+ "description": "How wide the ACL entry the maintainer writes for the minted admin is. `context` (the default, and what every integration-class consumer wants) binds the admin to `context` alone. `unrestricted` binds it to no context at all — the shape an ACL reads as a super-admin, able to act in every context the maintainer holds today and in every one created later — and is what an operator console asks for. `context` is resolved and authoritative in BOTH cases: it is where the admin DID is minted and the home a consumer stores its own configuration under, so `unrestricted` widens the grant without making the target context optional. A maintainer MUST refuse `unrestricted` with `provision/integration:forbidden` unless the relayer is itself a super-admin, because no admin may confer authority it does not hold. A maintainer that does not implement this member ignores it and writes a `context`-scoped entry; that is why the outcome is echoed as `summary.adminScope` rather than assumed from the ask."
66
+ },
58
67
  "ext": {
59
68
  "$ref": "#/$defs/Ext",
60
69
  "description": "Ecosystem-defined extension members per SPEC.md §4.5.1."
@@ -378,6 +387,19 @@ export const PAYLOAD_SCHEMA = {
378
387
  "type": "boolean",
379
388
  "default": false,
380
389
  "description": "True when `payload.createContext` was honoured and the maintainer provisioned the target context inline. False when the context already existed (or when `createContext` was omitted / false)."
390
+ },
391
+ "context": {
392
+ "type": "string",
393
+ "minLength": 1,
394
+ "description": "The context the integration was provisioned into — `payload.context` verbatim when it was sent, otherwise the one \"Context inference\" resolved. Present so a producer that omitted `context` learns where it landed, rather than re-deriving it from its own view of the maintainer's layout and being wrong in exactly the deployments the inference rules exist for. Absent from maintainers that predate this member."
395
+ },
396
+ "adminScope": {
397
+ "type": "string",
398
+ "enum": [
399
+ "context",
400
+ "unrestricted"
401
+ ],
402
+ "description": "The scope of the ACL entry the maintainer actually wrote for `adminDid`. Echoed rather than assumed: a maintainer that does not implement `payload.adminScope` ignores an `unrestricted` ask and writes a `context`-scoped entry, and a producer that read its own request back would record authority it does not have. Absent from maintainers that predate this member, which a producer MUST read as `context`."
381
403
  }
382
404
  }
383
405
  },
@@ -725,6 +747,19 @@ export const RESPONSE_PAYLOAD_SCHEMA = {
725
747
  "type": "boolean",
726
748
  "default": false,
727
749
  "description": "True when `payload.createContext` was honoured and the maintainer provisioned the target context inline. False when the context already existed (or when `createContext` was omitted / false)."
750
+ },
751
+ "context": {
752
+ "type": "string",
753
+ "minLength": 1,
754
+ "description": "The context the integration was provisioned into — `payload.context` verbatim when it was sent, otherwise the one \"Context inference\" resolved. Present so a producer that omitted `context` learns where it landed, rather than re-deriving it from its own view of the maintainer's layout and being wrong in exactly the deployments the inference rules exist for. Absent from maintainers that predate this member."
755
+ },
756
+ "adminScope": {
757
+ "type": "string",
758
+ "enum": [
759
+ "context",
760
+ "unrestricted"
761
+ ],
762
+ "description": "The scope of the ACL entry the maintainer actually wrote for `adminDid`. Echoed rather than assumed: a maintainer that does not implement `payload.adminScope` ignores an `unrestricted` ask and writes a `context`-scoped entry, and a producer that read its own request back would record authority it does not have. Absent from maintainers that predate this member, which a producer MUST read as `context`."
728
763
  }
729
764
  }
730
765
  },
@@ -1 +1 @@
1
- {"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../src/provision/integration/0.3/payload.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../src/provision/integration/0.3/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAgQH,2BAA2B;AAC3B,MAAM,CAAC,MAAM,QAAQ,GAAG,uDAAgE,CAAC;AAKzF,qEAAqE;AACrE,MAAM,CAAC,MAAM,iBAAiB,GAAG,gEAAyE,CAAC;AAK3G;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,SAAS,EAAE,8CAA8C;IACzD,KAAK,EAAE,uDAAuD;IAC9D,OAAO,EAAE,iCAAiC;IAC1C,aAAa,EAAE,4YAA4Y;IAC3Z,MAAM,EAAE,QAAQ;IAChB,sBAAsB,EAAE,KAAK;IAC7B,UAAU,EAAE;QACV,SAAS;KACV;IACD,YAAY,EAAE;QACZ,SAAS,EAAE;YACT,MAAM,EAAE,0BAA0B;YAClC,aAAa,EAAE,oXAAoX;SACpY;QACD,SAAS,EAAE;YACT,MAAM,EAAE,QAAQ;YAChB,WAAW,EAAE,CAAC;YACd,aAAa,EAAE,myBAAmyB;SACnzB;QACD,WAAW,EAAE;YACX,MAAM,EAAE,QAAQ;YAChB,MAAM,EAAE;gBACN,WAAW;gBACX,YAAY;aACb;YACD,SAAS,EAAE,WAAW;YACtB,aAAa,EAAE,kfAAkf;SAClgB;QACD,mBAAmB,EAAE;YACnB,MAAM,EAAE,SAAS;YACjB,SAAS,EAAE,CAAC;YACZ,SAAS,EAAE,QAAQ;YACnB,aAAa,EAAE,gQAAgQ;SAChR;QACD,eAAe,EAAE;YACf,MAAM,EAAE,SAAS;YACjB,SAAS,EAAE,KAAK;YAChB,aAAa,EAAE,yRAAyR;SACzS;QACD,YAAY,EAAE;YACZ,MAAM,EAAE,QAAQ;YAChB,MAAM,EAAE;gBACN,SAAS;gBACT,cAAc;aACf;YACD,SAAS,EAAE,SAAS;YACpB,aAAa,EAAE,q+BAAq+B;SACr/B;QACD,KAAK,EAAE;YACL,MAAM,EAAE,aAAa;YACrB,aAAa,EAAE,yDAAyD;SACzE;KACF;IACD,OAAO,EAAE;QACP,kBAAkB,EAAE;YAClB,SAAS,EAAE,mBAAmB;YAC9B,OAAO,EAAE,kBAAkB;YAC3B,aAAa,EAAE,4NAA4N;YAC3O,MAAM,EAAE,QAAQ;YAChB,sBAAsB,EAAE,KAAK;YAC7B,UAAU,EAAE;gBACV,UAAU;gBACV,MAAM;gBACN,IAAI;gBACJ,QAAQ;gBACR,OAAO;gBACP,YAAY;gBACZ,KAAK;gBACL,OAAO;aACR;YACD,YAAY,EAAE;gBACZ,UAAU,EAAE;oBACV,MAAM,EAAE,OAAO;oBACf,UAAU,EAAE,CAAC;oBACb,OAAO,EAAE;wBACP,MAAM,EAAE,QAAQ;wBAChB,QAAQ,EAAE,KAAK;qBAChB;oBACD,aAAa,EAAE,sLAAsL;iBACtM;gBACD,MAAM,EAAE;oBACN,MAAM,EAAE,OAAO;oBACf,UAAU,EAAE,CAAC;oBACb,OAAO,EAAE;wBACP,MAAM,EAAE,QAAQ;wBAChB,WAAW,EAAE,CAAC;qBACf;oBACD,aAAa,EAAE,6HAA6H;iBAC7I;gBACD,IAAI,EAAE;oBACJ,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,8EAA8E;iBAC9F;gBACD,QAAQ,EAAE;oBACR,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,SAAS,EAAE,kCAAkC;oBAC7C,aAAa,EAAE,yKAAyK;iBACzL;gBACD,OAAO,EAAE;oBACP,MAAM,EAAE,QAAQ;oBAChB,SAAS,EAAE,qBAAqB;oBAChC,aAAa,EAAE,6RAA6R;iBAC7S;gBACD,YAAY,EAAE;oBACZ,MAAM,EAAE,QAAQ;oBAChB,QAAQ,EAAE,WAAW;oBACrB,aAAa,EAAE,8FAA8F;iBAC9G;gBACD,OAAO,EAAE;oBACP,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,WAAW,EAAE,GAAG;oBAChB,aAAa,EAAE,wEAAwE;iBACxF;gBACD,KAAK,EAAE;oBACL,MAAM,EAAE,sBAAsB;oBAC9B,aAAa,EAAE,sHAAsH;iBACtI;gBACD,OAAO,EAAE;oBACP,MAAM,EAAE,4BAA4B;oBACpC,aAAa,EAAE,gQAAgQ;iBAChR;aACF;SACF;QACD,cAAc,EAAE;YACd,SAAS,EAAE,eAAe;YAC1B,OAAO,EAAE,cAAc;YACvB,aAAa,EAAE,gGAAgG;YAC/G,OAAO,EAAE;gBACP;oBACE,MAAM,EAAE,8BAA8B;iBACvC;gBACD;oBACE,MAAM,EAAE,0BAA0B;iBACnC;aACF;SACF;QACD,sBAAsB,EAAE;YACtB,SAAS,EAAE,wBAAwB;YACnC,OAAO,EAAE,sBAAsB;YAC/B,aAAa,EAAE,4KAA4K;YAC3L,MAAM,EAAE,QAAQ;YAChB,sBAAsB,EAAE,KAAK;YAC7B,UAAU,EAAE;gBACV,MAAM;gBACN,UAAU;aACX;YACD,YAAY,EAAE;gBACZ,MAAM,EAAE;oBACN,OAAO,EAAE,mBAAmB;iBAC7B;gBACD,aAAa,EAAE;oBACb,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,gJAAgJ;iBAChK;gBACD,UAAU,EAAE;oBACV,MAAM,EAAE,wBAAwB;oBAChC,aAAa,EAAE,2GAA2G;iBAC3H;gBACD,eAAe,EAAE;oBACf,MAAM,EAAE,wBAAwB;oBAChC,aAAa,EAAE,wcAAwc;iBACxd;gBACD,MAAM,EAAE;oBACN,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,WAAW,EAAE,IAAI;oBACjB,aAAa,EAAE,kEAAkE;iBAClF;aACF;SACF;QACD,kBAAkB,EAAE;YAClB,SAAS,EAAE,oBAAoB;YAC/B,OAAO,EAAE,kBAAkB;YAC3B,aAAa,EAAE,gMAAgM;YAC/M,MAAM,EAAE,QAAQ;YAChB,sBAAsB,EAAE,KAAK;YAC7B,UAAU,EAAE;gBACV,MAAM;gBACN,eAAe;aAChB;YACD,YAAY,EAAE;gBACZ,MAAM,EAAE;oBACN,OAAO,EAAE,eAAe;iBACzB;gBACD,aAAa,EAAE;oBACb,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,yFAAyF;iBACzG;gBACD,eAAe,EAAE;oBACf,MAAM,EAAE,wBAAwB;oBAChC,aAAa,EAAE,gGAAgG;iBAChH;gBACD,MAAM,EAAE;oBACN,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,WAAW,EAAE,IAAI;oBACjB,aAAa,EAAE,kEAAkE;iBAClF;aACF;SACF;QACD,gBAAgB,EAAE;YAChB,SAAS,EAAE,kBAAkB;YAC7B,OAAO,EAAE,gBAAgB;YACzB,aAAa,EAAE,2RAA2R;YAC1S,MAAM,EAAE,QAAQ;YAChB,sBAAsB,EAAE,KAAK;YAC7B,UAAU,EAAE;gBACV,MAAM;aACP;YACD,YAAY,EAAE;gBACZ,MAAM,EAAE;oBACN,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,WAAW,EAAE,GAAG;oBAChB,aAAa,EAAE,wOAAwO;iBACxP;gBACD,MAAM,EAAE;oBACN,MAAM,EAAE,QAAQ;oBAChB,sBAAsB,EAAE,IAAI;oBAC5B,SAAS,EAAE,EAAE;oBACb,aAAa,EAAE,qOAAqO;iBACrP;aACF;SACF;QACD,oBAAoB,EAAE;YACpB,SAAS,EAAE,sBAAsB;YACjC,OAAO,EAAE,oBAAoB;YAC7B,aAAa,EAAE,sKAAsK;YACrL,MAAM,EAAE,QAAQ;YAChB,sBAAsB,EAAE,IAAI;YAC5B,UAAU,EAAE;gBACV,MAAM;gBACN,aAAa;gBACb,oBAAoB;gBACpB,cAAc;gBACd,YAAY;aACb;YACD,YAAY,EAAE;gBACZ,MAAM,EAAE;oBACN,OAAO,EAAE,oBAAoB;iBAC9B;gBACD,aAAa,EAAE;oBACb,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,sHAAsH;iBACtI;gBACD,oBAAoB,EAAE;oBACpB,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,2EAA2E;iBAC3F;gBACD,SAAS,EAAE;oBACT,MAAM,EAAE,QAAQ;oBAChB,QAAQ,EAAE,WAAW;iBACtB;gBACD,cAAc,EAAE;oBACd,OAAO,EAAE,gBAAgB;iBAC1B;gBACD,YAAY,EAAE;oBACZ,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,sCAAsC;iBACtD;aACF;SACF;QACD,UAAU,EAAE;YACV,SAAS,EAAE,UAAU;YACrB,OAAO,EAAE,0CAA0C;YACnD,aAAa,EAAE,4MAA4M;YAC3N,MAAM,EAAE,QAAQ;YAChB,sBAAsB,EAAE,KAAK;YAC7B,UAAU,EAAE;gBACV,QAAQ;gBACR,SAAS;aACV;YACD,YAAY,EAAE;gBACZ,QAAQ,EAAE;oBACR,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,6OAA6O;iBAC7P;gBACD,iBAAiB,EAAE;oBACjB,MAAM,EAAE,yBAAyB;oBACjC,aAAa,EAAE,sRAAsR;iBACtS;gBACD,SAAS,EAAE;oBACT,MAAM,EAAE,0BAA0B;oBAClC,aAAa,EAAE,oHAAoH;iBACpI;gBACD,KAAK,EAAE;oBACL,MAAM,EAAE,aAAa;iBACtB;aACF;SACF;QACD,kBAAkB,EAAE;YAClB,SAAS,EAAE,mBAAmB;YAC9B,OAAO,EAAE,kBAAkB;YAC3B,aAAa,EAAE,wMAAwM;YACvN,MAAM,EAAE,QAAQ;YAChB,sBAAsB,EAAE,KAAK;YAC7B,UAAU,EAAE;gBACV,WAAW;gBACX,aAAa;gBACb,aAAa;gBACb,aAAa;aACd;YACD,YAAY,EAAE;gBACZ,WAAW,EAAE;oBACX,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,6GAA6G;iBAC7H;gBACD,UAAU,EAAE;oBACV,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,oXAAoX;iBACpY;gBACD,iBAAiB,EAAE;oBACjB,MAAM,EAAE,SAAS;oBACjB,SAAS,EAAE,KAAK;oBAChB,aAAa,EAAE,4IAA4I;iBAC5J;gBACD,gBAAgB,EAAE;oBAChB,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,uGAAuG;iBACvH;gBACD,cAAc,EAAE;oBACd,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,iFAAiF;iBACjG;gBACD,cAAc,EAAE;oBACd,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,iHAAiH;iBACjI;gBACD,mBAAmB,EAAE;oBACnB,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,uJAAuJ;iBACvK;gBACD,aAAa,EAAE;oBACb,MAAM,EAAE,QAAQ;oBAChB,SAAS,EAAE,gBAAgB;oBAC3B,aAAa,EAAE,qPAAqP;iBACrQ;gBACD,aAAa,EAAE;oBACb,MAAM,EAAE,SAAS;oBACjB,SAAS,EAAE,CAAC;oBACZ,aAAa,EAAE,+OAA+O;iBAC/P;gBACD,aAAa,EAAE;oBACb,MAAM,EAAE,SAAS;oBACjB,SAAS,EAAE,CAAC;oBACZ,aAAa,EAAE,4JAA4J;iBAC5K;gBACD,eAAe,EAAE;oBACf,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,0NAA0N;iBAC1O;gBACD,gBAAgB,EAAE;oBAChB,MAAM,EAAE,SAAS;oBACjB,SAAS,EAAE,KAAK;oBAChB,aAAa,EAAE,gMAAgM;iBAChN;gBACD,SAAS,EAAE;oBACT,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,4ZAA4Z;iBAC5a;gBACD,YAAY,EAAE;oBACZ,MAAM,EAAE,QAAQ;oBAChB,MAAM,EAAE;wBACN,SAAS;wBACT,cAAc;qBACf;oBACD,aAAa,EAAE,qZAAqZ;iBACra;aACF;SACF;QACD,KAAK,EAAE;YACL,OAAO,EAAE,KAAK;YACd,aAAa,EAAE,uKAAuK;YACtL,MAAM,EAAE,QAAQ;YAChB,eAAe,EAAE,CAAC;YAClB,sBAAsB,EAAE,IAAI;YAC5B,eAAe,EAAE;gBACf,SAAS,EAAE,mCAAmC;aAC/C;SACF;QACD,iBAAiB,EAAE;YACjB,OAAO,EAAE,iBAAiB;YAC1B,aAAa,EAAE,gnDAAgnD;YAC/nD,MAAM,EAAE,QAAQ;YAChB,WAAW,EAAE,EAAE;YACf,SAAS,EAAE,4CAA4C;YACvD,UAAU,EAAE;gBACV,iDAAiD;aAClD;SACF;KACF;CACO,CAAC;AAEX,mEAAmE;AACnE,MAAM,CAAC,MAAM,uBAAuB,GAAG;IACrC,SAAS,EAAE,8CAA8C;IACzD,MAAM,EAAE,kBAAkB;IAC1B,OAAO,EAAE;QACP,kBAAkB,EAAE;YAClB,SAAS,EAAE,mBAAmB;YAC9B,OAAO,EAAE,kBAAkB;YAC3B,aAAa,EAAE,4NAA4N;YAC3O,MAAM,EAAE,QAAQ;YAChB,sBAAsB,EAAE,KAAK;YAC7B,UAAU,EAAE;gBACV,UAAU;gBACV,MAAM;gBACN,IAAI;gBACJ,QAAQ;gBACR,OAAO;gBACP,YAAY;gBACZ,KAAK;gBACL,OAAO;aACR;YACD,YAAY,EAAE;gBACZ,UAAU,EAAE;oBACV,MAAM,EAAE,OAAO;oBACf,UAAU,EAAE,CAAC;oBACb,OAAO,EAAE;wBACP,MAAM,EAAE,QAAQ;wBAChB,QAAQ,EAAE,KAAK;qBAChB;oBACD,aAAa,EAAE,sLAAsL;iBACtM;gBACD,MAAM,EAAE;oBACN,MAAM,EAAE,OAAO;oBACf,UAAU,EAAE,CAAC;oBACb,OAAO,EAAE;wBACP,MAAM,EAAE,QAAQ;wBAChB,WAAW,EAAE,CAAC;qBACf;oBACD,aAAa,EAAE,6HAA6H;iBAC7I;gBACD,IAAI,EAAE;oBACJ,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,8EAA8E;iBAC9F;gBACD,QAAQ,EAAE;oBACR,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,SAAS,EAAE,kCAAkC;oBAC7C,aAAa,EAAE,yKAAyK;iBACzL;gBACD,OAAO,EAAE;oBACP,MAAM,EAAE,QAAQ;oBAChB,SAAS,EAAE,qBAAqB;oBAChC,aAAa,EAAE,6RAA6R;iBAC7S;gBACD,YAAY,EAAE;oBACZ,MAAM,EAAE,QAAQ;oBAChB,QAAQ,EAAE,WAAW;oBACrB,aAAa,EAAE,8FAA8F;iBAC9G;gBACD,OAAO,EAAE;oBACP,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,WAAW,EAAE,GAAG;oBAChB,aAAa,EAAE,wEAAwE;iBACxF;gBACD,KAAK,EAAE;oBACL,MAAM,EAAE,sBAAsB;oBAC9B,aAAa,EAAE,sHAAsH;iBACtI;gBACD,OAAO,EAAE;oBACP,MAAM,EAAE,4BAA4B;oBACpC,aAAa,EAAE,gQAAgQ;iBAChR;aACF;SACF;QACD,cAAc,EAAE;YACd,SAAS,EAAE,eAAe;YAC1B,OAAO,EAAE,cAAc;YACvB,aAAa,EAAE,gGAAgG;YAC/G,OAAO,EAAE;gBACP;oBACE,MAAM,EAAE,8BAA8B;iBACvC;gBACD;oBACE,MAAM,EAAE,0BAA0B;iBACnC;aACF;SACF;QACD,sBAAsB,EAAE;YACtB,SAAS,EAAE,wBAAwB;YACnC,OAAO,EAAE,sBAAsB;YAC/B,aAAa,EAAE,4KAA4K;YAC3L,MAAM,EAAE,QAAQ;YAChB,sBAAsB,EAAE,KAAK;YAC7B,UAAU,EAAE;gBACV,MAAM;gBACN,UAAU;aACX;YACD,YAAY,EAAE;gBACZ,MAAM,EAAE;oBACN,OAAO,EAAE,mBAAmB;iBAC7B;gBACD,aAAa,EAAE;oBACb,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,gJAAgJ;iBAChK;gBACD,UAAU,EAAE;oBACV,MAAM,EAAE,wBAAwB;oBAChC,aAAa,EAAE,2GAA2G;iBAC3H;gBACD,eAAe,EAAE;oBACf,MAAM,EAAE,wBAAwB;oBAChC,aAAa,EAAE,wcAAwc;iBACxd;gBACD,MAAM,EAAE;oBACN,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,WAAW,EAAE,IAAI;oBACjB,aAAa,EAAE,kEAAkE;iBAClF;aACF;SACF;QACD,kBAAkB,EAAE;YAClB,SAAS,EAAE,oBAAoB;YAC/B,OAAO,EAAE,kBAAkB;YAC3B,aAAa,EAAE,gMAAgM;YAC/M,MAAM,EAAE,QAAQ;YAChB,sBAAsB,EAAE,KAAK;YAC7B,UAAU,EAAE;gBACV,MAAM;gBACN,eAAe;aAChB;YACD,YAAY,EAAE;gBACZ,MAAM,EAAE;oBACN,OAAO,EAAE,eAAe;iBACzB;gBACD,aAAa,EAAE;oBACb,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,yFAAyF;iBACzG;gBACD,eAAe,EAAE;oBACf,MAAM,EAAE,wBAAwB;oBAChC,aAAa,EAAE,gGAAgG;iBAChH;gBACD,MAAM,EAAE;oBACN,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,WAAW,EAAE,IAAI;oBACjB,aAAa,EAAE,kEAAkE;iBAClF;aACF;SACF;QACD,gBAAgB,EAAE;YAChB,SAAS,EAAE,kBAAkB;YAC7B,OAAO,EAAE,gBAAgB;YACzB,aAAa,EAAE,2RAA2R;YAC1S,MAAM,EAAE,QAAQ;YAChB,sBAAsB,EAAE,KAAK;YAC7B,UAAU,EAAE;gBACV,MAAM;aACP;YACD,YAAY,EAAE;gBACZ,MAAM,EAAE;oBACN,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,WAAW,EAAE,GAAG;oBAChB,aAAa,EAAE,wOAAwO;iBACxP;gBACD,MAAM,EAAE;oBACN,MAAM,EAAE,QAAQ;oBAChB,sBAAsB,EAAE,IAAI;oBAC5B,SAAS,EAAE,EAAE;oBACb,aAAa,EAAE,qOAAqO;iBACrP;aACF;SACF;QACD,oBAAoB,EAAE;YACpB,SAAS,EAAE,sBAAsB;YACjC,OAAO,EAAE,oBAAoB;YAC7B,aAAa,EAAE,sKAAsK;YACrL,MAAM,EAAE,QAAQ;YAChB,sBAAsB,EAAE,IAAI;YAC5B,UAAU,EAAE;gBACV,MAAM;gBACN,aAAa;gBACb,oBAAoB;gBACpB,cAAc;gBACd,YAAY;aACb;YACD,YAAY,EAAE;gBACZ,MAAM,EAAE;oBACN,OAAO,EAAE,oBAAoB;iBAC9B;gBACD,aAAa,EAAE;oBACb,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,sHAAsH;iBACtI;gBACD,oBAAoB,EAAE;oBACpB,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,2EAA2E;iBAC3F;gBACD,SAAS,EAAE;oBACT,MAAM,EAAE,QAAQ;oBAChB,QAAQ,EAAE,WAAW;iBACtB;gBACD,cAAc,EAAE;oBACd,OAAO,EAAE,gBAAgB;iBAC1B;gBACD,YAAY,EAAE;oBACZ,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,sCAAsC;iBACtD;aACF;SACF;QACD,UAAU,EAAE;YACV,SAAS,EAAE,UAAU;YACrB,OAAO,EAAE,0CAA0C;YACnD,aAAa,EAAE,4MAA4M;YAC3N,MAAM,EAAE,QAAQ;YAChB,sBAAsB,EAAE,KAAK;YAC7B,UAAU,EAAE;gBACV,QAAQ;gBACR,SAAS;aACV;YACD,YAAY,EAAE;gBACZ,QAAQ,EAAE;oBACR,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,6OAA6O;iBAC7P;gBACD,iBAAiB,EAAE;oBACjB,MAAM,EAAE,yBAAyB;oBACjC,aAAa,EAAE,sRAAsR;iBACtS;gBACD,SAAS,EAAE;oBACT,MAAM,EAAE,0BAA0B;oBAClC,aAAa,EAAE,oHAAoH;iBACpI;gBACD,KAAK,EAAE;oBACL,MAAM,EAAE,aAAa;iBACtB;aACF;SACF;QACD,kBAAkB,EAAE;YAClB,SAAS,EAAE,mBAAmB;YAC9B,OAAO,EAAE,kBAAkB;YAC3B,aAAa,EAAE,wMAAwM;YACvN,MAAM,EAAE,QAAQ;YAChB,sBAAsB,EAAE,KAAK;YAC7B,UAAU,EAAE;gBACV,WAAW;gBACX,aAAa;gBACb,aAAa;gBACb,aAAa;aACd;YACD,YAAY,EAAE;gBACZ,WAAW,EAAE;oBACX,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,6GAA6G;iBAC7H;gBACD,UAAU,EAAE;oBACV,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,oXAAoX;iBACpY;gBACD,iBAAiB,EAAE;oBACjB,MAAM,EAAE,SAAS;oBACjB,SAAS,EAAE,KAAK;oBAChB,aAAa,EAAE,4IAA4I;iBAC5J;gBACD,gBAAgB,EAAE;oBAChB,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,uGAAuG;iBACvH;gBACD,cAAc,EAAE;oBACd,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,iFAAiF;iBACjG;gBACD,cAAc,EAAE;oBACd,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,iHAAiH;iBACjI;gBACD,mBAAmB,EAAE;oBACnB,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,uJAAuJ;iBACvK;gBACD,aAAa,EAAE;oBACb,MAAM,EAAE,QAAQ;oBAChB,SAAS,EAAE,gBAAgB;oBAC3B,aAAa,EAAE,qPAAqP;iBACrQ;gBACD,aAAa,EAAE;oBACb,MAAM,EAAE,SAAS;oBACjB,SAAS,EAAE,CAAC;oBACZ,aAAa,EAAE,+OAA+O;iBAC/P;gBACD,aAAa,EAAE;oBACb,MAAM,EAAE,SAAS;oBACjB,SAAS,EAAE,CAAC;oBACZ,aAAa,EAAE,4JAA4J;iBAC5K;gBACD,eAAe,EAAE;oBACf,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,0NAA0N;iBAC1O;gBACD,gBAAgB,EAAE;oBAChB,MAAM,EAAE,SAAS;oBACjB,SAAS,EAAE,KAAK;oBAChB,aAAa,EAAE,gMAAgM;iBAChN;gBACD,SAAS,EAAE;oBACT,MAAM,EAAE,QAAQ;oBAChB,WAAW,EAAE,CAAC;oBACd,aAAa,EAAE,4ZAA4Z;iBAC5a;gBACD,YAAY,EAAE;oBACZ,MAAM,EAAE,QAAQ;oBAChB,MAAM,EAAE;wBACN,SAAS;wBACT,cAAc;qBACf;oBACD,aAAa,EAAE,qZAAqZ;iBACra;aACF;SACF;QACD,KAAK,EAAE;YACL,OAAO,EAAE,KAAK;YACd,aAAa,EAAE,uKAAuK;YACtL,MAAM,EAAE,QAAQ;YAChB,eAAe,EAAE,CAAC;YAClB,sBAAsB,EAAE,IAAI;YAC5B,eAAe,EAAE;gBACf,SAAS,EAAE,mCAAmC;aAC/C;SACF;QACD,iBAAiB,EAAE;YACjB,OAAO,EAAE,iBAAiB;YAC1B,aAAa,EAAE,gnDAAgnD;YAC/nD,MAAM,EAAE,QAAQ;YAChB,WAAW,EAAE,EAAE;YACf,SAAS,EAAE,4CAA4C;YACvD,UAAU,EAAE;gBACV,iDAAiD;aAClD;SACF;KACF;CACO,CAAC;AAEX;;;;;GAKG;AACH,MAAM,CAAC,MAAM,IAAI,GAAG;IAClB,OAAO,EAAE,QAAQ;IACjB,QAAQ,EAAE,KAAK;IACf,eAAe,EAAE,IAAI;IACrB,mBAAmB,EAAE,IAAI;IACzB,kBAAkB,EAAE,IAAI;IACxB,aAAa,EAAE,cAAc;CACrB,CAAC;AAEX;;;;GAIG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,OAAO,EAAE,iBAAiB;IAC1B,QAAQ,EAAE,KAAK;IACf,eAAe,EAAE,IAAI;IACrB,mBAAmB,EAAE,KAAK;IAC1B,kBAAkB,EAAE,IAAI;IACxB,aAAa,EAAE,uBAAuB;CAC9B,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openvtc/trust-tasks",
3
- "version": "0.17.2",
3
+ "version": "0.17.4",
4
4
  "description": "Generated TypeScript bindings for the Trust Tasks framework registry.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -32,6 +32,10 @@ export interface ProvisionIntegrationPayload {
32
32
  * When `true`, the maintainer provisions the target context inline if it does not already exist. Requires super-admin role on the maintainer; context-admin callers MUST receive `provision/integration:forbidden` against a missing context. Idempotent when the context already exists.
33
33
  */
34
34
  createContext?: boolean;
35
+ /**
36
+ * How wide the ACL entry the maintainer writes for the minted admin is. `context` (the default, and what every integration-class consumer wants) binds the admin to `context` alone. `unrestricted` binds it to no context at all — the shape an ACL reads as a super-admin, able to act in every context the maintainer holds today and in every one created later — and is what an operator console asks for. `context` is resolved and authoritative in BOTH cases: it is where the admin DID is minted and the home a consumer stores its own configuration under, so `unrestricted` widens the grant without making the target context optional. A maintainer MUST refuse `unrestricted` with `provision/integration:forbidden` unless the relayer is itself a super-admin, because no admin may confer authority it does not hold. A maintainer that does not implement this member ignores it and writes a `context`-scoped entry; that is why the outcome is echoed as `summary.adminScope` rather than assumed from the ask.
37
+ */
38
+ adminScope?: "context" | "unrestricted";
35
39
  /**
36
40
  * Ecosystem-defined extension members per SPEC.md §4.5.1.
37
41
  */
@@ -240,6 +244,14 @@ export interface ProvisionSummary {
240
244
  * True when `payload.createContext` was honoured and the maintainer provisioned the target context inline. False when the context already existed (or when `createContext` was omitted / false).
241
245
  */
242
246
  contextCreated?: boolean;
247
+ /**
248
+ * The context the integration was provisioned into — `payload.context` verbatim when it was sent, otherwise the one "Context inference" resolved. Present so a producer that omitted `context` learns where it landed, rather than re-deriving it from its own view of the maintainer's layout and being wrong in exactly the deployments the inference rules exist for. Absent from maintainers that predate this member.
249
+ */
250
+ context?: string;
251
+ /**
252
+ * The scope of the ACL entry the maintainer actually wrote for `adminDid`. Echoed rather than assumed: a maintainer that does not implement `payload.adminScope` ignores an `unrestricted` ask and writes a `context`-scoped entry, and a producer that read its own request back would record authority it does not have. Absent from maintainers that predate this member, which a producer MUST read as `context`.
253
+ */
254
+ adminScope?: "context" | "unrestricted";
243
255
  }
244
256
 
245
257
  /** Shared definitions this specification references, re-exported under the names it used to declare them with. */
@@ -306,6 +318,15 @@ export const PAYLOAD_SCHEMA = {
306
318
  "default": false,
307
319
  "description": "When `true`, the maintainer provisions the target context inline if it does not already exist. Requires super-admin role on the maintainer; context-admin callers MUST receive `provision/integration:forbidden` against a missing context. Idempotent when the context already exists."
308
320
  },
321
+ "adminScope": {
322
+ "type": "string",
323
+ "enum": [
324
+ "context",
325
+ "unrestricted"
326
+ ],
327
+ "default": "context",
328
+ "description": "How wide the ACL entry the maintainer writes for the minted admin is. `context` (the default, and what every integration-class consumer wants) binds the admin to `context` alone. `unrestricted` binds it to no context at all — the shape an ACL reads as a super-admin, able to act in every context the maintainer holds today and in every one created later — and is what an operator console asks for. `context` is resolved and authoritative in BOTH cases: it is where the admin DID is minted and the home a consumer stores its own configuration under, so `unrestricted` widens the grant without making the target context optional. A maintainer MUST refuse `unrestricted` with `provision/integration:forbidden` unless the relayer is itself a super-admin, because no admin may confer authority it does not hold. A maintainer that does not implement this member ignores it and writes a `context`-scoped entry; that is why the outcome is echoed as `summary.adminScope` rather than assumed from the ask."
329
+ },
309
330
  "ext": {
310
331
  "$ref": "#/$defs/Ext",
311
332
  "description": "Ecosystem-defined extension members per SPEC.md §4.5.1."
@@ -629,6 +650,19 @@ export const PAYLOAD_SCHEMA = {
629
650
  "type": "boolean",
630
651
  "default": false,
631
652
  "description": "True when `payload.createContext` was honoured and the maintainer provisioned the target context inline. False when the context already existed (or when `createContext` was omitted / false)."
653
+ },
654
+ "context": {
655
+ "type": "string",
656
+ "minLength": 1,
657
+ "description": "The context the integration was provisioned into — `payload.context` verbatim when it was sent, otherwise the one \"Context inference\" resolved. Present so a producer that omitted `context` learns where it landed, rather than re-deriving it from its own view of the maintainer's layout and being wrong in exactly the deployments the inference rules exist for. Absent from maintainers that predate this member."
658
+ },
659
+ "adminScope": {
660
+ "type": "string",
661
+ "enum": [
662
+ "context",
663
+ "unrestricted"
664
+ ],
665
+ "description": "The scope of the ACL entry the maintainer actually wrote for `adminDid`. Echoed rather than assumed: a maintainer that does not implement `payload.adminScope` ignores an `unrestricted` ask and writes a `context`-scoped entry, and a producer that read its own request back would record authority it does not have. Absent from maintainers that predate this member, which a producer MUST read as `context`."
632
666
  }
633
667
  }
634
668
  },
@@ -977,6 +1011,19 @@ export const RESPONSE_PAYLOAD_SCHEMA = {
977
1011
  "type": "boolean",
978
1012
  "default": false,
979
1013
  "description": "True when `payload.createContext` was honoured and the maintainer provisioned the target context inline. False when the context already existed (or when `createContext` was omitted / false)."
1014
+ },
1015
+ "context": {
1016
+ "type": "string",
1017
+ "minLength": 1,
1018
+ "description": "The context the integration was provisioned into — `payload.context` verbatim when it was sent, otherwise the one \"Context inference\" resolved. Present so a producer that omitted `context` learns where it landed, rather than re-deriving it from its own view of the maintainer's layout and being wrong in exactly the deployments the inference rules exist for. Absent from maintainers that predate this member."
1019
+ },
1020
+ "adminScope": {
1021
+ "type": "string",
1022
+ "enum": [
1023
+ "context",
1024
+ "unrestricted"
1025
+ ],
1026
+ "description": "The scope of the ACL entry the maintainer actually wrote for `adminDid`. Echoed rather than assumed: a maintainer that does not implement `payload.adminScope` ignores an `unrestricted` ask and writes a `context`-scoped entry, and a producer that read its own request back would record authority it does not have. Absent from maintainers that predate this member, which a producer MUST read as `context`."
980
1027
  }
981
1028
  }
982
1029
  },