@vess-id/ai-identity 0.14.0-alpha.5 → 0.14.0-alpha.6

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
@@ -2776,6 +2776,27 @@ interface ConnectorExecutionContext {
2776
2776
  * Useful for debugging and audit logging.
2777
2777
  */
2778
2778
  requestId?: string;
2779
+ /**
2780
+ * The acting (caller) identity for this execution.
2781
+ *
2782
+ * Most connectors are external SaaS integrations that only need an OAuth
2783
+ * `token` and therefore ignore this field. Internal connectors (e.g. the
2784
+ * Agent Inbox, scheduling-link) have NO external OAuth token; instead they
2785
+ * act on behalf of an authenticated user, so they need the caller's
2786
+ * identity. The API populates this from the request's AuthContext
2787
+ * (`userInfo`) in `ToolAuthService.buildConnectorExecutionContext`.
2788
+ *
2789
+ * Purely additive: existing connectors that never read `actor` are
2790
+ * unaffected.
2791
+ */
2792
+ actor?: {
2793
+ /** Internal user id of the acting caller. */
2794
+ userId: string;
2795
+ /** Decentralized identifier (DID) of the acting caller. */
2796
+ did: string;
2797
+ /** Email of the acting caller, when known. */
2798
+ email?: string;
2799
+ };
2779
2800
  }
