@vess-id/ai-identity 0.16.0 → 0.17.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.d.mts CHANGED
@@ -865,6 +865,14 @@ interface PolicyRefInline {
865
865
  * resolve で取得できるため optional のまま).
866
866
  */
867
867
  schema_id?: string;
868
+ /**
869
+ * Policy engine that authored / evaluates this document. Omitted ⇒ `cedar`
870
+ * (historical default — all pre-Plan-B refs are Cedar and MUST stay wire-
871
+ * identical). Corresponds to the Policy Registry `engine` column (Plan B
872
+ * Task 1). Non-cedar engines (e.g. `'scheduling-delegation/v1'`) carry a
873
+ * non-Cedar `policy_inline` body and skip Cedar lint.
874
+ */
875
+ engine?: string;
868
876
  }
869
877
  /**
870
878
  * Reference policy mode — policy lives in the Policy Registry.
@@ -891,6 +899,15 @@ interface PolicyRefReference {
891
899
  * 同梱せず Registry 側で resolve する方針。
892
900
  */
893
901
  schema_id?: string;
902
+ /**
903
+ * Policy engine that authored / evaluates the referenced document. Omitted ⇒
904
+ * `cedar` (historical default — all pre-Plan-B refs are Cedar and MUST stay
905
+ * wire-identical). Corresponds to the Policy Registry `engine` column (Plan B
906
+ * Task 1); the served `/.well-known/policy-registry/:id` document declares the
907
+ * same value. Non-cedar engines (e.g. `'scheduling-delegation/v1'`) resolve to
908
+ * a non-Cedar body and skip Cedar lint.
909
+ */
910
+ engine?: string;
894
911
  }
895
912
  /**
896
913
  * Tagged union of policy reference shapes. Discriminator: `mode`.
@@ -1089,6 +1106,84 @@ interface VcApprovalClaim {
1089
1106
  */
1090
1107
  action?: string;
1091
1108
  }
1109
+ /**
1110
+ * Scheduling Wow Phase 1 §5.3 (Task 7) — the delegation-policy snapshot baked
1111
+ * into a VC that was AUTO-ISSUED (no human approval) because the invocation
1112
+ * fell entirely inside the user's advance scheduling-delegation policy.
1113
+ *
1114
+ * Audit evidence: names WHAT standing authority the auto-issuance relied on
1115
+ * ("何を根拠に自動実行されたか"), so a verifier / auditor can reconstruct the
1116
+ * decision without the DB row (which may have been edited since). It is NOT
1117
+ * read by any enforcement gate — resource_id / delegates semantics (#884
1118
+ * canonical resource checks) are unchanged.
1119
+ *
1120
+ * SD-protected (disclosed via `_sd`) because `contactScope` can contain
1121
+ * third-party emails/domains.
1122
+ *
1123
+ * Item binding (Tasks 9-11, spec §5.3): the optional {@link
1124
+ * VcSchedulingDelegationClaim.itemId} names which negotiation an automated
1125
+ * calendar write belonged to. It is ABSENT on `scheduling.request` issuances
1126
+ * (at that gate the item does not exist yet — it is created by the request
1127
+ * pipeline AFTER the VC gate, so there is nothing to bind) and PRESENT on the
1128
+ * confirm (§7) and tentative-hold (§6) issuance contexts, which operate on a
1129
+ * concrete item.
1130
+ */
1131
+ interface VcSchedulingDelegationClaim {
1132
+ /** The policy's allowed weekly window at issuance time. */
1133
+ timeWindow: {
1134
+ /** Allowed weekdays, 0 (Sun) – 6 (Sat). */
1135
+ daysOfWeek: number[];
1136
+ /** 'HH:mm' wall-clock window start (policy timezone). */
1137
+ windowStart: string;
1138
+ /** 'HH:mm' wall-clock window end (policy timezone). */
1139
+ windowEnd: string;
1140
+ /** IANA timezone the window is judged in (e.g. 'Asia/Tokyo'). */
1141
+ timezone: string;
1142
+ };
1143
+ /** Upper bound on meeting duration (minutes) the policy allowed. */
1144
+ maxDurationMinutes: number;
1145
+ /** Counterpart scope the policy allowed. null = no restriction. */
1146
+ contactScope: {
1147
+ emails: string[];
1148
+ domains: string[];
1149
+ } | null;
1150
+ /** ISO-8601 expiry of the delegation policy itself at issuance time. */
1151
+ policyExpiresAt: string;
1152
+ /**
1153
+ * Scheduling Wow Phase 1 (Tasks 9-11, spec §5.3) — the inbox item id the
1154
+ * automated calendar write belonged to. ADDITIVE / OPTIONAL: absent on
1155
+ * `scheduling.request` issuances (the item does not exist yet at that gate),
1156
+ * present on the confirm (§7) and tentative-hold (§6) issuance contexts,
1157
+ * which DO operate on a concrete item and bind it so the audit evidence names
1158
+ * which negotiation the write was for.
1159
+ */
1160
+ itemId?: string;
1161
+ /**
1162
+ * Scheduling Phase 2 Plan B (Task 3 bakes this) — the Policy Registry id of
1163
+ * the signed delegation-policy document the auto-issuance relied on. Lets an
1164
+ * auditor fetch the exact JWS-signed `/.well-known/policy-registry/:id`
1165
+ * document that this snapshot was derived from, instead of trusting the
1166
+ * inline snapshot alone. ADDITIVE / OPTIONAL: absent on legacy rows minted
1167
+ * before Plan B (which have no registry document).
1168
+ *
1169
+ * AUDIT-ONLY, same principle as the rest of this claim: no enforcement gate
1170
+ * reads it. At invoke time the delegation is re-evaluated against the LIVE
1171
+ * policy row + actual request parameters — the VC claim is never trusted as
1172
+ * an authorization source (#884 canonical resource checks unchanged).
1173
+ */
1174
+ policyRegistryId?: string;
1175
+ /**
1176
+ * Scheduling Phase 2 Plan B (Task 3 bakes this) — `sha256-` prefixed hash of
1177
+ * the canonical policy body the {@link policyRegistryId} document was minted
1178
+ * with. Tamper-evidence linking this snapshot to that exact document version.
1179
+ * ADDITIVE / OPTIONAL: absent on legacy rows minted before Plan B.
1180
+ *
1181
+ * AUDIT-ONLY, same principle as the rest of this claim: no enforcement gate
1182
+ * reads it. Invoke-time evaluation trusts the live policy row + actual
1183
+ * parameters, never the VC claim (#884 unchanged).
1184
+ */
1185
+ policyHash?: string;
1186
+ }
1092
1187
  interface PermissionVcClaims_V3 extends Omit<PermissionVcClaims_V2, 'v'> {
1093
1188
  /** Schema version — v3 adds Cedar policy_ref support and chain hierarchy fields. */
1094
1189
  v: '3';
@@ -1118,6 +1213,14 @@ interface PermissionVcClaims_V3 extends Omit<PermissionVcClaims_V2, 'v'> {
1118
1213
  * ledger 経由 fallback)。{@link VcApprovalClaim} 参照。
1119
1214
  */
1120
1215
  approval?: VcApprovalClaim;
1216
+ /**
1217
+ * Scheduling Wow Phase 1 §5.3 (Task 7) — present ONLY when the VC was
1218
+ * auto-issued under the user's advance scheduling-delegation policy
1219
+ * (scheduling.request / confirm / hold contexts). Absent on every other
1220
+ * issuance path (manual approval, Cedar permit, legacy). Audit-only:
1221
+ * no enforcement gate reads it. {@link VcSchedulingDelegationClaim}.
1222
+ */
1223
+ schedulingDelegation?: VcSchedulingDelegationClaim;
1121
1224
  }
