@vess-id/ai-identity 0.16.0-alpha.0 → 0.16.0-alpha.1

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
@@ -1089,6 +1089,59 @@ interface VcApprovalClaim {
1089
1089
  */
1090
1090
  action?: string;
1091
1091
  }
1092
+ /**
1093
+ * Scheduling Wow Phase 1 §5.3 (Task 7) — the delegation-policy snapshot baked
1094
+ * into a VC that was AUTO-ISSUED (no human approval) because the invocation
1095
+ * fell entirely inside the user's advance scheduling-delegation policy.
1096
+ *
1097
+ * Audit evidence: names WHAT standing authority the auto-issuance relied on
1098
+ * ("何を根拠に自動実行されたか"), so a verifier / auditor can reconstruct the
1099
+ * decision without the DB row (which may have been edited since). It is NOT
1100
+ * read by any enforcement gate — resource_id / delegates semantics (#884
1101
+ * canonical resource checks) are unchanged.
1102
+ *
1103
+ * SD-protected (disclosed via `_sd`) because `contactScope` can contain
1104
+ * third-party emails/domains.
1105
+ *
1106
+ * Item binding (Tasks 9-11, spec §5.3): the optional {@link
1107
+ * VcSchedulingDelegationClaim.itemId} names which negotiation an automated
1108
+ * calendar write belonged to. It is ABSENT on `scheduling.request` issuances
1109
+ * (at that gate the item does not exist yet — it is created by the request
1110
+ * pipeline AFTER the VC gate, so there is nothing to bind) and PRESENT on the
1111
+ * confirm (§7) and tentative-hold (§6) issuance contexts, which operate on a
1112
+ * concrete item.
1113
+ */
1114
+ interface VcSchedulingDelegationClaim {
1115
+ /** The policy's allowed weekly window at issuance time. */
1116
+ timeWindow: {
1117
+ /** Allowed weekdays, 0 (Sun) – 6 (Sat). */
1118
+ daysOfWeek: number[];
1119
+ /** 'HH:mm' wall-clock window start (policy timezone). */
1120
+ windowStart: string;
1121
+ /** 'HH:mm' wall-clock window end (policy timezone). */
1122
+ windowEnd: string;
1123
+ /** IANA timezone the window is judged in (e.g. 'Asia/Tokyo'). */
1124
+ timezone: string;
1125
+ };
1126
+ /** Upper bound on meeting duration (minutes) the policy allowed. */
1127
+ maxDurationMinutes: number;
1128
+ /** Counterpart scope the policy allowed. null = no restriction. */
1129
+ contactScope: {
1130
+ emails: string[];
1131
+ domains: string[];
1132
+ } | null;
1133
+ /** ISO-8601 expiry of the delegation policy itself at issuance time. */
1134
+ policyExpiresAt: string;
1135
+ /**
1136
+ * Scheduling Wow Phase 1 (Tasks 9-11, spec §5.3) — the inbox item id the
1137
+ * automated calendar write belonged to. ADDITIVE / OPTIONAL: absent on
1138
+ * `scheduling.request` issuances (the item does not exist yet at that gate),
1139
+ * present on the confirm (§7) and tentative-hold (§6) issuance contexts,
1140
+ * which DO operate on a concrete item and bind it so the audit evidence names
1141
+ * which negotiation the write was for.
1142
+ */
1143
+ itemId?: string;
1144
+ }
1092
1145
  interface PermissionVcClaims_V3 extends Omit<PermissionVcClaims_V2, 'v'> {
1093
1146
  /** Schema version — v3 adds Cedar policy_ref support and chain hierarchy fields. */
1094
1147
  v: '3';
@@ -1118,6 +1171,14 @@ interface PermissionVcClaims_V3 extends Omit<PermissionVcClaims_V2, 'v'> {
1118
1171
  * ledger 経由 fallback)。{@link VcApprovalClaim} 参照。
1119
1172
  */
1120
1173
  approval?: VcApprovalClaim;
1174
+ /**
1175
+ * Scheduling Wow Phase 1 §5.3 (Task 7) — present ONLY when the VC was
1176
+ * auto-issued under the user's advance scheduling-delegation policy
1177
+ * (scheduling.request / confirm / hold contexts). Absent on every other
1178
+ * issuance path (manual approval, Cedar permit, legacy). Audit-only:
1179
+ * no enforcement gate reads it. {@link VcSchedulingDelegationClaim}.
1180
+ */
1181
+ schedulingDelegation?: VcSchedulingDelegationClaim;
1121
1182
  }