2780
2801
  /**
2781
2802
  * Core interface for connector plugins.
@@ -4664,16 +4685,19 @@ declare const ACTION_REGISTRY: {
4664
4685
  inclusive?: undefined;
4665
4686
  cursor?: undefined;
4666
4687
  ts?: undefined;
4688
+ owner?: undefined;
4689
+ repo?: undefined;
4667
4690
  title?: undefined;
4668
4691
  body?: undefined;
4669
4692
  labels?: undefined;
4670
4693
  assignees?: undefined;
4694
+ milestone?: undefined;
4671
4695
  state?: undefined;
4672
4696
  sort?: undefined;
4673
4697
  direction?: undefined;
4674
4698
  per_page?: undefined;
4675
4699
  page?: undefined;
4676
- issue_number?: undefined;
4700
+ issueNumber?: undefined;
4677
4701
  query?: undefined;
4678
4702
  maxResults?: undefined;
4679
4703
  messageId?: undefined;
@@ -4695,6 +4719,8 @@ declare const ACTION_REGISTRY: {
4695
4719
  end?: undefined;
4696
4720
  attendees?: undefined;
4697
4721
  location?: undefined;
4722
+ addMeet?: undefined;
4723
+ meetRequestId?: undefined;
4698
4724
  recent?: undefined;
4699
4725
  projectKeyOrId?: undefined;
4700
4726
  type?: undefined;
@@ -4745,6 +4771,19 @@ declare const ACTION_REGISTRY: {
4745
4771
  portalId?: undefined;
4746
4772
  uiDomain?: undefined;
4747
4773
  pageRequests?: undefined;
4774
+ taskType?: undefined;
4775
+ payload?: undefined;
4776
+ message?: undefined;
4777
+ id?: undefined;
4778
+ action?: undefined;
4779
+ data?: undefined;
4780
+ types?: undefined;
4781
+ status?: undefined;
4782
+ token?: undefined;
4783
+ result?: undefined;
4784
+ topic?: undefined;
4785
+ durationMinutes?: undefined;
4786
+ candidates?: undefined;
4748
4787
  };
4749
4788
  required: string[];
4750
4789
  additionalProperties: boolean;
@@ -4791,16 +4830,19 @@ declare const ACTION_REGISTRY: {
4791
4830
  inclusive?: undefined;
4792
4831
  cursor?: undefined;
4793
4832
  ts?: undefined;
4833
+ owner?: undefined;
4834
+ repo?: undefined;
4794
4835
  title?: undefined;
4795
4836
  body?: undefined;
4796
4837
  labels?: undefined;
4797
4838
  assignees?: undefined;
4839
+ milestone?: undefined;
4798
4840
  state?: undefined;
4799
4841
  sort?: undefined;
4800
4842
  direction?: undefined;
4801
4843
  per_page?: undefined;
4802
4844
  page?: undefined;
4803
- issue_number?: undefined;
4845
+ issueNumber?: undefined;
4804
4846
  query?: undefined;
4805
4847
  maxResults?: undefined;
4806
4848
  messageId?: undefined;
@@ -4822,6 +4864,8 @@ declare const ACTION_REGISTRY: {
4822
4864
  end?: undefined;
4823
4865
  attendees?: undefined;
4824
4866
  location?: undefined;
4867
+ addMeet?: undefined;
4868
+ meetRequestId?: undefined;
4825
4869
  recent?: undefined;
4826
4870
  projectKeyOrId?: undefined;
4827
4871
  type?: undefined;
@@ -4872,6 +4916,19 @@ declare const ACTION_REGISTRY: {
4872
4916
  portalId?: undefined;
4873
4917
  uiDomain?: undefined;
4874
4918
  pageRequests?: undefined;
4919
+ taskType?: undefined;
4920
+ payload?: undefined;
4921
+ message?: undefined;
4922
+ id?: undefined;
4923
+ action?: undefined;
4924
+ data?: undefined;
4925
+ types?: undefined;
4926
+ status?: undefined;
4927
+ token?: undefined;
4928
+ result?: undefined;
4929
+ topic?: undefined;
4930
+ durationMinutes?: undefined;
4931
+ candidates?: undefined;
4875
4932
  };
4876
4933
  additionalProperties: boolean;
4877
4934
  required?: undefined;
@@ -4921,16 +4978,19 @@ declare const ACTION_REGISTRY: {
4921
4978
  inclusive?: undefined;
4922
4979
  cursor?: undefined;
4923
4980
  ts?: undefined;
4981
+ owner?: undefined;
4982
+ repo?: undefined;
4924
4983
  title?: undefined;
4925
4984
  body?: undefined;
4926
4985
  labels?: undefined;
4927
4986
  assignees?: undefined;
4987
+ milestone?: undefined;
4928
4988
  state?: undefined;
4929
4989
  sort?: undefined;
4930
4990
  direction?: undefined;
4931
4991
  per_page?: undefined;
4932
4992
  page?: undefined;
4933
- issue_number?: undefined;
4993
+ issueNumber?: undefined;
4934
4994
  query?: undefined;
4935
4995
  maxResults?: undefined;
4936
4996
  messageId?: undefined;
@@ -4952,6 +5012,8 @@ declare const ACTION_REGISTRY: {
4952
5012
  end?: undefined;
4953
5013
  attendees?: undefined;
4954
5014
  location?: undefined;
5015
+ addMeet?: undefined;
5016
+ meetRequestId?: undefined;
4955
5017
  recent?: undefined;
4956
5018
  projectKeyOrId?: undefined;
4957
5019
  type?: undefined;
@@ -5002,6 +5064,19 @@ declare const ACTION_REGISTRY: {
5002
5064
  portalId?: undefined;
5003
5065
  uiDomain?: undefined;
5004
5066
  pageRequests?: undefined;
5067
+ taskType?: undefined;
5068
+ payload?: undefined;
5069
+ message?: undefined;
5070
+ id?: undefined;
5071
+ action?: undefined;
5072
+ data?: undefined;
5073
+ types?: undefined;
5074
+ status?: undefined;
5075
+ token?: undefined;
5076
+ result?: undefined;
5077
+ topic?: undefined;
5078
+ durationMinutes?: undefined;
5079
+ candidates?: undefined;
5005
5080
  };
5006
5081
  required: string[];
5007
5082
  additionalProperties: boolean;
@@ -5061,16 +5136,19 @@ declare const ACTION_REGISTRY: {
5061
5136
  userId?: undefined;
5062
5137
  cursor?: undefined;
5063
5138
  ts?: undefined;
5139
+ owner?: undefined;
5140
+ repo?: undefined;
5064
5141
  title?: undefined;
5065
5142
  body?: undefined;
5066
5143
  labels?: undefined;
5067
5144
  assignees?: undefined;
5145
+ milestone?: undefined;
5068
5146
  state?: undefined;
5069
5147
  sort?: undefined;
5070
5148
  direction?: undefined;
5071
5149
  per_page?: undefined;
5072
5150
  page?: undefined;
5073
- issue_number?: undefined;
5151
+ issueNumber?: undefined;
5074
5152
  query?: undefined;
5075
5153
  maxResults?: undefined;
5076
5154
  messageId?: undefined;
@@ -5092,6 +5170,8 @@ declare const ACTION_REGISTRY: {
5092
5170
  end?: undefined;
5093
5171
  attendees?: undefined;
5094
5172
  location?: undefined;
5173
+ addMeet?: undefined;
5174
+ meetRequestId?: undefined;
5095
5175
  recent?: undefined;
5096
5176
  projectKeyOrId?: undefined;
5097
5177
  type?: undefined;
@@ -5142,6 +5222,19 @@ declare const ACTION_REGISTRY: {
5142
5222
  portalId?: undefined;
5143
5223
  uiDomain?: undefined;
5144
5224
  pageRequests?: undefined;
5225
+ taskType?: undefined;
5226
+ payload?: undefined;
5227
+ message?: undefined;
5228
+ id?: undefined;
5229
+ action?: undefined;
5230
+ data?: undefined;
5231
+ types?: undefined;
5232
+ status?: undefined;
5233
+ token?: undefined;
5234
+ result?: undefined;
5235
+ topic?: undefined;
5236
+ durationMinutes?: undefined;
5237
+ candidates?: undefined;
5145
5238
  };
5146
5239
  required: string[];
5147
5240
  additionalProperties: boolean;
@@ -5198,16 +5291,19 @@ declare const ACTION_REGISTRY: {
5198
5291
  oldest?: undefined;
5199
5292
  inclusive?: undefined;
5200
5293
  ts?: undefined;
5294
+ owner?: undefined;
5295
+ repo?: undefined;
5201
5296
  title?: undefined;
5202
5297
  body?: undefined;
5203
5298
  labels?: undefined;
5204
5299
  assignees?: undefined;
5300
+ milestone?: undefined;
5205
5301
  state?: undefined;
5206
5302
  sort?: undefined;
5207
5303
  direction?: undefined;
5208
5304
  per_page?: undefined;
5209
5305
  page?: undefined;
5210
- issue_number?: undefined;
5306
+ issueNumber?: undefined;
5211
5307
  query?: undefined;
5212
5308
  maxResults?: undefined;
5213
5309
  messageId?: undefined;
@@ -5229,6 +5325,8 @@ declare const ACTION_REGISTRY: {
5229
5325
  end?: undefined;
5230
5326
  attendees?: undefined;
5231
5327
  location?: undefined;
5328
+ addMeet?: undefined;
5329
+ meetRequestId?: undefined;
5232
5330
  recent?: undefined;
5233
5331
  projectKeyOrId?: undefined;
5234
5332
  type?: undefined;
@@ -5279,6 +5377,19 @@ declare const ACTION_REGISTRY: {
5279
5377
  portalId?: undefined;
5280
5378
  uiDomain?: undefined;
5281
5379
  pageRequests?: undefined;
5380
+ taskType?: undefined;
5381
+ payload?: undefined;
5382
+ message?: undefined;
5383
+ id?: undefined;
5384
+ action?: undefined;
5385
+ data?: undefined;
5386
+ types?: undefined;
5387
+ status?: undefined;
5388
+ token?: undefined;
5389
+ result?: undefined;
5390
+ topic?: undefined;
5391
+ durationMinutes?: undefined;
5392
+ candidates?: undefined;
5282
5393
  };
5283
5394
  required: string[];
5284
5395
  additionalProperties: boolean;
@@ -5332,16 +5443,19 @@ declare const ACTION_REGISTRY: {
5332
5443
  inclusive?: undefined;
5333
5444
  cursor?: undefined;
5334
5445
  ts?: undefined;
5446
+ owner?: undefined;
5447
+ repo?: undefined;
5335
5448
  title?: undefined;
5336
5449
  body?: undefined;
5337
5450
  labels?: undefined;
5338
5451
  assignees?: undefined;
5452
+ milestone?: undefined;
5339
5453
  state?: undefined;
5340
5454
  sort?: undefined;
5341
5455
  direction?: undefined;
5342
5456
  per_page?: undefined;
5343
5457
  page?: undefined;
5344
- issue_number?: undefined;
5458
+ issueNumber?: undefined;
5345
5459
  query?: undefined;
5346
5460
  maxResults?: undefined;
5347
5461
  messageId?: undefined;
@@ -5363,6 +5477,8 @@ declare const ACTION_REGISTRY: {
5363
5477
  end?: undefined;
5364
5478
  attendees?: undefined;
5365
5479
  location?: undefined;
5480
+ addMeet?: undefined;
5481
+ meetRequestId?: undefined;
5366
5482
  recent?: undefined;
5367
5483
  projectKeyOrId?: undefined;
5368
5484
  type?: undefined;
@@ -5413,6 +5529,19 @@ declare const ACTION_REGISTRY: {
5413
5529
  portalId?: undefined;
5414
5530
  uiDomain?: undefined;
5415
5531
  pageRequests?: undefined;
5532
+ taskType?: undefined;
5533
+ payload?: undefined;
5534
+ message?: undefined;
5535
+ id?: undefined;
5536
+ action?: undefined;
5537
+ data?: undefined;
5538
+ types?: undefined;
5539
+ status?: undefined;
5540
+ token?: undefined;
5541
+ result?: undefined;
5542
+ topic?: undefined;
5543
+ durationMinutes?: undefined;
5544
+ candidates?: undefined;
5416
5545
  };
5417
5546
  additionalProperties: boolean;
5418
5547
  required?: undefined;
@@ -5469,16 +5598,19 @@ declare const ACTION_REGISTRY: {
5469
5598
  limit?: undefined;
5470
5599
  inclusive?: undefined;
5471
5600
  cursor?: undefined;
5601
+ owner?: undefined;
5602
+ repo?: undefined;
5472
5603
  title?: undefined;
5473
5604
  body?: undefined;
5474
5605
  labels?: undefined;
5475
5606
  assignees?: undefined;
5607
+ milestone?: undefined;
5476
5608
  state?: undefined;
5477
5609
  sort?: undefined;
5478
5610
  direction?: undefined;
5479
5611
  per_page?: undefined;
5480
5612
  page?: undefined;
5481
- issue_number?: undefined;
5613
+ issueNumber?: undefined;
5482
5614
  query?: undefined;
5483
5615
  maxResults?: undefined;
5484
5616
  messageId?: undefined;
@@ -5500,6 +5632,8 @@ declare const ACTION_REGISTRY: {
5500
5632
  end?: undefined;
5501
5633
  attendees?: undefined;
5502
5634
  location?: undefined;
5635
+ addMeet?: undefined;
5636
+ meetRequestId?: undefined;
5503
5637
  recent?: undefined;
5504
5638
  projectKeyOrId?: undefined;
5505
5639
  type?: undefined;
@@ -5550,6 +5684,19 @@ declare const ACTION_REGISTRY: {
5550
5684
  portalId?: undefined;
5551
5685
  uiDomain?: undefined;
5552
5686
  pageRequests?: undefined;
5687
+ taskType?: undefined;
5688
+ payload?: undefined;
5689
+ message?: undefined;
5690
+ id?: undefined;
5691
+ action?: undefined;
5692
+ data?: undefined;
5693
+ types?: undefined;
5694
+ status?: undefined;
5695
+ token?: undefined;
5696
+ result?: undefined;
5697
+ topic?: undefined;
5698
+ durationMinutes?: undefined;
5699
+ candidates?: undefined;
5553
5700
  };
5554
5701
  required: string[];
5555
5702
  additionalProperties: boolean;
@@ -5602,16 +5749,19 @@ declare const ACTION_REGISTRY: {
5602
5749
  limit?: undefined;
5603
5750
  inclusive?: undefined;
5604
5751
  cursor?: undefined;
5752
+ owner?: undefined;
5753
+ repo?: undefined;
5605
5754
  title?: undefined;
5606
5755
  body?: undefined;
5607
5756
  labels?: undefined;
5608
5757
  assignees?: undefined;
5758
+ milestone?: undefined;
5609
5759
  state?: undefined;
5610
5760
  sort?: undefined;
5611
5761
  direction?: undefined;
5612
5762
  per_page?: undefined;
5613
5763
  page?: undefined;
5614
- issue_number?: undefined;
5764
+ issueNumber?: undefined;
5615
5765
  query?: undefined;
5616
5766
  maxResults?: undefined;
5617
5767
  messageId?: undefined;
@@ -5633,6 +5783,8 @@ declare const ACTION_REGISTRY: {
5633
5783
  end?: undefined;
5634
5784
  attendees?: undefined;
5635
5785
  location?: undefined;
5786
+ addMeet?: undefined;
5787
+ meetRequestId?: undefined;
5636
5788
  recent?: undefined;
5637
5789
  projectKeyOrId?: undefined;
5638
5790
  type?: undefined;
@@ -5683,6 +5835,19 @@ declare const ACTION_REGISTRY: {
5683
5835
  portalId?: undefined;
5684
5836
  uiDomain?: undefined;
5685
5837
  pageRequests?: undefined;
5838
+ taskType?: undefined;
5839
+ payload?: undefined;
5840
+ message?: undefined;
5841
+ id?: undefined;
5842
+ action?: undefined;
5843
+ data?: undefined;
5844
+ types?: undefined;
5845
+ status?: undefined;
5846
+ token?: undefined;
5847
+ result?: undefined;
5848
+ topic?: undefined;
5849
+ durationMinutes?: undefined;
5850
+ candidates?: undefined;
5686
5851
  };
5687
5852
  required: string[];
5688
5853
  additionalProperties: boolean;
@@ -5716,6 +5881,16 @@ declare const ACTION_REGISTRY: {
5716
5881
  input_schema: {
5717
5882
  type: string;
5718
5883
  properties: {
5884
+ owner: {
5885
+ type: string;
5886
+ minLength: number;
5887
+ description: string;
5888
+ };
5889
+ repo: {
5890
+ type: string;
5891
+ minLength: number;
5892
+ description: string;
5893
+ };
5719
5894
  title: {
5720
5895
  type: string;
5721
5896
  minLength: number;
@@ -5723,6 +5898,8 @@ declare const ACTION_REGISTRY: {
5723
5898
  body: {
5724
5899
  type: string;
5725
5900
  minLength?: undefined;
5901
+ oneOf?: undefined;
5902
+ description?: undefined;
5726
5903
  };
5727
5904
  labels: {
5728
5905
  type: string;
@@ -5736,6 +5913,11 @@ declare const ACTION_REGISTRY: {
5736
5913
  type: string;
5737
5914
  };
5738
5915
  };
5916
+ milestone: {
5917
+ type: string;
5918
+ minimum: number;
5919
+ description: string;
5920
+ };
5739
5921
  channel?: undefined;
5740
5922
  text?: undefined;
5741
5923
  thread_ts?: undefined;
@@ -5754,7 +5936,7 @@ declare const ACTION_REGISTRY: {
5754
5936
  direction?: undefined;
5755
5937
  per_page?: undefined;
5756
5938
  page?: undefined;
5757
- issue_number?: undefined;
5939
+ issueNumber?: undefined;
5758
5940
  query?: undefined;
5759
5941
  maxResults?: undefined;
5760
5942
  messageId?: undefined;
@@ -5776,6 +5958,8 @@ declare const ACTION_REGISTRY: {
5776
5958
  end?: undefined;
5777
5959
  attendees?: undefined;
5778
5960
  location?: undefined;
5961
+ addMeet?: undefined;
5962
+ meetRequestId?: undefined;
5779
5963
  recent?: undefined;
5780
5964
  projectKeyOrId?: undefined;
5781
5965
  type?: undefined;
@@ -5826,6 +6010,19 @@ declare const ACTION_REGISTRY: {
5826
6010
  portalId?: undefined;
5827
6011
  uiDomain?: undefined;
5828
6012
  pageRequests?: undefined;
6013
+ taskType?: undefined;
6014
+ payload?: undefined;
6015
+ message?: undefined;
6016
+ id?: undefined;
6017
+ action?: undefined;
6018
+ data?: undefined;
6019
+ types?: undefined;
6020
+ status?: undefined;
6021
+ token?: undefined;
6022
+ result?: undefined;
6023
+ topic?: undefined;
6024
+ durationMinutes?: undefined;
6025
+ candidates?: undefined;
5829
6026
  };
5830
6027
  required: string[];
5831
6028
  additionalProperties: boolean;
@@ -5859,6 +6056,16 @@ declare const ACTION_REGISTRY: {
5859
6056
  input_schema: {
5860
6057
  type: string;
5861
6058
  properties: {
6059
+ owner: {
6060
+ type: string;
6061
+ minLength: number;
6062
+ description: string;
6063
+ };
6064
+ repo: {
6065
+ type: string;
6066
+ minLength: number;
6067
+ description: string;
6068
+ };
5862
6069
  state: {
5863
6070
  type: string;
5864
6071
  enum: string[];
@@ -5900,7 +6107,8 @@ declare const ACTION_REGISTRY: {
5900
6107
  title?: undefined;
5901
6108
  body?: undefined;
5902
6109
  assignees?: undefined;
5903
- issue_number?: undefined;
6110
+ milestone?: undefined;
6111
+ issueNumber?: undefined;
5904
6112
  query?: undefined;
5905
6113
  maxResults?: undefined;
5906
6114
  messageId?: undefined;
@@ -5922,6 +6130,8 @@ declare const ACTION_REGISTRY: {
5922
6130
  end?: undefined;
5923
6131
  attendees?: undefined;
5924
6132
  location?: undefined;
6133
+ addMeet?: undefined;
6134
+ meetRequestId?: undefined;
5925
6135
  recent?: undefined;
5926
6136
  projectKeyOrId?: undefined;
5927
6137
  type?: undefined;
@@ -5972,9 +6182,22 @@ declare const ACTION_REGISTRY: {
5972
6182
  portalId?: undefined;
5973
6183
  uiDomain?: undefined;
5974
6184
  pageRequests?: undefined;
6185
+ taskType?: undefined;
6186
+ payload?: undefined;
6187
+ message?: undefined;
6188
+ id?: undefined;
6189
+ action?: undefined;
6190
+ data?: undefined;
6191
+ types?: undefined;
6192
+ status?: undefined;
6193
+ token?: undefined;
6194
+ result?: undefined;
6195
+ topic?: undefined;
6196
+ durationMinutes?: undefined;
6197
+ candidates?: undefined;
5975
6198
  };
6199
+ required: string[];
5976
6200
  additionalProperties: boolean;
5977
- required?: undefined;
5978
6201
  };
5979
6202
  constraints: {
5980
6203
  rate_bucket: string;
@@ -6005,9 +6228,20 @@ declare const ACTION_REGISTRY: {
6005
6228
  input_schema: {
6006
6229
  type: string;
6007
6230
  properties: {
6008
- issue_number: {
6231
+ owner: {
6232
+ type: string;
6233
+ minLength: number;
6234
+ description: string;
6235
+ };
6236
+ repo: {
6237
+ type: string;
6238
+ minLength: number;
6239
+ description: string;
6240
+ };
6241
+ issueNumber: {
6009
6242
  type: string;
6010
6243
  minimum: number;
6244
+ description: string;
6011
6245
  };
6012
6246
  channel?: undefined;
6013
6247
  text?: undefined;
@@ -6026,6 +6260,7 @@ declare const ACTION_REGISTRY: {
6026
6260
  body?: undefined;
6027
6261
  labels?: undefined;
6028
6262
  assignees?: undefined;
6263
+ milestone?: undefined;
6029
6264
  state?: undefined;
6030
6265
  sort?: undefined;
6031
6266
  direction?: undefined;
@@ -6052,6 +6287,8 @@ declare const ACTION_REGISTRY: {
6052
6287
  end?: undefined;
6053
6288
  attendees?: undefined;
6054
6289
  location?: undefined;
6290
+ addMeet?: undefined;
6291
+ meetRequestId?: undefined;
6055
6292
  recent?: undefined;
6056
6293
  projectKeyOrId?: undefined;
6057
6294
  type?: undefined;
@@ -6102,6 +6339,19 @@ declare const ACTION_REGISTRY: {
6102
6339
  portalId?: undefined;
6103
6340
  uiDomain?: undefined;
6104
6341
  pageRequests?: undefined;
6342
+ taskType?: undefined;
6343
+ payload?: undefined;
6344
+ message?: undefined;
6345
+ id?: undefined;
6346
+ action?: undefined;
6347
+ data?: undefined;
6348
+ types?: undefined;
6349
+ status?: undefined;
6350
+ token?: undefined;
6351
+ result?: undefined;
6352
+ topic?: undefined;
6353
+ durationMinutes?: undefined;
6354
+ candidates?: undefined;
6105
6355
  };
6106
6356
  required: string[];
6107
6357
  additionalProperties: boolean;
@@ -6135,9 +6385,20 @@ declare const ACTION_REGISTRY: {
6135
6385
  input_schema: {
6136
6386
  type: string;
6137
6387
  properties: {
6138
- issue_number: {
6388
+ owner: {
6389
+ type: string;
6390
+ minLength: number;
6391
+ description: string;
6392
+ };
6393
+ repo: {
6394
+ type: string;
6395
+ minLength: number;
6396
+ description: string;
6397
+ };
6398
+ issueNumber: {
6139
6399
  type: string;
6140
6400
  minimum: number;
6401
+ description: string;
6141
6402
  };
6142
6403
  title: {
6143
6404
  type: string;
@@ -6146,6 +6407,8 @@ declare const ACTION_REGISTRY: {
6146
6407
  body: {
6147
6408
  type: string;
6148
6409
  minLength?: undefined;
6410
+ oneOf?: undefined;
6411
+ description?: undefined;
6149
6412
  };
6150
6413
  state: {
6151
6414
  type: string;
@@ -6176,6 +6439,7 @@ declare const ACTION_REGISTRY: {
6176
6439
  inclusive?: undefined;
6177
6440
  cursor?: undefined;
6178
6441
  ts?: undefined;
6442
+ milestone?: undefined;
6179
6443
  sort?: undefined;
6180
6444
  direction?: undefined;
6181
6445
  per_page?: undefined;
@@ -6201,6 +6465,8 @@ declare const ACTION_REGISTRY: {
6201
6465
  end?: undefined;
6202
6466
  attendees?: undefined;
6203
6467
  location?: undefined;
6468
+ addMeet?: undefined;
6469
+ meetRequestId?: undefined;
6204
6470
  recent?: undefined;
6205
6471
  projectKeyOrId?: undefined;
6206
6472
  type?: undefined;
@@ -6251,6 +6517,19 @@ declare const ACTION_REGISTRY: {
6251
6517
  portalId?: undefined;
6252
6518
  uiDomain?: undefined;
6253
6519
  pageRequests?: undefined;
6520
+ taskType?: undefined;
6521
+ payload?: undefined;
6522
+ message?: undefined;
6523
+ id?: undefined;
6524
+ action?: undefined;
6525
+ data?: undefined;
6526
+ types?: undefined;
6527
+ status?: undefined;
6528
+ token?: undefined;
6529
+ result?: undefined;
6530
+ topic?: undefined;
6531
+ durationMinutes?: undefined;
6532
+ candidates?: undefined;
6254
6533
  };
6255
6534
  required: string[];
6256
6535
  additionalProperties: boolean;
@@ -6308,16 +6587,19 @@ declare const ACTION_REGISTRY: {
6308
6587
  inclusive?: undefined;
6309
6588
  cursor?: undefined;
6310
6589
  ts?: undefined;
6590
+ owner?: undefined;
6591
+ repo?: undefined;
6311
6592
  title?: undefined;
6312
6593
  body?: undefined;
6313
6594
  labels?: undefined;
6314
6595
  assignees?: undefined;
6596
+ milestone?: undefined;
6315
6597
  state?: undefined;
6316
6598
  sort?: undefined;
6317
6599
  direction?: undefined;
6318
6600
  per_page?: undefined;
6319
6601
  page?: undefined;
6320
- issue_number?: undefined;
6602
+ issueNumber?: undefined;
6321
6603
  messageId?: undefined;
6322
6604
  to?: undefined;
6323
6605
  subject?: undefined;
@@ -6337,6 +6619,8 @@ declare const ACTION_REGISTRY: {
6337
6619
  end?: undefined;
6338
6620
  attendees?: undefined;
6339
6621
  location?: undefined;
6622
+ addMeet?: undefined;
6623
+ meetRequestId?: undefined;
6340
6624
  recent?: undefined;
6341
6625
  projectKeyOrId?: undefined;
6342
6626
  type?: undefined;
@@ -6387,6 +6671,19 @@ declare const ACTION_REGISTRY: {
6387
6671
  portalId?: undefined;
6388
6672
  uiDomain?: undefined;
6389
6673
  pageRequests?: undefined;
6674
+ taskType?: undefined;
6675
+ payload?: undefined;
6676
+ message?: undefined;
6677
+ id?: undefined;
6678
+ action?: undefined;
6679
+ data?: undefined;
6680
+ types?: undefined;
6681
+ status?: undefined;
6682
+ token?: undefined;
6683
+ result?: undefined;
6684
+ topic?: undefined;
6685
+ durationMinutes?: undefined;
6686
+ candidates?: undefined;
6390
6687
  };
6391
6688
  required: string[];
6392
6689
  additionalProperties: boolean;
@@ -6437,16 +6734,19 @@ declare const ACTION_REGISTRY: {
6437
6734
  inclusive?: undefined;
6438
6735
  cursor?: undefined;
6439
6736
  ts?: undefined;
6737
+ owner?: undefined;
6738
+ repo?: undefined;
6440
6739
  title?: undefined;
6441
6740
  body?: undefined;
6442
6741
  labels?: undefined;
6443
6742
  assignees?: undefined;
6743
+ milestone?: undefined;
6444
6744
  state?: undefined;
6445
6745
  sort?: undefined;
6446
6746
  direction?: undefined;
6447
6747
  per_page?: undefined;
6448
6748
  page?: undefined;
6449
- issue_number?: undefined;
6749
+ issueNumber?: undefined;
6450
6750
  query?: undefined;
6451
6751
  maxResults?: undefined;
6452
6752
  to?: undefined;
@@ -6467,6 +6767,8 @@ declare const ACTION_REGISTRY: {
6467
6767
  end?: undefined;
6468
6768
  attendees?: undefined;
6469
6769
  location?: undefined;
6770
+ addMeet?: undefined;
6771
+ meetRequestId?: undefined;
6470
6772
  recent?: undefined;
6471
6773
  projectKeyOrId?: undefined;
6472
6774
  type?: undefined;
@@ -6517,6 +6819,19 @@ declare const ACTION_REGISTRY: {
6517
6819
  portalId?: undefined;
6518
6820
  uiDomain?: undefined;
6519
6821
  pageRequests?: undefined;
6822
+ taskType?: undefined;
6823
+ payload?: undefined;
6824
+ message?: undefined;
6825
+ id?: undefined;
6826
+ action?: undefined;
6827
+ data?: undefined;
6828
+ types?: undefined;
6829
+ status?: undefined;
6830
+ token?: undefined;
6831
+ result?: undefined;
6832
+ topic?: undefined;
6833
+ durationMinutes?: undefined;
6834
+ candidates?: undefined;
6520
6835
  };
6521
6836
  required: string[];
6522
6837
  additionalProperties: boolean;
@@ -6553,6 +6868,7 @@ declare const ACTION_REGISTRY: {
6553
6868
  to: {
6554
6869
  type: string;
6555
6870
  minLength: number;
6871
+ description?: undefined;
6556
6872
  };
6557
6873
  subject: {
6558
6874
  type: string;
@@ -6561,6 +6877,8 @@ declare const ACTION_REGISTRY: {
6561
6877
  body: {
6562
6878
  type: string;
6563
6879
  minLength: number;
6880
+ oneOf?: undefined;
6881
+ description?: undefined;
6564
6882
  };
6565
6883
  cc: {
6566
6884
  type: string;
@@ -6590,15 +6908,18 @@ declare const ACTION_REGISTRY: {
6590
6908
  inclusive?: undefined;
6591
6909
  cursor?: undefined;
6592
6910
  ts?: undefined;
6911
+ owner?: undefined;
6912
+ repo?: undefined;
6593
6913
  title?: undefined;
6594
6914
  labels?: undefined;
6595
6915
  assignees?: undefined;
6916
+ milestone?: undefined;
6596
6917
  state?: undefined;
6597
6918
  sort?: undefined;
6598
6919
  direction?: undefined;
6599
6920
  per_page?: undefined;
6600
6921
  page?: undefined;
6601
- issue_number?: undefined;
6922
+ issueNumber?: undefined;
6602
6923
  query?: undefined;
6603
6924
  maxResults?: undefined;
6604
6925
  messageId?: undefined;
@@ -6613,6 +6934,8 @@ declare const ACTION_REGISTRY: {
6613
6934
  end?: undefined;
6614
6935
  attendees?: undefined;
6615
6936
  location?: undefined;
6937
+ addMeet?: undefined;
6938
+ meetRequestId?: undefined;
6616
6939
  recent?: undefined;
6617
6940
  projectKeyOrId?: undefined;
6618
6941
  type?: undefined;
@@ -6663,6 +6986,19 @@ declare const ACTION_REGISTRY: {
6663
6986
  portalId?: undefined;
6664
6987
  uiDomain?: undefined;
6665
6988
  pageRequests?: undefined;
6989
+ taskType?: undefined;
6990
+ payload?: undefined;
6991
+ message?: undefined;
6992
+ id?: undefined;
6993
+ action?: undefined;
6994
+ data?: undefined;
6995
+ types?: undefined;
6996
+ status?: undefined;
6997
+ token?: undefined;
6998
+ result?: undefined;
6999
+ topic?: undefined;
7000
+ durationMinutes?: undefined;
7001
+ candidates?: undefined;
6666
7002
  };
6667
7003
  required: string[];
6668
7004
  additionalProperties: boolean;
@@ -6725,16 +7061,19 @@ declare const ACTION_REGISTRY: {
6725
7061
  inclusive?: undefined;
6726
7062
  cursor?: undefined;
6727
7063
  ts?: undefined;
7064
+ owner?: undefined;
7065
+ repo?: undefined;
6728
7066
  title?: undefined;
6729
7067
  body?: undefined;
6730
7068
  labels?: undefined;
6731
7069
  assignees?: undefined;
7070
+ milestone?: undefined;
6732
7071
  state?: undefined;
6733
7072
  sort?: undefined;
6734
7073
  direction?: undefined;
6735
7074
  per_page?: undefined;
6736
7075
  page?: undefined;
6737
- issue_number?: undefined;
7076
+ issueNumber?: undefined;
6738
7077
  query?: undefined;
6739
7078
  maxResults?: undefined;
6740
7079
  messageId?: undefined;
@@ -6755,6 +7094,8 @@ declare const ACTION_REGISTRY: {
6755
7094
  end?: undefined;
6756
7095
  attendees?: undefined;
6757
7096
  location?: undefined;
7097
+ addMeet?: undefined;
7098
+ meetRequestId?: undefined;
6758
7099
  recent?: undefined;
6759
7100
  projectKeyOrId?: undefined;
6760
7101
  type?: undefined;
@@ -6805,6 +7146,19 @@ declare const ACTION_REGISTRY: {
6805
7146
  portalId?: undefined;
6806
7147
  uiDomain?: undefined;
6807
7148
  pageRequests?: undefined;
7149
+ taskType?: undefined;
7150
+ payload?: undefined;
7151
+ message?: undefined;
7152
+ id?: undefined;
7153
+ action?: undefined;
7154
+ data?: undefined;
7155
+ types?: undefined;
7156
+ status?: undefined;
7157
+ token?: undefined;
7158
+ result?: undefined;
7159
+ topic?: undefined;
7160
+ durationMinutes?: undefined;
7161
+ candidates?: undefined;
6808
7162
  };
6809
7163
  required: string[];
6810
7164
  additionalProperties: boolean;
@@ -6869,16 +7223,19 @@ declare const ACTION_REGISTRY: {
6869
7223
  inclusive?: undefined;
6870
7224
  cursor?: undefined;
6871
7225
  ts?: undefined;
7226
+ owner?: undefined;
7227
+ repo?: undefined;
6872
7228
  title?: undefined;
6873
7229
  body?: undefined;
6874
7230
  labels?: undefined;
6875
7231
  assignees?: undefined;
7232
+ milestone?: undefined;
6876
7233
  state?: undefined;
6877
7234
  sort?: undefined;
6878
7235
  direction?: undefined;
6879
7236
  per_page?: undefined;
6880
7237
  page?: undefined;
6881
- issue_number?: undefined;
7238
+ issueNumber?: undefined;
6882
7239
  query?: undefined;
6883
7240
  messageId?: undefined;
6884
7241
  to?: undefined;
@@ -6896,6 +7253,8 @@ declare const ACTION_REGISTRY: {
6896
7253
  end?: undefined;
6897
7254
  attendees?: undefined;
6898
7255
  location?: undefined;
7256
+ addMeet?: undefined;
7257
+ meetRequestId?: undefined;
6899
7258
  recent?: undefined;
6900
7259
  projectKeyOrId?: undefined;
6901
7260
  type?: undefined;
@@ -6946,6 +7305,19 @@ declare const ACTION_REGISTRY: {
6946
7305
  portalId?: undefined;
6947
7306
  uiDomain?: undefined;
6948
7307
  pageRequests?: undefined;
7308
+ taskType?: undefined;
7309
+ payload?: undefined;
7310
+ message?: undefined;
7311
+ id?: undefined;
7312
+ action?: undefined;
7313
+ data?: undefined;
7314
+ types?: undefined;
7315
+ status?: undefined;
7316
+ token?: undefined;
7317
+ result?: undefined;
7318
+ topic?: undefined;
7319
+ durationMinutes?: undefined;
7320
+ candidates?: undefined;
6949
7321
  };
6950
7322
  additionalProperties: boolean;
6951
7323
  required?: undefined;
@@ -7001,16 +7373,19 @@ declare const ACTION_REGISTRY: {
7001
7373
  inclusive?: undefined;
7002
7374
  cursor?: undefined;
7003
7375
  ts?: undefined;
7376
+ owner?: undefined;
7377
+ repo?: undefined;
7004
7378
  title?: undefined;
7005
7379
  body?: undefined;
7006
7380
  labels?: undefined;
7007
7381
  assignees?: undefined;
7382
+ milestone?: undefined;
7008
7383
  state?: undefined;
7009
7384
  sort?: undefined;
7010
7385
  direction?: undefined;
7011
7386
  per_page?: undefined;
7012
7387
  page?: undefined;
7013
- issue_number?: undefined;
7388
+ issueNumber?: undefined;
7014
7389
  query?: undefined;
7015
7390
  maxResults?: undefined;
7016
7391
  messageId?: undefined;
@@ -7030,6 +7405,8 @@ declare const ACTION_REGISTRY: {
7030
7405
  end?: undefined;
7031
7406
  attendees?: undefined;
7032
7407
  location?: undefined;
7408
+ addMeet?: undefined;
7409
+ meetRequestId?: undefined;
7033
7410
  recent?: undefined;
7034
7411
  projectKeyOrId?: undefined;
7035
7412
  type?: undefined;
@@ -7080,6 +7457,19 @@ declare const ACTION_REGISTRY: {
7080
7457
  portalId?: undefined;
7081
7458
  uiDomain?: undefined;
7082
7459
  pageRequests?: undefined;
7460
+ taskType?: undefined;
7461
+ payload?: undefined;
7462
+ message?: undefined;
7463
+ id?: undefined;
7464
+ action?: undefined;
7465
+ data?: undefined;
7466
+ types?: undefined;
7467
+ status?: undefined;
7468
+ token?: undefined;
7469
+ result?: undefined;
7470
+ topic?: undefined;
7471
+ durationMinutes?: undefined;
7472
+ candidates?: undefined;
7083
7473
  };
7084
7474
  required: string[];
7085
7475
  additionalProperties: boolean;
@@ -7125,6 +7515,7 @@ declare const ACTION_REGISTRY: {
7125
7515
  description: {
7126
7516
  type: string;
7127
7517
  description: string;
7518
+ oneOf?: undefined;
7128
7519
  };
7129
7520
  start: {
7130
7521
  type: string;
@@ -7178,6 +7569,14 @@ declare const ACTION_REGISTRY: {
7178
7569
  type: string;
7179
7570
  description: string;
7180
7571
  };
7572
+ addMeet: {
7573
+ type: string;
7574
+ description: string;
7575
+ };
7576
+ meetRequestId: {
7577
+ type: string;
7578
+ description: string;
7579
+ };
7181
7580
  channel?: undefined;
7182
7581
  text?: undefined;
7183
7582
  thread_ts?: undefined;
@@ -7191,16 +7590,19 @@ declare const ACTION_REGISTRY: {
7191
7590
  inclusive?: undefined;
7192
7591
  cursor?: undefined;
7193
7592
  ts?: undefined;
7593
+ owner?: undefined;
7594
+ repo?: undefined;
7194
7595
  title?: undefined;
7195
7596
  body?: undefined;
7196
7597
  labels?: undefined;
7197
7598
  assignees?: undefined;
7599
+ milestone?: undefined;
7198
7600
  state?: undefined;
7199
7601
  sort?: undefined;
7200
7602
  direction?: undefined;
7201
7603
  per_page?: undefined;
7202
7604
  page?: undefined;
7203
- issue_number?: undefined;
7605
+ issueNumber?: undefined;
7204
7606
  query?: undefined;
7205
7607
  maxResults?: undefined;
7206
7608
  messageId?: undefined;
@@ -7265,6 +7667,19 @@ declare const ACTION_REGISTRY: {
7265
7667
  portalId?: undefined;
7266
7668
  uiDomain?: undefined;
7267
7669
  pageRequests?: undefined;
7670
+ taskType?: undefined;
7671
+ payload?: undefined;
7672
+ message?: undefined;
7673
+ id?: undefined;
7674
+ action?: undefined;
7675
+ data?: undefined;
7676
+ types?: undefined;
7677
+ status?: undefined;
7678
+ token?: undefined;
7679
+ result?: undefined;
7680
+ topic?: undefined;
7681
+ durationMinutes?: undefined;
7682
+ candidates?: undefined;
7268
7683
  };
7269
7684
  required: string[];
7270
7685
  additionalProperties: boolean;
@@ -7322,6 +7737,7 @@ declare const ACTION_REGISTRY: {
7322
7737
  description: {
7323
7738
  type: string;
7324
7739
  description: string;
7740
+ oneOf?: undefined;
7325
7741
  };
7326
7742
  start: {
7327
7743
  type: string;
@@ -7375,6 +7791,14 @@ declare const ACTION_REGISTRY: {
7375
7791
  type: string;
7376
7792
  description: string;
7377
7793
  };
7794
+ addMeet: {
7795
+ type: string;
7796
+ description: string;
7797
+ };
7798
+ meetRequestId: {
7799
+ type: string;
7800
+ description: string;
7801
+ };
7378
7802
  channel?: undefined;
7379
7803
  text?: undefined;
7380
7804
  thread_ts?: undefined;
@@ -7388,16 +7812,19 @@ declare const ACTION_REGISTRY: {
7388
7812
  inclusive?: undefined;
7389
7813
  cursor?: undefined;
7390
7814
  ts?: undefined;
7815
+ owner?: undefined;
7816
+ repo?: undefined;
7391
7817
  title?: undefined;
7392
7818
  body?: undefined;
7393
7819
  labels?: undefined;
7394
7820
  assignees?: undefined;
7821
+ milestone?: undefined;
7395
7822
  state?: undefined;
7396
7823
  sort?: undefined;
7397
7824
  direction?: undefined;
7398
7825
  per_page?: undefined;
7399
7826
  page?: undefined;
7400
- issue_number?: undefined;
7827
+ issueNumber?: undefined;
7401
7828
  query?: undefined;
7402
7829
  maxResults?: undefined;
7403
7830
  messageId?: undefined;
@@ -7461,6 +7888,19 @@ declare const ACTION_REGISTRY: {
7461
7888
  portalId?: undefined;
7462
7889
  uiDomain?: undefined;
7463
7890
  pageRequests?: undefined;
7891
+ taskType?: undefined;
7892
+ payload?: undefined;
7893
+ message?: undefined;
7894
+ id?: undefined;
7895
+ action?: undefined;
7896
+ data?: undefined;
7897
+ types?: undefined;
7898
+ status?: undefined;
7899
+ token?: undefined;
7900
+ result?: undefined;
7901
+ topic?: undefined;
7902
+ durationMinutes?: undefined;
7903
+ candidates?: undefined;
7464
7904
  };
7465
7905
  required: string[];
7466
7906
  additionalProperties: boolean;
@@ -7523,16 +7963,19 @@ declare const ACTION_REGISTRY: {
7523
7963
  inclusive?: undefined;
7524
7964
  cursor?: undefined;
7525
7965
  ts?: undefined;
7966
+ owner?: undefined;
7967
+ repo?: undefined;
7526
7968
  title?: undefined;
7527
7969
  body?: undefined;
7528
7970
  labels?: undefined;
7529
7971
  assignees?: undefined;
7972
+ milestone?: undefined;
7530
7973
  state?: undefined;
7531
7974
  sort?: undefined;
7532
7975
  direction?: undefined;
7533
7976
  per_page?: undefined;
7534
7977
  page?: undefined;
7535
- issue_number?: undefined;
7978
+ issueNumber?: undefined;
7536
7979
  query?: undefined;
7537
7980
  maxResults?: undefined;
7538
7981
  messageId?: undefined;
@@ -7552,6 +7995,8 @@ declare const ACTION_REGISTRY: {
7552
7995
  end?: undefined;
7553
7996
  attendees?: undefined;
7554
7997
  location?: undefined;
7998
+ addMeet?: undefined;
7999
+ meetRequestId?: undefined;
7555
8000
  recent?: undefined;
7556
8001
  projectKeyOrId?: undefined;
7557
8002
  type?: undefined;
@@ -7602,6 +8047,19 @@ declare const ACTION_REGISTRY: {
7602
8047
  portalId?: undefined;
7603
8048
  uiDomain?: undefined;
7604
8049
  pageRequests?: undefined;
8050
+ taskType?: undefined;
8051
+ payload?: undefined;
8052
+ message?: undefined;
8053
+ id?: undefined;
8054
+ action?: undefined;
8055
+ data?: undefined;
8056
+ types?: undefined;
8057
+ status?: undefined;
8058
+ token?: undefined;
8059
+ result?: undefined;
8060
+ topic?: undefined;
8061
+ durationMinutes?: undefined;
8062
+ candidates?: undefined;
7605
8063
  };
7606
8064
  required: string[];
7607
8065
  additionalProperties: boolean;
@@ -7651,16 +8109,19 @@ declare const ACTION_REGISTRY: {
7651
8109
  inclusive?: undefined;
7652
8110
  cursor?: undefined;
7653
8111
  ts?: undefined;
8112
+ owner?: undefined;
8113
+ repo?: undefined;
7654
8114
  title?: undefined;
7655
8115
  body?: undefined;
7656
8116
  labels?: undefined;
7657
8117
  assignees?: undefined;
8118
+ milestone?: undefined;
7658
8119
  state?: undefined;
7659
8120
  sort?: undefined;
7660
8121
  direction?: undefined;
7661
8122
  per_page?: undefined;
7662
8123
  page?: undefined;
7663
- issue_number?: undefined;
8124
+ issueNumber?: undefined;
7664
8125
  query?: undefined;
7665
8126
  maxResults?: undefined;
7666
8127
  messageId?: undefined;
@@ -7682,6 +8143,8 @@ declare const ACTION_REGISTRY: {
7682
8143
  end?: undefined;
7683
8144
  attendees?: undefined;
7684
8145
  location?: undefined;
8146
+ addMeet?: undefined;
8147
+ meetRequestId?: undefined;
7685
8148
  projectKeyOrId?: undefined;
7686
8149
  type?: undefined;
7687
8150
  boardId?: undefined;
@@ -7731,6 +8194,19 @@ declare const ACTION_REGISTRY: {
7731
8194
  portalId?: undefined;
7732
8195
  uiDomain?: undefined;
7733
8196
  pageRequests?: undefined;
8197
+ taskType?: undefined;
8198
+ payload?: undefined;
8199
+ message?: undefined;
8200
+ id?: undefined;
8201
+ action?: undefined;
8202
+ data?: undefined;
8203
+ types?: undefined;
8204
+ status?: undefined;
8205
+ token?: undefined;
8206
+ result?: undefined;
8207
+ topic?: undefined;
8208
+ durationMinutes?: undefined;
8209
+ candidates?: undefined;
7734
8210
  };
7735
8211
  additionalProperties: boolean;
7736
8212
  required?: undefined;
@@ -7784,16 +8260,19 @@ declare const ACTION_REGISTRY: {
7784
8260
  inclusive?: undefined;
7785
8261
  cursor?: undefined;
7786
8262
  ts?: undefined;
8263
+ owner?: undefined;
8264
+ repo?: undefined;
7787
8265
  title?: undefined;
7788
8266
  body?: undefined;
7789
8267
  labels?: undefined;
7790
8268
  assignees?: undefined;
8269
+ milestone?: undefined;
7791
8270
  state?: undefined;
7792
8271
  sort?: undefined;
7793
8272
  direction?: undefined;
7794
8273
  per_page?: undefined;
7795
8274
  page?: undefined;
7796
- issue_number?: undefined;
8275
+ issueNumber?: undefined;
7797
8276
  query?: undefined;
7798
8277
  maxResults?: undefined;
7799
8278
  messageId?: undefined;
@@ -7815,6 +8294,8 @@ declare const ACTION_REGISTRY: {
7815
8294
  end?: undefined;
7816
8295
  attendees?: undefined;
7817
8296
  location?: undefined;
8297
+ addMeet?: undefined;
8298
+ meetRequestId?: undefined;
7818
8299
  recent?: undefined;
7819
8300
  boardId?: undefined;
7820
8301
  sprintId?: undefined;
@@ -7863,6 +8344,19 @@ declare const ACTION_REGISTRY: {
7863
8344
  portalId?: undefined;
7864
8345
  uiDomain?: undefined;
7865
8346
  pageRequests?: undefined;
8347
+ taskType?: undefined;
8348
+ payload?: undefined;
8349
+ message?: undefined;
8350
+ id?: undefined;
8351
+ action?: undefined;
8352
+ data?: undefined;
8353
+ types?: undefined;
8354
+ status?: undefined;
8355
+ token?: undefined;
8356
+ result?: undefined;
8357
+ topic?: undefined;
8358
+ durationMinutes?: undefined;
8359
+ candidates?: undefined;
7866
8360
  };
7867
8361
  additionalProperties: boolean;
7868
8362
  required?: undefined;
@@ -7917,15 +8411,18 @@ declare const ACTION_REGISTRY: {
7917
8411
  inclusive?: undefined;
7918
8412
  cursor?: undefined;
7919
8413
  ts?: undefined;
8414
+ owner?: undefined;
8415
+ repo?: undefined;
7920
8416
  title?: undefined;
7921
8417
  body?: undefined;
7922
8418
  labels?: undefined;
7923
8419
  assignees?: undefined;
8420
+ milestone?: undefined;
7924
8421
  sort?: undefined;
7925
8422
  direction?: undefined;
7926
8423
  per_page?: undefined;
7927
8424
  page?: undefined;
7928
- issue_number?: undefined;
8425
+ issueNumber?: undefined;
7929
8426
  query?: undefined;
7930
8427
  maxResults?: undefined;
7931
8428
  messageId?: undefined;
@@ -7947,6 +8444,8 @@ declare const ACTION_REGISTRY: {
7947
8444
  end?: undefined;
7948
8445
  attendees?: undefined;
7949
8446
  location?: undefined;
8447
+ addMeet?: undefined;
8448
+ meetRequestId?: undefined;
7950
8449
  recent?: undefined;
7951
8450
  projectKeyOrId?: undefined;
7952
8451
  type?: undefined;
@@ -7996,6 +8495,19 @@ declare const ACTION_REGISTRY: {
7996
8495
  portalId?: undefined;
7997
8496
  uiDomain?: undefined;
7998
8497
  pageRequests?: undefined;
8498
+ taskType?: undefined;
8499
+ payload?: undefined;
8500
+ message?: undefined;
8501
+ id?: undefined;
8502
+ action?: undefined;
8503
+ data?: undefined;
8504
+ types?: undefined;
8505
+ status?: undefined;
8506
+ token?: undefined;
8507
+ result?: undefined;
8508
+ topic?: undefined;
8509
+ durationMinutes?: undefined;
8510
+ candidates?: undefined;
7999
8511
  };
8000
8512
  required: string[];
8001
8513
  additionalProperties: boolean;
@@ -8052,16 +8564,19 @@ declare const ACTION_REGISTRY: {
8052
8564
  inclusive?: undefined;
8053
8565
  cursor?: undefined;
8054
8566
  ts?: undefined;
8567
+ owner?: undefined;
8568
+ repo?: undefined;
8055
8569
  title?: undefined;
8056
8570
  body?: undefined;
8057
8571
  labels?: undefined;
8058
8572
  assignees?: undefined;
8573
+ milestone?: undefined;
8059
8574
  state?: undefined;
8060
8575
  sort?: undefined;
8061
8576
  direction?: undefined;
8062
8577
  per_page?: undefined;
8063
8578
  page?: undefined;
8064
- issue_number?: undefined;
8579
+ issueNumber?: undefined;
8065
8580
  query?: undefined;
8066
8581
  messageId?: undefined;
8067
8582
  to?: undefined;
@@ -8082,6 +8597,8 @@ declare const ACTION_REGISTRY: {
8082
8597
  end?: undefined;
8083
8598
  attendees?: undefined;
8084
8599
  location?: undefined;
8600
+ addMeet?: undefined;
8601
+ meetRequestId?: undefined;
8085
8602
  recent?: undefined;
8086
8603
  projectKeyOrId?: undefined;
8087
8604
  type?: undefined;
@@ -8131,6 +8648,19 @@ declare const ACTION_REGISTRY: {
8131
8648
  portalId?: undefined;
8132
8649
  uiDomain?: undefined;
8133
8650
  pageRequests?: undefined;
8651
+ taskType?: undefined;
8652
+ payload?: undefined;
8653
+ message?: undefined;
8654
+ id?: undefined;
8655
+ action?: undefined;
8656
+ data?: undefined;
8657
+ types?: undefined;
8658
+ status?: undefined;
8659
+ token?: undefined;
8660
+ result?: undefined;
8661
+ topic?: undefined;
8662
+ durationMinutes?: undefined;
8663
+ candidates?: undefined;
8134
8664
  };
8135
8665
  required: string[];
8136
8666
  additionalProperties: boolean;
@@ -8191,16 +8721,19 @@ declare const ACTION_REGISTRY: {
8191
8721
  inclusive?: undefined;
8192
8722
  cursor?: undefined;
8193
8723
  ts?: undefined;
8724
+ owner?: undefined;
8725
+ repo?: undefined;
8194
8726
  title?: undefined;
8195
8727
  body?: undefined;
8196
8728
  labels?: undefined;
8197
8729
  assignees?: undefined;
8730
+ milestone?: undefined;
8198
8731
  state?: undefined;
8199
8732
  sort?: undefined;
8200
8733
  direction?: undefined;
8201
8734
  per_page?: undefined;
8202
8735
  page?: undefined;
8203
- issue_number?: undefined;
8736
+ issueNumber?: undefined;
8204
8737
  query?: undefined;
8205
8738
  messageId?: undefined;
8206
8739
  to?: undefined;
@@ -8221,6 +8754,8 @@ declare const ACTION_REGISTRY: {
8221
8754
  end?: undefined;
8222
8755
  attendees?: undefined;
8223
8756
  location?: undefined;
8757
+ addMeet?: undefined;
8758
+ meetRequestId?: undefined;
8224
8759
  recent?: undefined;
8225
8760
  projectKeyOrId?: undefined;
8226
8761
  type?: undefined;
@@ -8269,6 +8804,19 @@ declare const ACTION_REGISTRY: {
8269
8804
  portalId?: undefined;
8270
8805
  uiDomain?: undefined;
8271
8806
  pageRequests?: undefined;
8807
+ taskType?: undefined;
8808
+ payload?: undefined;
8809
+ message?: undefined;
8810
+ id?: undefined;
8811
+ action?: undefined;
8812
+ data?: undefined;
8813
+ types?: undefined;
8814
+ status?: undefined;
8815
+ token?: undefined;
8816
+ result?: undefined;
8817
+ topic?: undefined;
8818
+ durationMinutes?: undefined;
8819
+ candidates?: undefined;
8272
8820
  };
8273
8821
  required: string[];
8274
8822
  additionalProperties: boolean;
@@ -8319,16 +8867,19 @@ declare const ACTION_REGISTRY: {
8319
8867
  inclusive?: undefined;
8320
8868
  cursor?: undefined;
8321
8869
  ts?: undefined;
8870
+ owner?: undefined;
8871
+ repo?: undefined;
8322
8872
  title?: undefined;
8323
8873
  body?: undefined;
8324
8874
  labels?: undefined;
8325
8875
  assignees?: undefined;
8876
+ milestone?: undefined;
8326
8877
  state?: undefined;
8327
8878
  sort?: undefined;
8328
8879
  direction?: undefined;
8329
8880
  per_page?: undefined;
8330
8881
  page?: undefined;
8331
- issue_number?: undefined;
8882
+ issueNumber?: undefined;
8332
8883
  query?: undefined;
8333
8884
  maxResults?: undefined;
8334
8885
  messageId?: undefined;
@@ -8350,6 +8901,8 @@ declare const ACTION_REGISTRY: {
8350
8901
  end?: undefined;
8351
8902
  attendees?: undefined;
8352
8903
  location?: undefined;
8904
+ addMeet?: undefined;
8905
+ meetRequestId?: undefined;
8353
8906
  recent?: undefined;
8354
8907
  projectKeyOrId?: undefined;
8355
8908
  type?: undefined;
@@ -8399,6 +8952,19 @@ declare const ACTION_REGISTRY: {
8399
8952
  portalId?: undefined;
8400
8953
  uiDomain?: undefined;
8401
8954
  pageRequests?: undefined;
8955
+ taskType?: undefined;
8956
+ payload?: undefined;
8957
+ message?: undefined;
8958
+ id?: undefined;
8959
+ action?: undefined;
8960
+ data?: undefined;
8961
+ types?: undefined;
8962
+ status?: undefined;
8963
+ token?: undefined;
8964
+ result?: undefined;
8965
+ topic?: undefined;
8966
+ durationMinutes?: undefined;
8967
+ candidates?: undefined;
8402
8968
  };
8403
8969
  required: string[];
8404
8970
  additionalProperties: boolean;
@@ -8442,8 +9008,12 @@ declare const ACTION_REGISTRY: {
8442
9008
  description?: undefined;
8443
9009
  };
8444
9010
  description: {
8445
- type: string;
8446
- description?: undefined;
9011
+ oneOf: {
9012
+ type: string;
9013
+ description: string;
9014
+ }[];
9015
+ description: string;
9016
+ type?: undefined;
8447
9017
  };
8448
9018
  issueTypeName: {
8449
9019
  type: string;
@@ -8475,15 +9045,18 @@ declare const ACTION_REGISTRY: {
8475
9045
  inclusive?: undefined;
8476
9046
  cursor?: undefined;
8477
9047
  ts?: undefined;
9048
+ owner?: undefined;
9049
+ repo?: undefined;
8478
9050
  title?: undefined;
8479
9051
  body?: undefined;
8480
9052
  assignees?: undefined;
9053
+ milestone?: undefined;
8481
9054
  state?: undefined;
8482
9055
  sort?: undefined;
8483
9056
  direction?: undefined;
8484
9057
  per_page?: undefined;
8485
9058
  page?: undefined;
8486
- issue_number?: undefined;
9059
+ issueNumber?: undefined;
8487
9060
  query?: undefined;
8488
9061
  maxResults?: undefined;
8489
9062
  messageId?: undefined;
@@ -8503,6 +9076,8 @@ declare const ACTION_REGISTRY: {
8503
9076
  end?: undefined;
8504
9077
  attendees?: undefined;
8505
9078
  location?: undefined;
9079
+ addMeet?: undefined;
9080
+ meetRequestId?: undefined;
8506
9081
  recent?: undefined;
8507
9082
  projectKeyOrId?: undefined;
8508
9083
  type?: undefined;
@@ -8549,6 +9124,19 @@ declare const ACTION_REGISTRY: {
8549
9124
  portalId?: undefined;
8550
9125
  uiDomain?: undefined;
8551
9126
  pageRequests?: undefined;
9127
+ taskType?: undefined;
9128
+ payload?: undefined;
9129
+ message?: undefined;
9130
+ id?: undefined;
9131
+ action?: undefined;
9132
+ data?: undefined;
9133
+ types?: undefined;
9134
+ status?: undefined;
9135
+ token?: undefined;
9136
+ result?: undefined;
9137
+ topic?: undefined;
9138
+ durationMinutes?: undefined;
9139
+ candidates?: undefined;
8552
9140
  };
8553
9141
  required: string[];
8554
9142
  additionalProperties: boolean;
@@ -8592,8 +9180,12 @@ declare const ACTION_REGISTRY: {
8592
9180
  description?: undefined;
8593
9181
  };
8594
9182
  description: {
8595
- type: string;
8596
- description?: undefined;
9183
+ oneOf: {
9184
+ type: string;
9185
+ description: string;
9186
+ }[];
9187
+ description: string;
9188
+ type?: undefined;
8597
9189
  };
8598
9190
  priority: {
8599
9191
  type: string;
@@ -8620,15 +9212,18 @@ declare const ACTION_REGISTRY: {
8620
9212
  inclusive?: undefined;
8621
9213
  cursor?: undefined;
8622
9214
  ts?: undefined;
9215
+ owner?: undefined;
9216
+ repo?: undefined;
8623
9217
  title?: undefined;
8624
9218
  body?: undefined;
8625
9219
  assignees?: undefined;
9220
+ milestone?: undefined;
8626
9221
  state?: undefined;
8627
9222
  sort?: undefined;
8628
9223
  direction?: undefined;
8629
9224
  per_page?: undefined;
8630
9225
  page?: undefined;
8631
- issue_number?: undefined;
9226
+ issueNumber?: undefined;
8632
9227
  query?: undefined;
8633
9228
  maxResults?: undefined;
8634
9229
  messageId?: undefined;
@@ -8648,6 +9243,8 @@ declare const ACTION_REGISTRY: {
8648
9243
  end?: undefined;
8649
9244
  attendees?: undefined;
8650
9245
  location?: undefined;
9246
+ addMeet?: undefined;
9247
+ meetRequestId?: undefined;
8651
9248
  recent?: undefined;
8652
9249
  projectKeyOrId?: undefined;
8653
9250
  type?: undefined;
@@ -8695,6 +9292,19 @@ declare const ACTION_REGISTRY: {
8695
9292
  portalId?: undefined;
8696
9293
  uiDomain?: undefined;
8697
9294
  pageRequests?: undefined;
9295
+ taskType?: undefined;
9296
+ payload?: undefined;
9297
+ message?: undefined;
9298
+ id?: undefined;
9299
+ action?: undefined;
9300
+ data?: undefined;
9301
+ types?: undefined;
9302
+ status?: undefined;
9303
+ token?: undefined;
9304
+ result?: undefined;
9305
+ topic?: undefined;
9306
+ durationMinutes?: undefined;
9307
+ candidates?: undefined;
8698
9308
  };
8699
9309
  required: string[];
8700
9310
  additionalProperties: boolean;
@@ -8745,16 +9355,19 @@ declare const ACTION_REGISTRY: {
8745
9355
  inclusive?: undefined;
8746
9356
  cursor?: undefined;
8747
9357
  ts?: undefined;
9358
+ owner?: undefined;
9359
+ repo?: undefined;
8748
9360
  title?: undefined;
8749
9361
  body?: undefined;
8750
9362
  labels?: undefined;
8751
9363
  assignees?: undefined;
9364
+ milestone?: undefined;
8752
9365
  state?: undefined;
8753
9366
  sort?: undefined;
8754
9367
  direction?: undefined;
8755
9368
  per_page?: undefined;
8756
9369
  page?: undefined;
8757
- issue_number?: undefined;
9370
+ issueNumber?: undefined;
8758
9371
  query?: undefined;
8759
9372
  maxResults?: undefined;
8760
9373
  messageId?: undefined;
@@ -8776,6 +9389,8 @@ declare const ACTION_REGISTRY: {
8776
9389
  end?: undefined;
8777
9390
  attendees?: undefined;
8778
9391
  location?: undefined;
9392
+ addMeet?: undefined;
9393
+ meetRequestId?: undefined;
8779
9394
  recent?: undefined;
8780
9395
  projectKeyOrId?: undefined;
8781
9396
  type?: undefined;
@@ -8825,6 +9440,19 @@ declare const ACTION_REGISTRY: {
8825
9440
  portalId?: undefined;
8826
9441
  uiDomain?: undefined;
8827
9442
  pageRequests?: undefined;
9443
+ taskType?: undefined;
9444
+ payload?: undefined;
9445
+ message?: undefined;
9446
+ id?: undefined;
9447
+ action?: undefined;
9448
+ data?: undefined;
9449
+ types?: undefined;
9450
+ status?: undefined;
9451
+ token?: undefined;
9452
+ result?: undefined;
9453
+ topic?: undefined;
9454
+ durationMinutes?: undefined;
9455
+ candidates?: undefined;
8828
9456
  };
8829
9457
  required: string[];
8830
9458
  additionalProperties: boolean;
@@ -8863,8 +9491,18 @@ declare const ACTION_REGISTRY: {
8863
9491
  minLength: number;
8864
9492
  };
8865
9493
  body: {
8866
- type: string;
8867
- minLength: number;
9494
+ oneOf: ({
9495
+ type: string;
9496
+ minLength: number;
9497
+ description: string;
9498
+ } | {
9499
+ type: string;
9500
+ description: string;
9501
+ minLength?: undefined;
9502
+ })[];
9503
+ description: string;
9504
+ type?: undefined;
9505
+ minLength?: undefined;
8868
9506
  };
8869
9507
  channel?: undefined;
8870
9508
  text?: undefined;
@@ -8879,15 +9517,18 @@ declare const ACTION_REGISTRY: {
8879
9517
  inclusive?: undefined;
8880
9518
  cursor?: undefined;
8881
9519
  ts?: undefined;
9520
+ owner?: undefined;
9521
+ repo?: undefined;
8882
9522
  title?: undefined;
8883
9523
  labels?: undefined;
8884
9524
  assignees?: undefined;
9525
+ milestone?: undefined;
8885
9526
  state?: undefined;
8886
9527
  sort?: undefined;
8887
9528
  direction?: undefined;
8888
9529
  per_page?: undefined;
8889
9530
  page?: undefined;
8890
- issue_number?: undefined;
9531
+ issueNumber?: undefined;
8891
9532
  query?: undefined;
8892
9533
  maxResults?: undefined;
8893
9534
  messageId?: undefined;
@@ -8909,6 +9550,8 @@ declare const ACTION_REGISTRY: {
8909
9550
  end?: undefined;
8910
9551
  attendees?: undefined;
8911
9552
  location?: undefined;
9553
+ addMeet?: undefined;
9554
+ meetRequestId?: undefined;
8912
9555
  recent?: undefined;
8913
9556
  projectKeyOrId?: undefined;
8914
9557
  type?: undefined;
@@ -8958,6 +9601,19 @@ declare const ACTION_REGISTRY: {
8958
9601
  portalId?: undefined;
8959
9602
  uiDomain?: undefined;
8960
9603
  pageRequests?: undefined;
9604
+ taskType?: undefined;
9605
+ payload?: undefined;
9606
+ message?: undefined;
9607
+ id?: undefined;
9608
+ action?: undefined;
9609
+ data?: undefined;
9610
+ types?: undefined;
9611
+ status?: undefined;
9612
+ token?: undefined;
9613
+ result?: undefined;
9614
+ topic?: undefined;
9615
+ durationMinutes?: undefined;
9616
+ candidates?: undefined;
8961
9617
  };
8962
9618
  required: string[];
8963
9619
  additionalProperties: boolean;
@@ -9012,16 +9668,19 @@ declare const ACTION_REGISTRY: {
9012
9668
  inclusive?: undefined;
9013
9669
  cursor?: undefined;
9014
9670
  ts?: undefined;
9671
+ owner?: undefined;
9672
+ repo?: undefined;
9015
9673
  title?: undefined;
9016
9674
  body?: undefined;
9017
9675
  labels?: undefined;
9018
9676
  assignees?: undefined;
9677
+ milestone?: undefined;
9019
9678
  state?: undefined;
9020
9679
  sort?: undefined;
9021
9680
  direction?: undefined;
9022
9681
  per_page?: undefined;
9023
9682
  page?: undefined;
9024
- issue_number?: undefined;
9683
+ issueNumber?: undefined;
9025
9684
  query?: undefined;
9026
9685
  maxResults?: undefined;
9027
9686
  messageId?: undefined;
@@ -9043,6 +9702,8 @@ declare const ACTION_REGISTRY: {
9043
9702
  end?: undefined;
9044
9703
  attendees?: undefined;
9045
9704
  location?: undefined;
9705
+ addMeet?: undefined;
9706
+ meetRequestId?: undefined;
9046
9707
  recent?: undefined;
9047
9708
  projectKeyOrId?: undefined;
9048
9709
  type?: undefined;
@@ -9091,6 +9752,19 @@ declare const ACTION_REGISTRY: {
9091
9752
  portalId?: undefined;
9092
9753
  uiDomain?: undefined;
9093
9754
  pageRequests?: undefined;
9755
+ taskType?: undefined;
9756
+ payload?: undefined;
9757
+ message?: undefined;
9758
+ id?: undefined;
9759
+ action?: undefined;
9760
+ data?: undefined;
9761
+ types?: undefined;
9762
+ status?: undefined;
9763
+ token?: undefined;
9764
+ result?: undefined;
9765
+ topic?: undefined;
9766
+ durationMinutes?: undefined;
9767
+ candidates?: undefined;
9094
9768
  };
9095
9769
  required: string[];
9096
9770
  additionalProperties: boolean;
@@ -9152,16 +9826,19 @@ declare const ACTION_REGISTRY: {
9152
9826
  inclusive?: undefined;
9153
9827
  cursor?: undefined;
9154
9828
  ts?: undefined;
9829
+ owner?: undefined;
9830
+ repo?: undefined;
9155
9831
  title?: undefined;
9156
9832
  body?: undefined;
9157
9833
  labels?: undefined;
9158
9834
  assignees?: undefined;
9835
+ milestone?: undefined;
9159
9836
  state?: undefined;
9160
9837
  sort?: undefined;
9161
9838
  direction?: undefined;
9162
9839
  per_page?: undefined;
9163
9840
  page?: undefined;
9164
- issue_number?: undefined;
9841
+ issueNumber?: undefined;
9165
9842
  query?: undefined;
9166
9843
  maxResults?: undefined;
9167
9844
  messageId?: undefined;
@@ -9183,6 +9860,8 @@ declare const ACTION_REGISTRY: {
9183
9860
  end?: undefined;
9184
9861
  attendees?: undefined;
9185
9862
  location?: undefined;
9863
+ addMeet?: undefined;
9864
+ meetRequestId?: undefined;
9186
9865
  recent?: undefined;
9187
9866
  type?: undefined;
9188
9867
  startAt?: undefined;
@@ -9229,6 +9908,19 @@ declare const ACTION_REGISTRY: {
9229
9908
  portalId?: undefined;
9230
9909
  uiDomain?: undefined;
9231
9910
  pageRequests?: undefined;
9911
+ taskType?: undefined;
9912
+ payload?: undefined;
9913
+ message?: undefined;
9914
+ id?: undefined;
9915
+ action?: undefined;
9916
+ data?: undefined;
9917
+ types?: undefined;
9918
+ status?: undefined;
9919
+ token?: undefined;
9920
+ result?: undefined;
9921
+ topic?: undefined;
9922
+ durationMinutes?: undefined;
9923
+ candidates?: undefined;
9232
9924
  };
9233
9925
  additionalProperties: boolean;
9234
9926
  required?: undefined;
@@ -9291,16 +9983,19 @@ declare const ACTION_REGISTRY: {
9291
9983
  inclusive?: undefined;
9292
9984
  cursor?: undefined;
9293
9985
  ts?: undefined;
9986
+ owner?: undefined;
9987
+ repo?: undefined;
9294
9988
  title?: undefined;
9295
9989
  body?: undefined;
9296
9990
  labels?: undefined;
9297
9991
  assignees?: undefined;
9992
+ milestone?: undefined;
9298
9993
  state?: undefined;
9299
9994
  sort?: undefined;
9300
9995
  direction?: undefined;
9301
9996
  per_page?: undefined;
9302
9997
  page?: undefined;
9303
- issue_number?: undefined;
9998
+ issueNumber?: undefined;
9304
9999
  query?: undefined;
9305
10000
  maxResults?: undefined;
9306
10001
  messageId?: undefined;
@@ -9322,6 +10017,8 @@ declare const ACTION_REGISTRY: {
9322
10017
  end?: undefined;
9323
10018
  attendees?: undefined;
9324
10019
  location?: undefined;
10020
+ addMeet?: undefined;
10021
+ meetRequestId?: undefined;
9325
10022
  recent?: undefined;
9326
10023
  projectKeyOrId?: undefined;
9327
10024
  type?: undefined;
@@ -9368,6 +10065,19 @@ declare const ACTION_REGISTRY: {
9368
10065
  portalId?: undefined;
9369
10066
  uiDomain?: undefined;
9370
10067
  pageRequests?: undefined;
10068
+ taskType?: undefined;
10069
+ payload?: undefined;
10070
+ message?: undefined;
10071
+ id?: undefined;
10072
+ action?: undefined;
10073
+ data?: undefined;
10074
+ types?: undefined;
10075
+ status?: undefined;
10076
+ token?: undefined;
10077
+ result?: undefined;
10078
+ topic?: undefined;
10079
+ durationMinutes?: undefined;
10080
+ candidates?: undefined;
9371
10081
  };
9372
10082
  required: string[];
9373
10083
  additionalProperties: boolean;
@@ -9419,16 +10129,19 @@ declare const ACTION_REGISTRY: {
9419
10129
  inclusive?: undefined;
9420
10130
  cursor?: undefined;
9421
10131
  ts?: undefined;
10132
+ owner?: undefined;
10133
+ repo?: undefined;
9422
10134
  title?: undefined;
9423
10135
  body?: undefined;
9424
10136
  labels?: undefined;
9425
10137
  assignees?: undefined;
10138
+ milestone?: undefined;
9426
10139
  state?: undefined;
9427
10140
  sort?: undefined;
9428
10141
  direction?: undefined;
9429
10142
  per_page?: undefined;
9430
10143
  page?: undefined;
9431
- issue_number?: undefined;
10144
+ issueNumber?: undefined;
9432
10145
  query?: undefined;
9433
10146
  maxResults?: undefined;
9434
10147
  messageId?: undefined;
@@ -9450,6 +10163,8 @@ declare const ACTION_REGISTRY: {
9450
10163
  end?: undefined;
9451
10164
  attendees?: undefined;
9452
10165
  location?: undefined;
10166
+ addMeet?: undefined;
10167
+ meetRequestId?: undefined;
9453
10168
  recent?: undefined;
9454
10169
  projectKeyOrId?: undefined;
9455
10170
  type?: undefined;
@@ -9499,6 +10214,19 @@ declare const ACTION_REGISTRY: {
9499
10214
  portalId?: undefined;
9500
10215
  uiDomain?: undefined;
9501
10216
  pageRequests?: undefined;
10217
+ taskType?: undefined;
10218
+ payload?: undefined;
10219
+ message?: undefined;
10220
+ id?: undefined;
10221
+ action?: undefined;
10222
+ data?: undefined;
10223
+ types?: undefined;
10224
+ status?: undefined;
10225
+ token?: undefined;
10226
+ result?: undefined;
10227
+ topic?: undefined;
10228
+ durationMinutes?: undefined;
10229
+ candidates?: undefined;
9502
10230
  };
9503
10231
  required: string[];
9504
10232
  additionalProperties: boolean;
@@ -9548,16 +10276,19 @@ declare const ACTION_REGISTRY: {
9548
10276
  inclusive?: undefined;
9549
10277
  cursor?: undefined;
9550
10278
  ts?: undefined;
10279
+ owner?: undefined;
10280
+ repo?: undefined;
9551
10281
  title?: undefined;
9552
10282
  body?: undefined;
9553
10283
  labels?: undefined;
9554
10284
  assignees?: undefined;
10285
+ milestone?: undefined;
9555
10286
  state?: undefined;
9556
10287
  sort?: undefined;
9557
10288
  direction?: undefined;
9558
10289
  per_page?: undefined;
9559
10290
  page?: undefined;
9560
- issue_number?: undefined;
10291
+ issueNumber?: undefined;
9561
10292
  query?: undefined;
9562
10293
  maxResults?: undefined;
9563
10294
  messageId?: undefined;
@@ -9579,6 +10310,8 @@ declare const ACTION_REGISTRY: {
9579
10310
  end?: undefined;
9580
10311
  attendees?: undefined;
9581
10312
  location?: undefined;
10313
+ addMeet?: undefined;
10314
+ meetRequestId?: undefined;
9582
10315
  recent?: undefined;
9583
10316
  projectKeyOrId?: undefined;
9584
10317
  type?: undefined;
@@ -9628,6 +10361,19 @@ declare const ACTION_REGISTRY: {
9628
10361
  portalId?: undefined;
9629
10362
  uiDomain?: undefined;
9630
10363
  pageRequests?: undefined;
10364
+ taskType?: undefined;
10365
+ payload?: undefined;
10366
+ message?: undefined;
10367
+ id?: undefined;
10368
+ action?: undefined;
10369
+ data?: undefined;
10370
+ types?: undefined;
10371
+ status?: undefined;
10372
+ token?: undefined;
10373
+ result?: undefined;
10374
+ topic?: undefined;
10375
+ durationMinutes?: undefined;
10376
+ candidates?: undefined;
9631
10377
  };
9632
10378
  required: string[];
9633
10379
  additionalProperties: boolean;
@@ -9680,16 +10426,19 @@ declare const ACTION_REGISTRY: {
9680
10426
  inclusive?: undefined;
9681
10427
  cursor?: undefined;
9682
10428
  ts?: undefined;
10429
+ owner?: undefined;
10430
+ repo?: undefined;
9683
10431
  title?: undefined;
9684
10432
  body?: undefined;
9685
10433
  labels?: undefined;
9686
10434
  assignees?: undefined;
10435
+ milestone?: undefined;
9687
10436
  state?: undefined;
9688
10437
  sort?: undefined;
9689
10438
  direction?: undefined;
9690
10439
  per_page?: undefined;
9691
10440
  page?: undefined;
9692
- issue_number?: undefined;
10441
+ issueNumber?: undefined;
9693
10442
  query?: undefined;
9694
10443
  maxResults?: undefined;
9695
10444
  messageId?: undefined;
@@ -9711,6 +10460,8 @@ declare const ACTION_REGISTRY: {
9711
10460
  end?: undefined;
9712
10461
  attendees?: undefined;
9713
10462
  location?: undefined;
10463
+ addMeet?: undefined;
10464
+ meetRequestId?: undefined;
9714
10465
  recent?: undefined;
9715
10466
  projectKeyOrId?: undefined;
9716
10467
  type?: undefined;
@@ -9759,6 +10510,19 @@ declare const ACTION_REGISTRY: {
9759
10510
  portalId?: undefined;
9760
10511
  uiDomain?: undefined;
9761
10512
  pageRequests?: undefined;
10513
+ taskType?: undefined;
10514
+ payload?: undefined;
10515
+ message?: undefined;
10516
+ id?: undefined;
10517
+ action?: undefined;
10518
+ data?: undefined;
10519
+ types?: undefined;
10520
+ status?: undefined;
10521
+ token?: undefined;
10522
+ result?: undefined;
10523
+ topic?: undefined;
10524
+ durationMinutes?: undefined;
10525
+ candidates?: undefined;
9762
10526
  };
9763
10527
  required: string[];
9764
10528
  additionalProperties: boolean;
@@ -9822,16 +10586,19 @@ declare const ACTION_REGISTRY: {
9822
10586
  inclusive?: undefined;
9823
10587
  cursor?: undefined;
9824
10588
  ts?: undefined;
10589
+ owner?: undefined;
10590
+ repo?: undefined;
9825
10591
  title?: undefined;
9826
10592
  body?: undefined;
9827
10593
  labels?: undefined;
9828
10594
  assignees?: undefined;
10595
+ milestone?: undefined;
9829
10596
  state?: undefined;
9830
10597
  sort?: undefined;
9831
10598
  direction?: undefined;
9832
10599
  per_page?: undefined;
9833
10600
  page?: undefined;
9834
- issue_number?: undefined;
10601
+ issueNumber?: undefined;
9835
10602
  query?: undefined;
9836
10603
  maxResults?: undefined;
9837
10604
  messageId?: undefined;
@@ -9853,6 +10620,8 @@ declare const ACTION_REGISTRY: {
9853
10620
  end?: undefined;
9854
10621
  attendees?: undefined;
9855
10622
  location?: undefined;
10623
+ addMeet?: undefined;
10624
+ meetRequestId?: undefined;
9856
10625
  recent?: undefined;
9857
10626
  projectKeyOrId?: undefined;
9858
10627
  type?: undefined;
@@ -9899,6 +10668,19 @@ declare const ACTION_REGISTRY: {
9899
10668
  portalId?: undefined;
9900
10669
  uiDomain?: undefined;
9901
10670
  pageRequests?: undefined;
10671
+ taskType?: undefined;
10672
+ payload?: undefined;
10673
+ message?: undefined;
10674
+ id?: undefined;
10675
+ action?: undefined;
10676
+ data?: undefined;
10677
+ types?: undefined;
10678
+ status?: undefined;
10679
+ token?: undefined;
10680
+ result?: undefined;
10681
+ topic?: undefined;
10682
+ durationMinutes?: undefined;
10683
+ candidates?: undefined;
9902
10684
  };
9903
10685
  required: string[];
9904
10686
  additionalProperties: boolean;
@@ -9964,16 +10746,19 @@ declare const ACTION_REGISTRY: {
9964
10746
  inclusive?: undefined;
9965
10747
  cursor?: undefined;
9966
10748
  ts?: undefined;
10749
+ owner?: undefined;
10750
+ repo?: undefined;
9967
10751
  title?: undefined;
9968
10752
  body?: undefined;
9969
10753
  labels?: undefined;
9970
10754
  assignees?: undefined;
10755
+ milestone?: undefined;
9971
10756
  state?: undefined;
9972
10757
  sort?: undefined;
9973
10758
  direction?: undefined;
9974
10759
  per_page?: undefined;
9975
10760
  page?: undefined;
9976
- issue_number?: undefined;
10761
+ issueNumber?: undefined;
9977
10762
  query?: undefined;
9978
10763
  maxResults?: undefined;
9979
10764
  messageId?: undefined;
@@ -9995,6 +10780,8 @@ declare const ACTION_REGISTRY: {
9995
10780
  end?: undefined;
9996
10781
  attendees?: undefined;
9997
10782
  location?: undefined;
10783
+ addMeet?: undefined;
10784
+ meetRequestId?: undefined;
9998
10785
  recent?: undefined;
9999
10786
  projectKeyOrId?: undefined;
10000
10787
  type?: undefined;
@@ -10041,6 +10828,19 @@ declare const ACTION_REGISTRY: {
10041
10828
  portalId?: undefined;
10042
10829
  uiDomain?: undefined;
10043
10830
  pageRequests?: undefined;
10831
+ taskType?: undefined;
10832
+ payload?: undefined;
10833
+ message?: undefined;
10834
+ id?: undefined;
10835
+ action?: undefined;
10836
+ data?: undefined;
10837
+ types?: undefined;
10838
+ status?: undefined;
10839
+ token?: undefined;
10840
+ result?: undefined;
10841
+ topic?: undefined;
10842
+ durationMinutes?: undefined;
10843
+ candidates?: undefined;
10044
10844
  };
10045
10845
  required: string[];
10046
10846
  additionalProperties: boolean;
@@ -10118,16 +10918,19 @@ declare const ACTION_REGISTRY: {
10118
10918
  inclusive?: undefined;
10119
10919
  cursor?: undefined;
10120
10920
  ts?: undefined;
10921
+ owner?: undefined;
10922
+ repo?: undefined;
10121
10923
  title?: undefined;
10122
10924
  body?: undefined;
10123
10925
  labels?: undefined;
10124
10926
  assignees?: undefined;
10927
+ milestone?: undefined;
10125
10928
  state?: undefined;
10126
10929
  sort?: undefined;
10127
10930
  direction?: undefined;
10128
10931
  per_page?: undefined;
10129
10932
  page?: undefined;
10130
- issue_number?: undefined;
10933
+ issueNumber?: undefined;
10131
10934
  maxResults?: undefined;
10132
10935
  messageId?: undefined;
10133
10936
  to?: undefined;
@@ -10148,6 +10951,8 @@ declare const ACTION_REGISTRY: {
10148
10951
  end?: undefined;
10149
10952
  attendees?: undefined;
10150
10953
  location?: undefined;
10954
+ addMeet?: undefined;
10955
+ meetRequestId?: undefined;
10151
10956
  recent?: undefined;
10152
10957
  projectKeyOrId?: undefined;
10153
10958
  type?: undefined;
@@ -10193,6 +10998,19 @@ declare const ACTION_REGISTRY: {
10193
10998
  portalId?: undefined;
10194
10999
  uiDomain?: undefined;
10195
11000
  pageRequests?: undefined;
11001
+ taskType?: undefined;
11002
+ payload?: undefined;
11003
+ message?: undefined;
11004
+ id?: undefined;
11005
+ action?: undefined;
11006
+ data?: undefined;
11007
+ types?: undefined;
11008
+ status?: undefined;
11009
+ token?: undefined;
11010
+ result?: undefined;
11011
+ topic?: undefined;
11012
+ durationMinutes?: undefined;
11013
+ candidates?: undefined;
10196
11014
  };
10197
11015
  required: string[];
10198
11016
  additionalProperties: boolean;
@@ -10268,16 +11086,19 @@ declare const ACTION_REGISTRY: {
10268
11086
  inclusive?: undefined;
10269
11087
  cursor?: undefined;
10270
11088
  ts?: undefined;
11089
+ owner?: undefined;
11090
+ repo?: undefined;
10271
11091
  title?: undefined;
10272
11092
  body?: undefined;
10273
11093
  labels?: undefined;
10274
11094
  assignees?: undefined;
11095
+ milestone?: undefined;
10275
11096
  state?: undefined;
10276
11097
  sort?: undefined;
10277
11098
  direction?: undefined;
10278
11099
  per_page?: undefined;
10279
11100
  page?: undefined;
10280
- issue_number?: undefined;
11101
+ issueNumber?: undefined;
10281
11102
  query?: undefined;
10282
11103
  maxResults?: undefined;
10283
11104
  messageId?: undefined;
@@ -10299,6 +11120,8 @@ declare const ACTION_REGISTRY: {
10299
11120
  end?: undefined;
10300
11121
  attendees?: undefined;
10301
11122
  location?: undefined;
11123
+ addMeet?: undefined;
11124
+ meetRequestId?: undefined;
10302
11125
  recent?: undefined;
10303
11126
  projectKeyOrId?: undefined;
10304
11127
  type?: undefined;
@@ -10345,6 +11168,19 @@ declare const ACTION_REGISTRY: {
10345
11168
  portalId?: undefined;
10346
11169
  uiDomain?: undefined;
10347
11170
  pageRequests?: undefined;
11171
+ taskType?: undefined;
11172
+ payload?: undefined;
11173
+ message?: undefined;
11174
+ id?: undefined;
11175
+ action?: undefined;
11176
+ data?: undefined;
11177
+ types?: undefined;
11178
+ status?: undefined;
11179
+ token?: undefined;
11180
+ result?: undefined;
11181
+ topic?: undefined;
11182
+ durationMinutes?: undefined;
11183
+ candidates?: undefined;
10348
11184
  };
10349
11185
  required: string[];
10350
11186
  additionalProperties: boolean;
@@ -10413,16 +11249,19 @@ declare const ACTION_REGISTRY: {
10413
11249
  inclusive?: undefined;
10414
11250
  cursor?: undefined;
10415
11251
  ts?: undefined;
11252
+ owner?: undefined;
11253
+ repo?: undefined;
10416
11254
  title?: undefined;
10417
11255
  body?: undefined;
10418
11256
  labels?: undefined;
10419
11257
  assignees?: undefined;
11258
+ milestone?: undefined;
10420
11259
  state?: undefined;
10421
11260
  sort?: undefined;
10422
11261
  direction?: undefined;
10423
11262
  per_page?: undefined;
10424
11263
  page?: undefined;
10425
- issue_number?: undefined;
11264
+ issueNumber?: undefined;
10426
11265
  query?: undefined;
10427
11266
  maxResults?: undefined;
10428
11267
  messageId?: undefined;
@@ -10444,6 +11283,8 @@ declare const ACTION_REGISTRY: {
10444
11283
  end?: undefined;
10445
11284
  attendees?: undefined;
10446
11285
  location?: undefined;
11286
+ addMeet?: undefined;
11287
+ meetRequestId?: undefined;
10447
11288
  recent?: undefined;
10448
11289
  projectKeyOrId?: undefined;
10449
11290
  type?: undefined;
@@ -10492,6 +11333,19 @@ declare const ACTION_REGISTRY: {
10492
11333
  portalId?: undefined;
10493
11334
  uiDomain?: undefined;
10494
11335
  pageRequests?: undefined;
11336
+ taskType?: undefined;
11337
+ payload?: undefined;
11338
+ message?: undefined;
11339
+ id?: undefined;
11340
+ action?: undefined;
11341
+ data?: undefined;
11342
+ types?: undefined;
11343
+ status?: undefined;
11344
+ token?: undefined;
11345
+ result?: undefined;
11346
+ topic?: undefined;
11347
+ durationMinutes?: undefined;
11348
+ candidates?: undefined;
10495
11349
  };
10496
11350
  required: string[];
10497
11351
  additionalProperties: boolean;
@@ -10560,16 +11414,19 @@ declare const ACTION_REGISTRY: {
10560
11414
  inclusive?: undefined;
10561
11415
  cursor?: undefined;
10562
11416
  ts?: undefined;
11417
+ owner?: undefined;
11418
+ repo?: undefined;
10563
11419
  title?: undefined;
10564
11420
  body?: undefined;
10565
11421
  labels?: undefined;
10566
11422
  assignees?: undefined;
11423
+ milestone?: undefined;
10567
11424
  state?: undefined;
10568
11425
  sort?: undefined;
10569
11426
  direction?: undefined;
10570
11427
  per_page?: undefined;
10571
11428
  page?: undefined;
10572
- issue_number?: undefined;
11429
+ issueNumber?: undefined;
10573
11430
  query?: undefined;
10574
11431
  maxResults?: undefined;
10575
11432
  messageId?: undefined;
@@ -10591,6 +11448,8 @@ declare const ACTION_REGISTRY: {
10591
11448
  end?: undefined;
10592
11449
  attendees?: undefined;
10593
11450
  location?: undefined;
11451
+ addMeet?: undefined;
11452
+ meetRequestId?: undefined;
10594
11453
  recent?: undefined;
10595
11454
  projectKeyOrId?: undefined;
10596
11455
  type?: undefined;
@@ -10639,6 +11498,19 @@ declare const ACTION_REGISTRY: {
10639
11498
  portalId?: undefined;
10640
11499
  uiDomain?: undefined;
10641
11500
  pageRequests?: undefined;
11501
+ taskType?: undefined;
11502
+ payload?: undefined;
11503
+ message?: undefined;
11504
+ id?: undefined;
11505
+ action?: undefined;
11506
+ data?: undefined;
11507
+ types?: undefined;
11508
+ status?: undefined;
11509
+ token?: undefined;
11510
+ result?: undefined;
11511
+ topic?: undefined;
11512
+ durationMinutes?: undefined;
11513
+ candidates?: undefined;
10642
11514
  };
10643
11515
  required: string[];
10644
11516
  additionalProperties: boolean;
@@ -10692,16 +11564,19 @@ declare const ACTION_REGISTRY: {
10692
11564
  inclusive?: undefined;
10693
11565
  cursor?: undefined;
10694
11566
  ts?: undefined;
11567
+ owner?: undefined;
11568
+ repo?: undefined;
10695
11569
  title?: undefined;
10696
11570
  body?: undefined;
10697
11571
  labels?: undefined;
10698
11572
  assignees?: undefined;
11573
+ milestone?: undefined;
10699
11574
  state?: undefined;
10700
11575
  sort?: undefined;
10701
11576
  direction?: undefined;
10702
11577
  per_page?: undefined;
10703
11578
  page?: undefined;
10704
- issue_number?: undefined;
11579
+ issueNumber?: undefined;
10705
11580
  query?: undefined;
10706
11581
  maxResults?: undefined;
10707
11582
  messageId?: undefined;
@@ -10723,6 +11598,8 @@ declare const ACTION_REGISTRY: {
10723
11598
  end?: undefined;
10724
11599
  attendees?: undefined;
10725
11600
  location?: undefined;
11601
+ addMeet?: undefined;
11602
+ meetRequestId?: undefined;
10726
11603
  recent?: undefined;
10727
11604
  projectKeyOrId?: undefined;
10728
11605
  type?: undefined;
@@ -10771,6 +11648,19 @@ declare const ACTION_REGISTRY: {
10771
11648
  portalId?: undefined;
10772
11649
  uiDomain?: undefined;
10773
11650
  pageRequests?: undefined;
11651
+ taskType?: undefined;
11652
+ payload?: undefined;
11653
+ message?: undefined;
11654
+ id?: undefined;
11655
+ action?: undefined;
11656
+ data?: undefined;
11657
+ types?: undefined;
11658
+ status?: undefined;
11659
+ token?: undefined;
11660
+ result?: undefined;
11661
+ topic?: undefined;
11662
+ durationMinutes?: undefined;
11663
+ candidates?: undefined;
10774
11664
  };
10775
11665
  required: string[];
10776
11666
  additionalProperties: boolean;
@@ -10825,16 +11715,19 @@ declare const ACTION_REGISTRY: {
10825
11715
  inclusive?: undefined;
10826
11716
  cursor?: undefined;
10827
11717
  ts?: undefined;
11718
+ owner?: undefined;
11719
+ repo?: undefined;
10828
11720
  title?: undefined;
10829
11721
  body?: undefined;
10830
11722
  labels?: undefined;
10831
11723
  assignees?: undefined;
11724
+ milestone?: undefined;
10832
11725
  state?: undefined;
10833
11726
  sort?: undefined;
10834
11727
  direction?: undefined;
10835
11728
  per_page?: undefined;
10836
11729
  page?: undefined;
10837
- issue_number?: undefined;
11730
+ issueNumber?: undefined;
10838
11731
  query?: undefined;
10839
11732
  maxResults?: undefined;
10840
11733
  messageId?: undefined;
@@ -10856,6 +11749,8 @@ declare const ACTION_REGISTRY: {
10856
11749
  end?: undefined;
10857
11750
  attendees?: undefined;
10858
11751
  location?: undefined;
11752
+ addMeet?: undefined;
11753
+ meetRequestId?: undefined;
10859
11754
  recent?: undefined;
10860
11755
  projectKeyOrId?: undefined;
10861
11756
  type?: undefined;
@@ -10904,6 +11799,19 @@ declare const ACTION_REGISTRY: {
10904
11799
  portalId?: undefined;
10905
11800
  uiDomain?: undefined;
10906
11801
  pageRequests?: undefined;
11802
+ taskType?: undefined;
11803
+ payload?: undefined;
11804
+ message?: undefined;
11805
+ id?: undefined;
11806
+ action?: undefined;
11807
+ data?: undefined;
11808
+ types?: undefined;
11809
+ status?: undefined;
11810
+ token?: undefined;
11811
+ result?: undefined;
11812
+ topic?: undefined;
11813
+ durationMinutes?: undefined;
11814
+ candidates?: undefined;
10907
11815
  };
10908
11816
  required: string[];
10909
11817
  additionalProperties: boolean;
@@ -10960,6 +11868,7 @@ declare const ACTION_REGISTRY: {
10960
11868
  description: {
10961
11869
  type: string;
10962
11870
  description?: undefined;
11871
+ oneOf?: undefined;
10963
11872
  };
10964
11873
  options: {
10965
11874
  type: string;
@@ -10977,16 +11886,19 @@ declare const ACTION_REGISTRY: {
10977
11886
  inclusive?: undefined;
10978
11887
  cursor?: undefined;
10979
11888
  ts?: undefined;
11889
+ owner?: undefined;
11890
+ repo?: undefined;
10980
11891
  title?: undefined;
10981
11892
  body?: undefined;
10982
11893
  labels?: undefined;
10983
11894
  assignees?: undefined;
11895
+ milestone?: undefined;
10984
11896
  state?: undefined;
10985
11897
  sort?: undefined;
10986
11898
  direction?: undefined;
10987
11899
  per_page?: undefined;
10988
11900
  page?: undefined;
10989
- issue_number?: undefined;
11901
+ issueNumber?: undefined;
10990
11902
  query?: undefined;
10991
11903
  maxResults?: undefined;
10992
11904
  messageId?: undefined;
@@ -11007,6 +11919,8 @@ declare const ACTION_REGISTRY: {
11007
11919
  end?: undefined;
11008
11920
  attendees?: undefined;
11009
11921
  location?: undefined;
11922
+ addMeet?: undefined;
11923
+ meetRequestId?: undefined;
11010
11924
  recent?: undefined;
11011
11925
  projectKeyOrId?: undefined;
11012
11926
  boardId?: undefined;
@@ -11050,6 +11964,19 @@ declare const ACTION_REGISTRY: {
11050
11964
  portalId?: undefined;
11051
11965
  uiDomain?: undefined;
11052
11966
  pageRequests?: undefined;
11967
+ taskType?: undefined;
11968
+ payload?: undefined;
11969
+ message?: undefined;
11970
+ id?: undefined;
11971
+ action?: undefined;
11972
+ data?: undefined;
11973
+ types?: undefined;
11974
+ status?: undefined;
11975
+ token?: undefined;
11976
+ result?: undefined;
11977
+ topic?: undefined;
11978
+ durationMinutes?: undefined;
11979
+ candidates?: undefined;
11053
11980
  };
11054
11981
  required: string[];
11055
11982
  additionalProperties: boolean;
@@ -11107,6 +12034,7 @@ declare const ACTION_REGISTRY: {
11107
12034
  description: {
11108
12035
  type: string;
11109
12036
  description?: undefined;
12037
+ oneOf?: undefined;
11110
12038
  };
11111
12039
  options: {
11112
12040
  type: string;
@@ -11124,16 +12052,19 @@ declare const ACTION_REGISTRY: {
11124
12052
  inclusive?: undefined;
11125
12053
  cursor?: undefined;
11126
12054
  ts?: undefined;
12055
+ owner?: undefined;
12056
+ repo?: undefined;
11127
12057
  title?: undefined;
11128
12058
  body?: undefined;
11129
12059
  labels?: undefined;
11130
12060
  assignees?: undefined;
12061
+ milestone?: undefined;
11131
12062
  state?: undefined;
11132
12063
  sort?: undefined;
11133
12064
  direction?: undefined;
11134
12065
  per_page?: undefined;
11135
12066
  page?: undefined;
11136
- issue_number?: undefined;
12067
+ issueNumber?: undefined;
11137
12068
  query?: undefined;
11138
12069
  maxResults?: undefined;
11139
12070
  messageId?: undefined;
@@ -11154,6 +12085,8 @@ declare const ACTION_REGISTRY: {
11154
12085
  end?: undefined;
11155
12086
  attendees?: undefined;
11156
12087
  location?: undefined;
12088
+ addMeet?: undefined;
12089
+ meetRequestId?: undefined;
11157
12090
  recent?: undefined;
11158
12091
  projectKeyOrId?: undefined;
11159
12092
  boardId?: undefined;
@@ -11197,6 +12130,19 @@ declare const ACTION_REGISTRY: {
11197
12130
  portalId?: undefined;
11198
12131
  uiDomain?: undefined;
11199
12132
  pageRequests?: undefined;
12133
+ taskType?: undefined;
12134
+ payload?: undefined;
12135
+ message?: undefined;
12136
+ id?: undefined;
12137
+ action?: undefined;
12138
+ data?: undefined;
12139
+ types?: undefined;
12140
+ status?: undefined;
12141
+ token?: undefined;
12142
+ result?: undefined;
12143
+ topic?: undefined;
12144
+ durationMinutes?: undefined;
12145
+ candidates?: undefined;
11200
12146
  };
11201
12147
  required: string[];
11202
12148
  additionalProperties: boolean;
@@ -11260,16 +12206,19 @@ declare const ACTION_REGISTRY: {
11260
12206
  inclusive?: undefined;
11261
12207
  cursor?: undefined;
11262
12208
  ts?: undefined;
12209
+ owner?: undefined;
12210
+ repo?: undefined;
11263
12211
  title?: undefined;
11264
12212
  body?: undefined;
11265
12213
  labels?: undefined;
11266
12214
  assignees?: undefined;
12215
+ milestone?: undefined;
11267
12216
  state?: undefined;
11268
12217
  sort?: undefined;
11269
12218
  direction?: undefined;
11270
12219
  per_page?: undefined;
11271
12220
  page?: undefined;
11272
- issue_number?: undefined;
12221
+ issueNumber?: undefined;
11273
12222
  query?: undefined;
11274
12223
  maxResults?: undefined;
11275
12224
  messageId?: undefined;
@@ -11291,6 +12240,8 @@ declare const ACTION_REGISTRY: {
11291
12240
  end?: undefined;
11292
12241
  attendees?: undefined;
11293
12242
  location?: undefined;
12243
+ addMeet?: undefined;
12244
+ meetRequestId?: undefined;
11294
12245
  recent?: undefined;
11295
12246
  projectKeyOrId?: undefined;
11296
12247
  type?: undefined;
@@ -11337,6 +12288,19 @@ declare const ACTION_REGISTRY: {
11337
12288
  portalId?: undefined;
11338
12289
  uiDomain?: undefined;
11339
12290
  pageRequests?: undefined;
12291
+ taskType?: undefined;
12292
+ payload?: undefined;
12293
+ message?: undefined;
12294
+ id?: undefined;
12295
+ action?: undefined;
12296
+ data?: undefined;
12297
+ types?: undefined;
12298
+ status?: undefined;
12299
+ token?: undefined;
12300
+ result?: undefined;
12301
+ topic?: undefined;
12302
+ durationMinutes?: undefined;
12303
+ candidates?: undefined;
11340
12304
  };
11341
12305
  required: string[];
11342
12306
  additionalProperties: boolean;
@@ -11389,16 +12353,19 @@ declare const ACTION_REGISTRY: {
11389
12353
  inclusive?: undefined;
11390
12354
  cursor?: undefined;
11391
12355
  ts?: undefined;
12356
+ owner?: undefined;
12357
+ repo?: undefined;
11392
12358
  title?: undefined;
11393
12359
  body?: undefined;
11394
12360
  labels?: undefined;
11395
12361
  assignees?: undefined;
12362
+ milestone?: undefined;
11396
12363
  state?: undefined;
11397
12364
  sort?: undefined;
11398
12365
  direction?: undefined;
11399
12366
  per_page?: undefined;
11400
12367
  page?: undefined;
11401
- issue_number?: undefined;
12368
+ issueNumber?: undefined;
11402
12369
  query?: undefined;
11403
12370
  maxResults?: undefined;
11404
12371
  messageId?: undefined;
@@ -11420,6 +12387,8 @@ declare const ACTION_REGISTRY: {
11420
12387
  end?: undefined;
11421
12388
  attendees?: undefined;
11422
12389
  location?: undefined;
12390
+ addMeet?: undefined;
12391
+ meetRequestId?: undefined;
11423
12392
  recent?: undefined;
11424
12393
  projectKeyOrId?: undefined;
11425
12394
  type?: undefined;
@@ -11468,6 +12437,19 @@ declare const ACTION_REGISTRY: {
11468
12437
  portalId?: undefined;
11469
12438
  uiDomain?: undefined;
11470
12439
  pageRequests?: undefined;
12440
+ taskType?: undefined;
12441
+ payload?: undefined;
12442
+ message?: undefined;
12443
+ id?: undefined;
12444
+ action?: undefined;
12445
+ data?: undefined;
12446
+ types?: undefined;
12447
+ status?: undefined;
12448
+ token?: undefined;
12449
+ result?: undefined;
12450
+ topic?: undefined;
12451
+ durationMinutes?: undefined;
12452
+ candidates?: undefined;
11471
12453
  };
11472
12454
  required: string[];
11473
12455
  additionalProperties: boolean;
@@ -11525,16 +12507,19 @@ declare const ACTION_REGISTRY: {
11525
12507
  inclusive?: undefined;
11526
12508
  cursor?: undefined;
11527
12509
  ts?: undefined;
12510
+ owner?: undefined;
12511
+ repo?: undefined;
11528
12512
  title?: undefined;
11529
12513
  body?: undefined;
11530
12514
  labels?: undefined;
11531
12515
  assignees?: undefined;
12516
+ milestone?: undefined;
11532
12517
  state?: undefined;
11533
12518
  sort?: undefined;
11534
12519
  direction?: undefined;
11535
12520
  per_page?: undefined;
11536
12521
  page?: undefined;
11537
- issue_number?: undefined;
12522
+ issueNumber?: undefined;
11538
12523
  query?: undefined;
11539
12524
  maxResults?: undefined;
11540
12525
  messageId?: undefined;
@@ -11556,6 +12541,8 @@ declare const ACTION_REGISTRY: {
11556
12541
  end?: undefined;
11557
12542
  attendees?: undefined;
11558
12543
  location?: undefined;
12544
+ addMeet?: undefined;
12545
+ meetRequestId?: undefined;
11559
12546
  recent?: undefined;
11560
12547
  projectKeyOrId?: undefined;
11561
12548
  type?: undefined;
@@ -11603,6 +12590,19 @@ declare const ACTION_REGISTRY: {
11603
12590
  portalId?: undefined;
11604
12591
  uiDomain?: undefined;
11605
12592
  pageRequests?: undefined;
12593
+ taskType?: undefined;
12594
+ payload?: undefined;
12595
+ message?: undefined;
12596
+ id?: undefined;
12597
+ action?: undefined;
12598
+ data?: undefined;
12599
+ types?: undefined;
12600
+ status?: undefined;
12601
+ token?: undefined;
12602
+ result?: undefined;
12603
+ topic?: undefined;
12604
+ durationMinutes?: undefined;
12605
+ candidates?: undefined;
11606
12606
  };
11607
12607
  required: string[];
11608
12608
  additionalProperties: boolean;
@@ -11652,16 +12652,19 @@ declare const ACTION_REGISTRY: {
11652
12652
  inclusive?: undefined;
11653
12653
  cursor?: undefined;
11654
12654
  ts?: undefined;
12655
+ owner?: undefined;
12656
+ repo?: undefined;
11655
12657
  title?: undefined;
11656
12658
  body?: undefined;
11657
12659
  labels?: undefined;
11658
12660
  assignees?: undefined;
12661
+ milestone?: undefined;
11659
12662
  state?: undefined;
11660
12663
  sort?: undefined;
11661
12664
  direction?: undefined;
11662
12665
  per_page?: undefined;
11663
12666
  page?: undefined;
11664
- issue_number?: undefined;
12667
+ issueNumber?: undefined;
11665
12668
  query?: undefined;
11666
12669
  maxResults?: undefined;
11667
12670
  messageId?: undefined;
@@ -11683,6 +12686,8 @@ declare const ACTION_REGISTRY: {
11683
12686
  end?: undefined;
11684
12687
  attendees?: undefined;
11685
12688
  location?: undefined;
12689
+ addMeet?: undefined;
12690
+ meetRequestId?: undefined;
11686
12691
  recent?: undefined;
11687
12692
  projectKeyOrId?: undefined;
11688
12693
  type?: undefined;
@@ -11732,6 +12737,19 @@ declare const ACTION_REGISTRY: {
11732
12737
  portalId?: undefined;
11733
12738
  uiDomain?: undefined;
11734
12739
  pageRequests?: undefined;
12740
+ taskType?: undefined;
12741
+ payload?: undefined;
12742
+ message?: undefined;
12743
+ id?: undefined;
12744
+ action?: undefined;
12745
+ data?: undefined;
12746
+ types?: undefined;
12747
+ status?: undefined;
12748
+ token?: undefined;
12749
+ result?: undefined;
12750
+ topic?: undefined;
12751
+ durationMinutes?: undefined;
12752
+ candidates?: undefined;
11735
12753
  };
11736
12754
  required: string[];
11737
12755
  additionalProperties: boolean;
@@ -11794,16 +12812,19 @@ declare const ACTION_REGISTRY: {
11794
12812
  inclusive?: undefined;
11795
12813
  cursor?: undefined;
11796
12814
  ts?: undefined;
12815
+ owner?: undefined;
12816
+ repo?: undefined;
11797
12817
  title?: undefined;
11798
12818
  body?: undefined;
11799
12819
  labels?: undefined;
11800
12820
  assignees?: undefined;
12821
+ milestone?: undefined;
11801
12822
  state?: undefined;
11802
12823
  sort?: undefined;
11803
12824
  direction?: undefined;
11804
12825
  per_page?: undefined;
11805
12826
  page?: undefined;
11806
- issue_number?: undefined;
12827
+ issueNumber?: undefined;
11807
12828
  query?: undefined;
11808
12829
  maxResults?: undefined;
11809
12830
  messageId?: undefined;
@@ -11825,6 +12846,8 @@ declare const ACTION_REGISTRY: {
11825
12846
  end?: undefined;
11826
12847
  attendees?: undefined;
11827
12848
  location?: undefined;
12849
+ addMeet?: undefined;
12850
+ meetRequestId?: undefined;
11828
12851
  recent?: undefined;
11829
12852
  projectKeyOrId?: undefined;
11830
12853
  boardId?: undefined;
@@ -11870,6 +12893,19 @@ declare const ACTION_REGISTRY: {
11870
12893
  portalId?: undefined;
11871
12894
  uiDomain?: undefined;
11872
12895
  pageRequests?: undefined;
12896
+ taskType?: undefined;
12897
+ payload?: undefined;
12898
+ message?: undefined;
12899
+ id?: undefined;
12900
+ action?: undefined;
12901
+ data?: undefined;
12902
+ types?: undefined;
12903
+ status?: undefined;
12904
+ token?: undefined;
12905
+ result?: undefined;
12906
+ topic?: undefined;
12907
+ durationMinutes?: undefined;
12908
+ candidates?: undefined;
11873
12909
  };
11874
12910
  required: string[];
11875
12911
  additionalProperties: boolean;
@@ -11931,16 +12967,19 @@ declare const ACTION_REGISTRY: {
11931
12967
  inclusive?: undefined;
11932
12968
  cursor?: undefined;
11933
12969
  ts?: undefined;
12970
+ owner?: undefined;
12971
+ repo?: undefined;
11934
12972
  title?: undefined;
11935
12973
  body?: undefined;
11936
12974
  labels?: undefined;
11937
12975
  assignees?: undefined;
12976
+ milestone?: undefined;
11938
12977
  state?: undefined;
11939
12978
  sort?: undefined;
11940
12979
  direction?: undefined;
11941
12980
  per_page?: undefined;
11942
12981
  page?: undefined;
11943
- issue_number?: undefined;
12982
+ issueNumber?: undefined;
11944
12983
  query?: undefined;
11945
12984
  maxResults?: undefined;
11946
12985
  messageId?: undefined;
@@ -11962,6 +13001,8 @@ declare const ACTION_REGISTRY: {
11962
13001
  end?: undefined;
11963
13002
  attendees?: undefined;
11964
13003
  location?: undefined;
13004
+ addMeet?: undefined;
13005
+ meetRequestId?: undefined;
11965
13006
  recent?: undefined;
11966
13007
  projectKeyOrId?: undefined;
11967
13008
  type?: undefined;
@@ -12007,6 +13048,19 @@ declare const ACTION_REGISTRY: {
12007
13048
  portalId?: undefined;
12008
13049
  uiDomain?: undefined;
12009
13050
  pageRequests?: undefined;
13051
+ taskType?: undefined;
13052
+ payload?: undefined;
13053
+ message?: undefined;
13054
+ id?: undefined;
13055
+ action?: undefined;
13056
+ data?: undefined;
13057
+ types?: undefined;
13058
+ status?: undefined;
13059
+ token?: undefined;
13060
+ result?: undefined;
13061
+ topic?: undefined;
13062
+ durationMinutes?: undefined;
13063
+ candidates?: undefined;
12010
13064
  };
12011
13065
  required: string[];
12012
13066
  additionalProperties: boolean;
@@ -12060,16 +13114,19 @@ declare const ACTION_REGISTRY: {
12060
13114
  inclusive?: undefined;
12061
13115
  cursor?: undefined;
12062
13116
  ts?: undefined;
13117
+ owner?: undefined;
13118
+ repo?: undefined;
12063
13119
  title?: undefined;
12064
13120
  body?: undefined;
12065
13121
  labels?: undefined;
12066
13122
  assignees?: undefined;
13123
+ milestone?: undefined;
12067
13124
  state?: undefined;
12068
13125
  sort?: undefined;
12069
13126
  direction?: undefined;
12070
13127
  per_page?: undefined;
12071
13128
  page?: undefined;
12072
- issue_number?: undefined;
13129
+ issueNumber?: undefined;
12073
13130
  query?: undefined;
12074
13131
  maxResults?: undefined;
12075
13132
  messageId?: undefined;
@@ -12091,6 +13148,8 @@ declare const ACTION_REGISTRY: {
12091
13148
  end?: undefined;
12092
13149
  attendees?: undefined;
12093
13150
  location?: undefined;
13151
+ addMeet?: undefined;
13152
+ meetRequestId?: undefined;
12094
13153
  recent?: undefined;
12095
13154
  projectKeyOrId?: undefined;
12096
13155
  type?: undefined;
@@ -12140,6 +13199,19 @@ declare const ACTION_REGISTRY: {
12140
13199
  portalId?: undefined;
12141
13200
  uiDomain?: undefined;
12142
13201
  pageRequests?: undefined;
13202
+ taskType?: undefined;
13203
+ payload?: undefined;
13204
+ message?: undefined;
13205
+ id?: undefined;
13206
+ action?: undefined;
13207
+ data?: undefined;
13208
+ types?: undefined;
13209
+ status?: undefined;
13210
+ token?: undefined;
13211
+ result?: undefined;
13212
+ topic?: undefined;
13213
+ durationMinutes?: undefined;
13214
+ candidates?: undefined;
12143
13215
  };
12144
13216
  additionalProperties: boolean;
12145
13217
  required?: undefined;
@@ -12189,16 +13261,19 @@ declare const ACTION_REGISTRY: {
12189
13261
  inclusive?: undefined;
12190
13262
  cursor?: undefined;
12191
13263
  ts?: undefined;
13264
+ owner?: undefined;
13265
+ repo?: undefined;
12192
13266
  title?: undefined;
12193
13267
  body?: undefined;
12194
13268
  labels?: undefined;
12195
13269
  assignees?: undefined;
13270
+ milestone?: undefined;
12196
13271
  state?: undefined;
12197
13272
  sort?: undefined;
12198
13273
  direction?: undefined;
12199
13274
  per_page?: undefined;
12200
13275
  page?: undefined;
12201
- issue_number?: undefined;
13276
+ issueNumber?: undefined;
12202
13277
  query?: undefined;
12203
13278
  maxResults?: undefined;
12204
13279
  messageId?: undefined;
@@ -12220,6 +13295,8 @@ declare const ACTION_REGISTRY: {
12220
13295
  end?: undefined;
12221
13296
  attendees?: undefined;
12222
13297
  location?: undefined;
13298
+ addMeet?: undefined;
13299
+ meetRequestId?: undefined;
12223
13300
  recent?: undefined;
12224
13301
  projectKeyOrId?: undefined;
12225
13302
  type?: undefined;
@@ -12269,6 +13346,19 @@ declare const ACTION_REGISTRY: {
12269
13346
  portalId?: undefined;
12270
13347
  uiDomain?: undefined;
12271
13348
  pageRequests?: undefined;
13349
+ taskType?: undefined;
13350
+ payload?: undefined;
13351
+ message?: undefined;
13352
+ id?: undefined;
13353
+ action?: undefined;
13354
+ data?: undefined;
13355
+ types?: undefined;
13356
+ status?: undefined;
13357
+ token?: undefined;
13358
+ result?: undefined;
13359
+ topic?: undefined;
13360
+ durationMinutes?: undefined;
13361
+ candidates?: undefined;
12272
13362
  };
12273
13363
  required: string[];
12274
13364
  additionalProperties: boolean;
@@ -12325,16 +13415,19 @@ declare const ACTION_REGISTRY: {
12325
13415
  inclusive?: undefined;
12326
13416
  cursor?: undefined;
12327
13417
  ts?: undefined;
13418
+ owner?: undefined;
13419
+ repo?: undefined;
12328
13420
  title?: undefined;
12329
13421
  body?: undefined;
12330
13422
  labels?: undefined;
12331
13423
  assignees?: undefined;
13424
+ milestone?: undefined;
12332
13425
  state?: undefined;
12333
13426
  sort?: undefined;
12334
13427
  direction?: undefined;
12335
13428
  per_page?: undefined;
12336
13429
  page?: undefined;
12337
- issue_number?: undefined;
13430
+ issueNumber?: undefined;
12338
13431
  query?: undefined;
12339
13432
  maxResults?: undefined;
12340
13433
  messageId?: undefined;
@@ -12356,6 +13449,8 @@ declare const ACTION_REGISTRY: {
12356
13449
  end?: undefined;
12357
13450
  attendees?: undefined;
12358
13451
  location?: undefined;
13452
+ addMeet?: undefined;
13453
+ meetRequestId?: undefined;
12359
13454
  recent?: undefined;
12360
13455
  projectKeyOrId?: undefined;
12361
13456
  type?: undefined;
@@ -12403,6 +13498,19 @@ declare const ACTION_REGISTRY: {
12403
13498
  associations?: undefined;
12404
13499
  metadata?: undefined;
12405
13500
  flowId?: undefined;
13501
+ taskType?: undefined;
13502
+ payload?: undefined;
13503
+ message?: undefined;
13504
+ id?: undefined;
13505
+ action?: undefined;
13506
+ data?: undefined;
13507
+ types?: undefined;
13508
+ status?: undefined;
13509
+ token?: undefined;
13510
+ result?: undefined;
13511
+ topic?: undefined;
13512
+ durationMinutes?: undefined;
13513
+ candidates?: undefined;
12406
13514
  };
12407
13515
  required: string[];
12408
13516
  additionalProperties: boolean;
@@ -12427,14 +13535,984 @@ declare const ACTION_REGISTRY: {
12427
13535
  secondary?: undefined;
12428
13536
  };
12429
13537
  version: string;
12430
- })[];
12431
- capabilities: {
13538
+ } | {
13539
+ action: string;
13540
+ resource_type: string;
13541
+ required_relations: string[];
13542
+ required_scopes: string[];
12432
13543
  capability: string;
12433
- description: string;
12434
- includes: string[];
13544
+ input_schema: {
13545
+ type: string;
13546
+ properties: {
13547
+ to: {
13548
+ type: string;
13549
+ minLength: number;
13550
+ description: string;
13551
+ };
13552
+ taskType: {
13553
+ type: string;
13554
+ minLength: number;
13555
+ description: string;
13556
+ };
13557
+ payload: {
13558
+ type: string;
13559
+ description: string;
13560
+ };
13561
+ message: {
13562
+ type: string;
13563
+ description: string;
13564
+ };
13565
+ channel?: undefined;
13566
+ text?: undefined;
13567
+ thread_ts?: undefined;
13568
+ username?: undefined;
13569
+ icon_emoji?: undefined;
13570
+ blocks?: undefined;
13571
+ userId?: undefined;
13572
+ latest?: undefined;
13573
+ oldest?: undefined;
13574
+ limit?: undefined;
13575
+ inclusive?: undefined;
13576
+ cursor?: undefined;
13577
+ ts?: undefined;
13578
+ owner?: undefined;
13579
+ repo?: undefined;
13580
+ title?: undefined;
13581
+ body?: undefined;
13582
+ labels?: undefined;
13583
+ assignees?: undefined;
13584
+ milestone?: undefined;
13585
+ state?: undefined;
13586
+ sort?: undefined;
13587
+ direction?: undefined;
13588
+ per_page?: undefined;
13589
+ page?: undefined;
13590
+ issueNumber?: undefined;
13591
+ query?: undefined;
13592
+ maxResults?: undefined;
13593
+ messageId?: undefined;
13594
+ subject?: undefined;
13595
+ cc?: undefined;
13596
+ bcc?: undefined;
13597
+ threadId?: undefined;
13598
+ inReplyTo?: undefined;
13599
+ references?: undefined;
13600
+ messageIds?: undefined;
13601
+ calendarId?: undefined;
13602
+ timeMin?: undefined;
13603
+ timeMax?: undefined;
13604
+ eventId?: undefined;
13605
+ summary?: undefined;
13606
+ description?: undefined;
13607
+ start?: undefined;
13608
+ end?: undefined;
13609
+ attendees?: undefined;
13610
+ location?: undefined;
13611
+ addMeet?: undefined;
13612
+ meetRequestId?: undefined;
13613
+ recent?: undefined;
13614
+ projectKeyOrId?: undefined;
13615
+ type?: undefined;
13616
+ boardId?: undefined;
13617
+ sprintId?: undefined;
13618
+ jql?: undefined;
13619
+ startAt?: undefined;
13620
+ issueIdOrKey?: undefined;
13621
+ projectKey?: undefined;
13622
+ issueTypeName?: undefined;
13623
+ priority?: undefined;
13624
+ assigneeAccountId?: undefined;
13625
+ transitionId?: undefined;
13626
+ typeName?: undefined;
13627
+ inwardIssueKey?: undefined;
13628
+ outwardIssueKey?: undefined;
13629
+ commentBody?: undefined;
13630
+ linkId?: undefined;
13631
+ file_path?: undefined;
13632
+ content?: undefined;
13633
+ command?: undefined;
13634
+ working_directory?: undefined;
13635
+ env_profile?: undefined;
13636
+ timeout_seconds?: undefined;
13637
+ objectType?: undefined;
13638
+ after?: undefined;
13639
+ properties?: undefined;
13640
+ archived?: undefined;
13641
+ filterGroups?: undefined;
13642
+ sorts?: undefined;
13643
+ inputs?: undefined;
13644
+ idProperty?: undefined;
13645
+ propertyName?: undefined;
13646
+ name?: undefined;
13647
+ label?: undefined;
13648
+ fieldType?: undefined;
13649
+ groupName?: undefined;
13650
+ options?: undefined;
13651
+ objectId?: undefined;
13652
+ toObjectType?: undefined;
13653
+ fromObjectType?: undefined;
13654
+ engagementId?: undefined;
13655
+ ownerId?: undefined;
13656
+ timestamp?: undefined;
13657
+ associations?: undefined;
13658
+ metadata?: undefined;
13659
+ flowId?: undefined;
13660
+ portalId?: undefined;
13661
+ uiDomain?: undefined;
13662
+ pageRequests?: undefined;
13663
+ id?: undefined;
13664
+ action?: undefined;
13665
+ data?: undefined;
13666
+ types?: undefined;
13667
+ status?: undefined;
13668
+ token?: undefined;
13669
+ result?: undefined;
13670
+ topic?: undefined;
13671
+ durationMinutes?: undefined;
13672
+ candidates?: undefined;
13673
+ };
13674
+ required: string[];
13675
+ additionalProperties: boolean;
13676
+ };
13677
+ constraints: {
13678
+ rate_bucket: string;
13679
+ };
13680
+ effects: string[];
13681
+ risk: string;
13682
+ target_bindings: {
13683
+ resource_id: {
13684
+ source: "param";
13685
+ param: string;
13686
+ required?: undefined;
13687
+ key?: undefined;
13688
+ multi?: undefined;
13689
+ separator?: undefined;
13690
+ default?: undefined;
13691
+ fallback_param?: undefined;
13692
+ derive?: undefined;
13693
+ };
13694
+ secondary?: undefined;
13695
+ };
12435
13696
  version: string;
12436
- }[];
12437
- };
13697
+ } | {
13698
+ action: string;
13699
+ resource_type: string;
13700
+ required_relations: string[];
13701
+ required_scopes: string[];
13702
+ capability: string;
13703
+ input_schema: {
13704
+ type: string;
13705
+ properties: {
13706
+ id: {
13707
+ type: string;
13708
+ minLength: number;
13709
+ description: string;
13710
+ };
13711
+ action: {
13712
+ type: string;
13713
+ enum: string[];
13714
+ description: string;
13715
+ };
13716
+ data: {
13717
+ type: string;
13718
+ description: string;
13719
+ };
13720
+ channel?: undefined;
13721
+ text?: undefined;
13722
+ thread_ts?: undefined;
13723
+ username?: undefined;
13724
+ icon_emoji?: undefined;
13725
+ blocks?: undefined;
13726
+ userId?: undefined;
13727
+ latest?: undefined;
13728
+ oldest?: undefined;
13729
+ limit?: undefined;
13730
+ inclusive?: undefined;
13731
+ cursor?: undefined;
13732
+ ts?: undefined;
13733
+ owner?: undefined;
13734
+ repo?: undefined;
13735
+ title?: undefined;
13736
+ body?: undefined;
13737
+ labels?: undefined;
13738
+ assignees?: undefined;
13739
+ milestone?: undefined;
13740
+ state?: undefined;
13741
+ sort?: undefined;
13742
+ direction?: undefined;
13743
+ per_page?: undefined;
13744
+ page?: undefined;
13745
+ issueNumber?: undefined;
13746
+ query?: undefined;
13747
+ maxResults?: undefined;
13748
+ messageId?: undefined;
13749
+ to?: undefined;
13750
+ subject?: undefined;
13751
+ cc?: undefined;
13752
+ bcc?: undefined;
13753
+ threadId?: undefined;
13754
+ inReplyTo?: undefined;
13755
+ references?: undefined;
13756
+ messageIds?: undefined;
13757
+ calendarId?: undefined;
13758
+ timeMin?: undefined;
13759
+ timeMax?: undefined;
13760
+ eventId?: undefined;
13761
+ summary?: undefined;
13762
+ description?: undefined;
13763
+ start?: undefined;
13764
+ end?: undefined;
13765
+ attendees?: undefined;
13766
+ location?: undefined;
13767
+ addMeet?: undefined;
13768
+ meetRequestId?: undefined;
13769
+ recent?: undefined;
13770
+ projectKeyOrId?: undefined;
13771
+ type?: undefined;
13772
+ boardId?: undefined;
13773
+ sprintId?: undefined;
13774
+ jql?: undefined;
13775
+ startAt?: undefined;
13776
+ issueIdOrKey?: undefined;
13777
+ projectKey?: undefined;
13778
+ issueTypeName?: undefined;
13779
+ priority?: undefined;
13780
+ assigneeAccountId?: undefined;
13781
+ transitionId?: undefined;
13782
+ typeName?: undefined;
13783
+ inwardIssueKey?: undefined;
13784
+ outwardIssueKey?: undefined;
13785
+ commentBody?: undefined;
13786
+ linkId?: undefined;
13787
+ file_path?: undefined;
13788
+ content?: undefined;
13789
+ command?: undefined;
13790
+ working_directory?: undefined;
13791
+ env_profile?: undefined;
13792
+ timeout_seconds?: undefined;
13793
+ objectType?: undefined;
13794
+ after?: undefined;
13795
+ properties?: undefined;
13796
+ archived?: undefined;
13797
+ filterGroups?: undefined;
13798
+ sorts?: undefined;
13799
+ inputs?: undefined;
13800
+ idProperty?: undefined;
13801
+ propertyName?: undefined;
13802
+ name?: undefined;
13803
+ label?: undefined;
13804
+ fieldType?: undefined;
13805
+ groupName?: undefined;
13806
+ options?: undefined;
13807
+ objectId?: undefined;
13808
+ toObjectType?: undefined;
13809
+ fromObjectType?: undefined;
13810
+ engagementId?: undefined;
13811
+ ownerId?: undefined;
13812
+ timestamp?: undefined;
13813
+ associations?: undefined;
13814
+ metadata?: undefined;
13815
+ flowId?: undefined;
13816
+ portalId?: undefined;
13817
+ uiDomain?: undefined;
13818
+ pageRequests?: undefined;
13819
+ taskType?: undefined;
13820
+ payload?: undefined;
13821
+ message?: undefined;
13822
+ types?: undefined;
13823
+ status?: undefined;
13824
+ token?: undefined;
13825
+ result?: undefined;
13826
+ topic?: undefined;
13827
+ durationMinutes?: undefined;
13828
+ candidates?: undefined;
13829
+ };
13830
+ required: string[];
13831
+ additionalProperties: boolean;
13832
+ };
13833
+ constraints: {
13834
+ rate_bucket: string;
13835
+ };
13836
+ effects: string[];
13837
+ risk: string;
13838
+ target_bindings: {
13839
+ resource_id: {
13840
+ source: "param";
13841
+ param: string;
13842
+ required?: undefined;
13843
+ key?: undefined;
13844
+ multi?: undefined;
13845
+ separator?: undefined;
13846
+ default?: undefined;
13847
+ fallback_param?: undefined;
13848
+ derive?: undefined;
13849
+ };
13850
+ secondary?: undefined;
13851
+ };
13852
+ version: string;
13853
+ } | {
13854
+ action: string;
13855
+ resource_type: string;
13856
+ required_relations: string[];
13857
+ required_scopes: string[];
13858
+ capability: string;
13859
+ input_schema: {
13860
+ type: string;
13861
+ properties: {
13862
+ types: {
13863
+ type: string;
13864
+ items: {
13865
+ type: string;
13866
+ };
13867
+ description: string;
13868
+ };
13869
+ status: {
13870
+ type: string;
13871
+ description: string;
13872
+ };
13873
+ channel?: undefined;
13874
+ text?: undefined;
13875
+ thread_ts?: undefined;
13876
+ username?: undefined;
13877
+ icon_emoji?: undefined;
13878
+ blocks?: undefined;
13879
+ userId?: undefined;
13880
+ latest?: undefined;
13881
+ oldest?: undefined;
13882
+ limit?: undefined;
13883
+ inclusive?: undefined;
13884
+ cursor?: undefined;
13885
+ ts?: undefined;
13886
+ owner?: undefined;
13887
+ repo?: undefined;
13888
+ title?: undefined;
13889
+ body?: undefined;
13890
+ labels?: undefined;
13891
+ assignees?: undefined;
13892
+ milestone?: undefined;
13893
+ state?: undefined;
13894
+ sort?: undefined;
13895
+ direction?: undefined;
13896
+ per_page?: undefined;
13897
+ page?: undefined;
13898
+ issueNumber?: undefined;
13899
+ query?: undefined;
13900
+ maxResults?: undefined;
13901
+ messageId?: undefined;
13902
+ to?: undefined;
13903
+ subject?: undefined;
13904
+ cc?: undefined;
13905
+ bcc?: undefined;
13906
+ threadId?: undefined;
13907
+ inReplyTo?: undefined;
13908
+ references?: undefined;
13909
+ messageIds?: undefined;
13910
+ calendarId?: undefined;
13911
+ timeMin?: undefined;
13912
+ timeMax?: undefined;
13913
+ eventId?: undefined;
13914
+ summary?: undefined;
13915
+ description?: undefined;
13916
+ start?: undefined;
13917
+ end?: undefined;
13918
+ attendees?: undefined;
13919
+ location?: undefined;
13920
+ addMeet?: undefined;
13921
+ meetRequestId?: undefined;
13922
+ recent?: undefined;
13923
+ projectKeyOrId?: undefined;
13924
+ type?: undefined;
13925
+ boardId?: undefined;
13926
+ sprintId?: undefined;
13927
+ jql?: undefined;
13928
+ startAt?: undefined;
13929
+ issueIdOrKey?: undefined;
13930
+ projectKey?: undefined;
13931
+ issueTypeName?: undefined;
13932
+ priority?: undefined;
13933
+ assigneeAccountId?: undefined;
13934
+ transitionId?: undefined;
13935
+ typeName?: undefined;
13936
+ inwardIssueKey?: undefined;
13937
+ outwardIssueKey?: undefined;
13938
+ commentBody?: undefined;
13939
+ linkId?: undefined;
13940
+ file_path?: undefined;
13941
+ content?: undefined;
13942
+ command?: undefined;
13943
+ working_directory?: undefined;
13944
+ env_profile?: undefined;
13945
+ timeout_seconds?: undefined;
13946
+ objectType?: undefined;
13947
+ after?: undefined;
13948
+ properties?: undefined;
13949
+ archived?: undefined;
13950
+ filterGroups?: undefined;
13951
+ sorts?: undefined;
13952
+ inputs?: undefined;
13953
+ idProperty?: undefined;
13954
+ propertyName?: undefined;
13955
+ name?: undefined;
13956
+ label?: undefined;
13957
+ fieldType?: undefined;
13958
+ groupName?: undefined;
13959
+ options?: undefined;
13960
+ objectId?: undefined;
13961
+ toObjectType?: undefined;
13962
+ fromObjectType?: undefined;
13963
+ engagementId?: undefined;
13964
+ ownerId?: undefined;
13965
+ timestamp?: undefined;
13966
+ associations?: undefined;
13967
+ metadata?: undefined;
13968
+ flowId?: undefined;
13969
+ portalId?: undefined;
13970
+ uiDomain?: undefined;
13971
+ pageRequests?: undefined;
13972
+ taskType?: undefined;
13973
+ payload?: undefined;
13974
+ message?: undefined;
13975
+ id?: undefined;
13976
+ action?: undefined;
13977
+ data?: undefined;
13978
+ token?: undefined;
13979
+ result?: undefined;
13980
+ topic?: undefined;
13981
+ durationMinutes?: undefined;
13982
+ candidates?: undefined;
13983
+ };
13984
+ additionalProperties: boolean;
13985
+ required?: undefined;
13986
+ };
13987
+ constraints: {
13988
+ rate_bucket: string;
13989
+ };
13990
+ effects: string[];
13991
+ risk: string;
13992
+ target_bindings: {
13993
+ resource_id: {
13994
+ source: "param";
13995
+ param: string;
13996
+ required: boolean;
13997
+ key?: undefined;
13998
+ multi?: undefined;
13999
+ separator?: undefined;
14000
+ default?: undefined;
14001
+ fallback_param?: undefined;
14002
+ derive?: undefined;
14003
+ };
14004
+ secondary?: undefined;
14005
+ };
14006
+ version: string;
14007
+ } | {
14008
+ action: string;
14009
+ resource_type: string;
14010
+ required_relations: string[];
14011
+ required_scopes: string[];
14012
+ capability: string;
14013
+ input_schema: {
14014
+ type: string;
14015
+ properties: {
14016
+ token: {
14017
+ type: string;
14018
+ minLength: number;
14019
+ description: string;
14020
+ };
14021
+ channel?: undefined;
14022
+ text?: undefined;
14023
+ thread_ts?: undefined;
14024
+ username?: undefined;
14025
+ icon_emoji?: undefined;
14026
+ blocks?: undefined;
14027
+ userId?: undefined;
14028
+ latest?: undefined;
14029
+ oldest?: undefined;
14030
+ limit?: undefined;
14031
+ inclusive?: undefined;
14032
+ cursor?: undefined;
14033
+ ts?: undefined;
14034
+ owner?: undefined;
14035
+ repo?: undefined;
14036
+ title?: undefined;
14037
+ body?: undefined;
14038
+ labels?: undefined;
14039
+ assignees?: undefined;
14040
+ milestone?: undefined;
14041
+ state?: undefined;
14042
+ sort?: undefined;
14043
+ direction?: undefined;
14044
+ per_page?: undefined;
14045
+ page?: undefined;
14046
+ issueNumber?: undefined;
14047
+ query?: undefined;
14048
+ maxResults?: undefined;
14049
+ messageId?: undefined;
14050
+ to?: undefined;
14051
+ subject?: undefined;
14052
+ cc?: undefined;
14053
+ bcc?: undefined;
14054
+ threadId?: undefined;
14055
+ inReplyTo?: undefined;
14056
+ references?: undefined;
14057
+ messageIds?: undefined;
14058
+ calendarId?: undefined;
14059
+ timeMin?: undefined;
14060
+ timeMax?: undefined;
14061
+ eventId?: undefined;
14062
+ summary?: undefined;
14063
+ description?: undefined;
14064
+ start?: undefined;
14065
+ end?: undefined;
14066
+ attendees?: undefined;
14067
+ location?: undefined;
14068
+ addMeet?: undefined;
14069
+ meetRequestId?: undefined;
14070
+ recent?: undefined;
14071
+ projectKeyOrId?: undefined;
14072
+ type?: undefined;
14073
+ boardId?: undefined;
14074
+ sprintId?: undefined;
14075
+ jql?: undefined;
14076
+ startAt?: undefined;
14077
+ issueIdOrKey?: undefined;
14078
+ projectKey?: undefined;
14079
+ issueTypeName?: undefined;
14080
+ priority?: undefined;
14081
+ assigneeAccountId?: undefined;
14082
+ transitionId?: undefined;
14083
+ typeName?: undefined;
14084
+ inwardIssueKey?: undefined;
14085
+ outwardIssueKey?: undefined;
14086
+ commentBody?: undefined;
14087
+ linkId?: undefined;
14088
+ file_path?: undefined;
14089
+ content?: undefined;
14090
+ command?: undefined;
14091
+ working_directory?: undefined;
14092
+ env_profile?: undefined;
14093
+ timeout_seconds?: undefined;
14094
+ objectType?: undefined;
14095
+ after?: undefined;
14096
+ properties?: undefined;
14097
+ archived?: undefined;
14098
+ filterGroups?: undefined;
14099
+ sorts?: undefined;
14100
+ inputs?: undefined;
14101
+ idProperty?: undefined;
14102
+ propertyName?: undefined;
14103
+ name?: undefined;
14104
+ label?: undefined;
14105
+ fieldType?: undefined;
14106
+ groupName?: undefined;
14107
+ options?: undefined;
14108
+ objectId?: undefined;
14109
+ toObjectType?: undefined;
14110
+ fromObjectType?: undefined;
14111
+ engagementId?: undefined;
14112
+ ownerId?: undefined;
14113
+ timestamp?: undefined;
14114
+ associations?: undefined;
14115
+ metadata?: undefined;
14116
+ flowId?: undefined;
14117
+ portalId?: undefined;
14118
+ uiDomain?: undefined;
14119
+ pageRequests?: undefined;
14120
+ taskType?: undefined;
14121
+ payload?: undefined;
14122
+ message?: undefined;
14123
+ id?: undefined;
14124
+ action?: undefined;
14125
+ data?: undefined;
14126
+ types?: undefined;
14127
+ status?: undefined;
14128
+ result?: undefined;
14129
+ topic?: undefined;
14130
+ durationMinutes?: undefined;
14131
+ candidates?: undefined;
14132
+ };
14133
+ required: string[];
14134
+ additionalProperties: boolean;
14135
+ };
14136
+ constraints: {
14137
+ rate_bucket: string;
14138
+ };
14139
+ effects: string[];
14140
+ risk: string;
14141
+ target_bindings: {
14142
+ resource_id: {
14143
+ source: "param";
14144
+ param: string;
14145
+ required?: undefined;
14146
+ key?: undefined;
14147
+ multi?: undefined;
14148
+ separator?: undefined;
14149
+ default?: undefined;
14150
+ fallback_param?: undefined;
14151
+ derive?: undefined;
14152
+ };
14153
+ secondary?: undefined;
14154
+ };
14155
+ version: string;
14156
+ } | {
14157
+ action: string;
14158
+ resource_type: string;
14159
+ required_relations: string[];
14160
+ required_scopes: string[];
14161
+ capability: string;
14162
+ input_schema: {
14163
+ type: string;
14164
+ properties: {
14165
+ id: {
14166
+ type: string;
14167
+ minLength: number;
14168
+ description: string;
14169
+ };
14170
+ result: {
14171
+ type: string;
14172
+ description: string;
14173
+ };
14174
+ channel?: undefined;
14175
+ text?: undefined;
14176
+ thread_ts?: undefined;
14177
+ username?: undefined;
14178
+ icon_emoji?: undefined;
14179
+ blocks?: undefined;
14180
+ userId?: undefined;
14181
+ latest?: undefined;
14182
+ oldest?: undefined;
14183
+ limit?: undefined;
14184
+ inclusive?: undefined;
14185
+ cursor?: undefined;
14186
+ ts?: undefined;
14187
+ owner?: undefined;
14188
+ repo?: undefined;
14189
+ title?: undefined;
14190
+ body?: undefined;
14191
+ labels?: undefined;
14192
+ assignees?: undefined;
14193
+ milestone?: undefined;
14194
+ state?: undefined;
14195
+ sort?: undefined;
14196
+ direction?: undefined;
14197
+ per_page?: undefined;
14198
+ page?: undefined;
14199
+ issueNumber?: undefined;
14200
+ query?: undefined;
14201
+ maxResults?: undefined;
14202
+ messageId?: undefined;
14203
+ to?: undefined;
14204
+ subject?: undefined;
14205
+ cc?: undefined;
14206
+ bcc?: undefined;
14207
+ threadId?: undefined;
14208
+ inReplyTo?: undefined;
14209
+ references?: undefined;
14210
+ messageIds?: undefined;
14211
+ calendarId?: undefined;
14212
+ timeMin?: undefined;
14213
+ timeMax?: undefined;
14214
+ eventId?: undefined;
14215
+ summary?: undefined;
14216
+ description?: undefined;
14217
+ start?: undefined;
14218
+ end?: undefined;
14219
+ attendees?: undefined;
14220
+ location?: undefined;
14221
+ addMeet?: undefined;
14222
+ meetRequestId?: undefined;
14223
+ recent?: undefined;
14224
+ projectKeyOrId?: undefined;
14225
+ type?: undefined;
14226
+ boardId?: undefined;
14227
+ sprintId?: undefined;
14228
+ jql?: undefined;
14229
+ startAt?: undefined;
14230
+ issueIdOrKey?: undefined;
14231
+ projectKey?: undefined;
14232
+ issueTypeName?: undefined;
14233
+ priority?: undefined;
14234
+ assigneeAccountId?: undefined;
14235
+ transitionId?: undefined;
14236
+ typeName?: undefined;
14237
+ inwardIssueKey?: undefined;
14238
+ outwardIssueKey?: undefined;
14239
+ commentBody?: undefined;
14240
+ linkId?: undefined;
14241
+ file_path?: undefined;
14242
+ content?: undefined;
14243
+ command?: undefined;
14244
+ working_directory?: undefined;
14245
+ env_profile?: undefined;
14246
+ timeout_seconds?: undefined;
14247
+ objectType?: undefined;
14248
+ after?: undefined;
14249
+ properties?: undefined;
14250
+ archived?: undefined;
14251
+ filterGroups?: undefined;
14252
+ sorts?: undefined;
14253
+ inputs?: undefined;
14254
+ idProperty?: undefined;
14255
+ propertyName?: undefined;
14256
+ name?: undefined;
14257
+ label?: undefined;
14258
+ fieldType?: undefined;
14259
+ groupName?: undefined;
14260
+ options?: undefined;
14261
+ objectId?: undefined;
14262
+ toObjectType?: undefined;
14263
+ fromObjectType?: undefined;
14264
+ engagementId?: undefined;
14265
+ ownerId?: undefined;
14266
+ timestamp?: undefined;
14267
+ associations?: undefined;
14268
+ metadata?: undefined;
14269
+ flowId?: undefined;
14270
+ portalId?: undefined;
14271
+ uiDomain?: undefined;
14272
+ pageRequests?: undefined;
14273
+ taskType?: undefined;
14274
+ payload?: undefined;
14275
+ message?: undefined;
14276
+ action?: undefined;
14277
+ data?: undefined;
14278
+ types?: undefined;
14279
+ status?: undefined;
14280
+ token?: undefined;
14281
+ topic?: undefined;
14282
+ durationMinutes?: undefined;
14283
+ candidates?: undefined;
14284
+ };
14285
+ required: string[];
14286
+ additionalProperties: boolean;
14287
+ };
14288
+ constraints: {
14289
+ rate_bucket: string;
14290
+ };
14291
+ effects: string[];
14292
+ risk: string;
14293
+ target_bindings: {
14294
+ resource_id: {
14295
+ source: "param";
14296
+ param: string;
14297
+ required?: undefined;
14298
+ key?: undefined;
14299
+ multi?: undefined;
14300
+ separator?: undefined;
14301
+ default?: undefined;
14302
+ fallback_param?: undefined;
14303
+ derive?: undefined;
14304
+ };
14305
+ secondary?: undefined;
14306
+ };
14307
+ version: string;
14308
+ } | {
14309
+ action: string;
14310
+ resource_type: string;
14311
+ required_relations: string[];
14312
+ required_scopes: string[];
14313
+ capability: string;
14314
+ input_schema: {
14315
+ type: string;
14316
+ properties: {
14317
+ to: {
14318
+ type: string;
14319
+ minLength: number;
14320
+ description: string;
14321
+ };
14322
+ topic: {
14323
+ type: string;
14324
+ minLength: number;
14325
+ description: string;
14326
+ };
14327
+ durationMinutes: {
14328
+ type: string;
14329
+ minimum: number;
14330
+ maximum: number;
14331
+ description: string;
14332
+ };
14333
+ candidates: {
14334
+ type: string;
14335
+ minItems: number;
14336
+ maxItems: number;
14337
+ description: string;
14338
+ items: {
14339
+ type: string;
14340
+ properties: {
14341
+ start: {
14342
+ type: string;
14343
+ description: string;
14344
+ };
14345
+ end: {
14346
+ type: string;
14347
+ description: string;
14348
+ };
14349
+ };
14350
+ required: string[];
14351
+ additionalProperties: boolean;
14352
+ };
14353
+ };
14354
+ message: {
14355
+ type: string;
14356
+ description: string;
14357
+ };
14358
+ channel?: undefined;
14359
+ text?: undefined;
14360
+ thread_ts?: undefined;
14361
+ username?: undefined;
14362
+ icon_emoji?: undefined;
14363
+ blocks?: undefined;
14364
+ userId?: undefined;
14365
+ latest?: undefined;
14366
+ oldest?: undefined;
14367
+ limit?: undefined;
14368
+ inclusive?: undefined;
14369
+ cursor?: undefined;
14370
+ ts?: undefined;
14371
+ owner?: undefined;
14372
+ repo?: undefined;
14373
+ title?: undefined;
14374
+ body?: undefined;
14375
+ labels?: undefined;
14376
+ assignees?: undefined;
14377
+ milestone?: undefined;
14378
+ state?: undefined;
14379
+ sort?: undefined;
14380
+ direction?: undefined;
14381
+ per_page?: undefined;
14382
+ page?: undefined;
14383
+ issueNumber?: undefined;
14384
+ query?: undefined;
14385
+ maxResults?: undefined;
14386
+ messageId?: undefined;
14387
+ subject?: undefined;
14388
+ cc?: undefined;
14389
+ bcc?: undefined;
14390
+ threadId?: undefined;
14391
+ inReplyTo?: undefined;
14392
+ references?: undefined;
14393
+ messageIds?: undefined;
14394
+ calendarId?: undefined;
14395
+ timeMin?: undefined;
14396
+ timeMax?: undefined;
14397
+ eventId?: undefined;
14398
+ summary?: undefined;
14399
+ description?: undefined;
14400
+ start?: undefined;
14401
+ end?: undefined;
14402
+ attendees?: undefined;
14403
+ location?: undefined;
14404
+ addMeet?: undefined;
14405
+ meetRequestId?: undefined;
14406
+ recent?: undefined;
14407
+ projectKeyOrId?: undefined;
14408
+ type?: undefined;
14409
+ boardId?: undefined;
14410
+ sprintId?: undefined;
14411
+ jql?: undefined;
14412
+ startAt?: undefined;
14413
+ issueIdOrKey?: undefined;
14414
+ projectKey?: undefined;
14415
+ issueTypeName?: undefined;
14416
+ priority?: undefined;
14417
+ assigneeAccountId?: undefined;
14418
+ transitionId?: undefined;
14419
+ typeName?: undefined;
14420
+ inwardIssueKey?: undefined;
14421
+ outwardIssueKey?: undefined;
14422
+ commentBody?: undefined;
14423
+ linkId?: undefined;
14424
+ file_path?: undefined;
14425
+ content?: undefined;
14426
+ command?: undefined;
14427
+ working_directory?: undefined;
14428
+ env_profile?: undefined;
14429
+ timeout_seconds?: undefined;
14430
+ objectType?: undefined;
14431
+ after?: undefined;
14432
+ properties?: undefined;
14433
+ archived?: undefined;
14434
+ filterGroups?: undefined;
14435
+ sorts?: undefined;
14436
+ inputs?: undefined;
14437
+ idProperty?: undefined;
14438
+ propertyName?: undefined;
14439
+ name?: undefined;
14440
+ label?: undefined;
14441
+ fieldType?: undefined;
14442
+ groupName?: undefined;
14443
+ options?: undefined;
14444
+ objectId?: undefined;
14445
+ toObjectType?: undefined;
14446
+ fromObjectType?: undefined;
14447
+ engagementId?: undefined;
14448
+ ownerId?: undefined;
14449
+ timestamp?: undefined;
14450
+ associations?: undefined;
14451
+ metadata?: undefined;
14452
+ flowId?: undefined;
14453
+ portalId?: undefined;
14454
+ uiDomain?: undefined;
14455
+ pageRequests?: undefined;
14456
+ taskType?: undefined;
14457
+ payload?: undefined;
14458
+ id?: undefined;
14459
+ action?: undefined;
14460
+ data?: undefined;
14461
+ types?: undefined;
14462
+ status?: undefined;
14463
+ token?: undefined;
14464
+ result?: undefined;
14465
+ };
14466
+ required: string[];
14467
+ additionalProperties: boolean;
14468
+ };
14469
+ constraints: {
14470
+ rate_bucket: string;
14471
+ };
14472
+ effects: string[];
14473
+ risk: string;
14474
+ target_bindings: {
14475
+ resource_id: {
14476
+ source: "param";
14477
+ param: string;
14478
+ required?: undefined;
14479
+ key?: undefined;
14480
+ multi?: undefined;
14481
+ separator?: undefined;
14482
+ default?: undefined;
14483
+ fallback_param?: undefined;
14484
+ derive?: undefined;
14485
+ };
14486
+ secondary?: undefined;
14487
+ };
14488
+ version: string;
14489
+ })[];
14490
+ capabilities: {
14491
+ capability: string;
14492
+ description: string;
14493
+ includes: string[];
14494
+ version: string;
14495
+ }[];
14496
+ };
14497
+
14498
+ type ValidateActionInputResult = {
14499
+ valid: true;
14500
+ } | {
14501
+ valid: false;
14502
+ errors: string[];
14503
+ };
14504
+ /**
14505
+ * Validate `params` against the registry input_schema for `action`.
14506
+ *
14507
+ * Returns `{ valid: true }` for actions absent from the registry or lacking an
14508
+ * input_schema. For known actions, performs a shallow check:
14509
+ * a. required-key presence,
14510
+ * b. unknown top-level keys (only when schema is additionalProperties:false),
14511
+ * c. flat enum membership,
14512
+ * d. naive top-level type checks.
14513
+ * Deep `items` validation is intentionally skipped (server is authority).
14514
+ */
14515
+ declare function validateActionInput(action: string, params: Record<string, unknown>): ValidateActionInputResult;
12438
14516
 