1122
1225
  /**
1123
1226
  * Permission VC Claims (canonical union of v2 + v3).
@@ -4841,9 +4944,12 @@ declare const ACTION_REGISTRY: {
4841
4944
  topic?: undefined;
4842
4945
  durationMinutes?: undefined;
4843
4946
  candidates?: undefined;
4947
+ candidateWindow?: undefined;
4948
+ hold?: undefined;
4844
4949
  };
4845
4950
  required: string[];
4846
4951
  additionalProperties: boolean;
4952
+ oneOf?: undefined;
4847
4953
  };
4848
4954
  constraints: {
4849
4955
  rate_bucket: string;
@@ -5027,9 +5133,12 @@ declare const ACTION_REGISTRY: {
5027
5133
  topic?: undefined;
5028
5134
  durationMinutes?: undefined;
5029
5135
  candidates?: undefined;
5136
+ candidateWindow?: undefined;
5137
+ hold?: undefined;
5030
5138
  };
5031
5139
  additionalProperties: boolean;
5032
5140
  required?: undefined;
5141
+ oneOf?: undefined;
5033
5142
  };
5034
5143
  constraints: {
5035
5144
  rate_bucket: string;
@@ -5216,9 +5325,12 @@ declare const ACTION_REGISTRY: {
5216
5325
  topic?: undefined;
5217
5326
  durationMinutes?: undefined;
5218
5327
  candidates?: undefined;
5328
+ candidateWindow?: undefined;
5329
+ hold?: undefined;
5219
5330
  };
5220
5331
  required: string[];
5221
5332
  additionalProperties: boolean;
5333
+ oneOf?: undefined;
5222
5334
  };
5223
5335
  constraints: {
5224
5336
  rate_bucket: string;
@@ -5415,9 +5527,12 @@ declare const ACTION_REGISTRY: {
5415
5527
  topic?: undefined;
5416
5528
  durationMinutes?: undefined;
5417
5529
  candidates?: undefined;
5530
+ candidateWindow?: undefined;
5531
+ hold?: undefined;
5418
5532
  };
5419
5533
  required: string[];
5420
5534
  additionalProperties: boolean;
5535
+ oneOf?: undefined;
5421
5536
  };
5422
5537
  constraints: {
5423
5538
  rate_bucket: string;
@@ -5611,9 +5726,12 @@ declare const ACTION_REGISTRY: {
5611
5726
  topic?: undefined;
5612
5727
  durationMinutes?: undefined;
5613
5728
  candidates?: undefined;
5729
+ candidateWindow?: undefined;
5730
+ hold?: undefined;
5614
5731
  };
5615
5732
  required: string[];
5616
5733
  additionalProperties: boolean;
5734
+ oneOf?: undefined;
5617
5735
  };
5618
5736
  constraints: {
5619
5737
  rate_bucket: string;
@@ -5804,9 +5922,12 @@ declare const ACTION_REGISTRY: {
5804
5922
  topic?: undefined;
5805
5923
  durationMinutes?: undefined;
5806
5924
  candidates?: undefined;
5925
+ candidateWindow?: undefined;
5926
+ hold?: undefined;
5807
5927
  };
5808
5928
  additionalProperties: boolean;
5809
5929
  required?: undefined;
5930
+ oneOf?: undefined;
5810
5931
  };
5811
5932
  constraints: {
5812
5933
  rate_bucket: string;
@@ -6000,9 +6121,12 @@ declare const ACTION_REGISTRY: {
6000
6121
  topic?: undefined;
6001
6122
  durationMinutes?: undefined;
6002
6123
  candidates?: undefined;
6124
+ candidateWindow?: undefined;
6125
+ hold?: undefined;
6003
6126
  };
6004
6127
  required: string[];
6005
6128
  additionalProperties: boolean;
6129
+ oneOf?: undefined;
6006
6130
  };
6007
6131
  constraints: {
6008
6132
  rate_bucket: string;
@@ -6192,9 +6316,12 @@ declare const ACTION_REGISTRY: {
6192
6316
  topic?: undefined;
6193
6317
  durationMinutes?: undefined;
6194
6318
  candidates?: undefined;
6319
+ candidateWindow?: undefined;
6320
+ hold?: undefined;
6195
6321
  };
6196
6322
  required: string[];
6197
6323
  additionalProperties: boolean;
6324
+ oneOf?: undefined;
6198
6325
  };
6199
6326
  constraints: {
6200
6327
  rate_bucket: string;
@@ -6409,9 +6536,12 @@ declare const ACTION_REGISTRY: {
6409
6536
  topic?: undefined;
6410
6537
  durationMinutes?: undefined;
6411
6538
  candidates?: undefined;
6539
+ candidateWindow?: undefined;
6540
+ hold?: undefined;
6412
6541
  };
6413
6542
  required: string[];
6414
6543
  additionalProperties: boolean;
6544
+ oneOf?: undefined;
6415
6545
  };
6416
6546
  constraints: {
6417
6547
  rate_bucket: string;
@@ -6627,9 +6757,12 @@ declare const ACTION_REGISTRY: {
6627
6757
  topic?: undefined;
6628
6758
  durationMinutes?: undefined;
6629
6759
  candidates?: undefined;
6760
+ candidateWindow?: undefined;
6761
+ hold?: undefined;
6630
6762
  };
6631
6763
  required: string[];
6632
6764
  additionalProperties: boolean;
6765
+ oneOf?: undefined;
6633
6766
  };
6634
6767
  constraints: {
6635
6768
  rate_bucket: string;
@@ -6825,9 +6958,12 @@ declare const ACTION_REGISTRY: {
6825
6958
  topic?: undefined;
6826
6959
  durationMinutes?: undefined;
6827
6960
  candidates?: undefined;
6961
+ candidateWindow?: undefined;
6962
+ hold?: undefined;
6828
6963
  };
6829
6964
  required: string[];
6830
6965
  additionalProperties: boolean;
6966
+ oneOf?: undefined;
6831
6967
  };
6832
6968
  constraints: {
6833
6969
  rate_bucket: string;
@@ -7046,9 +7182,12 @@ declare const ACTION_REGISTRY: {
7046
7182
  topic?: undefined;
7047
7183
  durationMinutes?: undefined;
7048
7184
  candidates?: undefined;
7185
+ candidateWindow?: undefined;
7186
+ hold?: undefined;
7049
7187
  };
7050
7188
  required: string[];
7051
7189
  additionalProperties: boolean;
7190
+ oneOf?: undefined;
7052
7191
  };
7053
7192
  constraints: {
7054
7193
  rate_bucket: string;
@@ -7258,9 +7397,12 @@ declare const ACTION_REGISTRY: {
7258
7397
  topic?: undefined;
7259
7398
  durationMinutes?: undefined;
7260
7399
  candidates?: undefined;
7400
+ candidateWindow?: undefined;
7401
+ hold?: undefined;
7261
7402
  };
7262
7403
  required: string[];
7263
7404
  additionalProperties: boolean;
7405
+ oneOf?: undefined;
7264
7406
  };
7265
7407
  constraints: {
7266
7408
  rate_bucket: string;
@@ -7479,9 +7621,12 @@ declare const ACTION_REGISTRY: {
7479
7621
  topic?: undefined;
7480
7622
  durationMinutes?: undefined;
7481
7623
  candidates?: undefined;
7624
+ candidateWindow?: undefined;
7625
+ hold?: undefined;
7482
7626
  };
7483
7627
  required: string[];
7484
7628
  additionalProperties: boolean;
7629
+ oneOf?: undefined;
7485
7630
  };
7486
7631
  constraints: {
7487
7632
  rate_bucket: string;
@@ -7677,9 +7822,12 @@ declare const ACTION_REGISTRY: {
7677
7822
  topic?: undefined;
7678
7823
  durationMinutes?: undefined;
7679
7824
  candidates?: undefined;
7825
+ candidateWindow?: undefined;
7826
+ hold?: undefined;
7680
7827
  };
7681
7828
  required: string[];
7682
7829
  additionalProperties: boolean;
7830
+ oneOf?: undefined;
7683
7831
  };
7684
7832
  constraints: {
7685
7833
  rate_bucket: string;
@@ -7891,9 +8039,12 @@ declare const ACTION_REGISTRY: {
7891
8039
  topic?: undefined;
7892
8040
  durationMinutes?: undefined;
7893
8041
  candidates?: undefined;
8042
+ candidateWindow?: undefined;
8043
+ hold?: undefined;
7894
8044
  };
7895
8045
  required: string[];
7896
8046
  additionalProperties: boolean;
8047
+ oneOf?: undefined;
7897
8048
  };
7898
8049
  constraints: {
7899
8050
  rate_bucket: string;
@@ -8099,9 +8250,12 @@ declare const ACTION_REGISTRY: {
8099
8250
  topic?: undefined;
8100
8251
  durationMinutes?: undefined;
8101
8252
  candidates?: undefined;
8253
+ candidateWindow?: undefined;
8254
+ hold?: undefined;
8102
8255
  };
8103
8256
  required: string[];
8104
8257
  additionalProperties: boolean;
8258
+ oneOf?: undefined;
8105
8259
  };
8106
8260
  constraints: {
8107
8261
  rate_bucket: string;
@@ -8306,9 +8460,12 @@ declare const ACTION_REGISTRY: {
8306
8460
  topic?: undefined;
8307
8461
  durationMinutes?: undefined;
8308
8462
  candidates?: undefined;
8463
+ candidateWindow?: undefined;
8464
+ hold?: undefined;
8309
8465
  };
8310
8466
  required: string[];
8311
8467
  additionalProperties: boolean;
8468
+ oneOf?: undefined;
8312
8469
  };
8313
8470
  constraints: {
8314
8471
  rate_bucket: string;
@@ -8513,9 +8670,12 @@ declare const ACTION_REGISTRY: {
8513
8670
  topic?: undefined;
8514
8671
  durationMinutes?: undefined;
8515
8672
  candidates?: undefined;
8673
+ candidateWindow?: undefined;
8674
+ hold?: undefined;
8516
8675
  };
8517
8676
  required: string[];
8518
8677
  additionalProperties: boolean;
8678
+ oneOf?: undefined;
8519
8679
  };
8520
8680
  constraints: {
8521
8681
  rate_bucket: string;
@@ -8721,9 +8881,12 @@ declare const ACTION_REGISTRY: {
8721
8881
  topic?: undefined;
8722
8882
  durationMinutes?: undefined;
8723
8883
  candidates?: undefined;
8884
+ candidateWindow?: undefined;
8885
+ hold?: undefined;
8724
8886
  };
8725
8887
  required: string[];
8726
8888
  additionalProperties: boolean;
8889
+ oneOf?: undefined;
8727
8890
  };
8728
8891
  constraints: {
8729
8892
  rate_bucket: string;
@@ -8922,9 +9085,12 @@ declare const ACTION_REGISTRY: {
8922
9085
  topic?: undefined;
8923
9086
  durationMinutes?: undefined;
8924
9087
  candidates?: undefined;
9088
+ candidateWindow?: undefined;
9089
+ hold?: undefined;
8925
9090
  };
8926
9091
  required: string[];
8927
9092
  additionalProperties: boolean;
9093
+ oneOf?: undefined;
8928
9094
  };
8929
9095
  constraints: {
8930
9096
  rate_bucket: string;
@@ -9113,9 +9279,12 @@ declare const ACTION_REGISTRY: {
9113
9279
  topic?: undefined;
9114
9280
  durationMinutes?: undefined;
9115
9281
  candidates?: undefined;
9282
+ candidateWindow?: undefined;
9283
+ hold?: undefined;
9116
9284
  };
9117
9285
  required: string[];
9118
9286
  additionalProperties: boolean;
9287
+ oneOf?: undefined;
9119
9288
  };
9120
9289
  constraints: {
9121
9290
  rate_bucket: string;
@@ -9321,9 +9490,12 @@ declare const ACTION_REGISTRY: {
9321
9490
  topic?: undefined;
9322
9491
  durationMinutes?: undefined;
9323
9492
  candidates?: undefined;
9493
+ candidateWindow?: undefined;
9494
+ hold?: undefined;
9324
9495
  };
9325
9496
  required: string[];
9326
9497
  additionalProperties: boolean;
9498
+ oneOf?: undefined;
9327
9499
  };
9328
9500
  constraints: {
9329
9501
  rate_bucket: string;
@@ -9524,9 +9696,12 @@ declare const ACTION_REGISTRY: {
9524
9696
  topic?: undefined;
9525
9697
  durationMinutes?: undefined;
9526
9698
  candidates?: undefined;
9699
+ candidateWindow?: undefined;
9700
+ hold?: undefined;
9527
9701
  };
9528
9702
  required: string[];
9529
9703
  additionalProperties: boolean;
9704
+ oneOf?: undefined;
9530
9705
  };
9531
9706
  constraints: {
9532
9707
  rate_bucket: string;
@@ -9726,9 +9901,12 @@ declare const ACTION_REGISTRY: {
9726
9901
  topic?: undefined;
9727
9902
  durationMinutes?: undefined;
9728
9903
  candidates?: undefined;
9904
+ candidateWindow?: undefined;
9905
+ hold?: undefined;
9729
9906
  };
9730
9907
  required: string[];
9731
9908
  additionalProperties: boolean;
9909
+ oneOf?: undefined;
9732
9910
  };
9733
9911
  constraints: {
9734
9912
  rate_bucket: string;
@@ -9927,9 +10105,12 @@ declare const ACTION_REGISTRY: {
9927
10105
  topic?: undefined;
9928
10106
  durationMinutes?: undefined;
9929
10107
  candidates?: undefined;
10108
+ candidateWindow?: undefined;
10109
+ hold?: undefined;
9930
10110
  };
9931
10111
  required: string[];
9932
10112
  additionalProperties: boolean;
10113
+ oneOf?: undefined;
9933
10114
  };
9934
10115
  constraints: {
9935
10116
  rate_bucket: string;
@@ -10125,9 +10306,12 @@ declare const ACTION_REGISTRY: {
10125
10306
  topic?: undefined;
10126
10307
  durationMinutes?: undefined;
10127
10308
  candidates?: undefined;
10309
+ candidateWindow?: undefined;
10310
+ hold?: undefined;
10128
10311
  };
10129
10312
  required: string[];
10130
10313
  additionalProperties: boolean;
10314
+ oneOf?: undefined;
10131
10315
  };
10132
10316
  constraints: {
10133
10317
  rate_bucket: string;
@@ -10345,9 +10529,12 @@ declare const ACTION_REGISTRY: {
10345
10529
  topic?: undefined;
10346
10530
  durationMinutes?: undefined;
10347
10531
  candidates?: undefined;
10532
+ candidateWindow?: undefined;
10533
+ hold?: undefined;
10348
10534
  };
10349
10535
  required: string[];
10350
10536
  additionalProperties: boolean;
10537
+ oneOf?: undefined;
10351
10538
  };
10352
10539
  constraints: {
10353
10540
  rate_bucket: string;
@@ -10553,9 +10740,12 @@ declare const ACTION_REGISTRY: {
10553
10740
  topic?: undefined;
10554
10741
  durationMinutes?: undefined;
10555
10742
  candidates?: undefined;
10743
+ candidateWindow?: undefined;
10744
+ hold?: undefined;
10556
10745
  };
10557
10746
  required: string[];
10558
10747
  additionalProperties: boolean;
10748
+ oneOf?: undefined;
10559
10749
  };
10560
10750
  constraints: {
10561
10751
  rate_bucket: string;
@@ -10747,9 +10937,12 @@ declare const ACTION_REGISTRY: {
10747
10937
  topic?: undefined;
10748
10938
  durationMinutes?: undefined;
10749
10939
  candidates?: undefined;
10940
+ candidateWindow?: undefined;
10941
+ hold?: undefined;
10750
10942
  };
10751
10943
  required: string[];
10752
10944
  additionalProperties: boolean;
10945
+ oneOf?: undefined;
10753
10946
  };
10754
10947
  constraints: {
10755
10948
  rate_bucket: string;
@@ -10945,9 +11138,12 @@ declare const ACTION_REGISTRY: {
10945
11138
  topic?: undefined;
10946
11139
  durationMinutes?: undefined;
10947
11140
  candidates?: undefined;
11141
+ candidateWindow?: undefined;
11142
+ hold?: undefined;
10948
11143
  };
10949
11144
  required: string[];
10950
11145
  additionalProperties: boolean;
11146
+ oneOf?: undefined;
10951
11147
  };
10952
11148
  constraints: {
10953
11149
  rate_bucket: string;
@@ -11149,9 +11345,12 @@ declare const ACTION_REGISTRY: {
11149
11345
  topic?: undefined;
11150
11346
  durationMinutes?: undefined;
11151
11347
  candidates?: undefined;
11348
+ candidateWindow?: undefined;
11349
+ hold?: undefined;
11152
11350
  };
11153
11351
  required: string[];
11154
11352
  additionalProperties: boolean;
11353
+ oneOf?: undefined;
11155
11354
  };
11156
11355
  constraints: {
11157
11356
  rate_bucket: string;
@@ -11346,9 +11545,12 @@ declare const ACTION_REGISTRY: {
11346
11545
  topic?: undefined;
11347
11546
  durationMinutes?: undefined;
11348
11547
  candidates?: undefined;
11548
+ candidateWindow?: undefined;
11549
+ hold?: undefined;
11349
11550
  };
11350
11551
  required: string[];
11351
11552
  additionalProperties: boolean;
11553
+ oneOf?: undefined;
11352
11554
  };
11353
11555
  constraints: {
11354
11556
  rate_bucket: string;
@@ -11560,9 +11762,12 @@ declare const ACTION_REGISTRY: {
11560
11762
  topic?: undefined;
11561
11763
  durationMinutes?: undefined;
11562
11764
  candidates?: undefined;
11765
+ candidateWindow?: undefined;
11766
+ hold?: undefined;
11563
11767
  };
11564
11768
  required: string[];
11565
11769
  additionalProperties: boolean;
11770
+ oneOf?: undefined;
11566
11771
  };
11567
11772
  constraints: {
11568
11773
  rate_bucket: string;
@@ -11770,9 +11975,12 @@ declare const ACTION_REGISTRY: {
11770
11975
  topic?: undefined;
11771
11976
  durationMinutes?: undefined;
11772
11977
  candidates?: undefined;
11978
+ candidateWindow?: undefined;
11979
+ hold?: undefined;
11773
11980
  };
11774
11981
  required: string[];
11775
11982
  additionalProperties: boolean;
11983
+ oneOf?: undefined;
11776
11984
  };
11777
11985
  constraints: {
11778
11986
  rate_bucket: string;
@@ -11971,9 +12179,12 @@ declare const ACTION_REGISTRY: {
11971
12179
  topic?: undefined;
11972
12180
  durationMinutes?: undefined;
11973
12181
  candidates?: undefined;
12182
+ candidateWindow?: undefined;
12183
+ hold?: undefined;
11974
12184
  };
11975
12185
  required: string[];
11976
12186
  additionalProperties: boolean;
12187
+ oneOf?: undefined;
11977
12188
  };
11978
12189
  constraints: {
11979
12190
  rate_bucket: string;
@@ -12174,9 +12385,12 @@ declare const ACTION_REGISTRY: {
12174
12385
  topic?: undefined;
12175
12386
  durationMinutes?: undefined;
12176
12387
  candidates?: undefined;
12388
+ candidateWindow?: undefined;
12389
+ hold?: undefined;
12177
12390
  };
12178
12391
  required: string[];
12179
12392
  additionalProperties: boolean;
12393
+ oneOf?: undefined;
12180
12394
  };
12181
12395
  constraints: {
12182
12396
  rate_bucket: string;
@@ -12376,9 +12590,12 @@ declare const ACTION_REGISTRY: {
12376
12590
  topic?: undefined;
12377
12591
  durationMinutes?: undefined;
12378
12592
  candidates?: undefined;
12593
+ candidateWindow?: undefined;
12594
+ hold?: undefined;
12379
12595
  };
12380
12596
  required: string[];
12381
12597
  additionalProperties: boolean;
12598
+ oneOf?: undefined;
12382
12599
  };
12383
12600
  constraints: {
12384
12601
  rate_bucket: string;
@@ -12566,9 +12783,12 @@ declare const ACTION_REGISTRY: {
12566
12783
  topic?: undefined;
12567
12784
  durationMinutes?: undefined;
12568
12785
  candidates?: undefined;
12786
+ candidateWindow?: undefined;
12787
+ hold?: undefined;
12569
12788
  };
12570
12789
  required: string[];
12571
12790
  additionalProperties: boolean;
12791
+ oneOf?: undefined;
12572
12792
  };
12573
12793
  constraints: {
12574
12794
  rate_bucket: string;
@@ -12764,9 +12984,12 @@ declare const ACTION_REGISTRY: {
12764
12984
  topic?: undefined;
12765
12985
  durationMinutes?: undefined;
12766
12986
  candidates?: undefined;
12987
+ candidateWindow?: undefined;
12988
+ hold?: undefined;
12767
12989
  };
12768
12990
  required: string[];
12769
12991
  additionalProperties: boolean;
12992
+ oneOf?: undefined;
12770
12993
  };
12771
12994
  constraints: {
12772
12995
  rate_bucket: string;
@@ -12972,9 +13195,12 @@ declare const ACTION_REGISTRY: {
12972
13195
  topic?: undefined;
12973
13196
  durationMinutes?: undefined;
12974
13197
  candidates?: undefined;
13198
+ candidateWindow?: undefined;
13199
+ hold?: undefined;
12975
13200
  };
12976
13201
  required: string[];
12977
13202
  additionalProperties: boolean;
13203
+ oneOf?: undefined;
12978
13204
  };
12979
13205
  constraints: {
12980
13206
  rate_bucket: string;
@@ -13169,9 +13395,12 @@ declare const ACTION_REGISTRY: {
13169
13395
  topic?: undefined;
13170
13396
  durationMinutes?: undefined;
13171
13397
  candidates?: undefined;
13398
+ candidateWindow?: undefined;
13399
+ hold?: undefined;
13172
13400
  };
13173
13401
  required: string[];
13174
13402
  additionalProperties: boolean;
13403
+ oneOf?: undefined;
13175
13404
  };
13176
13405
  constraints: {
13177
13406
  rate_bucket: string;
@@ -13376,9 +13605,12 @@ declare const ACTION_REGISTRY: {
13376
13605
  topic?: undefined;
13377
13606
  durationMinutes?: undefined;
13378
13607
  candidates?: undefined;
13608
+ candidateWindow?: undefined;
13609
+ hold?: undefined;
13379
13610
  };
13380
13611
  required: string[];
13381
13612
  additionalProperties: boolean;
13613
+ oneOf?: undefined;
13382
13614
  };
13383
13615
  constraints: {
13384
13616
  rate_bucket: string;
@@ -13574,9 +13806,12 @@ declare const ACTION_REGISTRY: {
13574
13806
  topic?: undefined;
13575
13807
  durationMinutes?: undefined;
13576
13808
  candidates?: undefined;
13809
+ candidateWindow?: undefined;
13810
+ hold?: undefined;
13577
13811
  };
13578
13812
  required: string[];
13579
13813
  additionalProperties: boolean;
13814
+ oneOf?: undefined;
13580
13815
  };
13581
13816
  constraints: {
13582
13817
  rate_bucket: string;
@@ -13777,9 +14012,12 @@ declare const ACTION_REGISTRY: {
13777
14012
  topic?: undefined;
13778
14013
  durationMinutes?: undefined;
13779
14014
  candidates?: undefined;
14015
+ candidateWindow?: undefined;
14016
+ hold?: undefined;
13780
14017
  };
13781
14018
  required: never[];
13782
14019
  additionalProperties: boolean;
14020
+ oneOf?: undefined;
13783
14021
  };
13784
14022
  constraints: {
13785
14023
  rate_bucket: string;
@@ -13963,9 +14201,12 @@ declare const ACTION_REGISTRY: {
13963
14201
  topic?: undefined;
13964
14202
  durationMinutes?: undefined;
13965
14203
  candidates?: undefined;
14204
+ candidateWindow?: undefined;
14205
+ hold?: undefined;
13966
14206
  };
13967
14207
  required: never[];
13968
14208
  additionalProperties: boolean;
14209
+ oneOf?: undefined;
13969
14210
  };
13970
14211
  constraints: {
13971
14212
  rate_bucket: string;
@@ -14162,9 +14403,12 @@ declare const ACTION_REGISTRY: {
14162
14403
  topic?: undefined;
14163
14404
  durationMinutes?: undefined;
14164
14405
  candidates?: undefined;
14406
+ candidateWindow?: undefined;
14407
+ hold?: undefined;
14165
14408
  };
14166
14409
  required: string[];
14167
14410
  additionalProperties: boolean;
14411
+ oneOf?: undefined;
14168
14412
  };
14169
14413
  constraints: {
14170
14414
  rate_bucket: string;
@@ -14365,9 +14609,12 @@ declare const ACTION_REGISTRY: {
14365
14609
  topic?: undefined;
14366
14610
  durationMinutes?: undefined;
14367
14611
  candidates?: undefined;
14612
+ candidateWindow?: undefined;
14613
+ hold?: undefined;
14368
14614
  };
14369
14615
  required: string[];
14370
14616
  additionalProperties: boolean;
14617
+ oneOf?: undefined;
14371
14618
  };
14372
14619
  constraints: {
14373
14620
  rate_bucket: string;
@@ -14572,9 +14819,12 @@ declare const ACTION_REGISTRY: {
14572
14819
  topic?: undefined;
14573
14820
  durationMinutes?: undefined;
14574
14821
  candidates?: undefined;
14822
+ candidateWindow?: undefined;
14823
+ hold?: undefined;
14575
14824
  };
14576
14825
  required: never[];
14577
14826
  additionalProperties: boolean;
14827
+ oneOf?: undefined;
14578
14828
  };
14579
14829
  constraints: {
14580
14830
  rate_bucket: string;
@@ -14762,9 +15012,12 @@ declare const ACTION_REGISTRY: {
14762
15012
  topic?: undefined;
14763
15013
  durationMinutes?: undefined;
14764
15014
  candidates?: undefined;
15015
+ candidateWindow?: undefined;
15016
+ hold?: undefined;
14765
15017
  };
14766
15018
  required: string[];
14767
15019
  additionalProperties: boolean;
15020
+ oneOf?: undefined;
14768
15021
  };
14769
15022
  constraints: {
14770
15023
  rate_bucket: string;
@@ -14951,9 +15204,12 @@ declare const ACTION_REGISTRY: {
14951
15204
  topic?: undefined;
14952
15205
  durationMinutes?: undefined;
14953
15206
  candidates?: undefined;
15207
+ candidateWindow?: undefined;
15208
+ hold?: undefined;
14954
15209
  };
14955
15210
  required: never[];
14956
15211
  additionalProperties: boolean;
15212
+ oneOf?: undefined;
14957
15213
  };
14958
15214
  constraints: {
14959
15215
  rate_bucket: string;
@@ -15144,9 +15400,12 @@ declare const ACTION_REGISTRY: {
15144
15400
  topic?: undefined;
15145
15401
  durationMinutes?: undefined;
15146
15402
  candidates?: undefined;
15403
+ candidateWindow?: undefined;
15404
+ hold?: undefined;
15147
15405
  };
15148
15406
  required: string[];
15149
15407
  additionalProperties: boolean;
15408
+ oneOf?: undefined;
15150
15409
  };
15151
15410
  constraints: {
15152
15411
  rate_bucket: string;
@@ -15344,9 +15603,12 @@ declare const ACTION_REGISTRY: {
15344
15603
  topic?: undefined;
15345
15604
  durationMinutes?: undefined;
15346
15605
  candidates?: undefined;
15606
+ candidateWindow?: undefined;
15607
+ hold?: undefined;
15347
15608
  };
15348
15609
  required: string[];
15349
15610
  additionalProperties: boolean;
15611
+ oneOf?: undefined;
15350
15612
  };
15351
15613
  constraints: {
15352
15614
  rate_bucket: string;
@@ -15541,9 +15803,12 @@ declare const ACTION_REGISTRY: {
15541
15803
  topic?: undefined;
15542
15804
  durationMinutes?: undefined;
15543
15805
  candidates?: undefined;
15806
+ candidateWindow?: undefined;
15807
+ hold?: undefined;
15544
15808
  };
15545
15809
  required: string[];
15546
15810
  additionalProperties: boolean;
15811
+ oneOf?: undefined;
15547
15812
  };
15548
15813
  constraints: {
15549
15814
  rate_bucket: string;
@@ -15731,9 +15996,12 @@ declare const ACTION_REGISTRY: {
15731
15996
  topic?: undefined;
15732
15997
  durationMinutes?: undefined;
15733
15998
  candidates?: undefined;
15999
+ candidateWindow?: undefined;
16000
+ hold?: undefined;
15734
16001
  };
15735
16002
  required: string[];
15736
16003
  additionalProperties: boolean;
16004
+ oneOf?: undefined;
15737
16005
  };
15738
16006
  constraints: {
15739
16007
  rate_bucket: string;
@@ -15933,9 +16201,12 @@ declare const ACTION_REGISTRY: {
15933
16201
  topic?: undefined;
15934
16202
  durationMinutes?: undefined;
15935
16203
  candidates?: undefined;
16204
+ candidateWindow?: undefined;
16205
+ hold?: undefined;
15936
16206
  };
15937
16207
  required: never[];
15938
16208
  additionalProperties: boolean;
16209
+ oneOf?: undefined;
15939
16210
  };
15940
16211
  constraints: {
15941
16212
  rate_bucket: string;
@@ -16131,9 +16402,12 @@ declare const ACTION_REGISTRY: {
16131
16402
  topic?: undefined;
16132
16403
  durationMinutes?: undefined;
16133
16404
  candidates?: undefined;
16405
+ candidateWindow?: undefined;
16406
+ hold?: undefined;
16134
16407
  };
16135
16408
  required: string[];
16136
16409
  additionalProperties: boolean;
16410
+ oneOf?: undefined;
16137
16411
  };
16138
16412
  constraints: {
16139
16413
  rate_bucket: string;
@@ -16327,9 +16601,12 @@ declare const ACTION_REGISTRY: {
16327
16601
  topic?: undefined;
16328
16602
  durationMinutes?: undefined;
16329
16603
  candidates?: undefined;
16604
+ candidateWindow?: undefined;
16605
+ hold?: undefined;
16330
16606
  };
16331
16607
  required: string[];
16332
16608
  additionalProperties: boolean;
16609
+ oneOf?: undefined;
16333
16610
  };
16334
16611
  constraints: {
16335
16612
  rate_bucket: string;
@@ -16516,9 +16793,12 @@ declare const ACTION_REGISTRY: {
16516
16793
  topic?: undefined;
16517
16794
  durationMinutes?: undefined;
16518
16795
  candidates?: undefined;
16796
+ candidateWindow?: undefined;
16797
+ hold?: undefined;
16519
16798
  };
16520
16799
  required: string[];
16521
16800
  additionalProperties: boolean;
16801
+ oneOf?: undefined;
16522
16802
  };
16523
16803
  constraints: {
16524
16804
  rate_bucket: string;
@@ -16726,9 +17006,12 @@ declare const ACTION_REGISTRY: {
16726
17006
  topic?: undefined;
16727
17007
  durationMinutes?: undefined;
16728
17008
  candidates?: undefined;
17009
+ candidateWindow?: undefined;
17010
+ hold?: undefined;
16729
17011
  };
16730
17012
  required: string[];
16731
17013
  additionalProperties: boolean;
17014
+ oneOf?: undefined;
16732
17015
  };
16733
17016
  constraints: {
16734
17017
  rate_bucket: string;
@@ -16927,9 +17210,12 @@ declare const ACTION_REGISTRY: {
16927
17210
  topic?: undefined;
16928
17211
  durationMinutes?: undefined;
16929
17212
  candidates?: undefined;
17213
+ candidateWindow?: undefined;
17214
+ hold?: undefined;
16930
17215
  };
16931
17216
  required: string[];
16932
17217
  additionalProperties: boolean;
17218
+ oneOf?: undefined;
16933
17219
  };
16934
17220
  constraints: {
16935
17221
  rate_bucket: string;
@@ -17127,9 +17413,12 @@ declare const ACTION_REGISTRY: {
17127
17413
  topic?: undefined;
17128
17414
  durationMinutes?: undefined;
17129
17415
  candidates?: undefined;
17416
+ candidateWindow?: undefined;
17417
+ hold?: undefined;
17130
17418
  };
17131
17419
  additionalProperties: boolean;
17132
17420
  required?: undefined;
17421
+ oneOf?: undefined;
17133
17422
  };
17134
17423
  constraints: {
17135
17424
  rate_bucket: string;
@@ -17320,9 +17609,12 @@ declare const ACTION_REGISTRY: {
17320
17609
  topic?: undefined;
17321
17610
  durationMinutes?: undefined;
17322
17611
  candidates?: undefined;
17612
+ candidateWindow?: undefined;
17613
+ hold?: undefined;
17323
17614
  };
17324
17615
  required: string[];
17325
17616
  additionalProperties: boolean;
17617
+ oneOf?: undefined;
17326
17618
  };
17327
17619
  constraints: {
17328
17620
  rate_bucket: string;
@@ -17344,6 +17636,204 @@ declare const ACTION_REGISTRY: {
17344
17636
  secondary?: undefined;
17345
17637
  };
17346
17638
  version: string;
17639
+ } | {
17640
+ action: string;
17641
+ resource_type: string;
17642
+ required_relations: string[];
17643
+ required_scopes: string[];
17644
+ capability: string;
17645
+ input_schema: {
17646
+ type: string;
17647
+ properties: {
17648
+ calendarId: {
17649
+ type: string;
17650
+ description: string;
17651
+ };
17652
+ timeMin: {
17653
+ type: string;
17654
+ description: string;
17655
+ };
17656
+ timeMax: {
17657
+ type: string;
17658
+ description: string;
17659
+ };
17660
+ channel?: undefined;
17661
+ text?: undefined;
17662
+ thread_ts?: undefined;
17663
+ username?: undefined;
17664
+ icon_emoji?: undefined;
17665
+ blocks?: undefined;
17666
+ userId?: undefined;
17667
+ latest?: undefined;
17668
+ oldest?: undefined;
17669
+ limit?: undefined;
17670
+ inclusive?: undefined;
17671
+ cursor?: undefined;
17672
+ ts?: undefined;
17673
+ owner?: undefined;
17674
+ repo?: undefined;
17675
+ title?: undefined;
17676
+ body?: undefined;
17677
+ labels?: undefined;
17678
+ assignees?: undefined;
17679
+ milestone?: undefined;
17680
+ state?: undefined;
17681
+ sort?: undefined;
17682
+ direction?: undefined;
17683
+ per_page?: undefined;
17684
+ page?: undefined;
17685
+ issueNumber?: undefined;
17686
+ head?: undefined;
17687
+ base?: undefined;
17688
+ draft?: undefined;
17689
+ pullNumber?: undefined;
17690
+ commitTitle?: undefined;
17691
+ commitMessage?: undefined;
17692
+ mergeMethod?: undefined;
17693
+ event?: undefined;
17694
+ commentId?: undefined;
17695
+ expectedHeadSha?: undefined;
17696
+ query?: undefined;
17697
+ order?: undefined;
17698
+ path?: undefined;
17699
+ ref?: undefined;
17700
+ treeSha?: undefined;
17701
+ recursive?: undefined;
17702
+ sha?: undefined;
17703
+ author?: undefined;
17704
+ since?: undefined;
17705
+ until?: undefined;
17706
+ tag?: undefined;
17707
+ name?: undefined;
17708
+ description?: undefined;
17709
+ private?: undefined;
17710
+ org?: undefined;
17711
+ autoInit?: undefined;
17712
+ organization?: undefined;
17713
+ message?: undefined;
17714
+ content?: undefined;
17715
+ branch?: undefined;
17716
+ fromBranch?: undefined;
17717
+ subIssueId?: undefined;
17718
+ color?: undefined;
17719
+ newName?: undefined;
17720
+ workflowId?: undefined;
17721
+ inputs?: undefined;
17722
+ jobId?: undefined;
17723
+ teamSlug?: undefined;
17724
+ all?: undefined;
17725
+ participating?: undefined;
17726
+ before?: undefined;
17727
+ threadId?: undefined;
17728
+ lastReadAt?: undefined;
17729
+ ignored?: undefined;
17730
+ subscribed?: undefined;
17731
+ files?: undefined;
17732
+ public?: undefined;
17733
+ gistId?: undefined;
17734
+ maxResults?: undefined;
17735
+ messageId?: undefined;
17736
+ to?: undefined;
17737
+ subject?: undefined;
17738
+ cc?: undefined;
17739
+ bcc?: undefined;
17740
+ inReplyTo?: undefined;
17741
+ references?: undefined;
17742
+ messageIds?: undefined;
17743
+ eventId?: undefined;
17744
+ summary?: undefined;
17745
+ start?: undefined;
17746
+ end?: undefined;
17747
+ attendees?: undefined;
17748
+ location?: undefined;
17749
+ addMeet?: undefined;
17750
+ meetRequestId?: undefined;
17751
+ recent?: undefined;
17752
+ projectKeyOrId?: undefined;
17753
+ type?: undefined;
17754
+ boardId?: undefined;
17755
+ sprintId?: undefined;
17756
+ jql?: undefined;
17757
+ startAt?: undefined;
17758
+ issueIdOrKey?: undefined;
17759
+ projectKey?: undefined;
17760
+ issueTypeName?: undefined;
17761
+ priority?: undefined;
17762
+ assigneeAccountId?: undefined;
17763
+ transitionId?: undefined;
17764
+ typeName?: undefined;
17765
+ inwardIssueKey?: undefined;
17766
+ outwardIssueKey?: undefined;
17767
+ commentBody?: undefined;
17768
+ linkId?: undefined;
17769
+ file_path?: undefined;
17770
+ command?: undefined;
17771
+ working_directory?: undefined;
17772
+ env_profile?: undefined;
17773
+ timeout_seconds?: undefined;
17774
+ objectType?: undefined;
17775
+ after?: undefined;
17776
+ properties?: undefined;
17777
+ archived?: undefined;
17778
+ filterGroups?: undefined;
17779
+ sorts?: undefined;
17780
+ idProperty?: undefined;
17781
+ propertyName?: undefined;
17782
+ label?: undefined;
17783
+ fieldType?: undefined;
17784
+ groupName?: undefined;
17785
+ options?: undefined;
17786
+ objectId?: undefined;
17787
+ toObjectType?: undefined;
17788
+ fromObjectType?: undefined;
17789
+ engagementId?: undefined;
17790
+ ownerId?: undefined;
17791
+ timestamp?: undefined;
17792
+ associations?: undefined;
17793
+ metadata?: undefined;
17794
+ flowId?: undefined;
17795
+ portalId?: undefined;
17796
+ uiDomain?: undefined;
17797
+ pageRequests?: undefined;
17798
+ taskType?: undefined;
17799
+ payload?: undefined;
17800
+ id?: undefined;
17801
+ action?: undefined;
17802
+ data?: undefined;
17803
+ types?: undefined;
17804
+ status?: undefined;
17805
+ token?: undefined;
17806
+ result?: undefined;
17807
+ topic?: undefined;
17808
+ durationMinutes?: undefined;
17809
+ candidates?: undefined;
17810
+ candidateWindow?: undefined;
17811
+ hold?: undefined;
17812
+ };
17813
+ required: string[];
17814
+ additionalProperties: boolean;
17815
+ oneOf?: undefined;
17816
+ };
17817
+ constraints: {
17818
+ rate_bucket: string;
17819
+ };
17820
+ effects: string[];
17821
+ risk: string;
17822
+ target_bindings: {
17823
+ resource_id: {
17824
+ source: "param";
17825
+ param: string;
17826
+ required: boolean;
17827
+ default: string;
17828
+ fallback_param?: undefined;
17829
+ key?: undefined;
17830
+ multi?: undefined;
17831
+ separator?: undefined;
17832
+ derive?: undefined;
17833
+ };
17834
+ secondary?: undefined;
17835
+ };
17836
+ version: string;
17347
17837
  } | {
17348
17838
  action: string;
17349
17839
  resource_type: string;
@@ -17571,9 +18061,12 @@ declare const ACTION_REGISTRY: {
17571
18061
  topic?: undefined;
17572
18062
  durationMinutes?: undefined;
17573
18063
  candidates?: undefined;
18064
+ candidateWindow?: undefined;
18065
+ hold?: undefined;
17574
18066
  };
17575
18067
  required: string[];
17576
18068
  additionalProperties: boolean;
18069
+ oneOf?: undefined;
17577
18070
  };
17578
18071
  constraints: {
17579
18072
  rate_bucket: string;
@@ -17833,9 +18326,12 @@ declare const ACTION_REGISTRY: {
17833
18326
  topic?: undefined;
17834
18327
  durationMinutes?: undefined;
17835
18328
  candidates?: undefined;
18329
+ candidateWindow?: undefined;
18330
+ hold?: undefined;
17836
18331
  };
17837
18332
  required: string[];
17838
18333
  additionalProperties: boolean;
18334
+ oneOf?: undefined;
17839
18335
  };
17840
18336
  constraints: {
17841
18337
  rate_bucket: string;
@@ -18033,9 +18529,12 @@ declare const ACTION_REGISTRY: {
18033
18529
  topic?: undefined;
18034
18530
  durationMinutes?: undefined;
18035
18531
  candidates?: undefined;
18532
+ candidateWindow?: undefined;
18533
+ hold?: undefined;
18036
18534
  };
18037
18535
  required: string[];
18038
18536
  additionalProperties: boolean;
18537
+ oneOf?: undefined;
18039
18538
  };
18040
18539
  constraints: {
18041
18540
  rate_bucket: string;
@@ -18221,9 +18720,12 @@ declare const ACTION_REGISTRY: {
18221
18720
  topic?: undefined;
18222
18721
  durationMinutes?: undefined;
18223
18722
  candidates?: undefined;
18723
+ candidateWindow?: undefined;
18724
+ hold?: undefined;
18224
18725
  };
18225
18726
  additionalProperties: boolean;
18226
18727
  required?: undefined;
18728
+ oneOf?: undefined;
18227
18729
  };
18228
18730
  constraints: {
18229
18731
  rate_bucket: string;
@@ -18412,9 +18914,12 @@ declare const ACTION_REGISTRY: {
18412
18914
  topic?: undefined;
18413
18915
  durationMinutes?: undefined;
18414
18916
  candidates?: undefined;
18917
+ candidateWindow?: undefined;
18918
+ hold?: undefined;
18415
18919
  };
18416
18920
  additionalProperties: boolean;
18417
18921
  required?: undefined;
18922
+ oneOf?: undefined;
18418
18923
  };
18419
18924
  constraints: {
18420
18925
  rate_bucket: string;
@@ -18605,9 +19110,12 @@ declare const ACTION_REGISTRY: {
18605
19110
  topic?: undefined;
18606
19111
  durationMinutes?: undefined;
18607
19112
  candidates?: undefined;
19113
+ candidateWindow?: undefined;
19114
+ hold?: undefined;
18608
19115
  };
18609
19116
  required: string[];
18610
19117
  additionalProperties: boolean;
19118
+ oneOf?: undefined;
18611
19119
  };
18612
19120
  constraints: {
18613
19121
  rate_bucket: string;
@@ -18799,9 +19307,12 @@ declare const ACTION_REGISTRY: {
18799
19307
  topic?: undefined;
18800
19308
  durationMinutes?: undefined;
18801
19309
  candidates?: undefined;
19310
+ candidateWindow?: undefined;
19311
+ hold?: undefined;
18802
19312
  };
18803
19313
  required: string[];
18804
19314
  additionalProperties: boolean;
19315
+ oneOf?: undefined;
18805
19316
  };
18806
19317
  constraints: {
18807
19318
  rate_bucket: string;
@@ -18996,9 +19507,12 @@ declare const ACTION_REGISTRY: {
18996
19507
  topic?: undefined;
18997
19508
  durationMinutes?: undefined;
18998
19509
  candidates?: undefined;
19510
+ candidateWindow?: undefined;
19511
+ hold?: undefined;
18999
19512
  };
19000
19513
  required: string[];
19001
19514
  additionalProperties: boolean;
19515
+ oneOf?: undefined;
19002
19516
  };
19003
19517
  constraints: {
19004
19518
  rate_bucket: string;
@@ -19185,9 +19699,12 @@ declare const ACTION_REGISTRY: {
19185
19699
  topic?: undefined;
19186
19700
  durationMinutes?: undefined;
19187
19701
  candidates?: undefined;
19702
+ candidateWindow?: undefined;
19703
+ hold?: undefined;
19188
19704
  };
19189
19705
  required: string[];
19190
19706
  additionalProperties: boolean;
19707
+ oneOf?: undefined;
19191
19708
  };
19192
19709
  constraints: {
19193
19710
  rate_bucket: string;
@@ -19398,9 +19915,12 @@ declare const ACTION_REGISTRY: {
19398
19915
  topic?: undefined;
19399
19916
  durationMinutes?: undefined;
19400
19917
  candidates?: undefined;
19918
+ candidateWindow?: undefined;
19919
+ hold?: undefined;
19401
19920
  };
19402
19921
  required: string[];
19403
19922
  additionalProperties: boolean;
19923
+ oneOf?: undefined;
19404
19924
  };
19405
19925
  constraints: {
19406
19926
  rate_bucket: string;
@@ -19607,9 +20127,12 @@ declare const ACTION_REGISTRY: {
19607
20127
  topic?: undefined;
19608
20128
  durationMinutes?: undefined;
19609
20129
  candidates?: undefined;
20130
+ candidateWindow?: undefined;
20131
+ hold?: undefined;
19610
20132
  };
19611
20133
  required: string[];
19612
20134
  additionalProperties: boolean;
20135
+ oneOf?: undefined;
19613
20136
  };
19614
20137
  constraints: {
19615
20138
  rate_bucket: string;
@@ -19796,9 +20319,12 @@ declare const ACTION_REGISTRY: {
19796
20319
  topic?: undefined;
19797
20320
  durationMinutes?: undefined;
19798
20321
  candidates?: undefined;
20322
+ candidateWindow?: undefined;
20323
+ hold?: undefined;
19799
20324
  };
19800
20325
  required: string[];
19801
20326
  additionalProperties: boolean;
20327
+ oneOf?: undefined;
19802
20328
  };
19803
20329
  constraints: {
19804
20330
  rate_bucket: string;
@@ -19998,9 +20524,12 @@ declare const ACTION_REGISTRY: {
19998
20524
  topic?: undefined;
19999
20525
  durationMinutes?: undefined;
20000
20526
  candidates?: undefined;
20527
+ candidateWindow?: undefined;
20528
+ hold?: undefined;
20001
20529
  };
20002
20530
  required: string[];
20003
20531
  additionalProperties: boolean;
20532
+ oneOf?: undefined;
20004
20533
  };
20005
20534
  constraints: {
20006
20535
  rate_bucket: string;
@@ -20192,9 +20721,12 @@ declare const ACTION_REGISTRY: {
20192
20721
  topic?: undefined;
20193
20722
  durationMinutes?: undefined;
20194
20723
  candidates?: undefined;
20724
+ candidateWindow?: undefined;
20725
+ hold?: undefined;
20195
20726
  };
20196
20727
  required: string[];
20197
20728
  additionalProperties: boolean;
20729
+ oneOf?: undefined;
20198
20730
  };
20199
20731
  constraints: {
20200
20732
  rate_bucket: string;
@@ -20384,9 +20916,12 @@ declare const ACTION_REGISTRY: {
20384
20916
  topic?: undefined;
20385
20917
  durationMinutes?: undefined;
20386
20918
  candidates?: undefined;
20919
+ candidateWindow?: undefined;
20920
+ hold?: undefined;
20387
20921
  };
20388
20922
  required: string[];
20389
20923
  additionalProperties: boolean;
20924
+ oneOf?: undefined;
20390
20925
  };
20391
20926
  constraints: {
20392
20927
  rate_bucket: string;
@@ -20581,9 +21116,12 @@ declare const ACTION_REGISTRY: {
20581
21116
  topic?: undefined;
20582
21117
  durationMinutes?: undefined;
20583
21118
  candidates?: undefined;
21119
+ candidateWindow?: undefined;
21120
+ hold?: undefined;
20584
21121
  };
20585
21122
  additionalProperties: boolean;
20586
21123
  required?: undefined;
21124
+ oneOf?: undefined;
20587
21125
  };
20588
21126
  constraints: {
20589
21127
  rate_bucket: string;
@@ -20779,9 +21317,12 @@ declare const ACTION_REGISTRY: {
20779
21317
  topic?: undefined;
20780
21318
  durationMinutes?: undefined;
20781
21319
  candidates?: undefined;
21320
+ candidateWindow?: undefined;
21321
+ hold?: undefined;
20782
21322
  };
20783
21323
  required: string[];
20784
21324
  additionalProperties: boolean;
21325
+ oneOf?: undefined;
20785
21326
  };
20786
21327
  constraints: {
20787
21328
  rate_bucket: string;
@@ -20969,9 +21510,12 @@ declare const ACTION_REGISTRY: {
20969
21510
  topic?: undefined;
20970
21511
  durationMinutes?: undefined;
20971
21512
  candidates?: undefined;
21513
+ candidateWindow?: undefined;
21514
+ hold?: undefined;
20972
21515
  };
20973
21516
  required: string[];
20974
21517
  additionalProperties: boolean;
21518
+ oneOf?: undefined;
20975
21519
  };
20976
21520
  constraints: {
20977
21521
  rate_bucket: string;
@@ -21165,9 +21709,12 @@ declare const ACTION_REGISTRY: {
21165
21709
  topic?: undefined;
21166
21710
  durationMinutes?: undefined;
21167
21711
  candidates?: undefined;
21712
+ candidateWindow?: undefined;
21713
+ hold?: undefined;
21168
21714
  };
21169
21715
  required: string[];
21170
21716
  additionalProperties: boolean;
21717
+ oneOf?: undefined;
21171
21718
  };
21172
21719
  constraints: {
21173
21720
  rate_bucket: string;
@@ -21353,9 +21900,12 @@ declare const ACTION_REGISTRY: {
21353
21900
  topic?: undefined;
21354
21901
  durationMinutes?: undefined;
21355
21902
  candidates?: undefined;
21903
+ candidateWindow?: undefined;
21904
+ hold?: undefined;
21356
21905
  };
21357
21906
  required: string[];
21358
21907
  additionalProperties: boolean;
21908
+ oneOf?: undefined;
21359
21909
  };
21360
21910
  effects: string[];
21361
21911
  risk: string;
@@ -21544,9 +22094,12 @@ declare const ACTION_REGISTRY: {
21544
22094
  topic?: undefined;
21545
22095
  durationMinutes?: undefined;
21546
22096
  candidates?: undefined;
22097
+ candidateWindow?: undefined;
22098
+ hold?: undefined;
21547
22099
  };
21548
22100
  required: string[];
21549
22101
  additionalProperties: boolean;
22102
+ oneOf?: undefined;
21550
22103
  };
21551
22104
  effects: string[];
21552
22105
  risk: string;
@@ -21743,9 +22296,12 @@ declare const ACTION_REGISTRY: {
21743
22296
  topic?: undefined;
21744
22297
  durationMinutes?: undefined;
21745
22298
  candidates?: undefined;
22299
+ candidateWindow?: undefined;
22300
+ hold?: undefined;
21746
22301
  };
21747
22302
  required: string[];
21748
22303
  additionalProperties: boolean;
22304
+ oneOf?: undefined;
21749
22305
  };
21750
22306
  effects: string[];
21751
22307
  risk: string;
@@ -21944,9 +22500,12 @@ declare const ACTION_REGISTRY: {
21944
22500
  topic?: undefined;
21945
22501
  durationMinutes?: undefined;
21946
22502
  candidates?: undefined;
22503
+ candidateWindow?: undefined;
22504
+ hold?: undefined;
21947
22505
  };
21948
22506
  required: string[];
21949
22507
  additionalProperties: boolean;
22508
+ oneOf?: undefined;
21950
22509
  };
21951
22510
  constraints: {
21952
22511
  rate_bucket: string;
@@ -22156,9 +22715,12 @@ declare const ACTION_REGISTRY: {
22156
22715
  topic?: undefined;
22157
22716
  durationMinutes?: undefined;
22158
22717
  candidates?: undefined;
22718
+ candidateWindow?: undefined;
22719
+ hold?: undefined;
22159
22720
  };
22160
22721
  required: string[];
22161
22722
  additionalProperties: boolean;
22723
+ oneOf?: undefined;
22162
22724
  };
22163
22725
  constraints: {
22164
22726
  rate_bucket: string;
@@ -22369,9 +22931,12 @@ declare const ACTION_REGISTRY: {
22369
22931
  topic?: undefined;
22370
22932
  durationMinutes?: undefined;
22371
22933
  candidates?: undefined;
22934
+ candidateWindow?: undefined;
22935
+ hold?: undefined;
22372
22936
  };
22373
22937
  required: string[];
22374
22938
  additionalProperties: boolean;
22939
+ oneOf?: undefined;
22375
22940
  };
22376
22941
  constraints: {
22377
22942
  rate_bucket: string;
@@ -22577,9 +23142,12 @@ declare const ACTION_REGISTRY: {
22577
23142
  topic?: undefined;
22578
23143
  durationMinutes?: undefined;
22579
23144
  candidates?: undefined;
23145
+ candidateWindow?: undefined;
23146
+ hold?: undefined;
22580
23147
  };
22581
23148
  required: string[];
22582
23149
  additionalProperties: boolean;
23150
+ oneOf?: undefined;
22583
23151
  };
22584
23152
  constraints: {
22585
23153
  rate_bucket: string;
@@ -22785,9 +23353,12 @@ declare const ACTION_REGISTRY: {
22785
23353
  topic?: undefined;
22786
23354
  durationMinutes?: undefined;
22787
23355
  candidates?: undefined;
23356
+ candidateWindow?: undefined;
23357
+ hold?: undefined;
22788
23358
  };
22789
23359
  required: string[];
22790
23360
  additionalProperties: boolean;
23361
+ oneOf?: undefined;
22791
23362
  };
22792
23363
  constraints: {
22793
23364
  rate_bucket: string;
@@ -22976,9 +23547,12 @@ declare const ACTION_REGISTRY: {
22976
23547
  topic?: undefined;
22977
23548
  durationMinutes?: undefined;
22978
23549
  candidates?: undefined;
23550
+ candidateWindow?: undefined;
23551
+ hold?: undefined;
22979
23552
  };
22980
23553
  required: string[];
22981
23554
  additionalProperties: boolean;
23555
+ oneOf?: undefined;
22982
23556
  };
22983
23557
  constraints: {
22984
23558
  rate_bucket: string;
@@ -23168,9 +23742,12 @@ declare const ACTION_REGISTRY: {
23168
23742
  topic?: undefined;
23169
23743
  durationMinutes?: undefined;
23170
23744
  candidates?: undefined;
23745
+ candidateWindow?: undefined;
23746
+ hold?: undefined;
23171
23747
  };
23172
23748
  required: string[];
23173
23749
  additionalProperties: boolean;
23750
+ oneOf?: undefined;
23174
23751
  };
23175
23752
  constraints: {
23176
23753
  rate_bucket: string;
@@ -23376,9 +23953,12 @@ declare const ACTION_REGISTRY: {
23376
23953
  topic?: undefined;
23377
23954
  durationMinutes?: undefined;
23378
23955
  candidates?: undefined;
23956
+ candidateWindow?: undefined;
23957
+ hold?: undefined;
23379
23958
  };
23380
23959
  required: string[];
23381
23960
  additionalProperties: boolean;
23961
+ oneOf?: undefined;
23382
23962
  };
23383
23963
  constraints: {
23384
23964
  rate_bucket: string;
@@ -23583,9 +24163,12 @@ declare const ACTION_REGISTRY: {
23583
24163
  topic?: undefined;
23584
24164
  durationMinutes?: undefined;
23585
24165
  candidates?: undefined;
24166
+ candidateWindow?: undefined;
24167
+ hold?: undefined;
23586
24168
  };
23587
24169
  required: string[];
23588
24170
  additionalProperties: boolean;
24171
+ oneOf?: undefined;
23589
24172
  };
23590
24173
  constraints: {
23591
24174
  rate_bucket: string;
@@ -23782,9 +24365,12 @@ declare const ACTION_REGISTRY: {
23782
24365
  topic?: undefined;
23783
24366
  durationMinutes?: undefined;
23784
24367
  candidates?: undefined;
24368
+ candidateWindow?: undefined;
24369
+ hold?: undefined;
23785
24370
  };
23786
24371
  required: string[];
23787
24372
  additionalProperties: boolean;
24373
+ oneOf?: undefined;
23788
24374
  };
23789
24375
  constraints: {
23790
24376
  rate_bucket: string;
@@ -23972,9 +24558,12 @@ declare const ACTION_REGISTRY: {
23972
24558
  topic?: undefined;
23973
24559
  durationMinutes?: undefined;
23974
24560
  candidates?: undefined;
24561
+ candidateWindow?: undefined;
24562
+ hold?: undefined;
23975
24563
  };
23976
24564
  required: string[];
23977
24565
  additionalProperties: boolean;
24566
+ oneOf?: undefined;
23978
24567
  };
23979
24568
  constraints: {
23980
24569
  rate_bucket: string;
@@ -24168,9 +24757,12 @@ declare const ACTION_REGISTRY: {
24168
24757
  topic?: undefined;
24169
24758
  durationMinutes?: undefined;
24170
24759
  candidates?: undefined;
24760
+ candidateWindow?: undefined;
24761
+ hold?: undefined;
24171
24762
  };
24172
24763
  required: string[];
24173
24764
  additionalProperties: boolean;
24765
+ oneOf?: undefined;
24174
24766
  };
24175
24767
  constraints: {
24176
24768
  rate_bucket: string;
@@ -24356,9 +24948,12 @@ declare const ACTION_REGISTRY: {
24356
24948
  topic?: undefined;
24357
24949
  durationMinutes?: undefined;
24358
24950
  candidates?: undefined;
24951
+ candidateWindow?: undefined;
24952
+ hold?: undefined;
24359
24953
  };
24360
24954
  required: string[];
24361
24955
  additionalProperties: boolean;
24956
+ oneOf?: undefined;
24362
24957
  };
24363
24958
  constraints: {
24364
24959
  rate_bucket: string;
@@ -24553,9 +25148,12 @@ declare const ACTION_REGISTRY: {
24553
25148
  topic?: undefined;
24554
25149
  durationMinutes?: undefined;
24555
25150
  candidates?: undefined;
25151
+ candidateWindow?: undefined;
25152
+ hold?: undefined;
24556
25153
  };
24557
25154
  required: string[];
24558
25155
  additionalProperties: boolean;
25156
+ oneOf?: undefined;
24559
25157
  };
24560
25158
  constraints: {
24561
25159
  rate_bucket: string;
@@ -24749,9 +25347,12 @@ declare const ACTION_REGISTRY: {
24749
25347
  topic?: undefined;
24750
25348
  durationMinutes?: undefined;
24751
25349
  candidates?: undefined;
25350
+ candidateWindow?: undefined;
25351
+ hold?: undefined;
24752
25352
  };
24753
25353
  required: string[];
24754
25354
  additionalProperties: boolean;
25355
+ oneOf?: undefined;
24755
25356
  };
24756
25357
  constraints: {
24757
25358
  rate_bucket: string;
@@ -24941,9 +25542,12 @@ declare const ACTION_REGISTRY: {
24941
25542
  topic?: undefined;
24942
25543
  durationMinutes?: undefined;
24943
25544
  candidates?: undefined;
25545
+ candidateWindow?: undefined;
25546
+ hold?: undefined;
24944
25547
  };
24945
25548
  additionalProperties: boolean;
24946
25549
  required?: undefined;
25550
+ oneOf?: undefined;
24947
25551
  };
24948
25552
  constraints: {
24949
25553
  rate_bucket: string;
@@ -25129,9 +25733,12 @@ declare const ACTION_REGISTRY: {
25129
25733
  topic?: undefined;
25130
25734
  durationMinutes?: undefined;
25131
25735
  candidates?: undefined;
25736
+ candidateWindow?: undefined;
25737
+ hold?: undefined;
25132
25738
  };
25133
25739
  required: string[];
25134
25740
  additionalProperties: boolean;
25741
+ oneOf?: undefined;
25135
25742
  };
25136
25743
  constraints: {
25137
25744
  rate_bucket: string;
@@ -25322,9 +25929,12 @@ declare const ACTION_REGISTRY: {
25322
25929
  topic?: undefined;
25323
25930
  durationMinutes?: undefined;
25324
25931
  candidates?: undefined;
25932
+ candidateWindow?: undefined;
25933
+ hold?: undefined;
25325
25934
  };
25326
25935
  required: string[];
25327
25936
  additionalProperties: boolean;
25937
+ oneOf?: undefined;
25328
25938
  };
25329
25939
  constraints: {
25330
25940
  rate_bucket: string;
@@ -25523,9 +26133,12 @@ declare const ACTION_REGISTRY: {
25523
26133
  topic?: undefined;
25524
26134
  durationMinutes?: undefined;
25525
26135
  candidates?: undefined;
26136
+ candidateWindow?: undefined;
26137
+ hold?: undefined;
25526
26138
  };
25527
26139
  required: string[];
25528
26140
  additionalProperties: boolean;
26141
+ oneOf?: undefined;
25529
26142
  };
25530
26143
  constraints: {
25531
26144
  rate_bucket: string;
@@ -25720,9 +26333,12 @@ declare const ACTION_REGISTRY: {
25720
26333
  topic?: undefined;
25721
26334
  durationMinutes?: undefined;
25722
26335
  candidates?: undefined;
26336
+ candidateWindow?: undefined;
26337
+ hold?: undefined;
25723
26338
  };
25724
26339
  required: string[];
25725
26340
  additionalProperties: boolean;
26341
+ oneOf?: undefined;
25726
26342
  };
25727
26343
  constraints: {
25728
26344
  rate_bucket: string;
@@ -25915,9 +26531,12 @@ declare const ACTION_REGISTRY: {
25915
26531
  topic?: undefined;
25916
26532
  durationMinutes?: undefined;
25917
26533
  candidates?: undefined;
26534
+ candidateWindow?: undefined;
26535
+ hold?: undefined;
25918
26536
  };
25919
26537
  additionalProperties: boolean;
25920
26538
  required?: undefined;
26539
+ oneOf?: undefined;
25921
26540
  };
25922
26541
  constraints: {
25923
26542
  rate_bucket: string;
@@ -26105,9 +26724,12 @@ declare const ACTION_REGISTRY: {
26105
26724
  topic?: undefined;
26106
26725
  durationMinutes?: undefined;
26107
26726
  candidates?: undefined;
26727
+ candidateWindow?: undefined;
26728
+ hold?: undefined;
26108
26729
  };
26109
26730
  required: string[];
26110
26731
  additionalProperties: boolean;
26732
+ oneOf?: undefined;
26111
26733
  };
26112
26734
  constraints: {
26113
26735
  rate_bucket: string;
@@ -26298,9 +26920,12 @@ declare const ACTION_REGISTRY: {
26298
26920
  topic?: undefined;
26299
26921
  durationMinutes?: undefined;
26300
26922
  candidates?: undefined;
26923
+ candidateWindow?: undefined;
26924
+ hold?: undefined;
26301
26925
  };
26302
26926
  required: string[];
26303
26927
  additionalProperties: boolean;
26928
+ oneOf?: undefined;
26304
26929
  };
26305
26930
  constraints: {
26306
26931
  rate_bucket: string;
@@ -26368,6 +26993,26 @@ declare const ACTION_REGISTRY: {
26368
26993
  additionalProperties: boolean;
26369
26994
  };
26370
26995
  };
26996
+ candidateWindow: {
26997
+ type: string;
26998
+ description: string;
26999
+ properties: {
27000
+ start: {
27001
+ type: string;
27002
+ description: string;
27003
+ };
27004
+ end: {
27005
+ type: string;
27006
+ description: string;
27007
+ };
27008
+ };
27009
+ required: string[];
27010
+ additionalProperties: boolean;
27011
+ };
27012
+ hold: {
27013
+ type: string;
27014
+ description: string;
27015
+ };
26371
27016
  message: {
26372
27017
  type: string;
26373
27018
  description: string;
@@ -26523,6 +27168,19 @@ declare const ACTION_REGISTRY: {
26523
27168
  result?: undefined;
26524
27169
  };
26525
27170
  required: string[];
27171
+ oneOf: ({
27172
+ required: string[];
27173
+ properties: {
27174
+ candidates: {};
27175
+ candidateWindow?: undefined;
27176
+ };
27177
+ } | {
27178
+ required: string[];
27179
+ properties: {
27180
+ candidateWindow: {};
27181
+ candidates?: undefined;
27182
+ };
27183
+ })[];
26526
27184
  additionalProperties: boolean;
26527
27185
  };
26528
27186
  constraints: {
@@ -27748,7 +28406,23 @@ declare function isDecision(value: unknown): value is Decision;
27748
28406
  * lookup (registry keys are all lowercase), so `gmail.message.TRASH` still
27749
28407
  * hits the registry `high` instead of mis-falling-back to the suffix value.
27750
28408
  */
