@vess-id/ai-identity 0.5.0-alpha.7 → 0.5.0-alpha.9
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 +808 -97
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +224 -43
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +223 -43
- package/dist/index.mjs.map +1 -1
- package/dist/registry/action-registry-json.d.ts +795 -96
- package/dist/registry/action-registry-json.d.ts.map +1 -1
- package/dist/registry/action-summary.d.ts.map +1 -1
- package/dist/resolver/target-resolver.d.ts +8 -0
- package/dist/resolver/target-resolver.d.ts.map +1 -1
- package/dist/types/target-binding.d.ts +4 -0
- package/dist/types/target-binding.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -578,12 +578,16 @@ interface ParamBindingSource {
|
|
|
578
578
|
source: 'param';
|
|
579
579
|
/** Parameter name to extract from tool invocation params */
|
|
580
580
|
param: string;
|
|
581
|
+
/** Fallback parameter name if primary param is missing (e.g., AI sends "issueKey" instead of "issueIdOrKey") */
|
|
582
|
+
fallback_param?: string;
|
|
581
583
|
/** Default value if param is not provided */
|
|
582
584
|
default?: string;
|
|
583
585
|
/** Whether this param contains multiple values */
|
|
584
586
|
multi?: boolean;
|
|
585
587
|
/** Separator for multi-value params (default: ',') */
|
|
586
588
|
separator?: string;
|
|
589
|
+
/** Post-extraction transformation. 'project_key' extracts the project key prefix from a Jira issue key (e.g., "PROJ-123" → "PROJ"). */
|
|
590
|
+
derive?: 'project_key';
|
|
587
591
|
}
|
|
588
592
|
/**
|
|
589
593
|
* Extract value from request context (pre-resolved by API layer).
|
|
@@ -4226,6 +4230,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4226
4230
|
oldest?: undefined;
|
|
4227
4231
|
limit?: undefined;
|
|
4228
4232
|
inclusive?: undefined;
|
|
4233
|
+
cursor?: undefined;
|
|
4229
4234
|
ts?: undefined;
|
|
4230
4235
|
title?: undefined;
|
|
4231
4236
|
body?: undefined;
|
|
@@ -4264,10 +4269,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4264
4269
|
startAt?: undefined;
|
|
4265
4270
|
issueIdOrKey?: undefined;
|
|
4266
4271
|
projectKey?: undefined;
|
|
4267
|
-
|
|
4272
|
+
issueTypeName?: undefined;
|
|
4268
4273
|
priority?: undefined;
|
|
4269
|
-
|
|
4270
|
-
|
|
4274
|
+
assigneeAccountId?: undefined;
|
|
4275
|
+
transitionId?: undefined;
|
|
4271
4276
|
file_path?: undefined;
|
|
4272
4277
|
content?: undefined;
|
|
4273
4278
|
command?: undefined;
|
|
@@ -4292,6 +4297,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4292
4297
|
multi?: undefined;
|
|
4293
4298
|
separator?: undefined;
|
|
4294
4299
|
default?: undefined;
|
|
4300
|
+
fallback_param?: undefined;
|
|
4301
|
+
derive?: undefined;
|
|
4295
4302
|
};
|
|
4296
4303
|
secondary?: undefined;
|
|
4297
4304
|
};
|
|
@@ -4316,6 +4323,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4316
4323
|
oldest?: undefined;
|
|
4317
4324
|
limit?: undefined;
|
|
4318
4325
|
inclusive?: undefined;
|
|
4326
|
+
cursor?: undefined;
|
|
4319
4327
|
ts?: undefined;
|
|
4320
4328
|
title?: undefined;
|
|
4321
4329
|
body?: undefined;
|
|
@@ -4354,10 +4362,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4354
4362
|
startAt?: undefined;
|
|
4355
4363
|
issueIdOrKey?: undefined;
|
|
4356
4364
|
projectKey?: undefined;
|
|
4357
|
-
|
|
4365
|
+
issueTypeName?: undefined;
|
|
4358
4366
|
priority?: undefined;
|
|
4359
|
-
|
|
4360
|
-
|
|
4367
|
+
assigneeAccountId?: undefined;
|
|
4368
|
+
transitionId?: undefined;
|
|
4361
4369
|
file_path?: undefined;
|
|
4362
4370
|
content?: undefined;
|
|
4363
4371
|
command?: undefined;
|
|
@@ -4382,6 +4390,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4382
4390
|
multi?: undefined;
|
|
4383
4391
|
separator?: undefined;
|
|
4384
4392
|
default?: undefined;
|
|
4393
|
+
fallback_param?: undefined;
|
|
4394
|
+
derive?: undefined;
|
|
4385
4395
|
};
|
|
4386
4396
|
secondary?: undefined;
|
|
4387
4397
|
};
|
|
@@ -4409,6 +4419,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4409
4419
|
oldest?: undefined;
|
|
4410
4420
|
limit?: undefined;
|
|
4411
4421
|
inclusive?: undefined;
|
|
4422
|
+
cursor?: undefined;
|
|
4412
4423
|
ts?: undefined;
|
|
4413
4424
|
title?: undefined;
|
|
4414
4425
|
body?: undefined;
|
|
@@ -4447,10 +4458,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4447
4458
|
startAt?: undefined;
|
|
4448
4459
|
issueIdOrKey?: undefined;
|
|
4449
4460
|
projectKey?: undefined;
|
|
4450
|
-
|
|
4461
|
+
issueTypeName?: undefined;
|
|
4451
4462
|
priority?: undefined;
|
|
4452
|
-
|
|
4453
|
-
|
|
4463
|
+
assigneeAccountId?: undefined;
|
|
4464
|
+
transitionId?: undefined;
|
|
4454
4465
|
file_path?: undefined;
|
|
4455
4466
|
content?: undefined;
|
|
4456
4467
|
command?: undefined;
|
|
@@ -4475,6 +4486,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4475
4486
|
multi?: undefined;
|
|
4476
4487
|
separator?: undefined;
|
|
4477
4488
|
default?: undefined;
|
|
4489
|
+
fallback_param?: undefined;
|
|
4490
|
+
derive?: undefined;
|
|
4478
4491
|
};
|
|
4479
4492
|
secondary?: undefined;
|
|
4480
4493
|
};
|
|
@@ -4512,6 +4525,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4512
4525
|
icon_emoji?: undefined;
|
|
4513
4526
|
blocks?: undefined;
|
|
4514
4527
|
userId?: undefined;
|
|
4528
|
+
cursor?: undefined;
|
|
4515
4529
|
ts?: undefined;
|
|
4516
4530
|
title?: undefined;
|
|
4517
4531
|
body?: undefined;
|
|
@@ -4550,10 +4564,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4550
4564
|
startAt?: undefined;
|
|
4551
4565
|
issueIdOrKey?: undefined;
|
|
4552
4566
|
projectKey?: undefined;
|
|
4553
|
-
|
|
4567
|
+
issueTypeName?: undefined;
|
|
4554
4568
|
priority?: undefined;
|
|
4555
|
-
|
|
4556
|
-
|
|
4569
|
+
assigneeAccountId?: undefined;
|
|
4570
|
+
transitionId?: undefined;
|
|
4557
4571
|
file_path?: undefined;
|
|
4558
4572
|
content?: undefined;
|
|
4559
4573
|
command?: undefined;
|
|
@@ -4578,6 +4592,111 @@ declare const ACTION_REGISTRY: {
|
|
|
4578
4592
|
multi?: undefined;
|
|
4579
4593
|
separator?: undefined;
|
|
4580
4594
|
default?: undefined;
|
|
4595
|
+
fallback_param?: undefined;
|
|
4596
|
+
derive?: undefined;
|
|
4597
|
+
};
|
|
4598
|
+
secondary?: undefined;
|
|
4599
|
+
};
|
|
4600
|
+
version: string;
|
|
4601
|
+
} | {
|
|
4602
|
+
action: string;
|
|
4603
|
+
resource_type: string;
|
|
4604
|
+
required_relations: string[];
|
|
4605
|
+
required_scopes: string[];
|
|
4606
|
+
capability: string;
|
|
4607
|
+
input_schema: {
|
|
4608
|
+
type: string;
|
|
4609
|
+
properties: {
|
|
4610
|
+
channel: {
|
|
4611
|
+
type: string;
|
|
4612
|
+
description: string;
|
|
4613
|
+
};
|
|
4614
|
+
cursor: {
|
|
4615
|
+
type: string;
|
|
4616
|
+
description: string;
|
|
4617
|
+
};
|
|
4618
|
+
limit: {
|
|
4619
|
+
type: string;
|
|
4620
|
+
minimum: number;
|
|
4621
|
+
maximum: number;
|
|
4622
|
+
};
|
|
4623
|
+
text?: undefined;
|
|
4624
|
+
thread_ts?: undefined;
|
|
4625
|
+
username?: undefined;
|
|
4626
|
+
icon_emoji?: undefined;
|
|
4627
|
+
blocks?: undefined;
|
|
4628
|
+
userId?: undefined;
|
|
4629
|
+
latest?: undefined;
|
|
4630
|
+
oldest?: undefined;
|
|
4631
|
+
inclusive?: undefined;
|
|
4632
|
+
ts?: undefined;
|
|
4633
|
+
title?: undefined;
|
|
4634
|
+
body?: undefined;
|
|
4635
|
+
labels?: undefined;
|
|
4636
|
+
assignees?: undefined;
|
|
4637
|
+
state?: undefined;
|
|
4638
|
+
sort?: undefined;
|
|
4639
|
+
direction?: undefined;
|
|
4640
|
+
per_page?: undefined;
|
|
4641
|
+
page?: undefined;
|
|
4642
|
+
issue_number?: undefined;
|
|
4643
|
+
query?: undefined;
|
|
4644
|
+
maxResults?: undefined;
|
|
4645
|
+
messageId?: undefined;
|
|
4646
|
+
to?: undefined;
|
|
4647
|
+
subject?: undefined;
|
|
4648
|
+
cc?: undefined;
|
|
4649
|
+
bcc?: undefined;
|
|
4650
|
+
messageIds?: undefined;
|
|
4651
|
+
calendarId?: undefined;
|
|
4652
|
+
timeMin?: undefined;
|
|
4653
|
+
timeMax?: undefined;
|
|
4654
|
+
eventId?: undefined;
|
|
4655
|
+
summary?: undefined;
|
|
4656
|
+
description?: undefined;
|
|
4657
|
+
start?: undefined;
|
|
4658
|
+
end?: undefined;
|
|
4659
|
+
attendees?: undefined;
|
|
4660
|
+
location?: undefined;
|
|
4661
|
+
recent?: undefined;
|
|
4662
|
+
projectKeyOrId?: undefined;
|
|
4663
|
+
type?: undefined;
|
|
4664
|
+
boardId?: undefined;
|
|
4665
|
+
sprintId?: undefined;
|
|
4666
|
+
jql?: undefined;
|
|
4667
|
+
startAt?: undefined;
|
|
4668
|
+
issueIdOrKey?: undefined;
|
|
4669
|
+
projectKey?: undefined;
|
|
4670
|
+
issueTypeName?: undefined;
|
|
4671
|
+
priority?: undefined;
|
|
4672
|
+
assigneeAccountId?: undefined;
|
|
4673
|
+
transitionId?: undefined;
|
|
4674
|
+
file_path?: undefined;
|
|
4675
|
+
content?: undefined;
|
|
4676
|
+
command?: undefined;
|
|
4677
|
+
working_directory?: undefined;
|
|
4678
|
+
env_profile?: undefined;
|
|
4679
|
+
timeout_seconds?: undefined;
|
|
4680
|
+
};
|
|
4681
|
+
required: string[];
|
|
4682
|
+
additionalProperties: boolean;
|
|
4683
|
+
};
|
|
4684
|
+
constraints: {
|
|
4685
|
+
rate_bucket: string;
|
|
4686
|
+
};
|
|
4687
|
+
effects: string[];
|
|
4688
|
+
risk: string;
|
|
4689
|
+
target_bindings: {
|
|
4690
|
+
resource_id: {
|
|
4691
|
+
source: "param";
|
|
4692
|
+
param: string;
|
|
4693
|
+
required?: undefined;
|
|
4694
|
+
key?: undefined;
|
|
4695
|
+
multi?: undefined;
|
|
4696
|
+
separator?: undefined;
|
|
4697
|
+
default?: undefined;
|
|
4698
|
+
fallback_param?: undefined;
|
|
4699
|
+
derive?: undefined;
|
|
4581
4700
|
};
|
|
4582
4701
|
secondary?: undefined;
|
|
4583
4702
|
};
|
|
@@ -4609,6 +4728,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4609
4728
|
latest?: undefined;
|
|
4610
4729
|
oldest?: undefined;
|
|
4611
4730
|
inclusive?: undefined;
|
|
4731
|
+
cursor?: undefined;
|
|
4612
4732
|
ts?: undefined;
|
|
4613
4733
|
title?: undefined;
|
|
4614
4734
|
body?: undefined;
|
|
@@ -4647,10 +4767,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4647
4767
|
startAt?: undefined;
|
|
4648
4768
|
issueIdOrKey?: undefined;
|
|
4649
4769
|
projectKey?: undefined;
|
|
4650
|
-
|
|
4770
|
+
issueTypeName?: undefined;
|
|
4651
4771
|
priority?: undefined;
|
|
4652
|
-
|
|
4653
|
-
|
|
4772
|
+
assigneeAccountId?: undefined;
|
|
4773
|
+
transitionId?: undefined;
|
|
4654
4774
|
file_path?: undefined;
|
|
4655
4775
|
content?: undefined;
|
|
4656
4776
|
command?: undefined;
|
|
@@ -4675,6 +4795,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4675
4795
|
multi?: undefined;
|
|
4676
4796
|
separator?: undefined;
|
|
4677
4797
|
default?: undefined;
|
|
4798
|
+
fallback_param?: undefined;
|
|
4799
|
+
derive?: undefined;
|
|
4678
4800
|
};
|
|
4679
4801
|
secondary?: undefined;
|
|
4680
4802
|
};
|
|
@@ -4710,6 +4832,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4710
4832
|
oldest?: undefined;
|
|
4711
4833
|
limit?: undefined;
|
|
4712
4834
|
inclusive?: undefined;
|
|
4835
|
+
cursor?: undefined;
|
|
4713
4836
|
title?: undefined;
|
|
4714
4837
|
body?: undefined;
|
|
4715
4838
|
labels?: undefined;
|
|
@@ -4747,10 +4870,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4747
4870
|
startAt?: undefined;
|
|
4748
4871
|
issueIdOrKey?: undefined;
|
|
4749
4872
|
projectKey?: undefined;
|
|
4750
|
-
|
|
4873
|
+
issueTypeName?: undefined;
|
|
4751
4874
|
priority?: undefined;
|
|
4752
|
-
|
|
4753
|
-
|
|
4875
|
+
assigneeAccountId?: undefined;
|
|
4876
|
+
transitionId?: undefined;
|
|
4754
4877
|
file_path?: undefined;
|
|
4755
4878
|
content?: undefined;
|
|
4756
4879
|
command?: undefined;
|
|
@@ -4775,6 +4898,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4775
4898
|
multi?: undefined;
|
|
4776
4899
|
separator?: undefined;
|
|
4777
4900
|
default?: undefined;
|
|
4901
|
+
fallback_param?: undefined;
|
|
4902
|
+
derive?: undefined;
|
|
4778
4903
|
};
|
|
4779
4904
|
secondary?: undefined;
|
|
4780
4905
|
};
|
|
@@ -4806,6 +4931,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4806
4931
|
oldest?: undefined;
|
|
4807
4932
|
limit?: undefined;
|
|
4808
4933
|
inclusive?: undefined;
|
|
4934
|
+
cursor?: undefined;
|
|
4809
4935
|
title?: undefined;
|
|
4810
4936
|
body?: undefined;
|
|
4811
4937
|
labels?: undefined;
|
|
@@ -4843,10 +4969,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4843
4969
|
startAt?: undefined;
|
|
4844
4970
|
issueIdOrKey?: undefined;
|
|
4845
4971
|
projectKey?: undefined;
|
|
4846
|
-
|
|
4972
|
+
issueTypeName?: undefined;
|
|
4847
4973
|
priority?: undefined;
|
|
4848
|
-
|
|
4849
|
-
|
|
4974
|
+
assigneeAccountId?: undefined;
|
|
4975
|
+
transitionId?: undefined;
|
|
4850
4976
|
file_path?: undefined;
|
|
4851
4977
|
content?: undefined;
|
|
4852
4978
|
command?: undefined;
|
|
@@ -4871,6 +4997,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4871
4997
|
multi?: undefined;
|
|
4872
4998
|
separator?: undefined;
|
|
4873
4999
|
default?: undefined;
|
|
5000
|
+
fallback_param?: undefined;
|
|
5001
|
+
derive?: undefined;
|
|
4874
5002
|
};
|
|
4875
5003
|
secondary?: undefined;
|
|
4876
5004
|
};
|
|
@@ -4915,6 +5043,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4915
5043
|
oldest?: undefined;
|
|
4916
5044
|
limit?: undefined;
|
|
4917
5045
|
inclusive?: undefined;
|
|
5046
|
+
cursor?: undefined;
|
|
4918
5047
|
ts?: undefined;
|
|
4919
5048
|
state?: undefined;
|
|
4920
5049
|
sort?: undefined;
|
|
@@ -4949,10 +5078,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4949
5078
|
startAt?: undefined;
|
|
4950
5079
|
issueIdOrKey?: undefined;
|
|
4951
5080
|
projectKey?: undefined;
|
|
4952
|
-
|
|
5081
|
+
issueTypeName?: undefined;
|
|
4953
5082
|
priority?: undefined;
|
|
4954
|
-
|
|
4955
|
-
|
|
5083
|
+
assigneeAccountId?: undefined;
|
|
5084
|
+
transitionId?: undefined;
|
|
4956
5085
|
file_path?: undefined;
|
|
4957
5086
|
content?: undefined;
|
|
4958
5087
|
command?: undefined;
|
|
@@ -4977,6 +5106,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4977
5106
|
multi?: undefined;
|
|
4978
5107
|
separator?: undefined;
|
|
4979
5108
|
default?: undefined;
|
|
5109
|
+
fallback_param?: undefined;
|
|
5110
|
+
derive?: undefined;
|
|
4980
5111
|
};
|
|
4981
5112
|
secondary?: undefined;
|
|
4982
5113
|
};
|
|
@@ -5026,6 +5157,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5026
5157
|
oldest?: undefined;
|
|
5027
5158
|
limit?: undefined;
|
|
5028
5159
|
inclusive?: undefined;
|
|
5160
|
+
cursor?: undefined;
|
|
5029
5161
|
ts?: undefined;
|
|
5030
5162
|
title?: undefined;
|
|
5031
5163
|
body?: undefined;
|
|
@@ -5058,10 +5190,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5058
5190
|
startAt?: undefined;
|
|
5059
5191
|
issueIdOrKey?: undefined;
|
|
5060
5192
|
projectKey?: undefined;
|
|
5061
|
-
|
|
5193
|
+
issueTypeName?: undefined;
|
|
5062
5194
|
priority?: undefined;
|
|
5063
|
-
|
|
5064
|
-
|
|
5195
|
+
assigneeAccountId?: undefined;
|
|
5196
|
+
transitionId?: undefined;
|
|
5065
5197
|
file_path?: undefined;
|
|
5066
5198
|
content?: undefined;
|
|
5067
5199
|
command?: undefined;
|
|
@@ -5086,6 +5218,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5086
5218
|
multi?: undefined;
|
|
5087
5219
|
separator?: undefined;
|
|
5088
5220
|
default?: undefined;
|
|
5221
|
+
fallback_param?: undefined;
|
|
5222
|
+
derive?: undefined;
|
|
5089
5223
|
};
|
|
5090
5224
|
secondary?: undefined;
|
|
5091
5225
|
};
|
|
@@ -5114,6 +5248,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5114
5248
|
oldest?: undefined;
|
|
5115
5249
|
limit?: undefined;
|
|
5116
5250
|
inclusive?: undefined;
|
|
5251
|
+
cursor?: undefined;
|
|
5117
5252
|
ts?: undefined;
|
|
5118
5253
|
title?: undefined;
|
|
5119
5254
|
body?: undefined;
|
|
@@ -5151,10 +5286,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5151
5286
|
startAt?: undefined;
|
|
5152
5287
|
issueIdOrKey?: undefined;
|
|
5153
5288
|
projectKey?: undefined;
|
|
5154
|
-
|
|
5289
|
+
issueTypeName?: undefined;
|
|
5155
5290
|
priority?: undefined;
|
|
5156
|
-
|
|
5157
|
-
|
|
5291
|
+
assigneeAccountId?: undefined;
|
|
5292
|
+
transitionId?: undefined;
|
|
5158
5293
|
file_path?: undefined;
|
|
5159
5294
|
content?: undefined;
|
|
5160
5295
|
command?: undefined;
|
|
@@ -5179,6 +5314,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5179
5314
|
multi?: undefined;
|
|
5180
5315
|
separator?: undefined;
|
|
5181
5316
|
default?: undefined;
|
|
5317
|
+
fallback_param?: undefined;
|
|
5318
|
+
derive?: undefined;
|
|
5182
5319
|
};
|
|
5183
5320
|
secondary?: undefined;
|
|
5184
5321
|
};
|
|
@@ -5231,6 +5368,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5231
5368
|
oldest?: undefined;
|
|
5232
5369
|
limit?: undefined;
|
|
5233
5370
|
inclusive?: undefined;
|
|
5371
|
+
cursor?: undefined;
|
|
5234
5372
|
ts?: undefined;
|
|
5235
5373
|
sort?: undefined;
|
|
5236
5374
|
direction?: undefined;
|
|
@@ -5263,10 +5401,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5263
5401
|
startAt?: undefined;
|
|
5264
5402
|
issueIdOrKey?: undefined;
|
|
5265
5403
|
projectKey?: undefined;
|
|
5266
|
-
|
|
5404
|
+
issueTypeName?: undefined;
|
|
5267
5405
|
priority?: undefined;
|
|
5268
|
-
|
|
5269
|
-
|
|
5406
|
+
assigneeAccountId?: undefined;
|
|
5407
|
+
transitionId?: undefined;
|
|
5270
5408
|
file_path?: undefined;
|
|
5271
5409
|
content?: undefined;
|
|
5272
5410
|
command?: undefined;
|
|
@@ -5291,6 +5429,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5291
5429
|
multi?: undefined;
|
|
5292
5430
|
separator?: undefined;
|
|
5293
5431
|
default?: undefined;
|
|
5432
|
+
fallback_param?: undefined;
|
|
5433
|
+
derive?: undefined;
|
|
5294
5434
|
};
|
|
5295
5435
|
secondary?: undefined;
|
|
5296
5436
|
};
|
|
@@ -5312,6 +5452,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5312
5452
|
type: string;
|
|
5313
5453
|
minimum: number;
|
|
5314
5454
|
maximum: number;
|
|
5455
|
+
description?: undefined;
|
|
5315
5456
|
};
|
|
5316
5457
|
channel?: undefined;
|
|
5317
5458
|
text?: undefined;
|
|
@@ -5324,6 +5465,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5324
5465
|
oldest?: undefined;
|
|
5325
5466
|
limit?: undefined;
|
|
5326
5467
|
inclusive?: undefined;
|
|
5468
|
+
cursor?: undefined;
|
|
5327
5469
|
ts?: undefined;
|
|
5328
5470
|
title?: undefined;
|
|
5329
5471
|
body?: undefined;
|
|
@@ -5360,10 +5502,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5360
5502
|
startAt?: undefined;
|
|
5361
5503
|
issueIdOrKey?: undefined;
|
|
5362
5504
|
projectKey?: undefined;
|
|
5363
|
-
|
|
5505
|
+
issueTypeName?: undefined;
|
|
5364
5506
|
priority?: undefined;
|
|
5365
|
-
|
|
5366
|
-
|
|
5507
|
+
assigneeAccountId?: undefined;
|
|
5508
|
+
transitionId?: undefined;
|
|
5367
5509
|
file_path?: undefined;
|
|
5368
5510
|
content?: undefined;
|
|
5369
5511
|
command?: undefined;
|
|
@@ -5388,6 +5530,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5388
5530
|
multi?: undefined;
|
|
5389
5531
|
separator?: undefined;
|
|
5390
5532
|
default?: undefined;
|
|
5533
|
+
fallback_param?: undefined;
|
|
5534
|
+
derive?: undefined;
|
|
5391
5535
|
};
|
|
5392
5536
|
secondary?: undefined;
|
|
5393
5537
|
};
|
|
@@ -5416,6 +5560,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5416
5560
|
oldest?: undefined;
|
|
5417
5561
|
limit?: undefined;
|
|
5418
5562
|
inclusive?: undefined;
|
|
5563
|
+
cursor?: undefined;
|
|
5419
5564
|
ts?: undefined;
|
|
5420
5565
|
title?: undefined;
|
|
5421
5566
|
body?: undefined;
|
|
@@ -5453,10 +5598,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5453
5598
|
startAt?: undefined;
|
|
5454
5599
|
issueIdOrKey?: undefined;
|
|
5455
5600
|
projectKey?: undefined;
|
|
5456
|
-
|
|
5601
|
+
issueTypeName?: undefined;
|
|
5457
5602
|
priority?: undefined;
|
|
5458
|
-
|
|
5459
|
-
|
|
5603
|
+
assigneeAccountId?: undefined;
|
|
5604
|
+
transitionId?: undefined;
|
|
5460
5605
|
file_path?: undefined;
|
|
5461
5606
|
content?: undefined;
|
|
5462
5607
|
command?: undefined;
|
|
@@ -5481,6 +5626,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5481
5626
|
multi?: undefined;
|
|
5482
5627
|
separator?: undefined;
|
|
5483
5628
|
default?: undefined;
|
|
5629
|
+
fallback_param?: undefined;
|
|
5630
|
+
derive?: undefined;
|
|
5484
5631
|
};
|
|
5485
5632
|
secondary?: undefined;
|
|
5486
5633
|
};
|
|
@@ -5523,6 +5670,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5523
5670
|
oldest?: undefined;
|
|
5524
5671
|
limit?: undefined;
|
|
5525
5672
|
inclusive?: undefined;
|
|
5673
|
+
cursor?: undefined;
|
|
5526
5674
|
ts?: undefined;
|
|
5527
5675
|
title?: undefined;
|
|
5528
5676
|
labels?: undefined;
|
|
@@ -5556,10 +5704,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5556
5704
|
startAt?: undefined;
|
|
5557
5705
|
issueIdOrKey?: undefined;
|
|
5558
5706
|
projectKey?: undefined;
|
|
5559
|
-
|
|
5707
|
+
issueTypeName?: undefined;
|
|
5560
5708
|
priority?: undefined;
|
|
5561
|
-
|
|
5562
|
-
|
|
5709
|
+
assigneeAccountId?: undefined;
|
|
5710
|
+
transitionId?: undefined;
|
|
5563
5711
|
file_path?: undefined;
|
|
5564
5712
|
content?: undefined;
|
|
5565
5713
|
command?: undefined;
|
|
@@ -5584,6 +5732,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5584
5732
|
required?: undefined;
|
|
5585
5733
|
key?: undefined;
|
|
5586
5734
|
default?: undefined;
|
|
5735
|
+
fallback_param?: undefined;
|
|
5736
|
+
derive?: undefined;
|
|
5587
5737
|
};
|
|
5588
5738
|
secondary: {
|
|
5589
5739
|
name: string;
|
|
@@ -5624,6 +5774,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5624
5774
|
oldest?: undefined;
|
|
5625
5775
|
limit?: undefined;
|
|
5626
5776
|
inclusive?: undefined;
|
|
5777
|
+
cursor?: undefined;
|
|
5627
5778
|
ts?: undefined;
|
|
5628
5779
|
title?: undefined;
|
|
5629
5780
|
body?: undefined;
|
|
@@ -5661,10 +5812,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5661
5812
|
startAt?: undefined;
|
|
5662
5813
|
issueIdOrKey?: undefined;
|
|
5663
5814
|
projectKey?: undefined;
|
|
5664
|
-
|
|
5815
|
+
issueTypeName?: undefined;
|
|
5665
5816
|
priority?: undefined;
|
|
5666
|
-
|
|
5667
|
-
|
|
5817
|
+
assigneeAccountId?: undefined;
|
|
5818
|
+
transitionId?: undefined;
|
|
5668
5819
|
file_path?: undefined;
|
|
5669
5820
|
content?: undefined;
|
|
5670
5821
|
command?: undefined;
|
|
@@ -5689,6 +5840,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5689
5840
|
multi?: undefined;
|
|
5690
5841
|
separator?: undefined;
|
|
5691
5842
|
default?: undefined;
|
|
5843
|
+
fallback_param?: undefined;
|
|
5844
|
+
derive?: undefined;
|
|
5692
5845
|
};
|
|
5693
5846
|
secondary?: undefined;
|
|
5694
5847
|
};
|
|
@@ -5704,17 +5857,21 @@ declare const ACTION_REGISTRY: {
|
|
|
5704
5857
|
properties: {
|
|
5705
5858
|
calendarId: {
|
|
5706
5859
|
type: string;
|
|
5860
|
+
description: string;
|
|
5707
5861
|
};
|
|
5708
5862
|
timeMin: {
|
|
5709
5863
|
type: string;
|
|
5864
|
+
description: string;
|
|
5710
5865
|
};
|
|
5711
5866
|
timeMax: {
|
|
5712
5867
|
type: string;
|
|
5868
|
+
description: string;
|
|
5713
5869
|
};
|
|
5714
5870
|
maxResults: {
|
|
5715
5871
|
type: string;
|
|
5716
5872
|
minimum: number;
|
|
5717
5873
|
maximum: number;
|
|
5874
|
+
description: string;
|
|
5718
5875
|
};
|
|
5719
5876
|
channel?: undefined;
|
|
5720
5877
|
text?: undefined;
|
|
@@ -5727,6 +5884,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5727
5884
|
oldest?: undefined;
|
|
5728
5885
|
limit?: undefined;
|
|
5729
5886
|
inclusive?: undefined;
|
|
5887
|
+
cursor?: undefined;
|
|
5730
5888
|
ts?: undefined;
|
|
5731
5889
|
title?: undefined;
|
|
5732
5890
|
body?: undefined;
|
|
@@ -5761,10 +5919,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5761
5919
|
startAt?: undefined;
|
|
5762
5920
|
issueIdOrKey?: undefined;
|
|
5763
5921
|
projectKey?: undefined;
|
|
5764
|
-
|
|
5922
|
+
issueTypeName?: undefined;
|
|
5765
5923
|
priority?: undefined;
|
|
5766
|
-
|
|
5767
|
-
|
|
5924
|
+
assigneeAccountId?: undefined;
|
|
5925
|
+
transitionId?: undefined;
|
|
5768
5926
|
file_path?: undefined;
|
|
5769
5927
|
content?: undefined;
|
|
5770
5928
|
command?: undefined;
|
|
@@ -5789,6 +5947,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5789
5947
|
key?: undefined;
|
|
5790
5948
|
multi?: undefined;
|
|
5791
5949
|
separator?: undefined;
|
|
5950
|
+
fallback_param?: undefined;
|
|
5951
|
+
derive?: undefined;
|
|
5792
5952
|
};
|
|
5793
5953
|
secondary?: undefined;
|
|
5794
5954
|
};
|
|
@@ -5804,10 +5964,12 @@ declare const ACTION_REGISTRY: {
|
|
|
5804
5964
|
properties: {
|
|
5805
5965
|
calendarId: {
|
|
5806
5966
|
type: string;
|
|
5967
|
+
description?: undefined;
|
|
5807
5968
|
};
|
|
5808
5969
|
eventId: {
|
|
5809
5970
|
type: string;
|
|
5810
5971
|
minLength: number;
|
|
5972
|
+
description?: undefined;
|
|
5811
5973
|
};
|
|
5812
5974
|
channel?: undefined;
|
|
5813
5975
|
text?: undefined;
|
|
@@ -5820,6 +5982,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5820
5982
|
oldest?: undefined;
|
|
5821
5983
|
limit?: undefined;
|
|
5822
5984
|
inclusive?: undefined;
|
|
5985
|
+
cursor?: undefined;
|
|
5823
5986
|
ts?: undefined;
|
|
5824
5987
|
title?: undefined;
|
|
5825
5988
|
body?: undefined;
|
|
@@ -5856,10 +6019,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5856
6019
|
startAt?: undefined;
|
|
5857
6020
|
issueIdOrKey?: undefined;
|
|
5858
6021
|
projectKey?: undefined;
|
|
5859
|
-
|
|
6022
|
+
issueTypeName?: undefined;
|
|
5860
6023
|
priority?: undefined;
|
|
5861
|
-
|
|
5862
|
-
|
|
6024
|
+
assigneeAccountId?: undefined;
|
|
6025
|
+
transitionId?: undefined;
|
|
5863
6026
|
file_path?: undefined;
|
|
5864
6027
|
content?: undefined;
|
|
5865
6028
|
command?: undefined;
|
|
@@ -5884,6 +6047,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5884
6047
|
multi?: undefined;
|
|
5885
6048
|
separator?: undefined;
|
|
5886
6049
|
default?: undefined;
|
|
6050
|
+
fallback_param?: undefined;
|
|
6051
|
+
derive?: undefined;
|
|
5887
6052
|
};
|
|
5888
6053
|
secondary?: undefined;
|
|
5889
6054
|
};
|
|
@@ -5899,25 +6064,68 @@ declare const ACTION_REGISTRY: {
|
|
|
5899
6064
|
properties: {
|
|
5900
6065
|
calendarId: {
|
|
5901
6066
|
type: string;
|
|
6067
|
+
description: string;
|
|
5902
6068
|
};
|
|
5903
6069
|
summary: {
|
|
5904
6070
|
type: string;
|
|
5905
6071
|
minLength: number;
|
|
6072
|
+
description: string;
|
|
5906
6073
|
};
|
|
5907
6074
|
description: {
|
|
5908
6075
|
type: string;
|
|
6076
|
+
description: string;
|
|
5909
6077
|
};
|
|
5910
6078
|
start: {
|
|
5911
6079
|
type: string;
|
|
6080
|
+
description: string;
|
|
6081
|
+
properties: {
|
|
6082
|
+
dateTime: {
|
|
6083
|
+
type: string;
|
|
6084
|
+
description: string;
|
|
6085
|
+
};
|
|
6086
|
+
date: {
|
|
6087
|
+
type: string;
|
|
6088
|
+
description: string;
|
|
6089
|
+
};
|
|
6090
|
+
timeZone: {
|
|
6091
|
+
type: string;
|
|
6092
|
+
description: string;
|
|
6093
|
+
};
|
|
6094
|
+
};
|
|
5912
6095
|
};
|
|
5913
6096
|
end: {
|
|
5914
6097
|
type: string;
|
|
6098
|
+
description: string;
|
|
6099
|
+
properties: {
|
|
6100
|
+
dateTime: {
|
|
6101
|
+
type: string;
|
|
6102
|
+
description: string;
|
|
6103
|
+
};
|
|
6104
|
+
date: {
|
|
6105
|
+
type: string;
|
|
6106
|
+
description: string;
|
|
6107
|
+
};
|
|
6108
|
+
timeZone: {
|
|
6109
|
+
type: string;
|
|
6110
|
+
description: string;
|
|
6111
|
+
};
|
|
6112
|
+
};
|
|
5915
6113
|
};
|
|
5916
6114
|
attendees: {
|
|
5917
6115
|
type: string;
|
|
6116
|
+
description: string;
|
|
6117
|
+
items: {
|
|
6118
|
+
type: string;
|
|
6119
|
+
properties: {
|
|
6120
|
+
email: {
|
|
6121
|
+
type: string;
|
|
6122
|
+
};
|
|
6123
|
+
};
|
|
6124
|
+
};
|
|
5918
6125
|
};
|
|
5919
6126
|
location: {
|
|
5920
6127
|
type: string;
|
|
6128
|
+
description: string;
|
|
5921
6129
|
};
|
|
5922
6130
|
channel?: undefined;
|
|
5923
6131
|
text?: undefined;
|
|
@@ -5930,6 +6138,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5930
6138
|
oldest?: undefined;
|
|
5931
6139
|
limit?: undefined;
|
|
5932
6140
|
inclusive?: undefined;
|
|
6141
|
+
cursor?: undefined;
|
|
5933
6142
|
ts?: undefined;
|
|
5934
6143
|
title?: undefined;
|
|
5935
6144
|
body?: undefined;
|
|
@@ -5961,10 +6170,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5961
6170
|
startAt?: undefined;
|
|
5962
6171
|
issueIdOrKey?: undefined;
|
|
5963
6172
|
projectKey?: undefined;
|
|
5964
|
-
|
|
6173
|
+
issueTypeName?: undefined;
|
|
5965
6174
|
priority?: undefined;
|
|
5966
|
-
|
|
5967
|
-
|
|
6175
|
+
assigneeAccountId?: undefined;
|
|
6176
|
+
transitionId?: undefined;
|
|
5968
6177
|
file_path?: undefined;
|
|
5969
6178
|
content?: undefined;
|
|
5970
6179
|
command?: undefined;
|
|
@@ -5989,6 +6198,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5989
6198
|
key?: undefined;
|
|
5990
6199
|
multi?: undefined;
|
|
5991
6200
|
separator?: undefined;
|
|
6201
|
+
fallback_param?: undefined;
|
|
6202
|
+
derive?: undefined;
|
|
5992
6203
|
};
|
|
5993
6204
|
secondary: {
|
|
5994
6205
|
name: string;
|
|
@@ -6011,29 +6222,73 @@ declare const ACTION_REGISTRY: {
|
|
|
6011
6222
|
properties: {
|
|
6012
6223
|
calendarId: {
|
|
6013
6224
|
type: string;
|
|
6225
|
+
description: string;
|
|
6014
6226
|
};
|
|
6015
6227
|
eventId: {
|
|
6016
6228
|
type: string;
|
|
6017
6229
|
minLength: number;
|
|
6230
|
+
description: string;
|
|
6018
6231
|
};
|
|
6019
6232
|
summary: {
|
|
6020
6233
|
type: string;
|
|
6234
|
+
description: string;
|
|
6021
6235
|
minLength?: undefined;
|
|
6022
6236
|
};
|
|
6023
6237
|
description: {
|
|
6024
6238
|
type: string;
|
|
6239
|
+
description: string;
|
|
6025
6240
|
};
|
|
6026
6241
|
start: {
|
|
6027
6242
|
type: string;
|
|
6243
|
+
description: string;
|
|
6244
|
+
properties: {
|
|
6245
|
+
dateTime: {
|
|
6246
|
+
type: string;
|
|
6247
|
+
description: string;
|
|
6248
|
+
};
|
|
6249
|
+
date: {
|
|
6250
|
+
type: string;
|
|
6251
|
+
description: string;
|
|
6252
|
+
};
|
|
6253
|
+
timeZone: {
|
|
6254
|
+
type: string;
|
|
6255
|
+
description: string;
|
|
6256
|
+
};
|
|
6257
|
+
};
|
|
6028
6258
|
};
|
|
6029
6259
|
end: {
|
|
6030
6260
|
type: string;
|
|
6261
|
+
description: string;
|
|
6262
|
+
properties: {
|
|
6263
|
+
dateTime: {
|
|
6264
|
+
type: string;
|
|
6265
|
+
description: string;
|
|
6266
|
+
};
|
|
6267
|
+
date: {
|
|
6268
|
+
type: string;
|
|
6269
|
+
description: string;
|
|
6270
|
+
};
|
|
6271
|
+
timeZone: {
|
|
6272
|
+
type: string;
|
|
6273
|
+
description: string;
|
|
6274
|
+
};
|
|
6275
|
+
};
|
|
6031
6276
|
};
|
|
6032
6277
|
attendees: {
|
|
6033
6278
|
type: string;
|
|
6279
|
+
description: string;
|
|
6280
|
+
items: {
|
|
6281
|
+
type: string;
|
|
6282
|
+
properties: {
|
|
6283
|
+
email: {
|
|
6284
|
+
type: string;
|
|
6285
|
+
};
|
|
6286
|
+
};
|
|
6287
|
+
};
|
|
6034
6288
|
};
|
|
6035
6289
|
location: {
|
|
6036
6290
|
type: string;
|
|
6291
|
+
description: string;
|
|
6037
6292
|
};
|
|
6038
6293
|
channel?: undefined;
|
|
6039
6294
|
text?: undefined;
|
|
@@ -6046,6 +6301,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6046
6301
|
oldest?: undefined;
|
|
6047
6302
|
limit?: undefined;
|
|
6048
6303
|
inclusive?: undefined;
|
|
6304
|
+
cursor?: undefined;
|
|
6049
6305
|
ts?: undefined;
|
|
6050
6306
|
title?: undefined;
|
|
6051
6307
|
body?: undefined;
|
|
@@ -6076,10 +6332,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6076
6332
|
startAt?: undefined;
|
|
6077
6333
|
issueIdOrKey?: undefined;
|
|
6078
6334
|
projectKey?: undefined;
|
|
6079
|
-
|
|
6335
|
+
issueTypeName?: undefined;
|
|
6080
6336
|
priority?: undefined;
|
|
6081
|
-
|
|
6082
|
-
|
|
6337
|
+
assigneeAccountId?: undefined;
|
|
6338
|
+
transitionId?: undefined;
|
|
6083
6339
|
file_path?: undefined;
|
|
6084
6340
|
content?: undefined;
|
|
6085
6341
|
command?: undefined;
|
|
@@ -6099,11 +6355,13 @@ declare const ACTION_REGISTRY: {
|
|
|
6099
6355
|
resource_id: {
|
|
6100
6356
|
source: "param";
|
|
6101
6357
|
param: string;
|
|
6358
|
+
default: string;
|
|
6102
6359
|
required?: undefined;
|
|
6103
6360
|
key?: undefined;
|
|
6104
6361
|
multi?: undefined;
|
|
6105
6362
|
separator?: undefined;
|
|
6106
|
-
|
|
6363
|
+
fallback_param?: undefined;
|
|
6364
|
+
derive?: undefined;
|
|
6107
6365
|
};
|
|
6108
6366
|
secondary: {
|
|
6109
6367
|
name: string;
|
|
@@ -6115,6 +6373,106 @@ declare const ACTION_REGISTRY: {
|
|
|
6115
6373
|
}[];
|
|
6116
6374
|
};
|
|
6117
6375
|
version: string;
|
|
6376
|
+
} | {
|
|
6377
|
+
action: string;
|
|
6378
|
+
resource_type: string;
|
|
6379
|
+
required_relations: string[];
|
|
6380
|
+
required_scopes: string[];
|
|
6381
|
+
capability: string;
|
|
6382
|
+
input_schema: {
|
|
6383
|
+
type: string;
|
|
6384
|
+
properties: {
|
|
6385
|
+
calendarId: {
|
|
6386
|
+
type: string;
|
|
6387
|
+
description?: undefined;
|
|
6388
|
+
};
|
|
6389
|
+
eventId: {
|
|
6390
|
+
type: string;
|
|
6391
|
+
minLength: number;
|
|
6392
|
+
description?: undefined;
|
|
6393
|
+
};
|
|
6394
|
+
channel?: undefined;
|
|
6395
|
+
text?: undefined;
|
|
6396
|
+
thread_ts?: undefined;
|
|
6397
|
+
username?: undefined;
|
|
6398
|
+
icon_emoji?: undefined;
|
|
6399
|
+
blocks?: undefined;
|
|
6400
|
+
userId?: undefined;
|
|
6401
|
+
latest?: undefined;
|
|
6402
|
+
oldest?: undefined;
|
|
6403
|
+
limit?: undefined;
|
|
6404
|
+
inclusive?: undefined;
|
|
6405
|
+
cursor?: undefined;
|
|
6406
|
+
ts?: undefined;
|
|
6407
|
+
title?: undefined;
|
|
6408
|
+
body?: undefined;
|
|
6409
|
+
labels?: undefined;
|
|
6410
|
+
assignees?: undefined;
|
|
6411
|
+
state?: undefined;
|
|
6412
|
+
sort?: undefined;
|
|
6413
|
+
direction?: undefined;
|
|
6414
|
+
per_page?: undefined;
|
|
6415
|
+
page?: undefined;
|
|
6416
|
+
issue_number?: undefined;
|
|
6417
|
+
query?: undefined;
|
|
6418
|
+
maxResults?: undefined;
|
|
6419
|
+
messageId?: undefined;
|
|
6420
|
+
to?: undefined;
|
|
6421
|
+
subject?: undefined;
|
|
6422
|
+
cc?: undefined;
|
|
6423
|
+
bcc?: undefined;
|
|
6424
|
+
messageIds?: undefined;
|
|
6425
|
+
timeMin?: undefined;
|
|
6426
|
+
timeMax?: undefined;
|
|
6427
|
+
summary?: undefined;
|
|
6428
|
+
description?: undefined;
|
|
6429
|
+
start?: undefined;
|
|
6430
|
+
end?: undefined;
|
|
6431
|
+
attendees?: undefined;
|
|
6432
|
+
location?: undefined;
|
|
6433
|
+
recent?: undefined;
|
|
6434
|
+
projectKeyOrId?: undefined;
|
|
6435
|
+
type?: undefined;
|
|
6436
|
+
boardId?: undefined;
|
|
6437
|
+
sprintId?: undefined;
|
|
6438
|
+
jql?: undefined;
|
|
6439
|
+
startAt?: undefined;
|
|
6440
|
+
issueIdOrKey?: undefined;
|
|
6441
|
+
projectKey?: undefined;
|
|
6442
|
+
issueTypeName?: undefined;
|
|
6443
|
+
priority?: undefined;
|
|
6444
|
+
assigneeAccountId?: undefined;
|
|
6445
|
+
transitionId?: undefined;
|
|
6446
|
+
file_path?: undefined;
|
|
6447
|
+
content?: undefined;
|
|
6448
|
+
command?: undefined;
|
|
6449
|
+
working_directory?: undefined;
|
|
6450
|
+
env_profile?: undefined;
|
|
6451
|
+
timeout_seconds?: undefined;
|
|
6452
|
+
};
|
|
6453
|
+
required: string[];
|
|
6454
|
+
additionalProperties: boolean;
|
|
6455
|
+
};
|
|
6456
|
+
constraints: {
|
|
6457
|
+
rate_bucket: string;
|
|
6458
|
+
};
|
|
6459
|
+
effects: string[];
|
|
6460
|
+
risk: string;
|
|
6461
|
+
target_bindings: {
|
|
6462
|
+
resource_id: {
|
|
6463
|
+
source: "param";
|
|
6464
|
+
param: string;
|
|
6465
|
+
default: string;
|
|
6466
|
+
required?: undefined;
|
|
6467
|
+
key?: undefined;
|
|
6468
|
+
multi?: undefined;
|
|
6469
|
+
separator?: undefined;
|
|
6470
|
+
fallback_param?: undefined;
|
|
6471
|
+
derive?: undefined;
|
|
6472
|
+
};
|
|
6473
|
+
secondary?: undefined;
|
|
6474
|
+
};
|
|
6475
|
+
version: string;
|
|
6118
6476
|
} | {
|
|
6119
6477
|
action: string;
|
|
6120
6478
|
resource_type: string;
|
|
@@ -6138,6 +6496,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6138
6496
|
oldest?: undefined;
|
|
6139
6497
|
limit?: undefined;
|
|
6140
6498
|
inclusive?: undefined;
|
|
6499
|
+
cursor?: undefined;
|
|
6141
6500
|
ts?: undefined;
|
|
6142
6501
|
title?: undefined;
|
|
6143
6502
|
body?: undefined;
|
|
@@ -6175,10 +6534,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6175
6534
|
startAt?: undefined;
|
|
6176
6535
|
issueIdOrKey?: undefined;
|
|
6177
6536
|
projectKey?: undefined;
|
|
6178
|
-
|
|
6537
|
+
issueTypeName?: undefined;
|
|
6179
6538
|
priority?: undefined;
|
|
6180
|
-
|
|
6181
|
-
|
|
6539
|
+
assigneeAccountId?: undefined;
|
|
6540
|
+
transitionId?: undefined;
|
|
6182
6541
|
file_path?: undefined;
|
|
6183
6542
|
content?: undefined;
|
|
6184
6543
|
command?: undefined;
|
|
@@ -6203,6 +6562,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6203
6562
|
multi?: undefined;
|
|
6204
6563
|
separator?: undefined;
|
|
6205
6564
|
default?: undefined;
|
|
6565
|
+
fallback_param?: undefined;
|
|
6566
|
+
derive?: undefined;
|
|
6206
6567
|
};
|
|
6207
6568
|
secondary?: undefined;
|
|
6208
6569
|
};
|
|
@@ -6233,6 +6594,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6233
6594
|
oldest?: undefined;
|
|
6234
6595
|
limit?: undefined;
|
|
6235
6596
|
inclusive?: undefined;
|
|
6597
|
+
cursor?: undefined;
|
|
6236
6598
|
ts?: undefined;
|
|
6237
6599
|
title?: undefined;
|
|
6238
6600
|
body?: undefined;
|
|
@@ -6269,10 +6631,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6269
6631
|
startAt?: undefined;
|
|
6270
6632
|
issueIdOrKey?: undefined;
|
|
6271
6633
|
projectKey?: undefined;
|
|
6272
|
-
|
|
6634
|
+
issueTypeName?: undefined;
|
|
6273
6635
|
priority?: undefined;
|
|
6274
|
-
|
|
6275
|
-
|
|
6636
|
+
assigneeAccountId?: undefined;
|
|
6637
|
+
transitionId?: undefined;
|
|
6276
6638
|
file_path?: undefined;
|
|
6277
6639
|
content?: undefined;
|
|
6278
6640
|
command?: undefined;
|
|
@@ -6297,6 +6659,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6297
6659
|
multi?: undefined;
|
|
6298
6660
|
separator?: undefined;
|
|
6299
6661
|
default?: undefined;
|
|
6662
|
+
fallback_param?: undefined;
|
|
6663
|
+
derive?: undefined;
|
|
6300
6664
|
};
|
|
6301
6665
|
secondary?: undefined;
|
|
6302
6666
|
};
|
|
@@ -6329,6 +6693,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6329
6693
|
oldest?: undefined;
|
|
6330
6694
|
limit?: undefined;
|
|
6331
6695
|
inclusive?: undefined;
|
|
6696
|
+
cursor?: undefined;
|
|
6332
6697
|
ts?: undefined;
|
|
6333
6698
|
title?: undefined;
|
|
6334
6699
|
body?: undefined;
|
|
@@ -6365,10 +6730,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6365
6730
|
startAt?: undefined;
|
|
6366
6731
|
issueIdOrKey?: undefined;
|
|
6367
6732
|
projectKey?: undefined;
|
|
6368
|
-
|
|
6733
|
+
issueTypeName?: undefined;
|
|
6369
6734
|
priority?: undefined;
|
|
6370
|
-
|
|
6371
|
-
|
|
6735
|
+
assigneeAccountId?: undefined;
|
|
6736
|
+
transitionId?: undefined;
|
|
6372
6737
|
file_path?: undefined;
|
|
6373
6738
|
content?: undefined;
|
|
6374
6739
|
command?: undefined;
|
|
@@ -6393,6 +6758,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6393
6758
|
multi?: undefined;
|
|
6394
6759
|
separator?: undefined;
|
|
6395
6760
|
default?: undefined;
|
|
6761
|
+
fallback_param?: undefined;
|
|
6762
|
+
derive?: undefined;
|
|
6396
6763
|
};
|
|
6397
6764
|
secondary?: undefined;
|
|
6398
6765
|
};
|
|
@@ -6414,6 +6781,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6414
6781
|
type: string;
|
|
6415
6782
|
minimum: number;
|
|
6416
6783
|
maximum: number;
|
|
6784
|
+
description?: undefined;
|
|
6417
6785
|
};
|
|
6418
6786
|
channel?: undefined;
|
|
6419
6787
|
text?: undefined;
|
|
@@ -6426,6 +6794,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6426
6794
|
oldest?: undefined;
|
|
6427
6795
|
limit?: undefined;
|
|
6428
6796
|
inclusive?: undefined;
|
|
6797
|
+
cursor?: undefined;
|
|
6429
6798
|
ts?: undefined;
|
|
6430
6799
|
title?: undefined;
|
|
6431
6800
|
body?: undefined;
|
|
@@ -6462,10 +6831,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6462
6831
|
startAt?: undefined;
|
|
6463
6832
|
issueIdOrKey?: undefined;
|
|
6464
6833
|
projectKey?: undefined;
|
|
6465
|
-
|
|
6834
|
+
issueTypeName?: undefined;
|
|
6466
6835
|
priority?: undefined;
|
|
6467
|
-
|
|
6468
|
-
|
|
6836
|
+
assigneeAccountId?: undefined;
|
|
6837
|
+
transitionId?: undefined;
|
|
6469
6838
|
file_path?: undefined;
|
|
6470
6839
|
content?: undefined;
|
|
6471
6840
|
command?: undefined;
|
|
@@ -6490,6 +6859,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6490
6859
|
multi?: undefined;
|
|
6491
6860
|
separator?: undefined;
|
|
6492
6861
|
default?: undefined;
|
|
6862
|
+
fallback_param?: undefined;
|
|
6863
|
+
derive?: undefined;
|
|
6493
6864
|
};
|
|
6494
6865
|
secondary?: undefined;
|
|
6495
6866
|
};
|
|
@@ -6511,6 +6882,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6511
6882
|
type: string;
|
|
6512
6883
|
minimum: number;
|
|
6513
6884
|
maximum: number;
|
|
6885
|
+
description?: undefined;
|
|
6514
6886
|
};
|
|
6515
6887
|
startAt: {
|
|
6516
6888
|
type: string;
|
|
@@ -6527,6 +6899,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6527
6899
|
oldest?: undefined;
|
|
6528
6900
|
limit?: undefined;
|
|
6529
6901
|
inclusive?: undefined;
|
|
6902
|
+
cursor?: undefined;
|
|
6530
6903
|
ts?: undefined;
|
|
6531
6904
|
title?: undefined;
|
|
6532
6905
|
body?: undefined;
|
|
@@ -6562,10 +6935,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6562
6935
|
sprintId?: undefined;
|
|
6563
6936
|
issueIdOrKey?: undefined;
|
|
6564
6937
|
projectKey?: undefined;
|
|
6565
|
-
|
|
6938
|
+
issueTypeName?: undefined;
|
|
6566
6939
|
priority?: undefined;
|
|
6567
|
-
|
|
6568
|
-
|
|
6940
|
+
assigneeAccountId?: undefined;
|
|
6941
|
+
transitionId?: undefined;
|
|
6569
6942
|
file_path?: undefined;
|
|
6570
6943
|
content?: undefined;
|
|
6571
6944
|
command?: undefined;
|
|
@@ -6590,6 +6963,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6590
6963
|
multi?: undefined;
|
|
6591
6964
|
separator?: undefined;
|
|
6592
6965
|
default?: undefined;
|
|
6966
|
+
fallback_param?: undefined;
|
|
6967
|
+
derive?: undefined;
|
|
6593
6968
|
};
|
|
6594
6969
|
secondary?: undefined;
|
|
6595
6970
|
};
|
|
@@ -6618,6 +6993,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6618
6993
|
oldest?: undefined;
|
|
6619
6994
|
limit?: undefined;
|
|
6620
6995
|
inclusive?: undefined;
|
|
6996
|
+
cursor?: undefined;
|
|
6621
6997
|
ts?: undefined;
|
|
6622
6998
|
title?: undefined;
|
|
6623
6999
|
body?: undefined;
|
|
@@ -6655,10 +7031,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6655
7031
|
jql?: undefined;
|
|
6656
7032
|
startAt?: undefined;
|
|
6657
7033
|
projectKey?: undefined;
|
|
6658
|
-
|
|
7034
|
+
issueTypeName?: undefined;
|
|
6659
7035
|
priority?: undefined;
|
|
6660
|
-
|
|
6661
|
-
|
|
7036
|
+
assigneeAccountId?: undefined;
|
|
7037
|
+
transitionId?: undefined;
|
|
6662
7038
|
file_path?: undefined;
|
|
6663
7039
|
content?: undefined;
|
|
6664
7040
|
command?: undefined;
|
|
@@ -6678,11 +7054,13 @@ declare const ACTION_REGISTRY: {
|
|
|
6678
7054
|
resource_id: {
|
|
6679
7055
|
source: "param";
|
|
6680
7056
|
param: string;
|
|
7057
|
+
fallback_param: string;
|
|
6681
7058
|
required?: undefined;
|
|
6682
7059
|
key?: undefined;
|
|
6683
7060
|
multi?: undefined;
|
|
6684
7061
|
separator?: undefined;
|
|
6685
7062
|
default?: undefined;
|
|
7063
|
+
derive?: undefined;
|
|
6686
7064
|
};
|
|
6687
7065
|
secondary?: undefined;
|
|
6688
7066
|
};
|
|
@@ -6703,19 +7081,28 @@ declare const ACTION_REGISTRY: {
|
|
|
6703
7081
|
summary: {
|
|
6704
7082
|
type: string;
|
|
6705
7083
|
minLength: number;
|
|
7084
|
+
description?: undefined;
|
|
6706
7085
|
};
|
|
6707
7086
|
description: {
|
|
6708
7087
|
type: string;
|
|
7088
|
+
description?: undefined;
|
|
6709
7089
|
};
|
|
6710
|
-
|
|
7090
|
+
issueTypeName: {
|
|
6711
7091
|
type: string;
|
|
6712
7092
|
minLength: number;
|
|
7093
|
+
description: string;
|
|
6713
7094
|
};
|
|
6714
7095
|
priority: {
|
|
6715
7096
|
type: string;
|
|
6716
7097
|
};
|
|
6717
|
-
|
|
7098
|
+
assigneeAccountId: {
|
|
7099
|
+
type: string;
|
|
7100
|
+
};
|
|
7101
|
+
labels: {
|
|
6718
7102
|
type: string;
|
|
7103
|
+
items: {
|
|
7104
|
+
type: string;
|
|
7105
|
+
};
|
|
6719
7106
|
};
|
|
6720
7107
|
channel?: undefined;
|
|
6721
7108
|
text?: undefined;
|
|
@@ -6728,10 +7115,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6728
7115
|
oldest?: undefined;
|
|
6729
7116
|
limit?: undefined;
|
|
6730
7117
|
inclusive?: undefined;
|
|
7118
|
+
cursor?: undefined;
|
|
6731
7119
|
ts?: undefined;
|
|
6732
7120
|
title?: undefined;
|
|
6733
7121
|
body?: undefined;
|
|
6734
|
-
labels?: undefined;
|
|
6735
7122
|
assignees?: undefined;
|
|
6736
7123
|
state?: undefined;
|
|
6737
7124
|
sort?: undefined;
|
|
@@ -6763,7 +7150,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6763
7150
|
jql?: undefined;
|
|
6764
7151
|
startAt?: undefined;
|
|
6765
7152
|
issueIdOrKey?: undefined;
|
|
6766
|
-
|
|
7153
|
+
transitionId?: undefined;
|
|
6767
7154
|
file_path?: undefined;
|
|
6768
7155
|
content?: undefined;
|
|
6769
7156
|
command?: undefined;
|
|
@@ -6788,6 +7175,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6788
7175
|
multi?: undefined;
|
|
6789
7176
|
separator?: undefined;
|
|
6790
7177
|
default?: undefined;
|
|
7178
|
+
fallback_param?: undefined;
|
|
7179
|
+
derive?: undefined;
|
|
6791
7180
|
};
|
|
6792
7181
|
secondary?: undefined;
|
|
6793
7182
|
};
|
|
@@ -6808,18 +7197,313 @@ declare const ACTION_REGISTRY: {
|
|
|
6808
7197
|
summary: {
|
|
6809
7198
|
type: string;
|
|
6810
7199
|
minLength?: undefined;
|
|
7200
|
+
description?: undefined;
|
|
6811
7201
|
};
|
|
6812
7202
|
description: {
|
|
6813
7203
|
type: string;
|
|
7204
|
+
description?: undefined;
|
|
6814
7205
|
};
|
|
6815
|
-
|
|
7206
|
+
priority: {
|
|
6816
7207
|
type: string;
|
|
6817
7208
|
};
|
|
6818
|
-
|
|
7209
|
+
assigneeAccountId: {
|
|
7210
|
+
type: string;
|
|
7211
|
+
};
|
|
7212
|
+
labels: {
|
|
7213
|
+
type: string;
|
|
7214
|
+
items: {
|
|
7215
|
+
type: string;
|
|
7216
|
+
};
|
|
7217
|
+
};
|
|
7218
|
+
channel?: undefined;
|
|
7219
|
+
text?: undefined;
|
|
7220
|
+
thread_ts?: undefined;
|
|
7221
|
+
username?: undefined;
|
|
7222
|
+
icon_emoji?: undefined;
|
|
7223
|
+
blocks?: undefined;
|
|
7224
|
+
userId?: undefined;
|
|
7225
|
+
latest?: undefined;
|
|
7226
|
+
oldest?: undefined;
|
|
7227
|
+
limit?: undefined;
|
|
7228
|
+
inclusive?: undefined;
|
|
7229
|
+
cursor?: undefined;
|
|
7230
|
+
ts?: undefined;
|
|
7231
|
+
title?: undefined;
|
|
7232
|
+
body?: undefined;
|
|
7233
|
+
assignees?: undefined;
|
|
7234
|
+
state?: undefined;
|
|
7235
|
+
sort?: undefined;
|
|
7236
|
+
direction?: undefined;
|
|
7237
|
+
per_page?: undefined;
|
|
7238
|
+
page?: undefined;
|
|
7239
|
+
issue_number?: undefined;
|
|
7240
|
+
query?: undefined;
|
|
7241
|
+
maxResults?: undefined;
|
|
7242
|
+
messageId?: undefined;
|
|
7243
|
+
to?: undefined;
|
|
7244
|
+
subject?: undefined;
|
|
7245
|
+
cc?: undefined;
|
|
7246
|
+
bcc?: undefined;
|
|
7247
|
+
messageIds?: undefined;
|
|
7248
|
+
calendarId?: undefined;
|
|
7249
|
+
timeMin?: undefined;
|
|
7250
|
+
timeMax?: undefined;
|
|
7251
|
+
eventId?: undefined;
|
|
7252
|
+
start?: undefined;
|
|
7253
|
+
end?: undefined;
|
|
7254
|
+
attendees?: undefined;
|
|
7255
|
+
location?: undefined;
|
|
7256
|
+
recent?: undefined;
|
|
7257
|
+
projectKeyOrId?: undefined;
|
|
7258
|
+
type?: undefined;
|
|
7259
|
+
boardId?: undefined;
|
|
7260
|
+
sprintId?: undefined;
|
|
7261
|
+
jql?: undefined;
|
|
7262
|
+
startAt?: undefined;
|
|
7263
|
+
projectKey?: undefined;
|
|
7264
|
+
issueTypeName?: undefined;
|
|
7265
|
+
transitionId?: undefined;
|
|
7266
|
+
file_path?: undefined;
|
|
7267
|
+
content?: undefined;
|
|
7268
|
+
command?: undefined;
|
|
7269
|
+
working_directory?: undefined;
|
|
7270
|
+
env_profile?: undefined;
|
|
7271
|
+
timeout_seconds?: undefined;
|
|
7272
|
+
};
|
|
7273
|
+
required: string[];
|
|
7274
|
+
additionalProperties: boolean;
|
|
7275
|
+
};
|
|
7276
|
+
constraints: {
|
|
7277
|
+
rate_bucket: string;
|
|
7278
|
+
};
|
|
7279
|
+
effects: string[];
|
|
7280
|
+
risk: string;
|
|
7281
|
+
target_bindings: {
|
|
7282
|
+
resource_id: {
|
|
7283
|
+
source: "param";
|
|
7284
|
+
param: string;
|
|
7285
|
+
fallback_param: string;
|
|
7286
|
+
derive: "project_key";
|
|
7287
|
+
required?: undefined;
|
|
7288
|
+
key?: undefined;
|
|
7289
|
+
multi?: undefined;
|
|
7290
|
+
separator?: undefined;
|
|
7291
|
+
default?: undefined;
|
|
7292
|
+
};
|
|
7293
|
+
secondary?: undefined;
|
|
7294
|
+
};
|
|
7295
|
+
version: string;
|
|
7296
|
+
} | {
|
|
7297
|
+
action: string;
|
|
7298
|
+
resource_type: string;
|
|
7299
|
+
required_relations: string[];
|
|
7300
|
+
required_scopes: string[];
|
|
7301
|
+
capability: string;
|
|
7302
|
+
input_schema: {
|
|
7303
|
+
type: string;
|
|
7304
|
+
properties: {
|
|
7305
|
+
issueIdOrKey: {
|
|
7306
|
+
type: string;
|
|
7307
|
+
minLength: number;
|
|
7308
|
+
};
|
|
7309
|
+
channel?: undefined;
|
|
7310
|
+
text?: undefined;
|
|
7311
|
+
thread_ts?: undefined;
|
|
7312
|
+
username?: undefined;
|
|
7313
|
+
icon_emoji?: undefined;
|
|
7314
|
+
blocks?: undefined;
|
|
7315
|
+
userId?: undefined;
|
|
7316
|
+
latest?: undefined;
|
|
7317
|
+
oldest?: undefined;
|
|
7318
|
+
limit?: undefined;
|
|
7319
|
+
inclusive?: undefined;
|
|
7320
|
+
cursor?: undefined;
|
|
7321
|
+
ts?: undefined;
|
|
7322
|
+
title?: undefined;
|
|
7323
|
+
body?: undefined;
|
|
7324
|
+
labels?: undefined;
|
|
7325
|
+
assignees?: undefined;
|
|
7326
|
+
state?: undefined;
|
|
7327
|
+
sort?: undefined;
|
|
7328
|
+
direction?: undefined;
|
|
7329
|
+
per_page?: undefined;
|
|
7330
|
+
page?: undefined;
|
|
7331
|
+
issue_number?: undefined;
|
|
7332
|
+
query?: undefined;
|
|
7333
|
+
maxResults?: undefined;
|
|
7334
|
+
messageId?: undefined;
|
|
7335
|
+
to?: undefined;
|
|
7336
|
+
subject?: undefined;
|
|
7337
|
+
cc?: undefined;
|
|
7338
|
+
bcc?: undefined;
|
|
7339
|
+
messageIds?: undefined;
|
|
7340
|
+
calendarId?: undefined;
|
|
7341
|
+
timeMin?: undefined;
|
|
7342
|
+
timeMax?: undefined;
|
|
7343
|
+
eventId?: undefined;
|
|
7344
|
+
summary?: undefined;
|
|
7345
|
+
description?: undefined;
|
|
7346
|
+
start?: undefined;
|
|
7347
|
+
end?: undefined;
|
|
7348
|
+
attendees?: undefined;
|
|
7349
|
+
location?: undefined;
|
|
7350
|
+
recent?: undefined;
|
|
7351
|
+
projectKeyOrId?: undefined;
|
|
7352
|
+
type?: undefined;
|
|
7353
|
+
boardId?: undefined;
|
|
7354
|
+
sprintId?: undefined;
|
|
7355
|
+
jql?: undefined;
|
|
7356
|
+
startAt?: undefined;
|
|
7357
|
+
projectKey?: undefined;
|
|
7358
|
+
issueTypeName?: undefined;
|
|
7359
|
+
priority?: undefined;
|
|
7360
|
+
assigneeAccountId?: undefined;
|
|
7361
|
+
transitionId?: undefined;
|
|
7362
|
+
file_path?: undefined;
|
|
7363
|
+
content?: undefined;
|
|
7364
|
+
command?: undefined;
|
|
7365
|
+
working_directory?: undefined;
|
|
7366
|
+
env_profile?: undefined;
|
|
7367
|
+
timeout_seconds?: undefined;
|
|
7368
|
+
};
|
|
7369
|
+
required: string[];
|
|
7370
|
+
additionalProperties: boolean;
|
|
7371
|
+
};
|
|
7372
|
+
constraints: {
|
|
7373
|
+
rate_bucket: string;
|
|
7374
|
+
};
|
|
7375
|
+
effects: string[];
|
|
7376
|
+
risk: string;
|
|
7377
|
+
target_bindings: {
|
|
7378
|
+
resource_id: {
|
|
7379
|
+
source: "param";
|
|
7380
|
+
param: string;
|
|
7381
|
+
fallback_param: string;
|
|
7382
|
+
derive: "project_key";
|
|
7383
|
+
required?: undefined;
|
|
7384
|
+
key?: undefined;
|
|
7385
|
+
multi?: undefined;
|
|
7386
|
+
separator?: undefined;
|
|
7387
|
+
default?: undefined;
|
|
7388
|
+
};
|
|
7389
|
+
secondary?: undefined;
|
|
7390
|
+
};
|
|
7391
|
+
version: string;
|
|
7392
|
+
} | {
|
|
7393
|
+
action: string;
|
|
7394
|
+
resource_type: string;
|
|
7395
|
+
required_relations: string[];
|
|
7396
|
+
required_scopes: string[];
|
|
7397
|
+
capability: string;
|
|
7398
|
+
input_schema: {
|
|
7399
|
+
type: string;
|
|
7400
|
+
properties: {
|
|
7401
|
+
issueIdOrKey: {
|
|
7402
|
+
type: string;
|
|
7403
|
+
minLength: number;
|
|
7404
|
+
};
|
|
7405
|
+
body: {
|
|
7406
|
+
type: string;
|
|
7407
|
+
minLength: number;
|
|
7408
|
+
};
|
|
7409
|
+
channel?: undefined;
|
|
7410
|
+
text?: undefined;
|
|
7411
|
+
thread_ts?: undefined;
|
|
7412
|
+
username?: undefined;
|
|
7413
|
+
icon_emoji?: undefined;
|
|
7414
|
+
blocks?: undefined;
|
|
7415
|
+
userId?: undefined;
|
|
7416
|
+
latest?: undefined;
|
|
7417
|
+
oldest?: undefined;
|
|
7418
|
+
limit?: undefined;
|
|
7419
|
+
inclusive?: undefined;
|
|
7420
|
+
cursor?: undefined;
|
|
7421
|
+
ts?: undefined;
|
|
7422
|
+
title?: undefined;
|
|
7423
|
+
labels?: undefined;
|
|
7424
|
+
assignees?: undefined;
|
|
7425
|
+
state?: undefined;
|
|
7426
|
+
sort?: undefined;
|
|
7427
|
+
direction?: undefined;
|
|
7428
|
+
per_page?: undefined;
|
|
7429
|
+
page?: undefined;
|
|
7430
|
+
issue_number?: undefined;
|
|
7431
|
+
query?: undefined;
|
|
7432
|
+
maxResults?: undefined;
|
|
7433
|
+
messageId?: undefined;
|
|
7434
|
+
to?: undefined;
|
|
7435
|
+
subject?: undefined;
|
|
7436
|
+
cc?: undefined;
|
|
7437
|
+
bcc?: undefined;
|
|
7438
|
+
messageIds?: undefined;
|
|
7439
|
+
calendarId?: undefined;
|
|
7440
|
+
timeMin?: undefined;
|
|
7441
|
+
timeMax?: undefined;
|
|
7442
|
+
eventId?: undefined;
|
|
7443
|
+
summary?: undefined;
|
|
7444
|
+
description?: undefined;
|
|
7445
|
+
start?: undefined;
|
|
7446
|
+
end?: undefined;
|
|
7447
|
+
attendees?: undefined;
|
|
7448
|
+
location?: undefined;
|
|
7449
|
+
recent?: undefined;
|
|
7450
|
+
projectKeyOrId?: undefined;
|
|
7451
|
+
type?: undefined;
|
|
7452
|
+
boardId?: undefined;
|
|
7453
|
+
sprintId?: undefined;
|
|
7454
|
+
jql?: undefined;
|
|
7455
|
+
startAt?: undefined;
|
|
7456
|
+
projectKey?: undefined;
|
|
7457
|
+
issueTypeName?: undefined;
|
|
7458
|
+
priority?: undefined;
|
|
7459
|
+
assigneeAccountId?: undefined;
|
|
7460
|
+
transitionId?: undefined;
|
|
7461
|
+
file_path?: undefined;
|
|
7462
|
+
content?: undefined;
|
|
7463
|
+
command?: undefined;
|
|
7464
|
+
working_directory?: undefined;
|
|
7465
|
+
env_profile?: undefined;
|
|
7466
|
+
timeout_seconds?: undefined;
|
|
7467
|
+
};
|
|
7468
|
+
required: string[];
|
|
7469
|
+
additionalProperties: boolean;
|
|
7470
|
+
};
|
|
7471
|
+
constraints: {
|
|
7472
|
+
rate_bucket: string;
|
|
7473
|
+
};
|
|
7474
|
+
effects: string[];
|
|
7475
|
+
risk: string;
|
|
7476
|
+
target_bindings: {
|
|
7477
|
+
resource_id: {
|
|
7478
|
+
source: "param";
|
|
7479
|
+
param: string;
|
|
7480
|
+
fallback_param: string;
|
|
7481
|
+
derive: "project_key";
|
|
7482
|
+
required?: undefined;
|
|
7483
|
+
key?: undefined;
|
|
7484
|
+
multi?: undefined;
|
|
7485
|
+
separator?: undefined;
|
|
7486
|
+
default?: undefined;
|
|
7487
|
+
};
|
|
7488
|
+
secondary?: undefined;
|
|
7489
|
+
};
|
|
7490
|
+
version: string;
|
|
7491
|
+
} | {
|
|
7492
|
+
action: string;
|
|
7493
|
+
resource_type: string;
|
|
7494
|
+
required_relations: string[];
|
|
7495
|
+
required_scopes: string[];
|
|
7496
|
+
capability: string;
|
|
7497
|
+
input_schema: {
|
|
7498
|
+
type: string;
|
|
7499
|
+
properties: {
|
|
7500
|
+
issueIdOrKey: {
|
|
6819
7501
|
type: string;
|
|
7502
|
+
minLength: number;
|
|
6820
7503
|
};
|
|
6821
|
-
|
|
7504
|
+
transitionId: {
|
|
6822
7505
|
type: string;
|
|
7506
|
+
minLength: number;
|
|
6823
7507
|
};
|
|
6824
7508
|
channel?: undefined;
|
|
6825
7509
|
text?: undefined;
|
|
@@ -6832,6 +7516,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6832
7516
|
oldest?: undefined;
|
|
6833
7517
|
limit?: undefined;
|
|
6834
7518
|
inclusive?: undefined;
|
|
7519
|
+
cursor?: undefined;
|
|
6835
7520
|
ts?: undefined;
|
|
6836
7521
|
title?: undefined;
|
|
6837
7522
|
body?: undefined;
|
|
@@ -6855,6 +7540,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6855
7540
|
timeMin?: undefined;
|
|
6856
7541
|
timeMax?: undefined;
|
|
6857
7542
|
eventId?: undefined;
|
|
7543
|
+
summary?: undefined;
|
|
7544
|
+
description?: undefined;
|
|
6858
7545
|
start?: undefined;
|
|
6859
7546
|
end?: undefined;
|
|
6860
7547
|
attendees?: undefined;
|
|
@@ -6867,7 +7554,9 @@ declare const ACTION_REGISTRY: {
|
|
|
6867
7554
|
jql?: undefined;
|
|
6868
7555
|
startAt?: undefined;
|
|
6869
7556
|
projectKey?: undefined;
|
|
6870
|
-
|
|
7557
|
+
issueTypeName?: undefined;
|
|
7558
|
+
priority?: undefined;
|
|
7559
|
+
assigneeAccountId?: undefined;
|
|
6871
7560
|
file_path?: undefined;
|
|
6872
7561
|
content?: undefined;
|
|
6873
7562
|
command?: undefined;
|
|
@@ -6887,6 +7576,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6887
7576
|
resource_id: {
|
|
6888
7577
|
source: "param";
|
|
6889
7578
|
param: string;
|
|
7579
|
+
fallback_param: string;
|
|
7580
|
+
derive: "project_key";
|
|
6890
7581
|
required?: undefined;
|
|
6891
7582
|
key?: undefined;
|
|
6892
7583
|
multi?: undefined;
|
|
@@ -6931,6 +7622,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6931
7622
|
oldest?: undefined;
|
|
6932
7623
|
limit?: undefined;
|
|
6933
7624
|
inclusive?: undefined;
|
|
7625
|
+
cursor?: undefined;
|
|
6934
7626
|
ts?: undefined;
|
|
6935
7627
|
title?: undefined;
|
|
6936
7628
|
body?: undefined;
|
|
@@ -6965,10 +7657,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6965
7657
|
startAt?: undefined;
|
|
6966
7658
|
issueIdOrKey?: undefined;
|
|
6967
7659
|
projectKey?: undefined;
|
|
6968
|
-
|
|
7660
|
+
issueTypeName?: undefined;
|
|
6969
7661
|
priority?: undefined;
|
|
6970
|
-
|
|
6971
|
-
|
|
7662
|
+
assigneeAccountId?: undefined;
|
|
7663
|
+
transitionId?: undefined;
|
|
6972
7664
|
file_path?: undefined;
|
|
6973
7665
|
content?: undefined;
|
|
6974
7666
|
command?: undefined;
|
|
@@ -6993,6 +7685,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6993
7685
|
multi?: undefined;
|
|
6994
7686
|
separator?: undefined;
|
|
6995
7687
|
default?: undefined;
|
|
7688
|
+
fallback_param?: undefined;
|
|
7689
|
+
derive?: undefined;
|
|
6996
7690
|
};
|
|
6997
7691
|
secondary?: undefined;
|
|
6998
7692
|
};
|
|
@@ -7020,6 +7714,7 @@ declare const ACTION_REGISTRY: {
|
|
|
7020
7714
|
oldest?: undefined;
|
|
7021
7715
|
limit?: undefined;
|
|
7022
7716
|
inclusive?: undefined;
|
|
7717
|
+
cursor?: undefined;
|
|
7023
7718
|
ts?: undefined;
|
|
7024
7719
|
title?: undefined;
|
|
7025
7720
|
body?: undefined;
|
|
@@ -7058,10 +7753,10 @@ declare const ACTION_REGISTRY: {
|
|
|
7058
7753
|
startAt?: undefined;
|
|
7059
7754
|
issueIdOrKey?: undefined;
|
|
7060
7755
|
projectKey?: undefined;
|
|
7061
|
-
|
|
7756
|
+
issueTypeName?: undefined;
|
|
7062
7757
|
priority?: undefined;
|
|
7063
|
-
|
|
7064
|
-
|
|
7758
|
+
assigneeAccountId?: undefined;
|
|
7759
|
+
transitionId?: undefined;
|
|
7065
7760
|
content?: undefined;
|
|
7066
7761
|
command?: undefined;
|
|
7067
7762
|
working_directory?: undefined;
|
|
@@ -7082,6 +7777,8 @@ declare const ACTION_REGISTRY: {
|
|
|
7082
7777
|
multi?: undefined;
|
|
7083
7778
|
separator?: undefined;
|
|
7084
7779
|
default?: undefined;
|
|
7780
|
+
fallback_param?: undefined;
|
|
7781
|
+
derive?: undefined;
|
|
7085
7782
|
};
|
|
7086
7783
|
secondary?: undefined;
|
|
7087
7784
|
};
|
|
@@ -7115,6 +7812,7 @@ declare const ACTION_REGISTRY: {
|
|
|
7115
7812
|
oldest?: undefined;
|
|
7116
7813
|
limit?: undefined;
|
|
7117
7814
|
inclusive?: undefined;
|
|
7815
|
+
cursor?: undefined;
|
|
7118
7816
|
ts?: undefined;
|
|
7119
7817
|
title?: undefined;
|
|
7120
7818
|
body?: undefined;
|
|
@@ -7153,10 +7851,10 @@ declare const ACTION_REGISTRY: {
|
|
|
7153
7851
|
startAt?: undefined;
|
|
7154
7852
|
issueIdOrKey?: undefined;
|
|
7155
7853
|
projectKey?: undefined;
|
|
7156
|
-
|
|
7854
|
+
issueTypeName?: undefined;
|
|
7157
7855
|
priority?: undefined;
|
|
7158
|
-
|
|
7159
|
-
|
|
7856
|
+
assigneeAccountId?: undefined;
|
|
7857
|
+
transitionId?: undefined;
|
|
7160
7858
|
command?: undefined;
|
|
7161
7859
|
working_directory?: undefined;
|
|
7162
7860
|
env_profile?: undefined;
|
|
@@ -7176,6 +7874,8 @@ declare const ACTION_REGISTRY: {
|
|
|
7176
7874
|
multi?: undefined;
|
|
7177
7875
|
separator?: undefined;
|
|
7178
7876
|
default?: undefined;
|
|
7877
|
+
fallback_param?: undefined;
|
|
7878
|
+
derive?: undefined;
|
|
7179
7879
|
};
|
|
7180
7880
|
secondary?: undefined;
|
|
7181
7881
|
};
|
|
@@ -7220,6 +7920,7 @@ declare const ACTION_REGISTRY: {
|
|
|
7220
7920
|
oldest?: undefined;
|
|
7221
7921
|
limit?: undefined;
|
|
7222
7922
|
inclusive?: undefined;
|
|
7923
|
+
cursor?: undefined;
|
|
7223
7924
|
ts?: undefined;
|
|
7224
7925
|
title?: undefined;
|
|
7225
7926
|
body?: undefined;
|
|
@@ -7258,10 +7959,10 @@ declare const ACTION_REGISTRY: {
|
|
|
7258
7959
|
startAt?: undefined;
|
|
7259
7960
|
issueIdOrKey?: undefined;
|
|
7260
7961
|
projectKey?: undefined;
|
|
7261
|
-
|
|
7962
|
+
issueTypeName?: undefined;
|
|
7262
7963
|
priority?: undefined;
|
|
7263
|
-
|
|
7264
|
-
|
|
7964
|
+
assigneeAccountId?: undefined;
|
|
7965
|
+
transitionId?: undefined;
|
|
7265
7966
|
file_path?: undefined;
|
|
7266
7967
|
content?: undefined;
|
|
7267
7968
|
};
|
|
@@ -7279,6 +7980,8 @@ declare const ACTION_REGISTRY: {
|
|
|
7279
7980
|
multi?: undefined;
|
|
7280
7981
|
separator?: undefined;
|
|
7281
7982
|
default?: undefined;
|
|
7983
|
+
fallback_param?: undefined;
|
|
7984
|
+
derive?: undefined;
|
|
7282
7985
|
};
|
|
7283
7986
|
secondary?: undefined;
|
|
7284
7987
|
};
|
|
@@ -7701,6 +8404,14 @@ declare function getKeyIdFromDid(did: string): string;
|
|
|
7701
8404
|
*/
|
|
7702
8405
|
declare function publicKeysMatch(a: Record<string, unknown>, b: Record<string, unknown>): boolean;
|
|
7703
8406
|
|
|
8407
|
+
/**
|
|
8408
|
+
* Extract the project key from a Jira issue key.
|
|
8409
|
+
* Returns the project prefix (e.g., "AIDENTITY" from "AIDENTITY-35") or null if not a valid issue key.
|
|
8410
|
+
*
|
|
8411
|
+
* @remarks Project keys must be at least 2 uppercase characters, matching Jira's requirement.
|
|
8412
|
+
* Single-letter keys (e.g., "A-1") return null.
|
|
8413
|
+
*/
|
|
8414
|
+
declare function extractProjectKey(value: string): string | null;
|
|
7704
8415
|
/**
|
|
7705
8416
|
* TargetResolver — extracts resource IDs and secondary targets from tool parameters.
|
|
7706
8417
|
*
|
|
@@ -7749,4 +8460,4 @@ declare function getTierLimits(tier: string | undefined | null): TierLimits;
|
|
|
7749
8460
|
|
|
7750
8461
|
declare const version = "0.0.1";
|
|
7751
8462
|
|
|
7752
|
-
export { type ABACPolicyEngine, ACTION_PARAMS_MAX_SIZE, ACTION_PREFIXES, ACTION_REGISTRY, AIdentityClient, type AIdentityConfig, AIdentityError, type APIAgent, type APICredential, APIVCManager, type AbacDecision, type AbacInput, type AcceptInvitationRequest, type AckEventResponse, type ActionInputSchema, type ActionMapping, type ActionMeta, type ActionParamDisplay, type ActionRegistry, type ActionRiskLevel, type Agent, type AgentCreateOptions, type AgentDIDConfig, AgentDIDManager, AgentManager, AgentStatus, AgentType, type AgentWithId, AllowAllAbac, type AnyProvider, type ApiKeyValidationResult, type AuditEvent, type AuditQuery, AuthProvider, type AuthState, AuthenticationError, type AutoApproveConfig, type BindingSource, CANONICAL_PROVIDERS, type CanonicalProvider, type CapabilityMeta, 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, DEFAULT_CONSTRAINTS_BY_RISK, type DIDDocument, type DataAccessVC, type DecisionTrace, type DelegationVC, DeviceEnrollManager, type DeviceEnrollPollResult, type DeviceEnrollServerSideParams, type DeviceEnrollStartParams, type DeviceEnrollStartResult, type DisclosureFields, DummyCreds, DummyVpVerifier, type EmployeeVPRequest, type EvaluationContext, type ExternalActionRequest, FilesystemKeyStorage, GatewayClient, GatewayError, 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, InvalidVPError, type Invitation, type InvitationRole, InvitationStatus, type IssueSDJWTVCRequest, type IssueSDJWTVCResult, type JiraBoard, type JiraConfig, type JiraIssue, type JiraIssueType, type JiraProject, type JiraSprint, type JiraStatus, type JiraUser, type JiraWorklog, type JsonSchema, JsonStateStore, KeyManager, type KeyPairGenerationResult, type KeyStorageConfig, type KeyStorageProvider, LEGACY_RESOURCE_TYPE_MAP, type MemoryDocument, MemoryKeyStorage, MemoryManager, type MemoryQuery, type MemoryQueryResult, NetworkError, type NormalizeIntentRequest, type NormalizedIntent, type OAuthAuthorizeRequest, type OAuthCallbackParams, type OAuthConnection, OAuthProvider, type OAuthToken, type OrganizationConfig, type OrganizationPermission, type OrganizationPolicy, type OrganizationVC, PROVIDER_ALIASES, type ParamBindingSource, type ParsedResourceType, type PermissionConstraints, type PermissionMode, type PermissionResource, type PermissionRule, type PermissionTimeConstraint, type PermissionVcClaims, type PlanDelegationInput, type PlanDelegationResult, type PolicyCondition, type PolicyEvaluationResult, type PolicyInput, type PolicyRule, type PolicyTarget, type Provider, 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, ScopeUnmatchedError, type SecondaryBinding, 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 VerifiablePresentation, type VerificationMethod, type VerifiedVcClaims, type VerifyInvitationResponse, type VerifyReceiptRequest, type VerifyReceiptResult, type VerifySDJWTVCResult, type VpVerifier, WRITE_ACTION_NAMES, type WeeklyReportData, type WeeklyReportSummary, buildGrantIdFields, canonicalizeAction, checkPermissionWithVP, configure, createAjv, createDidJwk, credentialStatusToVCStatus, defaultConstraintEvaluator, evaluateConstraints, extractPublicKey, extractPublicKeyFromDid, generateActionParamsDisplay, generateActionSummary, generateKeyPair, generateNonce, getActionAliases, getAllActionForms, getAllValidMcpActionNames, getClient, getDefaultDisclosureFields, getKeyIdFromDid, getRequiredRelations, getRequiredScopes, getTierLimits, getValidMcpActionNames, grantConstraintsToPermissionConstraints, grantToPermissionRules, indexActions, indexCapabilities, isActionEquivalent, isCanonicalProvider, isUnlimited, isValidDidJwk, isValidProvider, isWriteAction, loadActionRegistryFromFile, loadActionRegistryFromObject, normalizeMcpActionName, parseGrantAction, parseGrantResourceType, planDelegationForVC, publicKeysMatch, resolveActionsFromSelection, resolveProvider, resolveResourceType, resolveUserTier, signJWT, validateRegistryObject, vcStatusToCredentialStatus, verifyJWT, version };
|
|
8463
|
+
export { type ABACPolicyEngine, ACTION_PARAMS_MAX_SIZE, ACTION_PREFIXES, ACTION_REGISTRY, AIdentityClient, type AIdentityConfig, AIdentityError, type APIAgent, type APICredential, APIVCManager, type AbacDecision, type AbacInput, type AcceptInvitationRequest, type AckEventResponse, type ActionInputSchema, type ActionMapping, type ActionMeta, type ActionParamDisplay, type ActionRegistry, type ActionRiskLevel, type Agent, type AgentCreateOptions, type AgentDIDConfig, AgentDIDManager, AgentManager, AgentStatus, AgentType, type AgentWithId, AllowAllAbac, type AnyProvider, type ApiKeyValidationResult, type AuditEvent, type AuditQuery, AuthProvider, type AuthState, AuthenticationError, type AutoApproveConfig, type BindingSource, CANONICAL_PROVIDERS, type CanonicalProvider, type CapabilityMeta, 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, DEFAULT_CONSTRAINTS_BY_RISK, type DIDDocument, type DataAccessVC, type DecisionTrace, type DelegationVC, DeviceEnrollManager, type DeviceEnrollPollResult, type DeviceEnrollServerSideParams, type DeviceEnrollStartParams, type DeviceEnrollStartResult, type DisclosureFields, DummyCreds, DummyVpVerifier, type EmployeeVPRequest, type EvaluationContext, type ExternalActionRequest, FilesystemKeyStorage, GatewayClient, GatewayError, 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, InvalidVPError, type Invitation, type InvitationRole, InvitationStatus, type IssueSDJWTVCRequest, type IssueSDJWTVCResult, type JiraBoard, type JiraConfig, type JiraIssue, type JiraIssueType, type JiraProject, type JiraSprint, type JiraStatus, type JiraUser, type JiraWorklog, type JsonSchema, JsonStateStore, KeyManager, type KeyPairGenerationResult, type KeyStorageConfig, type KeyStorageProvider, LEGACY_RESOURCE_TYPE_MAP, type MemoryDocument, MemoryKeyStorage, MemoryManager, type MemoryQuery, type MemoryQueryResult, NetworkError, type NormalizeIntentRequest, type NormalizedIntent, type OAuthAuthorizeRequest, type OAuthCallbackParams, type OAuthConnection, OAuthProvider, type OAuthToken, type OrganizationConfig, type OrganizationPermission, type OrganizationPolicy, type OrganizationVC, PROVIDER_ALIASES, type ParamBindingSource, type ParsedResourceType, type PermissionConstraints, type PermissionMode, type PermissionResource, type PermissionRule, type PermissionTimeConstraint, type PermissionVcClaims, type PlanDelegationInput, type PlanDelegationResult, type PolicyCondition, type PolicyEvaluationResult, type PolicyInput, type PolicyRule, type PolicyTarget, type Provider, 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, ScopeUnmatchedError, type SecondaryBinding, 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 VerifiablePresentation, type VerificationMethod, type VerifiedVcClaims, type VerifyInvitationResponse, type VerifyReceiptRequest, type VerifyReceiptResult, type VerifySDJWTVCResult, type VpVerifier, WRITE_ACTION_NAMES, type WeeklyReportData, type WeeklyReportSummary, buildGrantIdFields, canonicalizeAction, checkPermissionWithVP, configure, createAjv, createDidJwk, credentialStatusToVCStatus, defaultConstraintEvaluator, evaluateConstraints, extractProjectKey, extractPublicKey, extractPublicKeyFromDid, generateActionParamsDisplay, generateActionSummary, generateKeyPair, generateNonce, getActionAliases, getAllActionForms, getAllValidMcpActionNames, getClient, getDefaultDisclosureFields, getKeyIdFromDid, getRequiredRelations, getRequiredScopes, getTierLimits, getValidMcpActionNames, grantConstraintsToPermissionConstraints, grantToPermissionRules, indexActions, indexCapabilities, isActionEquivalent, isCanonicalProvider, isUnlimited, isValidDidJwk, isValidProvider, isWriteAction, loadActionRegistryFromFile, loadActionRegistryFromObject, normalizeMcpActionName, parseGrantAction, parseGrantResourceType, planDelegationForVC, publicKeysMatch, resolveActionsFromSelection, resolveProvider, resolveResourceType, resolveUserTier, signJWT, validateRegistryObject, vcStatusToCredentialStatus, verifyJWT, version };
|