1122
1183
  /**
1123
1184
  * Permission VC Claims (canonical union of v2 + v3).
@@ -4841,9 +4902,12 @@ declare const ACTION_REGISTRY: {
4841
4902
  topic?: undefined;
4842
4903
  durationMinutes?: undefined;
4843
4904
  candidates?: undefined;
4905
+ candidateWindow?: undefined;
4906
+ hold?: undefined;
4844
4907
  };
4845
4908
  required: string[];
4846
4909
  additionalProperties: boolean;
4910
+ oneOf?: undefined;
4847
4911
  };
4848
4912
  constraints: {
4849
4913
  rate_bucket: string;
@@ -5027,9 +5091,12 @@ declare const ACTION_REGISTRY: {
5027
5091
  topic?: undefined;
5028
5092
  durationMinutes?: undefined;
5029
5093
  candidates?: undefined;
5094
+ candidateWindow?: undefined;
5095
+ hold?: undefined;
5030
5096
  };
5031
5097
  additionalProperties: boolean;
5032
5098
  required?: undefined;
5099
+ oneOf?: undefined;
5033
5100
  };
5034
5101
  constraints: {
5035
5102
  rate_bucket: string;
@@ -5216,9 +5283,12 @@ declare const ACTION_REGISTRY: {
5216
5283
  topic?: undefined;
5217
5284
  durationMinutes?: undefined;
5218
5285
  candidates?: undefined;
5286
+ candidateWindow?: undefined;
5287
+ hold?: undefined;
5219
5288
  };
5220
5289
  required: string[];
5221
5290
  additionalProperties: boolean;
5291
+ oneOf?: undefined;
5222
5292
  };
5223
5293
  constraints: {
5224
5294
  rate_bucket: string;
@@ -5415,9 +5485,12 @@ declare const ACTION_REGISTRY: {
5415
5485
  topic?: undefined;
5416
5486
  durationMinutes?: undefined;
5417
5487
  candidates?: undefined;
5488
+ candidateWindow?: undefined;
5489
+ hold?: undefined;
5418
5490
  };
5419
5491
  required: string[];
5420
5492
  additionalProperties: boolean;
5493
+ oneOf?: undefined;
5421
5494
  };
5422
5495
  constraints: {
5423
5496
  rate_bucket: string;
@@ -5611,9 +5684,12 @@ declare const ACTION_REGISTRY: {
5611
5684
  topic?: undefined;
5612
5685
  durationMinutes?: undefined;
5613
5686
  candidates?: undefined;
5687
+ candidateWindow?: undefined;
5688
+ hold?: undefined;
5614
5689
  };
5615
5690
  required: string[];
5616
5691
  additionalProperties: boolean;
5692
+ oneOf?: undefined;
5617
5693
  };
5618
5694
  constraints: {
5619
5695
  rate_bucket: string;
@@ -5804,9 +5880,12 @@ declare const ACTION_REGISTRY: {
5804
5880
  topic?: undefined;
5805
5881
  durationMinutes?: undefined;
5806
5882
  candidates?: undefined;
5883
+ candidateWindow?: undefined;
5884
+ hold?: undefined;
5807
5885
  };
5808
5886
  additionalProperties: boolean;
5809
5887
  required?: undefined;
5888
+ oneOf?: undefined;
5810
5889
  };
5811
5890
  constraints: {
5812
5891
  rate_bucket: string;
@@ -6000,9 +6079,12 @@ declare const ACTION_REGISTRY: {
6000
6079
  topic?: undefined;
6001
6080
  durationMinutes?: undefined;
6002
6081
  candidates?: undefined;
6082
+ candidateWindow?: undefined;
6083
+ hold?: undefined;
6003
6084
  };
6004
6085
  required: string[];
6005
6086
  additionalProperties: boolean;
6087
+ oneOf?: undefined;
6006
6088
  };
6007
6089
  constraints: {
6008
6090
  rate_bucket: string;
@@ -6192,9 +6274,12 @@ declare const ACTION_REGISTRY: {
6192
6274
  topic?: undefined;
6193
6275
  durationMinutes?: undefined;
6194
6276
  candidates?: undefined;
6277
+ candidateWindow?: undefined;
6278
+ hold?: undefined;
6195
6279
  };
6196
6280
  required: string[];
6197
6281
  additionalProperties: boolean;
6282
+ oneOf?: undefined;
6198
6283
  };
6199
6284
  constraints: {
6200
6285
  rate_bucket: string;
@@ -6409,9 +6494,12 @@ declare const ACTION_REGISTRY: {
6409
6494
  topic?: undefined;
6410
6495
  durationMinutes?: undefined;
6411
6496
  candidates?: undefined;
6497
+ candidateWindow?: undefined;
6498
+ hold?: undefined;
6412
6499
  };
6413
6500
  required: string[];
6414
6501
  additionalProperties: boolean;
6502
+ oneOf?: undefined;
6415
6503
  };
6416
6504
  constraints: {
6417
6505
  rate_bucket: string;
@@ -6627,9 +6715,12 @@ declare const ACTION_REGISTRY: {
6627
6715
  topic?: undefined;
6628
6716
  durationMinutes?: undefined;
6629
6717
  candidates?: undefined;
6718
+ candidateWindow?: undefined;
6719
+ hold?: undefined;
6630
6720
  };
6631
6721
  required: string[];
6632
6722
  additionalProperties: boolean;
6723
+ oneOf?: undefined;
6633
6724
  };
6634
6725
  constraints: {
6635
6726
  rate_bucket: string;
@@ -6825,9 +6916,12 @@ declare const ACTION_REGISTRY: {
6825
6916
  topic?: undefined;
6826
6917
  durationMinutes?: undefined;
6827
6918
  candidates?: undefined;
6919
+ candidateWindow?: undefined;
6920
+ hold?: undefined;
6828
6921
  };
6829
6922
  required: string[];
6830
6923
  additionalProperties: boolean;
6924
+ oneOf?: undefined;
6831
6925
  };
6832
6926
  constraints: {
6833
6927
  rate_bucket: string;
@@ -7046,9 +7140,12 @@ declare const ACTION_REGISTRY: {
7046
7140
  topic?: undefined;
7047
7141
  durationMinutes?: undefined;
7048
7142
  candidates?: undefined;
7143
+ candidateWindow?: undefined;
7144
+ hold?: undefined;
7049
7145
  };
7050
7146
  required: string[];
7051
7147
  additionalProperties: boolean;
7148
+ oneOf?: undefined;
7052
7149
  };
7053
7150
  constraints: {
7054
7151
  rate_bucket: string;
@@ -7258,9 +7355,12 @@ declare const ACTION_REGISTRY: {
7258
7355
  topic?: undefined;
7259
7356
  durationMinutes?: undefined;
7260
7357
  candidates?: undefined;
7358
+ candidateWindow?: undefined;
7359
+ hold?: undefined;
7261
7360
  };
7262
7361
  required: string[];
7263
7362
  additionalProperties: boolean;
7363
+ oneOf?: undefined;
7264
7364
  };
7265
7365
  constraints: {
7266
7366
  rate_bucket: string;
@@ -7479,9 +7579,12 @@ declare const ACTION_REGISTRY: {
7479
7579
  topic?: undefined;
7480
7580
  durationMinutes?: undefined;
7481
7581
  candidates?: undefined;
7582
+ candidateWindow?: undefined;
7583
+ hold?: undefined;
7482
7584
  };
7483
7585
  required: string[];
7484
7586
  additionalProperties: boolean;
7587
+ oneOf?: undefined;
7485
7588
  };
7486
7589
  constraints: {
7487
7590
  rate_bucket: string;
@@ -7677,9 +7780,12 @@ declare const ACTION_REGISTRY: {
7677
7780
  topic?: undefined;
7678
7781
  durationMinutes?: undefined;
7679
7782
  candidates?: undefined;
7783
+ candidateWindow?: undefined;
7784
+ hold?: undefined;
7680
7785
  };
7681
7786
  required: string[];
7682
7787
  additionalProperties: boolean;
7788
+ oneOf?: undefined;
7683
7789
  };
7684
7790
  constraints: {
7685
7791
  rate_bucket: string;
@@ -7891,9 +7997,12 @@ declare const ACTION_REGISTRY: {
7891
7997
  topic?: undefined;
7892
7998
  durationMinutes?: undefined;
7893
7999
  candidates?: undefined;
8000
+ candidateWindow?: undefined;
8001
+ hold?: undefined;
7894
8002
  };
7895
8003
  required: string[];
7896
8004
  additionalProperties: boolean;
8005
+ oneOf?: undefined;
7897
8006
  };
7898
8007
  constraints: {
7899
8008
  rate_bucket: string;
@@ -8099,9 +8208,12 @@ declare const ACTION_REGISTRY: {
8099
8208
  topic?: undefined;
8100
8209
  durationMinutes?: undefined;
8101
8210
  candidates?: undefined;
8211
+ candidateWindow?: undefined;
8212
+ hold?: undefined;
8102
8213
  };
8103
8214
  required: string[];
8104
8215
  additionalProperties: boolean;
8216
+ oneOf?: undefined;
8105
8217
  };
8106
8218
  constraints: {
8107
8219
  rate_bucket: string;
@@ -8306,9 +8418,12 @@ declare const ACTION_REGISTRY: {
8306
8418
  topic?: undefined;
8307
8419
  durationMinutes?: undefined;
8308
8420
  candidates?: undefined;
8421
+ candidateWindow?: undefined;
8422
+ hold?: undefined;
8309
8423
  };
8310
8424
  required: string[];
8311
8425
  additionalProperties: boolean;
8426
+ oneOf?: undefined;
8312
8427
  };
8313
8428
  constraints: {
8314
8429
  rate_bucket: string;
@@ -8513,9 +8628,12 @@ declare const ACTION_REGISTRY: {
8513
8628
  topic?: undefined;
8514
8629
  durationMinutes?: undefined;
8515
8630
  candidates?: undefined;
8631
+ candidateWindow?: undefined;
8632
+ hold?: undefined;
8516
8633
  };
8517
8634
  required: string[];
8518
8635
  additionalProperties: boolean;
8636
+ oneOf?: undefined;
8519
8637
  };
8520
8638
  constraints: {
8521
8639
  rate_bucket: string;
@@ -8721,9 +8839,12 @@ declare const ACTION_REGISTRY: {
8721
8839
  topic?: undefined;
8722
8840
  durationMinutes?: undefined;
8723
8841
  candidates?: undefined;
8842
+ candidateWindow?: undefined;
8843
+ hold?: undefined;
8724
8844
  };
8725
8845
  required: string[];
8726
8846
  additionalProperties: boolean;
8847
+ oneOf?: undefined;
8727
8848
  };
8728
8849
  constraints: {
8729
8850
  rate_bucket: string;
@@ -8922,9 +9043,12 @@ declare const ACTION_REGISTRY: {
8922
9043
  topic?: undefined;
8923
9044
  durationMinutes?: undefined;
8924
9045
  candidates?: undefined;
9046
+ candidateWindow?: undefined;
9047
+ hold?: undefined;
8925
9048
  };
8926
9049
  required: string[];
8927
9050
  additionalProperties: boolean;
9051
+ oneOf?: undefined;
8928
9052
  };
8929
9053
  constraints: {
8930
9054
  rate_bucket: string;
@@ -9113,9 +9237,12 @@ declare const ACTION_REGISTRY: {
9113
9237
  topic?: undefined;
9114
9238
  durationMinutes?: undefined;
9115
9239
  candidates?: undefined;
9240
+ candidateWindow?: undefined;
9241
+ hold?: undefined;
9116
9242
  };
9117
9243
  required: string[];
9118
9244
  additionalProperties: boolean;
9245
+ oneOf?: undefined;
9119
9246
  };
9120
9247
  constraints: {
9121
9248
  rate_bucket: string;
@@ -9321,9 +9448,12 @@ declare const ACTION_REGISTRY: {
9321
9448
  topic?: undefined;
9322
9449
  durationMinutes?: undefined;
9323
9450
  candidates?: undefined;
9451
+ candidateWindow?: undefined;
9452
+ hold?: undefined;
9324
9453
  };
9325
9454
  required: string[];
9326
9455
  additionalProperties: boolean;
9456
+ oneOf?: undefined;
9327
9457
  };
9328
9458
  constraints: {
9329
9459
  rate_bucket: string;
@@ -9524,9 +9654,12 @@ declare const ACTION_REGISTRY: {
9524
9654
  topic?: undefined;
9525
9655
  durationMinutes?: undefined;
9526
9656
  candidates?: undefined;
9657
+ candidateWindow?: undefined;
9658
+ hold?: undefined;
9527
9659
  };
9528
9660
  required: string[];
9529
9661
  additionalProperties: boolean;
9662
+ oneOf?: undefined;
9530
9663
  };
9531
9664
  constraints: {
9532
9665
  rate_bucket: string;
@@ -9726,9 +9859,12 @@ declare const ACTION_REGISTRY: {
9726
9859
  topic?: undefined;
9727
9860
  durationMinutes?: undefined;
9728
9861
  candidates?: undefined;
9862
+ candidateWindow?: undefined;
9863
+ hold?: undefined;
9729
9864
  };
9730
9865
  required: string[];
9731
9866
  additionalProperties: boolean;
9867
+ oneOf?: undefined;
9732
9868
  };
9733
9869
  constraints: {
9734
9870
  rate_bucket: string;
@@ -9927,9 +10063,12 @@ declare const ACTION_REGISTRY: {
9927
10063
  topic?: undefined;
9928
10064
  durationMinutes?: undefined;
9929
10065
  candidates?: undefined;
10066
+ candidateWindow?: undefined;
10067
+ hold?: undefined;
9930
10068
  };
9931
10069
  required: string[];
9932
10070
  additionalProperties: boolean;
10071
+ oneOf?: undefined;
9933
10072
  };
9934
10073
  constraints: {
9935
10074
  rate_bucket: string;
@@ -10125,9 +10264,12 @@ declare const ACTION_REGISTRY: {
10125
10264
  topic?: undefined;
10126
10265
  durationMinutes?: undefined;
10127
10266
  candidates?: undefined;
10267
+ candidateWindow?: undefined;
10268
+ hold?: undefined;
10128
10269
  };
10129
10270
  required: string[];
10130
10271
  additionalProperties: boolean;
10272
+ oneOf?: undefined;
10131
10273
  };
10132
10274
  constraints: {
10133
10275
  rate_bucket: string;
@@ -10345,9 +10487,12 @@ declare const ACTION_REGISTRY: {
10345
10487
  topic?: undefined;
10346
10488
  durationMinutes?: undefined;
10347
10489
  candidates?: undefined;
10490
+ candidateWindow?: undefined;
10491
+ hold?: undefined;
10348
10492
  };
10349
10493
  required: string[];
10350
10494
  additionalProperties: boolean;
10495
+ oneOf?: undefined;
10351
10496
  };
10352
10497
  constraints: {
10353
10498
  rate_bucket: string;
@@ -10553,9 +10698,12 @@ declare const ACTION_REGISTRY: {
10553
10698
  topic?: undefined;
10554
10699
  durationMinutes?: undefined;
10555
10700
  candidates?: undefined;
10701
+ candidateWindow?: undefined;
10702
+ hold?: undefined;
10556
10703
  };
10557
10704
  required: string[];
10558
10705
  additionalProperties: boolean;
10706
+ oneOf?: undefined;
10559
10707
  };
10560
10708
  constraints: {
10561
10709
  rate_bucket: string;
@@ -10747,9 +10895,12 @@ declare const ACTION_REGISTRY: {
10747
10895
  topic?: undefined;
10748
10896
  durationMinutes?: undefined;
10749
10897
  candidates?: undefined;
10898
+ candidateWindow?: undefined;
10899
+ hold?: undefined;
10750
10900
  };
10751
10901
  required: string[];
10752
10902
  additionalProperties: boolean;
10903
+ oneOf?: undefined;
10753
10904
  };
10754
10905
  constraints: {
10755
10906
  rate_bucket: string;
@@ -10945,9 +11096,12 @@ declare const ACTION_REGISTRY: {
10945
11096
  topic?: undefined;
10946
11097
  durationMinutes?: undefined;
10947
11098
  candidates?: undefined;
11099
+ candidateWindow?: undefined;
11100
+ hold?: undefined;
10948
11101
  };
10949
11102
  required: string[];
10950
11103
  additionalProperties: boolean;
11104
+ oneOf?: undefined;
10951
11105
  };
10952
11106
  constraints: {
10953
11107
  rate_bucket: string;
@@ -11149,9 +11303,12 @@ declare const ACTION_REGISTRY: {
11149
11303
  topic?: undefined;
11150
11304
  durationMinutes?: undefined;
11151
11305
  candidates?: undefined;
11306
+ candidateWindow?: undefined;
11307
+ hold?: undefined;
11152
11308
  };
11153
11309
  required: string[];
11154
11310
  additionalProperties: boolean;
11311
+ oneOf?: undefined;
11155
11312
  };
11156
11313
  constraints: {
11157
11314
  rate_bucket: string;
@@ -11346,9 +11503,12 @@ declare const ACTION_REGISTRY: {
11346
11503
  topic?: undefined;
11347
11504
  durationMinutes?: undefined;
11348
11505
  candidates?: undefined;
11506
+ candidateWindow?: undefined;
11507
+ hold?: undefined;
11349
11508
  };
11350
11509
  required: string[];
11351
11510
  additionalProperties: boolean;
11511
+ oneOf?: undefined;
11352
11512
  };
11353
11513
  constraints: {
11354
11514
  rate_bucket: string;
@@ -11560,9 +11720,12 @@ declare const ACTION_REGISTRY: {
11560
11720
  topic?: undefined;
11561
11721
  durationMinutes?: undefined;
11562
11722
  candidates?: undefined;
11723
+ candidateWindow?: undefined;
11724
+ hold?: undefined;
11563
11725
  };
11564
11726
  required: string[];
11565
11727
  additionalProperties: boolean;
11728
+ oneOf?: undefined;
11566
11729
  };
11567
11730
  constraints: {
11568
11731
  rate_bucket: string;
@@ -11770,9 +11933,12 @@ declare const ACTION_REGISTRY: {
11770
11933
  topic?: undefined;
11771
11934
  durationMinutes?: undefined;
11772
11935
  candidates?: undefined;
11936
+ candidateWindow?: undefined;
11937
+ hold?: undefined;
11773
11938
  };
11774
11939
  required: string[];
11775
11940
  additionalProperties: boolean;
11941
+ oneOf?: undefined;
11776
11942
  };
11777
11943
  constraints: {
11778
11944
  rate_bucket: string;
@@ -11971,9 +12137,12 @@ declare const ACTION_REGISTRY: {
11971
12137
  topic?: undefined;
11972
12138
  durationMinutes?: undefined;
11973
12139
  candidates?: undefined;
12140
+ candidateWindow?: undefined;
12141
+ hold?: undefined;
11974
12142
  };
11975
12143
  required: string[];
11976
12144
  additionalProperties: boolean;
12145
+ oneOf?: undefined;
11977
12146
  };
11978
12147
  constraints: {
11979
12148
  rate_bucket: string;
@@ -12174,9 +12343,12 @@ declare const ACTION_REGISTRY: {
12174
12343
  topic?: undefined;
12175
12344
  durationMinutes?: undefined;
12176
12345
  candidates?: undefined;
12346
+ candidateWindow?: undefined;
12347
+ hold?: undefined;
12177
12348
  };
12178
12349
  required: string[];
12179
12350
  additionalProperties: boolean;
12351
+ oneOf?: undefined;
12180
12352
  };
12181
12353
  constraints: {
12182
12354
  rate_bucket: string;
@@ -12376,9 +12548,12 @@ declare const ACTION_REGISTRY: {
12376
12548
  topic?: undefined;
12377
12549
  durationMinutes?: undefined;
12378
12550
  candidates?: undefined;
12551
+ candidateWindow?: undefined;
12552
+ hold?: undefined;
12379
12553
  };
12380
12554
  required: string[];
12381
12555
  additionalProperties: boolean;
12556
+ oneOf?: undefined;
12382
12557
  };
12383
12558
  constraints: {
12384
12559
  rate_bucket: string;
@@ -12566,9 +12741,12 @@ declare const ACTION_REGISTRY: {
12566
12741
  topic?: undefined;
12567
12742
  durationMinutes?: undefined;
12568
12743
  candidates?: undefined;
12744
+ candidateWindow?: undefined;
12745
+ hold?: undefined;
12569
12746
  };
12570
12747
  required: string[];
12571
12748
  additionalProperties: boolean;
12749
+ oneOf?: undefined;
12572
12750
  };
12573
12751
  constraints: {
12574
12752
  rate_bucket: string;
@@ -12764,9 +12942,12 @@ declare const ACTION_REGISTRY: {
12764
12942
  topic?: undefined;
12765
12943
  durationMinutes?: undefined;
12766
12944
  candidates?: undefined;
12945
+ candidateWindow?: undefined;
12946
+ hold?: undefined;
12767
12947
  };
12768
12948
  required: string[];
12769
12949
  additionalProperties: boolean;
12950
+ oneOf?: undefined;
12770
12951
  };
12771
12952
  constraints: {
12772
12953
  rate_bucket: string;
@@ -12972,9 +13153,12 @@ declare const ACTION_REGISTRY: {
12972
13153
  topic?: undefined;
12973
13154
  durationMinutes?: undefined;
12974
13155
  candidates?: undefined;
13156
+ candidateWindow?: undefined;
13157
+ hold?: undefined;
12975
13158
  };
12976
13159
  required: string[];
12977
13160
  additionalProperties: boolean;
13161
+ oneOf?: undefined;
12978
13162
  };
12979
13163
  constraints: {
12980
13164
  rate_bucket: string;
@@ -13169,9 +13353,12 @@ declare const ACTION_REGISTRY: {
13169
13353
  topic?: undefined;
13170
13354
  durationMinutes?: undefined;
13171
13355
  candidates?: undefined;
13356
+ candidateWindow?: undefined;
13357
+ hold?: undefined;
13172
13358
  };
13173
13359
  required: string[];
13174
13360
  additionalProperties: boolean;
13361
+ oneOf?: undefined;
13175
13362
  };
13176
13363
  constraints: {
13177
13364
  rate_bucket: string;
@@ -13376,9 +13563,12 @@ declare const ACTION_REGISTRY: {
13376
13563
  topic?: undefined;
13377
13564
  durationMinutes?: undefined;
13378
13565
  candidates?: undefined;
13566
+ candidateWindow?: undefined;
13567
+ hold?: undefined;
13379
13568
  };
13380
13569
  required: string[];
13381
13570
  additionalProperties: boolean;
13571
+ oneOf?: undefined;
13382
13572
  };
13383
13573
  constraints: {
13384
13574
  rate_bucket: string;
@@ -13574,9 +13764,12 @@ declare const ACTION_REGISTRY: {
13574
13764
  topic?: undefined;
13575
13765
  durationMinutes?: undefined;
13576
13766
  candidates?: undefined;
13767
+ candidateWindow?: undefined;
13768
+ hold?: undefined;
13577
13769
  };
13578
13770
  required: string[];
13579
13771
  additionalProperties: boolean;
13772
+ oneOf?: undefined;
13580
13773
  };
13581
13774
  constraints: {
13582
13775
  rate_bucket: string;
@@ -13777,9 +13970,12 @@ declare const ACTION_REGISTRY: {
13777
13970
  topic?: undefined;
13778
13971
  durationMinutes?: undefined;
13779
13972
  candidates?: undefined;
13973
+ candidateWindow?: undefined;
13974
+ hold?: undefined;
13780
13975
  };
13781
13976
  required: never[];
13782
13977
  additionalProperties: boolean;
13978
+ oneOf?: undefined;
13783
13979
  };
13784
13980
  constraints: {
13785
13981
  rate_bucket: string;
@@ -13963,9 +14159,12 @@ declare const ACTION_REGISTRY: {
13963
14159
  topic?: undefined;
13964
14160
  durationMinutes?: undefined;
13965
14161
  candidates?: undefined;
14162
+ candidateWindow?: undefined;
14163
+ hold?: undefined;
13966
14164
  };
13967
14165
  required: never[];
13968
14166
  additionalProperties: boolean;
14167
+ oneOf?: undefined;
13969
14168
  };
13970
14169
  constraints: {
13971
14170
  rate_bucket: string;
@@ -14162,9 +14361,12 @@ declare const ACTION_REGISTRY: {
14162
14361
  topic?: undefined;
14163
14362
  durationMinutes?: undefined;
14164
14363
  candidates?: undefined;
14364
+ candidateWindow?: undefined;
14365
+ hold?: undefined;
14165
14366
  };
14166
14367
  required: string[];
14167
14368
  additionalProperties: boolean;
14369
+ oneOf?: undefined;
14168
14370
  };
14169
14371
  constraints: {
14170
14372
  rate_bucket: string;
@@ -14365,9 +14567,12 @@ declare const ACTION_REGISTRY: {
14365
14567
  topic?: undefined;
14366
14568
  durationMinutes?: undefined;
14367
14569
  candidates?: undefined;
14570
+ candidateWindow?: undefined;
14571
+ hold?: undefined;
14368
14572
  };
14369
14573
  required: string[];
14370
14574
  additionalProperties: boolean;
14575
+ oneOf?: undefined;
14371
14576
  };
14372
14577
  constraints: {
14373
14578
  rate_bucket: string;
@@ -14572,9 +14777,12 @@ declare const ACTION_REGISTRY: {
14572
14777
  topic?: undefined;
14573
14778
  durationMinutes?: undefined;
14574
14779
  candidates?: undefined;
14780
+ candidateWindow?: undefined;
14781
+ hold?: undefined;
14575
14782
  };
14576
14783
  required: never[];
14577
14784
  additionalProperties: boolean;
14785
+ oneOf?: undefined;
14578
14786
  };
14579
14787
  constraints: {
14580
14788
  rate_bucket: string;
@@ -14762,9 +14970,12 @@ declare const ACTION_REGISTRY: {
14762
14970
  topic?: undefined;
14763
14971
  durationMinutes?: undefined;
14764
14972
  candidates?: undefined;
14973
+ candidateWindow?: undefined;
14974
+ hold?: undefined;
14765
14975
  };
14766
14976
  required: string[];
14767
14977
  additionalProperties: boolean;
14978
+ oneOf?: undefined;
14768
14979
  };
14769
14980
  constraints: {
14770
14981
  rate_bucket: string;
@@ -14951,9 +15162,12 @@ declare const ACTION_REGISTRY: {
14951
15162
  topic?: undefined;
14952
15163
  durationMinutes?: undefined;
14953
15164
  candidates?: undefined;
15165
+ candidateWindow?: undefined;
15166
+ hold?: undefined;
14954
15167
  };
14955
15168
  required: never[];
14956
15169
  additionalProperties: boolean;
15170
+ oneOf?: undefined;
14957
15171
  };
14958
15172
  constraints: {
14959
15173
  rate_bucket: string;
@@ -15144,9 +15358,12 @@ declare const ACTION_REGISTRY: {
15144
15358
  topic?: undefined;
15145
15359
  durationMinutes?: undefined;
15146
15360
  candidates?: undefined;
15361
+ candidateWindow?: undefined;
15362
+ hold?: undefined;
15147
15363
  };
15148
15364
  required: string[];
15149
15365
  additionalProperties: boolean;
15366
+ oneOf?: undefined;
15150
15367
  };
15151
15368
  constraints: {
15152
15369
  rate_bucket: string;
@@ -15344,9 +15561,12 @@ declare const ACTION_REGISTRY: {
15344
15561
  topic?: undefined;
15345
15562
  durationMinutes?: undefined;
15346
15563
  candidates?: undefined;
15564
+ candidateWindow?: undefined;
15565
+ hold?: undefined;
15347
15566
  };
15348
15567
  required: string[];
15349
15568
  additionalProperties: boolean;
15569
+ oneOf?: undefined;
15350
15570
  };
15351
15571
  constraints: {
15352
15572
  rate_bucket: string;
@@ -15541,9 +15761,12 @@ declare const ACTION_REGISTRY: {
15541
15761
  topic?: undefined;
15542
15762
  durationMinutes?: undefined;
15543
15763
  candidates?: undefined;
15764
+ candidateWindow?: undefined;
15765
+ hold?: undefined;
15544
15766
  };
15545
15767
  required: string[];
15546
15768
  additionalProperties: boolean;
15769
+ oneOf?: undefined;
15547
15770
  };
15548
15771
  constraints: {
15549
15772
  rate_bucket: string;
@@ -15731,9 +15954,12 @@ declare const ACTION_REGISTRY: {
15731
15954
  topic?: undefined;
15732
15955
  durationMinutes?: undefined;
15733
15956
  candidates?: undefined;
15957
+ candidateWindow?: undefined;
15958
+ hold?: undefined;
15734
15959
  };
15735
15960
  required: string[];
15736
15961
  additionalProperties: boolean;
15962
+ oneOf?: undefined;
15737
15963
  };
15738
15964
  constraints: {
15739
15965
  rate_bucket: string;
@@ -15933,9 +16159,12 @@ declare const ACTION_REGISTRY: {
15933
16159
  topic?: undefined;
15934
16160
  durationMinutes?: undefined;
15935
16161
  candidates?: undefined;
16162
+ candidateWindow?: undefined;
16163
+ hold?: undefined;
15936
16164
  };
15937
16165
  required: never[];
15938
16166
  additionalProperties: boolean;
16167
+ oneOf?: undefined;
15939
16168
  };
15940
16169
  constraints: {
15941
16170
  rate_bucket: string;
@@ -16131,9 +16360,12 @@ declare const ACTION_REGISTRY: {
16131
16360
  topic?: undefined;
16132
16361
  durationMinutes?: undefined;
16133
16362
  candidates?: undefined;
16363
+ candidateWindow?: undefined;
16364
+ hold?: undefined;
16134
16365
  };
16135
16366
  required: string[];
16136
16367
  additionalProperties: boolean;
16368
+ oneOf?: undefined;
16137
16369
  };
16138
16370
  constraints: {
16139
16371
  rate_bucket: string;
@@ -16327,9 +16559,12 @@ declare const ACTION_REGISTRY: {
16327
16559
  topic?: undefined;
16328
16560
  durationMinutes?: undefined;
16329
16561
  candidates?: undefined;
16562
+ candidateWindow?: undefined;
16563
+ hold?: undefined;
16330
16564
  };
16331
16565
  required: string[];
16332
16566
  additionalProperties: boolean;
16567
+ oneOf?: undefined;
16333
16568
  };
16334
16569
  constraints: {
16335
16570
  rate_bucket: string;
@@ -16516,9 +16751,12 @@ declare const ACTION_REGISTRY: {
16516
16751
  topic?: undefined;
16517
16752
  durationMinutes?: undefined;
16518
16753
  candidates?: undefined;
16754
+ candidateWindow?: undefined;
16755
+ hold?: undefined;
16519
16756
  };
16520
16757
  required: string[];
16521
16758
  additionalProperties: boolean;
16759
+ oneOf?: undefined;
16522
16760
  };
16523
16761
  constraints: {
16524
16762
  rate_bucket: string;
@@ -16726,9 +16964,12 @@ declare const ACTION_REGISTRY: {
16726
16964
  topic?: undefined;
16727
16965
  durationMinutes?: undefined;
16728
16966
  candidates?: undefined;
16967
+ candidateWindow?: undefined;
16968
+ hold?: undefined;
16729
16969
  };
16730
16970
  required: string[];
16731
16971
  additionalProperties: boolean;
16972
+ oneOf?: undefined;
16732
16973
  };
16733
16974
  constraints: {
16734
16975
  rate_bucket: string;
@@ -16927,9 +17168,12 @@ declare const ACTION_REGISTRY: {
16927
17168
  topic?: undefined;
16928
17169
  durationMinutes?: undefined;
16929
17170
  candidates?: undefined;
17171
+ candidateWindow?: undefined;
17172
+ hold?: undefined;
16930
17173
  };
16931
17174
  required: string[];
16932
17175
  additionalProperties: boolean;
17176
+ oneOf?: undefined;
16933
17177
  };
16934
17178
  constraints: {
16935
17179
  rate_bucket: string;
@@ -17127,9 +17371,12 @@ declare const ACTION_REGISTRY: {
17127
17371
  topic?: undefined;
17128
17372
  durationMinutes?: undefined;
17129
17373
  candidates?: undefined;
17374
+ candidateWindow?: undefined;
17375
+ hold?: undefined;
17130
17376
  };
17131
17377
  additionalProperties: boolean;
17132
17378
  required?: undefined;
17379
+ oneOf?: undefined;
17133
17380
  };
17134
17381
  constraints: {
17135
17382
  rate_bucket: string;
@@ -17320,9 +17567,12 @@ declare const ACTION_REGISTRY: {
17320
17567
  topic?: undefined;
17321
17568
  durationMinutes?: undefined;
17322
17569
  candidates?: undefined;
17570
+ candidateWindow?: undefined;
17571
+ hold?: undefined;
17323
17572
  };
17324
17573
  required: string[];
17325
17574
  additionalProperties: boolean;
17575
+ oneOf?: undefined;
17326
17576
  };
17327
17577
  constraints: {
17328
17578
  rate_bucket: string;
@@ -17344,6 +17594,204 @@ declare const ACTION_REGISTRY: {
17344
17594
  secondary?: undefined;
17345
17595
  };
17346
17596
  version: string;
17597
+ } | {
17598
+ action: string;
17599
+ resource_type: string;
17600
+ required_relations: string[];
17601
+ required_scopes: string[];
17602
+ capability: string;
17603
+ input_schema: {
17604
+ type: string;
17605
+ properties: {
17606
+ calendarId: {
17607
+ type: string;
17608
+ description: string;
17609
+ };
17610
+ timeMin: {
17611
+ type: string;
17612
+ description: string;
17613
+ };
17614
+ timeMax: {
17615
+ type: string;
17616
+ description: string;
17617
+ };
17618
+ channel?: undefined;
17619
+ text?: undefined;
17620
+ thread_ts?: undefined;
17621
+ username?: undefined;
17622
+ icon_emoji?: undefined;
17623
+ blocks?: undefined;
17624
+ userId?: undefined;
17625
+ latest?: undefined;
17626
+ oldest?: undefined;
17627
+ limit?: undefined;
17628
+ inclusive?: undefined;
17629
+ cursor?: undefined;
17630
+ ts?: undefined;
17631
+ owner?: undefined;
17632
+ repo?: undefined;
17633
+ title?: undefined;
17634
+ body?: undefined;
17635
+ labels?: undefined;
17636
+ assignees?: undefined;
17637
+ milestone?: undefined;
17638
+ state?: undefined;
17639
+ sort?: undefined;
17640
+ direction?: undefined;
17641
+ per_page?: undefined;
17642
+ page?: undefined;
17643
+ issueNumber?: undefined;
17644
+ head?: undefined;
17645
+ base?: undefined;
17646
+ draft?: undefined;
17647
+ pullNumber?: undefined;
17648
+ commitTitle?: undefined;
17649
+ commitMessage?: undefined;
17650
+ mergeMethod?: undefined;
17651
+ event?: undefined;
17652
+ commentId?: undefined;
17653
+ expectedHeadSha?: undefined;
17654
+ query?: undefined;
17655
+ order?: undefined;
17656
+ path?: undefined;
17657
+ ref?: undefined;
17658
+ treeSha?: undefined;
17659
+ recursive?: undefined;
17660
+ sha?: undefined;
17661
+ author?: undefined;
17662
+ since?: undefined;
17663
+ until?: undefined;
17664
+ tag?: undefined;
17665
+ name?: undefined;
17666
+ description?: undefined;
17667
+ private?: undefined;
17668
+ org?: undefined;
17669
+ autoInit?: undefined;
17670
+ organization?: undefined;
17671
+ message?: undefined;
17672
+ content?: undefined;
17673
+ branch?: undefined;
17674
+ fromBranch?: undefined;
17675
+ subIssueId?: undefined;
17676
+ color?: undefined;
17677
+ newName?: undefined;
17678
+ workflowId?: undefined;
17679
+ inputs?: undefined;
17680
+ jobId?: undefined;
17681
+ teamSlug?: undefined;
17682
+ all?: undefined;
17683
+ participating?: undefined;
17684
+ before?: undefined;
17685
+ threadId?: undefined;
17686
+ lastReadAt?: undefined;
17687
+ ignored?: undefined;
17688
+ subscribed?: undefined;
17689
+ files?: undefined;
17690
+ public?: undefined;
17691
+ gistId?: undefined;
17692
+ maxResults?: undefined;
17693
+ messageId?: undefined;
17694
+ to?: undefined;
17695
+ subject?: undefined;
17696
+ cc?: undefined;
17697
+ bcc?: undefined;
17698
+ inReplyTo?: undefined;
17699
+ references?: undefined;
17700
+ messageIds?: undefined;
17701
+ eventId?: undefined;
17702
+ summary?: undefined;
17703
+ start?: undefined;
17704
+ end?: undefined;
17705
+ attendees?: undefined;
17706
+ location?: undefined;
17707
+ addMeet?: undefined;
17708
+ meetRequestId?: undefined;
17709
+ recent?: undefined;
17710
+ projectKeyOrId?: undefined;
17711
+ type?: undefined;
17712
+ boardId?: undefined;
17713
+ sprintId?: undefined;
17714
+ jql?: undefined;
17715
+ startAt?: undefined;
17716
+ issueIdOrKey?: undefined;
17717
+ projectKey?: undefined;
17718
+ issueTypeName?: undefined;
17719
+ priority?: undefined;
17720
+ assigneeAccountId?: undefined;
17721
+ transitionId?: undefined;
17722
+ typeName?: undefined;
17723
+ inwardIssueKey?: undefined;
17724
+ outwardIssueKey?: undefined;
17725
+ commentBody?: undefined;
17726
+ linkId?: undefined;
17727
+ file_path?: undefined;
17728
+ command?: undefined;
17729
+ working_directory?: undefined;
17730
+ env_profile?: undefined;
17731
+ timeout_seconds?: undefined;
17732
+ objectType?: undefined;
17733
+ after?: undefined;
17734
+ properties?: undefined;
17735
+ archived?: undefined;
17736
+ filterGroups?: undefined;
17737
+ sorts?: undefined;
17738
+ idProperty?: undefined;
17739
+ propertyName?: undefined;
17740
+ label?: undefined;
17741
+ fieldType?: undefined;
17742
+ groupName?: undefined;
17743
+ options?: undefined;
17744
+ objectId?: undefined;
17745
+ toObjectType?: undefined;
17746
+ fromObjectType?: undefined;
17747
+ engagementId?: undefined;
17748
+ ownerId?: undefined;
17749
+ timestamp?: undefined;
17750
+ associations?: undefined;
17751
+ metadata?: undefined;
17752
+ flowId?: undefined;
17753
+ portalId?: undefined;
17754
+ uiDomain?: undefined;
17755
+ pageRequests?: undefined;
17756
+ taskType?: undefined;
17757
+ payload?: undefined;
17758
+ id?: undefined;
17759
+ action?: undefined;
17760
+ data?: undefined;
17761
+ types?: undefined;
17762
+ status?: undefined;
17763
+ token?: undefined;
17764
+ result?: undefined;
17765
+ topic?: undefined;
17766
+ durationMinutes?: undefined;
17767
+ candidates?: undefined;
17768
+ candidateWindow?: undefined;
17769
+ hold?: undefined;
17770
+ };
17771
+ required: string[];
17772
+ additionalProperties: boolean;
17773
+ oneOf?: undefined;
17774
+ };
17775
+ constraints: {
17776
+ rate_bucket: string;
17777
+ };
17778
+ effects: string[];
17779
+ risk: string;
17780
+ target_bindings: {
17781
+ resource_id: {
17782
+ source: "param";
17783
+ param: string;
17784
+ required: boolean;
17785
+ default: string;
17786
+ fallback_param?: undefined;
17787
+ key?: undefined;
17788
+ multi?: undefined;
17789
+ separator?: undefined;
17790
+ derive?: undefined;
17791
+ };
17792
+ secondary?: undefined;
17793
+ };
17794
+ version: string;
17347
17795
  } | {
17348
17796
  action: string;
17349
17797
  resource_type: string;
@@ -17571,9 +18019,12 @@ declare const ACTION_REGISTRY: {
17571
18019
  topic?: undefined;
17572
18020
  durationMinutes?: undefined;
17573
18021
  candidates?: undefined;
18022
+ candidateWindow?: undefined;
18023
+ hold?: undefined;
17574
18024
  };
17575
18025
  required: string[];
17576
18026
  additionalProperties: boolean;
18027
+ oneOf?: undefined;
17577
18028
  };
17578
18029
  constraints: {
17579
18030
  rate_bucket: string;
@@ -17833,9 +18284,12 @@ declare const ACTION_REGISTRY: {
17833
18284
  topic?: undefined;
17834
18285
  durationMinutes?: undefined;
17835
18286
  candidates?: undefined;
18287
+ candidateWindow?: undefined;
18288
+ hold?: undefined;
17836
18289
  };
17837
18290
  required: string[];
17838
18291
  additionalProperties: boolean;
18292
+ oneOf?: undefined;
17839
18293
  };
17840
18294
  constraints: {
17841
18295
  rate_bucket: string;
@@ -18033,9 +18487,12 @@ declare const ACTION_REGISTRY: {
18033
18487
  topic?: undefined;
18034
18488
  durationMinutes?: undefined;
18035
18489
  candidates?: undefined;
18490
+ candidateWindow?: undefined;
18491
+ hold?: undefined;
18036
18492
  };
18037
18493
  required: string[];
18038
18494
  additionalProperties: boolean;
18495
+ oneOf?: undefined;
18039
18496
  };
18040
18497
  constraints: {
18041
18498
  rate_bucket: string;
@@ -18221,9 +18678,12 @@ declare const ACTION_REGISTRY: {
18221
18678
  topic?: undefined;
18222
18679
  durationMinutes?: undefined;
18223
18680
  candidates?: undefined;
18681
+ candidateWindow?: undefined;
18682
+ hold?: undefined;
18224
18683
  };
18225
18684
  additionalProperties: boolean;
18226
18685
  required?: undefined;
18686
+ oneOf?: undefined;
18227
18687
  };
18228
18688
  constraints: {
18229
18689
  rate_bucket: string;
@@ -18412,9 +18872,12 @@ declare const ACTION_REGISTRY: {
18412
18872
  topic?: undefined;
18413
18873
  durationMinutes?: undefined;
18414
18874
  candidates?: undefined;
18875
+ candidateWindow?: undefined;
18876
+ hold?: undefined;
18415
18877
  };
18416
18878
  additionalProperties: boolean;
18417
18879
  required?: undefined;
18880
+ oneOf?: undefined;
18418
18881
  };
18419
18882
  constraints: {
18420
18883
  rate_bucket: string;
@@ -18605,9 +19068,12 @@ declare const ACTION_REGISTRY: {
18605
19068
  topic?: undefined;
18606
19069
  durationMinutes?: undefined;
18607
19070
  candidates?: undefined;
19071
+ candidateWindow?: undefined;
19072
+ hold?: undefined;
18608
19073
  };
18609
19074
  required: string[];
18610
19075
  additionalProperties: boolean;
19076
+ oneOf?: undefined;
18611
19077
  };
18612
19078
  constraints: {
18613
19079
  rate_bucket: string;
@@ -18799,9 +19265,12 @@ declare const ACTION_REGISTRY: {
18799
19265
  topic?: undefined;
18800
19266
  durationMinutes?: undefined;
18801
19267
  candidates?: undefined;
19268
+ candidateWindow?: undefined;
19269
+ hold?: undefined;
18802
19270
  };
18803
19271
  required: string[];
18804
19272
  additionalProperties: boolean;
19273
+ oneOf?: undefined;
18805
19274
  };
18806
19275
  constraints: {
18807
19276
  rate_bucket: string;
@@ -18996,9 +19465,12 @@ declare const ACTION_REGISTRY: {
18996
19465
  topic?: undefined;
18997
19466
  durationMinutes?: undefined;
18998
19467
  candidates?: undefined;
19468
+ candidateWindow?: undefined;
19469
+ hold?: undefined;
18999
19470
  };
19000
19471
  required: string[];
19001
19472
  additionalProperties: boolean;
19473
+ oneOf?: undefined;
19002
19474
  };
19003
19475
  constraints: {
19004
19476
  rate_bucket: string;
@@ -19185,9 +19657,12 @@ declare const ACTION_REGISTRY: {
19185
19657
  topic?: undefined;
19186
19658
  durationMinutes?: undefined;
19187
19659
  candidates?: undefined;
19660
+ candidateWindow?: undefined;
19661
+ hold?: undefined;
19188
19662
  };
19189
19663
  required: string[];
19190
19664
  additionalProperties: boolean;
19665
+ oneOf?: undefined;
19191
19666
  };
19192
19667
  constraints: {
19193
19668
  rate_bucket: string;
@@ -19398,9 +19873,12 @@ declare const ACTION_REGISTRY: {
19398
19873
  topic?: undefined;
19399
19874
  durationMinutes?: undefined;
19400
19875
  candidates?: undefined;
19876
+ candidateWindow?: undefined;
19877
+ hold?: undefined;
19401
19878
  };
19402
19879
  required: string[];
19403
19880
  additionalProperties: boolean;
19881
+ oneOf?: undefined;
19404
19882
  };
19405
19883
  constraints: {
19406
19884
  rate_bucket: string;
@@ -19607,9 +20085,12 @@ declare const ACTION_REGISTRY: {
19607
20085
  topic?: undefined;
19608
20086
  durationMinutes?: undefined;
19609
20087
  candidates?: undefined;
20088
+ candidateWindow?: undefined;
20089
+ hold?: undefined;
19610
20090
  };
19611
20091
  required: string[];
19612
20092
  additionalProperties: boolean;
20093
+ oneOf?: undefined;
19613
20094
  };
19614
20095
  constraints: {
19615
20096
  rate_bucket: string;
@@ -19796,9 +20277,12 @@ declare const ACTION_REGISTRY: {
19796
20277
  topic?: undefined;
19797
20278
  durationMinutes?: undefined;
19798
20279
  candidates?: undefined;
20280
+ candidateWindow?: undefined;
20281
+ hold?: undefined;
19799
20282
  };
19800
20283
  required: string[];
19801
20284
  additionalProperties: boolean;
20285
+ oneOf?: undefined;
19802
20286
  };
19803
20287
  constraints: {
19804
20288
  rate_bucket: string;
@@ -19998,9 +20482,12 @@ declare const ACTION_REGISTRY: {
19998
20482
  topic?: undefined;
19999
20483
  durationMinutes?: undefined;
20000
20484
  candidates?: undefined;
20485
+ candidateWindow?: undefined;
20486
+ hold?: undefined;
20001
20487
  };
20002
20488
  required: string[];
20003
20489
  additionalProperties: boolean;
20490
+ oneOf?: undefined;
20004
20491
  };
20005
20492
  constraints: {
20006
20493
  rate_bucket: string;
@@ -20192,9 +20679,12 @@ declare const ACTION_REGISTRY: {
20192
20679
  topic?: undefined;
20193
20680
  durationMinutes?: undefined;
20194
20681
  candidates?: undefined;
20682
+ candidateWindow?: undefined;
20683
+ hold?: undefined;
20195
20684
  };
20196
20685
  required: string[];
20197
20686
  additionalProperties: boolean;
20687
+ oneOf?: undefined;
20198
20688
  };
20199
20689
  constraints: {
20200
20690
  rate_bucket: string;
@@ -20384,9 +20874,12 @@ declare const ACTION_REGISTRY: {
20384
20874
  topic?: undefined;
20385
20875
  durationMinutes?: undefined;
20386
20876
  candidates?: undefined;
20877
+ candidateWindow?: undefined;
20878
+ hold?: undefined;
20387
20879
  };
20388
20880
  required: string[];
20389
20881
  additionalProperties: boolean;
20882
+ oneOf?: undefined;
20390
20883
  };
20391
20884
  constraints: {
20392
20885
  rate_bucket: string;
@@ -20581,9 +21074,12 @@ declare const ACTION_REGISTRY: {
20581
21074
  topic?: undefined;
20582
21075
  durationMinutes?: undefined;
20583
21076
  candidates?: undefined;
21077
+ candidateWindow?: undefined;
21078
+ hold?: undefined;
20584
21079
  };
20585
21080
  additionalProperties: boolean;
20586
21081
  required?: undefined;
21082
+ oneOf?: undefined;
20587
21083
  };
20588
21084
  constraints: {
20589
21085
  rate_bucket: string;
@@ -20779,9 +21275,12 @@ declare const ACTION_REGISTRY: {
20779
21275
  topic?: undefined;
20780
21276
  durationMinutes?: undefined;
20781
21277
  candidates?: undefined;
21278
+ candidateWindow?: undefined;
21279
+ hold?: undefined;
20782
21280
  };
20783
21281
  required: string[];
20784
21282
  additionalProperties: boolean;
21283
+ oneOf?: undefined;
20785
21284
  };
20786
21285
  constraints: {
20787
21286
  rate_bucket: string;
@@ -20969,9 +21468,12 @@ declare const ACTION_REGISTRY: {
20969
21468
  topic?: undefined;
20970
21469
  durationMinutes?: undefined;
20971
21470
  candidates?: undefined;
21471
+ candidateWindow?: undefined;
21472
+ hold?: undefined;
20972
21473
  };
20973
21474
  required: string[];
20974
21475
  additionalProperties: boolean;
21476
+ oneOf?: undefined;
20975
21477
  };
20976
21478
  constraints: {
20977
21479
  rate_bucket: string;
@@ -21165,9 +21667,12 @@ declare const ACTION_REGISTRY: {
21165
21667
  topic?: undefined;
21166
21668
  durationMinutes?: undefined;
21167
21669
  candidates?: undefined;
21670
+ candidateWindow?: undefined;
21671
+ hold?: undefined;
21168
21672
  };
21169
21673
  required: string[];
21170
21674
  additionalProperties: boolean;
21675
+ oneOf?: undefined;
21171
21676
  };
21172
21677
  constraints: {
21173
21678
  rate_bucket: string;
@@ -21353,9 +21858,12 @@ declare const ACTION_REGISTRY: {
21353
21858
  topic?: undefined;
21354
21859
  durationMinutes?: undefined;
21355
21860
  candidates?: undefined;
21861
+ candidateWindow?: undefined;
21862
+ hold?: undefined;
21356
21863
  };
21357
21864
  required: string[];
21358
21865
  additionalProperties: boolean;
21866
+ oneOf?: undefined;
21359
21867
  };
21360
21868
  effects: string[];
21361
21869
  risk: string;
@@ -21544,9 +22052,12 @@ declare const ACTION_REGISTRY: {
21544
22052
  topic?: undefined;
21545
22053
  durationMinutes?: undefined;
21546
22054
  candidates?: undefined;
22055
+ candidateWindow?: undefined;
22056
+ hold?: undefined;
21547
22057
  };
21548
22058
  required: string[];
21549
22059
  additionalProperties: boolean;
22060
+ oneOf?: undefined;
21550
22061
  };
21551
22062
  effects: string[];
21552
22063
  risk: string;
@@ -21743,9 +22254,12 @@ declare const ACTION_REGISTRY: {
21743
22254
  topic?: undefined;
21744
22255
  durationMinutes?: undefined;
21745
22256
  candidates?: undefined;
22257
+ candidateWindow?: undefined;
22258
+ hold?: undefined;
21746
22259
  };
21747
22260
  required: string[];
21748
22261
  additionalProperties: boolean;
22262
+ oneOf?: undefined;
21749
22263
  };
21750
22264
  effects: string[];
21751
22265
  risk: string;
@@ -21944,9 +22458,12 @@ declare const ACTION_REGISTRY: {
21944
22458
  topic?: undefined;
21945
22459
  durationMinutes?: undefined;
21946
22460
  candidates?: undefined;
22461
+ candidateWindow?: undefined;
22462
+ hold?: undefined;
21947
22463
  };
21948
22464
  required: string[];
21949
22465
  additionalProperties: boolean;
22466
+ oneOf?: undefined;
21950
22467
  };
21951
22468
  constraints: {
21952
22469
  rate_bucket: string;
@@ -22156,9 +22673,12 @@ declare const ACTION_REGISTRY: {
22156
22673
  topic?: undefined;
22157
22674
  durationMinutes?: undefined;
22158
22675
  candidates?: undefined;
22676
+ candidateWindow?: undefined;
22677
+ hold?: undefined;
22159
22678
  };
22160
22679
  required: string[];
22161
22680
  additionalProperties: boolean;
22681
+ oneOf?: undefined;
22162
22682
  };
22163
22683
  constraints: {
22164
22684
  rate_bucket: string;
@@ -22369,9 +22889,12 @@ declare const ACTION_REGISTRY: {
22369
22889
  topic?: undefined;
22370
22890
  durationMinutes?: undefined;
22371
22891
  candidates?: undefined;
22892
+ candidateWindow?: undefined;
22893
+ hold?: undefined;
22372
22894
  };
22373
22895
  required: string[];
22374
22896
  additionalProperties: boolean;
22897
+ oneOf?: undefined;
22375
22898
  };
22376
22899
  constraints: {
22377
22900
  rate_bucket: string;
@@ -22577,9 +23100,12 @@ declare const ACTION_REGISTRY: {
22577
23100
  topic?: undefined;
22578
23101
  durationMinutes?: undefined;
22579
23102
  candidates?: undefined;
23103
+ candidateWindow?: undefined;
23104
+ hold?: undefined;
22580
23105
  };
22581
23106
  required: string[];
22582
23107
  additionalProperties: boolean;
23108
+ oneOf?: undefined;
22583
23109
  };
22584
23110
  constraints: {
22585
23111
  rate_bucket: string;
@@ -22785,9 +23311,12 @@ declare const ACTION_REGISTRY: {
22785
23311
  topic?: undefined;
22786
23312
  durationMinutes?: undefined;
22787
23313
  candidates?: undefined;
23314
+ candidateWindow?: undefined;
23315
+ hold?: undefined;
22788
23316
  };
22789
23317
  required: string[];
22790
23318
  additionalProperties: boolean;
23319
+ oneOf?: undefined;
22791
23320
  };
22792
23321
  constraints: {
22793
23322
  rate_bucket: string;
@@ -22976,9 +23505,12 @@ declare const ACTION_REGISTRY: {
22976
23505
  topic?: undefined;
22977
23506
  durationMinutes?: undefined;
22978
23507
  candidates?: undefined;
23508
+ candidateWindow?: undefined;
23509
+ hold?: undefined;
22979
23510
  };
22980
23511
  required: string[];
22981
23512
  additionalProperties: boolean;
23513
+ oneOf?: undefined;
22982
23514
  };
22983
23515
  constraints: {
22984
23516
  rate_bucket: string;
@@ -23168,9 +23700,12 @@ declare const ACTION_REGISTRY: {
23168
23700
  topic?: undefined;
23169
23701
  durationMinutes?: undefined;
23170
23702
  candidates?: undefined;
23703
+ candidateWindow?: undefined;
23704
+ hold?: undefined;
23171
23705
  };
23172
23706
  required: string[];
23173
23707
  additionalProperties: boolean;
23708
+ oneOf?: undefined;
23174
23709
  };
23175
23710
  constraints: {
23176
23711
  rate_bucket: string;
@@ -23376,9 +23911,12 @@ declare const ACTION_REGISTRY: {
23376
23911
  topic?: undefined;
23377
23912
  durationMinutes?: undefined;
23378
23913
  candidates?: undefined;
23914
+ candidateWindow?: undefined;
23915
+ hold?: undefined;
23379
23916
  };
23380
23917
  required: string[];
23381
23918
  additionalProperties: boolean;
23919
+ oneOf?: undefined;
23382
23920
  };
23383
23921
  constraints: {
23384
23922
  rate_bucket: string;
@@ -23583,9 +24121,12 @@ declare const ACTION_REGISTRY: {
23583
24121
  topic?: undefined;
23584
24122
  durationMinutes?: undefined;
23585
24123
  candidates?: undefined;
24124
+ candidateWindow?: undefined;
24125
+ hold?: undefined;
23586
24126
  };
23587
24127
  required: string[];
23588
24128
  additionalProperties: boolean;
24129
+ oneOf?: undefined;
23589
24130
  };
23590
24131
  constraints: {
23591
24132
  rate_bucket: string;
@@ -23782,9 +24323,12 @@ declare const ACTION_REGISTRY: {
23782
24323
  topic?: undefined;
23783
24324
  durationMinutes?: undefined;
23784
24325
  candidates?: undefined;
24326
+ candidateWindow?: undefined;
24327
+ hold?: undefined;
23785
24328
  };
23786
24329
  required: string[];
23787
24330
  additionalProperties: boolean;
24331
+ oneOf?: undefined;
23788
24332
  };
23789
24333
  constraints: {
23790
24334
  rate_bucket: string;
@@ -23972,9 +24516,12 @@ declare const ACTION_REGISTRY: {
23972
24516
  topic?: undefined;
23973
24517
  durationMinutes?: undefined;
23974
24518
  candidates?: undefined;
24519
+ candidateWindow?: undefined;
24520
+ hold?: undefined;
23975
24521
  };
23976
24522
  required: string[];
23977
24523
  additionalProperties: boolean;
24524
+ oneOf?: undefined;
23978
24525
  };
23979
24526
  constraints: {
23980
24527
  rate_bucket: string;
@@ -24168,9 +24715,12 @@ declare const ACTION_REGISTRY: {
24168
24715
  topic?: undefined;
24169
24716
  durationMinutes?: undefined;
24170
24717
  candidates?: undefined;
24718
+ candidateWindow?: undefined;
24719
+ hold?: undefined;
24171
24720
  };
24172
24721
  required: string[];
24173
24722
  additionalProperties: boolean;
24723
+ oneOf?: undefined;
24174
24724
  };
24175
24725
  constraints: {
24176
24726
  rate_bucket: string;
@@ -24356,9 +24906,12 @@ declare const ACTION_REGISTRY: {
24356
24906
  topic?: undefined;
24357
24907
  durationMinutes?: undefined;
24358
24908
  candidates?: undefined;
24909
+ candidateWindow?: undefined;
24910
+ hold?: undefined;
24359
24911
  };
24360
24912
  required: string[];
24361
24913
  additionalProperties: boolean;
24914
+ oneOf?: undefined;
24362
24915
  };
24363
24916
  constraints: {
24364
24917
  rate_bucket: string;
@@ -24553,9 +25106,12 @@ declare const ACTION_REGISTRY: {
24553
25106
  topic?: undefined;
24554
25107
  durationMinutes?: undefined;
24555
25108
  candidates?: undefined;
25109
+ candidateWindow?: undefined;
25110
+ hold?: undefined;
24556
25111
  };
24557
25112
  required: string[];
24558
25113
  additionalProperties: boolean;
25114
+ oneOf?: undefined;
24559
25115
  };
24560
25116
  constraints: {
24561
25117
  rate_bucket: string;
@@ -24749,9 +25305,12 @@ declare const ACTION_REGISTRY: {
24749
25305
  topic?: undefined;
24750
25306
  durationMinutes?: undefined;
24751
25307
  candidates?: undefined;
25308
+ candidateWindow?: undefined;
25309
+ hold?: undefined;
24752
25310
  };
24753
25311
  required: string[];
24754
25312
  additionalProperties: boolean;
25313
+ oneOf?: undefined;
24755
25314
  };
24756
25315
  constraints: {
24757
25316
  rate_bucket: string;
@@ -24941,9 +25500,12 @@ declare const ACTION_REGISTRY: {
24941
25500
  topic?: undefined;
24942
25501
  durationMinutes?: undefined;
24943
25502
  candidates?: undefined;
25503
+ candidateWindow?: undefined;
25504
+ hold?: undefined;
24944
25505
  };
24945
25506
  additionalProperties: boolean;
24946
25507
  required?: undefined;
25508
+ oneOf?: undefined;
24947
25509
  };
24948
25510
  constraints: {
24949
25511
  rate_bucket: string;
@@ -25129,9 +25691,12 @@ declare const ACTION_REGISTRY: {
25129
25691
  topic?: undefined;
25130
25692
  durationMinutes?: undefined;
25131
25693
  candidates?: undefined;
25694
+ candidateWindow?: undefined;
25695
+ hold?: undefined;
25132
25696
  };
25133
25697
  required: string[];
25134
25698
  additionalProperties: boolean;
25699
+ oneOf?: undefined;
25135
25700
  };
25136
25701
  constraints: {
25137
25702
  rate_bucket: string;
@@ -25322,9 +25887,12 @@ declare const ACTION_REGISTRY: {
25322
25887
  topic?: undefined;
25323
25888
  durationMinutes?: undefined;
25324
25889
  candidates?: undefined;
25890
+ candidateWindow?: undefined;
25891
+ hold?: undefined;
25325
25892
  };
25326
25893
  required: string[];
25327
25894
  additionalProperties: boolean;
25895
+ oneOf?: undefined;
25328
25896
  };
25329
25897
  constraints: {
25330
25898
  rate_bucket: string;
@@ -25523,9 +26091,12 @@ declare const ACTION_REGISTRY: {
25523
26091
  topic?: undefined;
25524
26092
  durationMinutes?: undefined;
25525
26093
  candidates?: undefined;
26094
+ candidateWindow?: undefined;
26095
+ hold?: undefined;
25526
26096
  };
25527
26097
  required: string[];
25528
26098
  additionalProperties: boolean;
26099
+ oneOf?: undefined;
25529
26100
  };
25530
26101
  constraints: {
25531
26102
  rate_bucket: string;
@@ -25720,9 +26291,12 @@ declare const ACTION_REGISTRY: {
25720
26291
  topic?: undefined;
25721
26292
  durationMinutes?: undefined;
25722
26293
  candidates?: undefined;
26294
+ candidateWindow?: undefined;
26295
+ hold?: undefined;
25723
26296
  };
25724
26297
  required: string[];
25725
26298
  additionalProperties: boolean;
26299
+ oneOf?: undefined;
25726
26300
  };
25727
26301
  constraints: {
25728
26302
  rate_bucket: string;
@@ -25915,9 +26489,12 @@ declare const ACTION_REGISTRY: {
25915
26489
  topic?: undefined;
25916
26490
  durationMinutes?: undefined;
25917
26491
  candidates?: undefined;
26492
+ candidateWindow?: undefined;
26493
+ hold?: undefined;
25918
26494
  };
25919
26495
  additionalProperties: boolean;
25920
26496
  required?: undefined;
26497
+ oneOf?: undefined;
25921
26498
  };
25922
26499
  constraints: {
25923
26500
  rate_bucket: string;
@@ -26105,9 +26682,12 @@ declare const ACTION_REGISTRY: {
26105
26682
  topic?: undefined;
26106
26683
  durationMinutes?: undefined;
26107
26684
  candidates?: undefined;
26685
+ candidateWindow?: undefined;
26686
+ hold?: undefined;
26108
26687
  };
26109
26688
  required: string[];
26110
26689
  additionalProperties: boolean;
26690
+ oneOf?: undefined;
26111
26691
  };
26112
26692
  constraints: {
26113
26693
  rate_bucket: string;
@@ -26298,9 +26878,12 @@ declare const ACTION_REGISTRY: {
26298
26878
  topic?: undefined;
26299
26879
  durationMinutes?: undefined;
26300
26880
  candidates?: undefined;
26881
+ candidateWindow?: undefined;
26882
+ hold?: undefined;
26301
26883
  };
26302
26884
  required: string[];
26303
26885
  additionalProperties: boolean;
26886
+ oneOf?: undefined;
26304
26887
  };
26305
26888
  constraints: {
26306
26889
  rate_bucket: string;
@@ -26368,6 +26951,26 @@ declare const ACTION_REGISTRY: {
26368
26951
  additionalProperties: boolean;
26369
26952
  };
26370
26953
  };
26954
+ candidateWindow: {
26955
+ type: string;
26956
+ description: string;
26957
+ properties: {
26958
+ start: {
26959
+ type: string;
26960
+ description: string;
26961
+ };
26962
+ end: {
26963
+ type: string;
26964
+ description: string;
26965
+ };
26966
+ };
26967
+ required: string[];
26968
+ additionalProperties: boolean;
26969
+ };
26970
+ hold: {
26971
+ type: string;
26972
+ description: string;
26973
+ };
26371
26974
  message: {
26372
26975
  type: string;
26373
26976
  description: string;
@@ -26523,6 +27126,19 @@ declare const ACTION_REGISTRY: {
26523
27126
  result?: undefined;
26524
27127
  };
26525
27128
  required: string[];
27129
+ oneOf: ({
27130
+ required: string[];
27131
+ properties: {
27132
+ candidates: {};
27133
+ candidateWindow?: undefined;
27134
+ };
27135
+ } | {
27136
+ required: string[];
27137
+ properties: {
27138
+ candidateWindow: {};
27139
+ candidates?: undefined;
27140
+ };
27141
+ })[];
26526
27142
  additionalProperties: boolean;
26527
27143
  };
26528
27144
  constraints: {
@@ -27771,4 +28387,4 @@ declare function resolveActionRisk(action: string | undefined | null): ActionRis
27771
28387
 
27772
28388
  declare const version = "0.0.1";
27773
28389
 
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 };
28390
+ 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 };