27751
- type ActionRisk = 'low' | 'medium' | 'high';
28409
+ /**
28410
+ * Risk tiers an action can declare. Aligned with the registry JSON-schema
28411
+ * enum (`action-registry.ts` → `risk: ['low','medium','high','critical']`)
28412
+ * and the Cedar-facing `RiskLevel` (types/context.ts) — PR #931 review: the
28413
+ * previous 3-value union LIED about the runtime, because a registry entry
28414
+ * declaring `risk: 'critical'` flowed through the `as ActionRisk` cast below
28415
+ * and `resolveActionRisk` returned the string `'critical'` while its type
28416
+ * said it could not. Every STRICTNESS seam (Gate-2 strict arm, the
28417
+ * autoIssueVC permit-arm pin, `stripHighRiskWildcardActions`,
28418
+ * `validateHighRiskResources`, agentd's wildcard-approval refuse) must treat
28419
+ * `'critical'` at least as strictly as `'high'` — never compare
28420
+ * `=== 'high'` alone.
28421
+ *
28422
+ * The suffix heuristic never yields 'critical' (only a registry entry can
28423
+ * declare it); no registry action uses it yet as of 2026-07-05.
28424
+ */
28425
+ type ActionRisk = 'low' | 'medium' | 'high' | 'critical';
27752
28426
  /**
27753
28427
  * Resolve the risk level for a dotted action name.
27754
28428
  *
@@ -27771,4 +28445,4 @@ declare function resolveActionRisk(action: string | undefined | null): ActionRis
27771
28445
 
27772
28446
  declare const version = "0.0.1";
27773
28447
 
27774
- export { type ABACPolicyEngine, ACTION_PARAMS_MAX_SIZE, ACTION_PREFIXES, ACTION_REGISTRY, AIdentityClient, type AIdentityConfig, AIdentityError, type APIAgent, type APICredential, APIVCManager, APPROVAL_REQUIRED_ACTION, type AbacDecision, type AbacInput, type AcceptInvitationRequest, type AckEventResponse, type ActionInputSchema, type ActionMapping, type ActionMeta, type ActionParamDisplay, type ActionRegistry, type ActionRisk, type ActionRiskLevel, type Agent, type AgentCreateOptions, type AgentDIDConfig, AgentDIDManager, AgentManager, AgentStatus, AgentType, type AgentWithId, AllowAllAbac, type AnyProvider, type ApiKeyValidationResult, type ApprovalContext, type AuditEvent, type AuditQuery, AuthProvider, type AuthState, AuthenticationError, type AutoApproveConfig, type BindingSource, type BuildKbJwtPayloadArgs, type BuildKbJwtPayloadDeps, CANONICAL_PROVIDERS, type CanonicalProvider, type CapabilityMeta, type CedarDecision, type CedarDecisionDiagnostic, type CedarDecisionValue, type CedarEngine, CedarEngineUnavailableError, type CedarEntitiesInput, type CedarEntity, type CedarEntityDescriptor, type CedarError, type CedarEvaluateRequest, CedarParseError, type CedarPolicySetHandle, type CedarSchema, type CedarSchemaHandle, type CheckGrantPermissionRequest, type CheckGrantPermissionResult, type CheckPermissionInput, type CheckPermissionResult, type CollectContextRequest, type ConfirmGrantSuggestionRequest, type ConnectorAction, type ConnectorConfig, type ConnectorExecutionContext, type ConnectorResponse, type ConnectorResponseMetadata, type ConnectorTokenConfig, type ConstraintEvaluationResult, ConstraintEvaluator, type ConstraintEvaluatorOptions, type ConstraintViolation, type ConstraintWarning, type ContextBindingSource, type ContextProvider, type CreateGrantRequest, type CreateInvitationRequest, type CreateReceiptRequest, type CredentialRef, CredentialStatus, type CredentialStore, CredentialType, DECISION_VALUES, DEFAULT_CONSTRAINTS_BY_RISK, type DIDDocument, type DataAccessVC, type Decision, type DecisionTrace, type DelegationVC, DeviceEnrollManager, type DeviceEnrollPollResult, type DeviceEnrollServerSideParams, type DeviceEnrollStartParams, type DeviceEnrollStartResult, type DisclosureFields, DummyCreds, DummyVpVerifier, type EmployeeVPRequest, type EvaluateInput, type EvaluateResult, type EvaluationContext, type ExternalActionRequest, FREEMAIL_DOMAINS, FilesystemKeyStorage, GATEWAY_ERROR_CODE, GatewayClient, GatewayError, type GatewayErrorCode, type GatewayEvent, type GetEventsOptions, type GetEventsResponse, type GitHubConfig, type GoogleConfig, type Grant, type GrantConstraints, type GrantResource, GrantResourceType, GrantScope, GrantStatus, type GrantUsage, type IConnectorService, type IStateStore, type Intent, type IntentEvaluationResult, type IntentObligation, type IntentResource, type InternalHmacSignerKey, InvalidVPError, type Invitation, type InvitationRole, InvitationStatus, type IssueSDJWTVCRequest, type IssueSDJWTVCResult, type JiraBoard, type JiraConfig, type JiraIssue, type JiraIssueLink, type JiraIssueLinkType, type JiraIssueType, type JiraProject, type JiraSprint, type JiraStatus, type JiraUser, type JiraWorklog, type JsonSchema, JsonStateStore, KB_JWT_DEFAULT_LIFETIME_SECONDS, type KbJwtPayload, KeyManager, type KeyPairGenerationResult, type KeyStorageConfig, type KeyStorageProvider, LEGACY_RESOURCE_TYPE_MAP, MIN_SIGNER_KEY_BYTES, MemoryKeyStorage, NetworkError, type NormalizeIntentRequest, type NormalizedIntent, type OAuthAuthorizeRequest, type OAuthCallbackParams, type OAuthConnection, OAuthProvider, type OAuthToken, type OrganizationConfig, type OrganizationPermission, type OrganizationPolicy, type OrganizationVC, PHASE_1_VC_LAYER, PROVIDER_ALIASES, type ParamBindingSource, type ParsedResourceType, type ParsedSignature, type PermissionConstraints, type PermissionMode, type PermissionResource, type PermissionRule, type PermissionTimeConstraint, type PermissionVcClaims, type PermissionVcClaims_V2, type PermissionVcClaims_V3, type Phase1VcLayer, type PlanDelegationInput, type PlanDelegationResult, type PolicyCondition, type PolicyEvaluationResult, type PolicyInput, type PolicyRef, type PolicyRefInline, type PolicyRefReference, type PolicyRule, type PolicySetHandle, type PolicyTarget, type PolicyValidationError, type Provider, REAUTH_REQUIRED_ACTION, RESOURCE_TYPES, RESOURCE_TYPE_LABELS, type ReBACChecker, type Receipt, type ReceiptListResult, type ReceiptOutcome, type ReceiptSearchQuery, ReceiptStatus, type Relation, type ResolvedTargets, type ResourceIdBinding, type ResourceMatch, type ResourceRef, type ResourceScope, type ResourceType, type RiskAssessmentResult, type RiskFactor, type RiskLevel, SDJwtClient, SIGNATURE_HEADER, SIGNATURE_VERSION_PREFIX, type SchemaHandle, ScopeUnmatchedError, type SecondaryBinding, type SignRequestArgs, SimpleRebac, type SlackConfig, StandardActionCategory, type SuggestGrantRequest, type SuggestedAction, type SuggestedConstraints, type SuggestedGrant, type SuggestedResource, type SuggestionRiskLevel, TIER_LIMITS, type TargetBindings, type TargetConstraint, TargetResolver, type TierLimits, type TimeWindowCheckResult, type TimeWindowConstraint, type ToolDefinition, type ToolInvocation, ToolManager, type ToolPermissionRequest, type ToolPermissionVC, type UnifiedResourceType, type UpdateGrantRequest, type UserIdentity, type UserIdentityConfig, type UserIdentityCreateOptions, UserIdentityManager, UserKeyPairManager, type UserTier, VALID_MCP_ACTIONS, VALID_MCP_TOOLS, VCExpiredError, VCManager, VCRevokedError, VCStatus, type VCTemplate, VCType, VPManager, type VPRequest, type ValidateActionInputResult, type VcApprovalClaim, type VerifiablePresentation, type VerificationMethod, type VerifiedVcClaims, type VerifyInvitationResponse, type VerifyReceiptRequest, type VerifyReceiptResult, type VerifySDJWTVCResult, type VpVerifier, WRITE_ACTION_NAMES, type WeeklyReportData, type WeeklyReportSummary, buildCanonicalString, buildCedarEntities, buildGrantIdFields, buildKbJwtPayload, buildPhase1VcClaims, buildValidationErrors, canonicalResourceId, canonicalizeAction, checkPermissionWithVP, classifyCedarErrorMessage, compareResourceIds, configure, createAjv, createCedarEngine, createDidJwk, credentialStatusToVCStatus, defaultConstraintEvaluator, evaluateConstraints, extractProjectKey, extractPublicKey, extractPublicKeyFromDid, formatSignatureHeader, generateActionParamsDisplay, generateActionSummary, generateKeyPair, generateNonce, getActionAliases, getAllActionForms, getAllValidMcpActionNames, getClient, getDefaultDisclosureFields, getKeyIdFromDid, getRequiredRelations, getRequiredScopes, getTierLimits, getValidMcpActionNames, grantConstraintsToPermissionConstraints, grantToPermissionRules, indexActions, indexCapabilities, isActionEquivalent, isCanonicalProvider, isDecision, isFreemailDomain, isPolicyRefInline, isPolicyRefReference, isUnlimited, isValidDidJwk, isValidProvider, isWriteAction, loadActionRegistryFromFile, loadActionRegistryFromObject, looksLikeNativeId, normalizeDomain, normalizeMcpActionName, parseGrantAction, parseGrantResourceType, parseSignatureHeader, planDelegationForVC, publicKeysMatch, readVcExpSeconds, resolveActionRisk, resolveActionsFromSelection, resolveProvider, resolveResourceType, resolveUserTier, sha256Hex, signJWT, signRequest, validateActionInput, validateRegistryObject, vcStatusToCredentialStatus, verifyJWT, version };
28448
+ export { type ABACPolicyEngine, ACTION_PARAMS_MAX_SIZE, ACTION_PREFIXES, ACTION_REGISTRY, AIdentityClient, type AIdentityConfig, AIdentityError, type APIAgent, type APICredential, APIVCManager, APPROVAL_REQUIRED_ACTION, type AbacDecision, type AbacInput, type AcceptInvitationRequest, type AckEventResponse, type ActionInputSchema, type ActionMapping, type ActionMeta, type ActionParamDisplay, type ActionRegistry, type ActionRisk, type ActionRiskLevel, type Agent, type AgentCreateOptions, type AgentDIDConfig, AgentDIDManager, AgentManager, AgentStatus, AgentType, type AgentWithId, AllowAllAbac, type AnyProvider, type ApiKeyValidationResult, type ApprovalContext, type AuditEvent, type AuditQuery, AuthProvider, type AuthState, AuthenticationError, type AutoApproveConfig, type BindingSource, type BuildKbJwtPayloadArgs, type BuildKbJwtPayloadDeps, CANONICAL_PROVIDERS, type CanonicalProvider, type CapabilityMeta, type CedarDecision, type CedarDecisionDiagnostic, type CedarDecisionValue, type CedarEngine, CedarEngineUnavailableError, type CedarEntitiesInput, type CedarEntity, type CedarEntityDescriptor, type CedarError, type CedarEvaluateRequest, CedarParseError, type CedarPolicySetHandle, type CedarSchema, type CedarSchemaHandle, type CheckGrantPermissionRequest, type CheckGrantPermissionResult, type CheckPermissionInput, type CheckPermissionResult, type CollectContextRequest, type ConfirmGrantSuggestionRequest, type ConnectorAction, type ConnectorConfig, type ConnectorExecutionContext, type ConnectorResponse, type ConnectorResponseMetadata, type ConnectorTokenConfig, type ConstraintEvaluationResult, ConstraintEvaluator, type ConstraintEvaluatorOptions, type ConstraintViolation, type ConstraintWarning, type ContextBindingSource, type ContextProvider, type CreateGrantRequest, type CreateInvitationRequest, type CreateReceiptRequest, type CredentialRef, CredentialStatus, type CredentialStore, CredentialType, DECISION_VALUES, DEFAULT_CONSTRAINTS_BY_RISK, type DIDDocument, type DataAccessVC, type Decision, type DecisionTrace, type DelegationVC, DeviceEnrollManager, type DeviceEnrollPollResult, type DeviceEnrollServerSideParams, type DeviceEnrollStartParams, type DeviceEnrollStartResult, type DisclosureFields, DummyCreds, DummyVpVerifier, type EmployeeVPRequest, type EvaluateInput, type EvaluateResult, type EvaluationContext, type ExternalActionRequest, FREEMAIL_DOMAINS, FilesystemKeyStorage, GATEWAY_ERROR_CODE, GatewayClient, GatewayError, type GatewayErrorCode, type GatewayEvent, type GetEventsOptions, type GetEventsResponse, type GitHubConfig, type GoogleConfig, type Grant, type GrantConstraints, type GrantResource, GrantResourceType, GrantScope, GrantStatus, type GrantUsage, type IConnectorService, type IStateStore, type Intent, type IntentEvaluationResult, type IntentObligation, type IntentResource, type InternalHmacSignerKey, InvalidVPError, type Invitation, type InvitationRole, InvitationStatus, type IssueSDJWTVCRequest, type IssueSDJWTVCResult, type JiraBoard, type JiraConfig, type JiraIssue, type JiraIssueLink, type JiraIssueLinkType, type JiraIssueType, type JiraProject, type JiraSprint, type JiraStatus, type JiraUser, type JiraWorklog, type JsonSchema, JsonStateStore, KB_JWT_DEFAULT_LIFETIME_SECONDS, type KbJwtPayload, KeyManager, type KeyPairGenerationResult, type KeyStorageConfig, type KeyStorageProvider, LEGACY_RESOURCE_TYPE_MAP, MIN_SIGNER_KEY_BYTES, MemoryKeyStorage, NetworkError, type NormalizeIntentRequest, type NormalizedIntent, type OAuthAuthorizeRequest, type OAuthCallbackParams, type OAuthConnection, OAuthProvider, type OAuthToken, type OrganizationConfig, type OrganizationPermission, type OrganizationPolicy, type OrganizationVC, PHASE_1_VC_LAYER, PROVIDER_ALIASES, type ParamBindingSource, type ParsedResourceType, type ParsedSignature, type PermissionConstraints, type PermissionMode, type PermissionResource, type PermissionRule, type PermissionTimeConstraint, type PermissionVcClaims, type PermissionVcClaims_V2, type PermissionVcClaims_V3, type Phase1VcLayer, type PlanDelegationInput, type PlanDelegationResult, type PolicyCondition, type PolicyEvaluationResult, type PolicyInput, type PolicyRef, type PolicyRefInline, type PolicyRefReference, type PolicyRule, type PolicySetHandle, type PolicyTarget, type PolicyValidationError, type Provider, REAUTH_REQUIRED_ACTION, RESOURCE_TYPES, RESOURCE_TYPE_LABELS, type ReBACChecker, type Receipt, type ReceiptListResult, type ReceiptOutcome, type ReceiptSearchQuery, ReceiptStatus, type Relation, type ResolvedTargets, type ResourceIdBinding, type ResourceMatch, type ResourceRef, type ResourceScope, type ResourceType, type RiskAssessmentResult, type RiskFactor, type RiskLevel, SDJwtClient, SIGNATURE_HEADER, SIGNATURE_VERSION_PREFIX, type SchemaHandle, ScopeUnmatchedError, type SecondaryBinding, type SignRequestArgs, SimpleRebac, type SlackConfig, StandardActionCategory, type SuggestGrantRequest, type SuggestedAction, type SuggestedConstraints, type SuggestedGrant, type SuggestedResource, type SuggestionRiskLevel, TIER_LIMITS, type TargetBindings, type TargetConstraint, TargetResolver, type TierLimits, type TimeWindowCheckResult, type TimeWindowConstraint, type ToolDefinition, type ToolInvocation, ToolManager, type ToolPermissionRequest, type ToolPermissionVC, type UnifiedResourceType, type UpdateGrantRequest, type UserIdentity, type UserIdentityConfig, type UserIdentityCreateOptions, UserIdentityManager, UserKeyPairManager, type UserTier, VALID_MCP_ACTIONS, VALID_MCP_TOOLS, VCExpiredError, VCManager, VCRevokedError, VCStatus, type VCTemplate, VCType, VPManager, type VPRequest, type ValidateActionInputResult, type VcApprovalClaim, type VcSchedulingDelegationClaim, type VerifiablePresentation, type VerificationMethod, type VerifiedVcClaims, type VerifyInvitationResponse, type VerifyReceiptRequest, type VerifyReceiptResult, type VerifySDJWTVCResult, type VpVerifier, WRITE_ACTION_NAMES, type WeeklyReportData, type WeeklyReportSummary, buildCanonicalString, buildCedarEntities, buildGrantIdFields, buildKbJwtPayload, buildPhase1VcClaims, buildValidationErrors, canonicalResourceId, canonicalizeAction, checkPermissionWithVP, classifyCedarErrorMessage, compareResourceIds, configure, createAjv, createCedarEngine, createDidJwk, credentialStatusToVCStatus, defaultConstraintEvaluator, evaluateConstraints, extractProjectKey, extractPublicKey, extractPublicKeyFromDid, formatSignatureHeader, generateActionParamsDisplay, generateActionSummary, generateKeyPair, generateNonce, getActionAliases, getAllActionForms, getAllValidMcpActionNames, getClient, getDefaultDisclosureFields, getKeyIdFromDid, getRequiredRelations, getRequiredScopes, getTierLimits, getValidMcpActionNames, grantConstraintsToPermissionConstraints, grantToPermissionRules, indexActions, indexCapabilities, isActionEquivalent, isCanonicalProvider, isDecision, isFreemailDomain, isPolicyRefInline, isPolicyRefReference, isUnlimited, isValidDidJwk, isValidProvider, isWriteAction, loadActionRegistryFromFile, loadActionRegistryFromObject, looksLikeNativeId, normalizeDomain, normalizeMcpActionName, parseGrantAction, parseGrantResourceType, parseSignatureHeader, planDelegationForVC, publicKeysMatch, readVcExpSeconds, resolveActionRisk, resolveActionsFromSelection, resolveProvider, resolveResourceType, resolveUserTier, sha256Hex, signJWT, signRequest, validateActionInput, validateRegistryObject, vcStatusToCredentialStatus, verifyJWT, version };