12439
14517
  /**
12440
14518
  * Unified ResourceType definitions — single source of truth.
@@ -13539,4 +15617,4 @@ declare function resolveActionRisk(action: string | undefined | null): ActionRis
13539
15617
 
13540
15618
  declare const version = "0.0.1";
13541
15619
 
13542
- 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, type ReBACChecker, type Receipt, type ReceiptListResult, type ReceiptOutcome, type ReceiptSearchQuery, ReceiptStatus, type Relation, type ResolvedTargets, type ResourceIdBinding, 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 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, canonicalizeAction, checkPermissionWithVP, classifyCedarErrorMessage, 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, normalizeDomain, normalizeMcpActionName, parseGrantAction, parseGrantResourceType, parseSignatureHeader, planDelegationForVC, publicKeysMatch, readVcExpSeconds, resolveActionRisk, resolveActionsFromSelection, resolveProvider, resolveResourceType, resolveUserTier, sha256Hex, signJWT, signRequest, validateRegistryObject, vcStatusToCredentialStatus, verifyJWT, version };
15620
+ 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, type ReBACChecker, type Receipt, type ReceiptListResult, type ReceiptOutcome, type ReceiptSearchQuery, ReceiptStatus, type Relation, type ResolvedTargets, type ResourceIdBinding, 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, canonicalizeAction, checkPermissionWithVP, classifyCedarErrorMessage, 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, normalizeDomain, normalizeMcpActionName, parseGrantAction, parseGrantResourceType, parseSignatureHeader, planDelegationForVC, publicKeysMatch, readVcExpSeconds, resolveActionRisk, resolveActionsFromSelection, resolveProvider, resolveResourceType, resolveUserTier, sha256Hex, signJWT, signRequest, validateActionInput, validateRegistryObject, vcStatusToCredentialStatus, verifyJWT, version };