@vess-id/ai-identity 0.9.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +936 -111
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +234 -46
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +233 -46
- package/dist/index.mjs.map +1 -1
- package/dist/registry/action-registry-json.d.ts +910 -97
- 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;
|
|
@@ -4244,6 +4249,9 @@ declare const ACTION_REGISTRY: {
|
|
|
4244
4249
|
subject?: undefined;
|
|
4245
4250
|
cc?: undefined;
|
|
4246
4251
|
bcc?: undefined;
|
|
4252
|
+
threadId?: undefined;
|
|
4253
|
+
inReplyTo?: undefined;
|
|
4254
|
+
references?: undefined;
|
|
4247
4255
|
messageIds?: undefined;
|
|
4248
4256
|
calendarId?: undefined;
|
|
4249
4257
|
timeMin?: undefined;
|
|
@@ -4264,10 +4272,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4264
4272
|
startAt?: undefined;
|
|
4265
4273
|
issueIdOrKey?: undefined;
|
|
4266
4274
|
projectKey?: undefined;
|
|
4267
|
-
|
|
4275
|
+
issueTypeName?: undefined;
|
|
4268
4276
|
priority?: undefined;
|
|
4269
|
-
|
|
4270
|
-
|
|
4277
|
+
assigneeAccountId?: undefined;
|
|
4278
|
+
transitionId?: undefined;
|
|
4271
4279
|
file_path?: undefined;
|
|
4272
4280
|
content?: undefined;
|
|
4273
4281
|
command?: undefined;
|
|
@@ -4292,6 +4300,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4292
4300
|
multi?: undefined;
|
|
4293
4301
|
separator?: undefined;
|
|
4294
4302
|
default?: undefined;
|
|
4303
|
+
fallback_param?: undefined;
|
|
4304
|
+
derive?: undefined;
|
|
4295
4305
|
};
|
|
4296
4306
|
secondary?: undefined;
|
|
4297
4307
|
};
|
|
@@ -4316,6 +4326,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4316
4326
|
oldest?: undefined;
|
|
4317
4327
|
limit?: undefined;
|
|
4318
4328
|
inclusive?: undefined;
|
|
4329
|
+
cursor?: undefined;
|
|
4319
4330
|
ts?: undefined;
|
|
4320
4331
|
title?: undefined;
|
|
4321
4332
|
body?: undefined;
|
|
@@ -4334,6 +4345,9 @@ declare const ACTION_REGISTRY: {
|
|
|
4334
4345
|
subject?: undefined;
|
|
4335
4346
|
cc?: undefined;
|
|
4336
4347
|
bcc?: undefined;
|
|
4348
|
+
threadId?: undefined;
|
|
4349
|
+
inReplyTo?: undefined;
|
|
4350
|
+
references?: undefined;
|
|
4337
4351
|
messageIds?: undefined;
|
|
4338
4352
|
calendarId?: undefined;
|
|
4339
4353
|
timeMin?: undefined;
|
|
@@ -4354,10 +4368,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4354
4368
|
startAt?: undefined;
|
|
4355
4369
|
issueIdOrKey?: undefined;
|
|
4356
4370
|
projectKey?: undefined;
|
|
4357
|
-
|
|
4371
|
+
issueTypeName?: undefined;
|
|
4358
4372
|
priority?: undefined;
|
|
4359
|
-
|
|
4360
|
-
|
|
4373
|
+
assigneeAccountId?: undefined;
|
|
4374
|
+
transitionId?: undefined;
|
|
4361
4375
|
file_path?: undefined;
|
|
4362
4376
|
content?: undefined;
|
|
4363
4377
|
command?: undefined;
|
|
@@ -4382,6 +4396,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4382
4396
|
multi?: undefined;
|
|
4383
4397
|
separator?: undefined;
|
|
4384
4398
|
default?: undefined;
|
|
4399
|
+
fallback_param?: undefined;
|
|
4400
|
+
derive?: undefined;
|
|
4385
4401
|
};
|
|
4386
4402
|
secondary?: undefined;
|
|
4387
4403
|
};
|
|
@@ -4409,6 +4425,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4409
4425
|
oldest?: undefined;
|
|
4410
4426
|
limit?: undefined;
|
|
4411
4427
|
inclusive?: undefined;
|
|
4428
|
+
cursor?: undefined;
|
|
4412
4429
|
ts?: undefined;
|
|
4413
4430
|
title?: undefined;
|
|
4414
4431
|
body?: undefined;
|
|
@@ -4427,6 +4444,9 @@ declare const ACTION_REGISTRY: {
|
|
|
4427
4444
|
subject?: undefined;
|
|
4428
4445
|
cc?: undefined;
|
|
4429
4446
|
bcc?: undefined;
|
|
4447
|
+
threadId?: undefined;
|
|
4448
|
+
inReplyTo?: undefined;
|
|
4449
|
+
references?: undefined;
|
|
4430
4450
|
messageIds?: undefined;
|
|
4431
4451
|
calendarId?: undefined;
|
|
4432
4452
|
timeMin?: undefined;
|
|
@@ -4447,10 +4467,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4447
4467
|
startAt?: undefined;
|
|
4448
4468
|
issueIdOrKey?: undefined;
|
|
4449
4469
|
projectKey?: undefined;
|
|
4450
|
-
|
|
4470
|
+
issueTypeName?: undefined;
|
|
4451
4471
|
priority?: undefined;
|
|
4452
|
-
|
|
4453
|
-
|
|
4472
|
+
assigneeAccountId?: undefined;
|
|
4473
|
+
transitionId?: undefined;
|
|
4454
4474
|
file_path?: undefined;
|
|
4455
4475
|
content?: undefined;
|
|
4456
4476
|
command?: undefined;
|
|
@@ -4475,6 +4495,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4475
4495
|
multi?: undefined;
|
|
4476
4496
|
separator?: undefined;
|
|
4477
4497
|
default?: undefined;
|
|
4498
|
+
fallback_param?: undefined;
|
|
4499
|
+
derive?: undefined;
|
|
4478
4500
|
};
|
|
4479
4501
|
secondary?: undefined;
|
|
4480
4502
|
};
|
|
@@ -4512,6 +4534,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4512
4534
|
icon_emoji?: undefined;
|
|
4513
4535
|
blocks?: undefined;
|
|
4514
4536
|
userId?: undefined;
|
|
4537
|
+
cursor?: undefined;
|
|
4515
4538
|
ts?: undefined;
|
|
4516
4539
|
title?: undefined;
|
|
4517
4540
|
body?: undefined;
|
|
@@ -4530,6 +4553,9 @@ declare const ACTION_REGISTRY: {
|
|
|
4530
4553
|
subject?: undefined;
|
|
4531
4554
|
cc?: undefined;
|
|
4532
4555
|
bcc?: undefined;
|
|
4556
|
+
threadId?: undefined;
|
|
4557
|
+
inReplyTo?: undefined;
|
|
4558
|
+
references?: undefined;
|
|
4533
4559
|
messageIds?: undefined;
|
|
4534
4560
|
calendarId?: undefined;
|
|
4535
4561
|
timeMin?: undefined;
|
|
@@ -4550,10 +4576,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4550
4576
|
startAt?: undefined;
|
|
4551
4577
|
issueIdOrKey?: undefined;
|
|
4552
4578
|
projectKey?: undefined;
|
|
4553
|
-
|
|
4579
|
+
issueTypeName?: undefined;
|
|
4554
4580
|
priority?: undefined;
|
|
4555
|
-
|
|
4556
|
-
|
|
4581
|
+
assigneeAccountId?: undefined;
|
|
4582
|
+
transitionId?: undefined;
|
|
4557
4583
|
file_path?: undefined;
|
|
4558
4584
|
content?: undefined;
|
|
4559
4585
|
command?: undefined;
|
|
@@ -4578,6 +4604,114 @@ declare const ACTION_REGISTRY: {
|
|
|
4578
4604
|
multi?: undefined;
|
|
4579
4605
|
separator?: undefined;
|
|
4580
4606
|
default?: undefined;
|
|
4607
|
+
fallback_param?: undefined;
|
|
4608
|
+
derive?: undefined;
|
|
4609
|
+
};
|
|
4610
|
+
secondary?: undefined;
|
|
4611
|
+
};
|
|
4612
|
+
version: string;
|
|
4613
|
+
} | {
|
|
4614
|
+
action: string;
|
|
4615
|
+
resource_type: string;
|
|
4616
|
+
required_relations: string[];
|
|
4617
|
+
required_scopes: string[];
|
|
4618
|
+
capability: string;
|
|
4619
|
+
input_schema: {
|
|
4620
|
+
type: string;
|
|
4621
|
+
properties: {
|
|
4622
|
+
channel: {
|
|
4623
|
+
type: string;
|
|
4624
|
+
description: string;
|
|
4625
|
+
};
|
|
4626
|
+
cursor: {
|
|
4627
|
+
type: string;
|
|
4628
|
+
description: string;
|
|
4629
|
+
};
|
|
4630
|
+
limit: {
|
|
4631
|
+
type: string;
|
|
4632
|
+
minimum: number;
|
|
4633
|
+
maximum: number;
|
|
4634
|
+
};
|
|
4635
|
+
text?: undefined;
|
|
4636
|
+
thread_ts?: undefined;
|
|
4637
|
+
username?: undefined;
|
|
4638
|
+
icon_emoji?: undefined;
|
|
4639
|
+
blocks?: undefined;
|
|
4640
|
+
userId?: undefined;
|
|
4641
|
+
latest?: undefined;
|
|
4642
|
+
oldest?: undefined;
|
|
4643
|
+
inclusive?: undefined;
|
|
4644
|
+
ts?: undefined;
|
|
4645
|
+
title?: undefined;
|
|
4646
|
+
body?: undefined;
|
|
4647
|
+
labels?: undefined;
|
|
4648
|
+
assignees?: undefined;
|
|
4649
|
+
state?: undefined;
|
|
4650
|
+
sort?: undefined;
|
|
4651
|
+
direction?: undefined;
|
|
4652
|
+
per_page?: undefined;
|
|
4653
|
+
page?: undefined;
|
|
4654
|
+
issue_number?: undefined;
|
|
4655
|
+
query?: undefined;
|
|
4656
|
+
maxResults?: undefined;
|
|
4657
|
+
messageId?: undefined;
|
|
4658
|
+
to?: undefined;
|
|
4659
|
+
subject?: undefined;
|
|
4660
|
+
cc?: undefined;
|
|
4661
|
+
bcc?: undefined;
|
|
4662
|
+
threadId?: undefined;
|
|
4663
|
+
inReplyTo?: undefined;
|
|
4664
|
+
references?: undefined;
|
|
4665
|
+
messageIds?: undefined;
|
|
4666
|
+
calendarId?: undefined;
|
|
4667
|
+
timeMin?: undefined;
|
|
4668
|
+
timeMax?: undefined;
|
|
4669
|
+
eventId?: undefined;
|
|
4670
|
+
summary?: undefined;
|
|
4671
|
+
description?: undefined;
|
|
4672
|
+
start?: undefined;
|
|
4673
|
+
end?: undefined;
|
|
4674
|
+
attendees?: undefined;
|
|
4675
|
+
location?: undefined;
|
|
4676
|
+
recent?: undefined;
|
|
4677
|
+
projectKeyOrId?: undefined;
|
|
4678
|
+
type?: undefined;
|
|
4679
|
+
boardId?: undefined;
|
|
4680
|
+
sprintId?: undefined;
|
|
4681
|
+
jql?: undefined;
|
|
4682
|
+
startAt?: undefined;
|
|
4683
|
+
issueIdOrKey?: undefined;
|
|
4684
|
+
projectKey?: undefined;
|
|
4685
|
+
issueTypeName?: undefined;
|
|
4686
|
+
priority?: undefined;
|
|
4687
|
+
assigneeAccountId?: undefined;
|
|
4688
|
+
transitionId?: undefined;
|
|
4689
|
+
file_path?: undefined;
|
|
4690
|
+
content?: undefined;
|
|
4691
|
+
command?: undefined;
|
|
4692
|
+
working_directory?: undefined;
|
|
4693
|
+
env_profile?: undefined;
|
|
4694
|
+
timeout_seconds?: undefined;
|
|
4695
|
+
};
|
|
4696
|
+
required: string[];
|
|
4697
|
+
additionalProperties: boolean;
|
|
4698
|
+
};
|
|
4699
|
+
constraints: {
|
|
4700
|
+
rate_bucket: string;
|
|
4701
|
+
};
|
|
4702
|
+
effects: string[];
|
|
4703
|
+
risk: string;
|
|
4704
|
+
target_bindings: {
|
|
4705
|
+
resource_id: {
|
|
4706
|
+
source: "param";
|
|
4707
|
+
param: string;
|
|
4708
|
+
required?: undefined;
|
|
4709
|
+
key?: undefined;
|
|
4710
|
+
multi?: undefined;
|
|
4711
|
+
separator?: undefined;
|
|
4712
|
+
default?: undefined;
|
|
4713
|
+
fallback_param?: undefined;
|
|
4714
|
+
derive?: undefined;
|
|
4581
4715
|
};
|
|
4582
4716
|
secondary?: undefined;
|
|
4583
4717
|
};
|
|
@@ -4609,6 +4743,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4609
4743
|
latest?: undefined;
|
|
4610
4744
|
oldest?: undefined;
|
|
4611
4745
|
inclusive?: undefined;
|
|
4746
|
+
cursor?: undefined;
|
|
4612
4747
|
ts?: undefined;
|
|
4613
4748
|
title?: undefined;
|
|
4614
4749
|
body?: undefined;
|
|
@@ -4627,6 +4762,9 @@ declare const ACTION_REGISTRY: {
|
|
|
4627
4762
|
subject?: undefined;
|
|
4628
4763
|
cc?: undefined;
|
|
4629
4764
|
bcc?: undefined;
|
|
4765
|
+
threadId?: undefined;
|
|
4766
|
+
inReplyTo?: undefined;
|
|
4767
|
+
references?: undefined;
|
|
4630
4768
|
messageIds?: undefined;
|
|
4631
4769
|
calendarId?: undefined;
|
|
4632
4770
|
timeMin?: undefined;
|
|
@@ -4647,10 +4785,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4647
4785
|
startAt?: undefined;
|
|
4648
4786
|
issueIdOrKey?: undefined;
|
|
4649
4787
|
projectKey?: undefined;
|
|
4650
|
-
|
|
4788
|
+
issueTypeName?: undefined;
|
|
4651
4789
|
priority?: undefined;
|
|
4652
|
-
|
|
4653
|
-
|
|
4790
|
+
assigneeAccountId?: undefined;
|
|
4791
|
+
transitionId?: undefined;
|
|
4654
4792
|
file_path?: undefined;
|
|
4655
4793
|
content?: undefined;
|
|
4656
4794
|
command?: undefined;
|
|
@@ -4675,6 +4813,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4675
4813
|
multi?: undefined;
|
|
4676
4814
|
separator?: undefined;
|
|
4677
4815
|
default?: undefined;
|
|
4816
|
+
fallback_param?: undefined;
|
|
4817
|
+
derive?: undefined;
|
|
4678
4818
|
};
|
|
4679
4819
|
secondary?: undefined;
|
|
4680
4820
|
};
|
|
@@ -4710,6 +4850,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4710
4850
|
oldest?: undefined;
|
|
4711
4851
|
limit?: undefined;
|
|
4712
4852
|
inclusive?: undefined;
|
|
4853
|
+
cursor?: undefined;
|
|
4713
4854
|
title?: undefined;
|
|
4714
4855
|
body?: undefined;
|
|
4715
4856
|
labels?: undefined;
|
|
@@ -4727,6 +4868,9 @@ declare const ACTION_REGISTRY: {
|
|
|
4727
4868
|
subject?: undefined;
|
|
4728
4869
|
cc?: undefined;
|
|
4729
4870
|
bcc?: undefined;
|
|
4871
|
+
threadId?: undefined;
|
|
4872
|
+
inReplyTo?: undefined;
|
|
4873
|
+
references?: undefined;
|
|
4730
4874
|
messageIds?: undefined;
|
|
4731
4875
|
calendarId?: undefined;
|
|
4732
4876
|
timeMin?: undefined;
|
|
@@ -4747,10 +4891,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4747
4891
|
startAt?: undefined;
|
|
4748
4892
|
issueIdOrKey?: undefined;
|
|
4749
4893
|
projectKey?: undefined;
|
|
4750
|
-
|
|
4894
|
+
issueTypeName?: undefined;
|
|
4751
4895
|
priority?: undefined;
|
|
4752
|
-
|
|
4753
|
-
|
|
4896
|
+
assigneeAccountId?: undefined;
|
|
4897
|
+
transitionId?: undefined;
|
|
4754
4898
|
file_path?: undefined;
|
|
4755
4899
|
content?: undefined;
|
|
4756
4900
|
command?: undefined;
|
|
@@ -4775,6 +4919,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4775
4919
|
multi?: undefined;
|
|
4776
4920
|
separator?: undefined;
|
|
4777
4921
|
default?: undefined;
|
|
4922
|
+
fallback_param?: undefined;
|
|
4923
|
+
derive?: undefined;
|
|
4778
4924
|
};
|
|
4779
4925
|
secondary?: undefined;
|
|
4780
4926
|
};
|
|
@@ -4806,6 +4952,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4806
4952
|
oldest?: undefined;
|
|
4807
4953
|
limit?: undefined;
|
|
4808
4954
|
inclusive?: undefined;
|
|
4955
|
+
cursor?: undefined;
|
|
4809
4956
|
title?: undefined;
|
|
4810
4957
|
body?: undefined;
|
|
4811
4958
|
labels?: undefined;
|
|
@@ -4823,6 +4970,9 @@ declare const ACTION_REGISTRY: {
|
|
|
4823
4970
|
subject?: undefined;
|
|
4824
4971
|
cc?: undefined;
|
|
4825
4972
|
bcc?: undefined;
|
|
4973
|
+
threadId?: undefined;
|
|
4974
|
+
inReplyTo?: undefined;
|
|
4975
|
+
references?: undefined;
|
|
4826
4976
|
messageIds?: undefined;
|
|
4827
4977
|
calendarId?: undefined;
|
|
4828
4978
|
timeMin?: undefined;
|
|
@@ -4843,10 +4993,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4843
4993
|
startAt?: undefined;
|
|
4844
4994
|
issueIdOrKey?: undefined;
|
|
4845
4995
|
projectKey?: undefined;
|
|
4846
|
-
|
|
4996
|
+
issueTypeName?: undefined;
|
|
4847
4997
|
priority?: undefined;
|
|
4848
|
-
|
|
4849
|
-
|
|
4998
|
+
assigneeAccountId?: undefined;
|
|
4999
|
+
transitionId?: undefined;
|
|
4850
5000
|
file_path?: undefined;
|
|
4851
5001
|
content?: undefined;
|
|
4852
5002
|
command?: undefined;
|
|
@@ -4871,6 +5021,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4871
5021
|
multi?: undefined;
|
|
4872
5022
|
separator?: undefined;
|
|
4873
5023
|
default?: undefined;
|
|
5024
|
+
fallback_param?: undefined;
|
|
5025
|
+
derive?: undefined;
|
|
4874
5026
|
};
|
|
4875
5027
|
secondary?: undefined;
|
|
4876
5028
|
};
|
|
@@ -4915,6 +5067,7 @@ declare const ACTION_REGISTRY: {
|
|
|
4915
5067
|
oldest?: undefined;
|
|
4916
5068
|
limit?: undefined;
|
|
4917
5069
|
inclusive?: undefined;
|
|
5070
|
+
cursor?: undefined;
|
|
4918
5071
|
ts?: undefined;
|
|
4919
5072
|
state?: undefined;
|
|
4920
5073
|
sort?: undefined;
|
|
@@ -4929,6 +5082,9 @@ declare const ACTION_REGISTRY: {
|
|
|
4929
5082
|
subject?: undefined;
|
|
4930
5083
|
cc?: undefined;
|
|
4931
5084
|
bcc?: undefined;
|
|
5085
|
+
threadId?: undefined;
|
|
5086
|
+
inReplyTo?: undefined;
|
|
5087
|
+
references?: undefined;
|
|
4932
5088
|
messageIds?: undefined;
|
|
4933
5089
|
calendarId?: undefined;
|
|
4934
5090
|
timeMin?: undefined;
|
|
@@ -4949,10 +5105,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4949
5105
|
startAt?: undefined;
|
|
4950
5106
|
issueIdOrKey?: undefined;
|
|
4951
5107
|
projectKey?: undefined;
|
|
4952
|
-
|
|
5108
|
+
issueTypeName?: undefined;
|
|
4953
5109
|
priority?: undefined;
|
|
4954
|
-
|
|
4955
|
-
|
|
5110
|
+
assigneeAccountId?: undefined;
|
|
5111
|
+
transitionId?: undefined;
|
|
4956
5112
|
file_path?: undefined;
|
|
4957
5113
|
content?: undefined;
|
|
4958
5114
|
command?: undefined;
|
|
@@ -4977,6 +5133,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4977
5133
|
multi?: undefined;
|
|
4978
5134
|
separator?: undefined;
|
|
4979
5135
|
default?: undefined;
|
|
5136
|
+
fallback_param?: undefined;
|
|
5137
|
+
derive?: undefined;
|
|
4980
5138
|
};
|
|
4981
5139
|
secondary?: undefined;
|
|
4982
5140
|
};
|
|
@@ -5026,6 +5184,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5026
5184
|
oldest?: undefined;
|
|
5027
5185
|
limit?: undefined;
|
|
5028
5186
|
inclusive?: undefined;
|
|
5187
|
+
cursor?: undefined;
|
|
5029
5188
|
ts?: undefined;
|
|
5030
5189
|
title?: undefined;
|
|
5031
5190
|
body?: undefined;
|
|
@@ -5038,6 +5197,9 @@ declare const ACTION_REGISTRY: {
|
|
|
5038
5197
|
subject?: undefined;
|
|
5039
5198
|
cc?: undefined;
|
|
5040
5199
|
bcc?: undefined;
|
|
5200
|
+
threadId?: undefined;
|
|
5201
|
+
inReplyTo?: undefined;
|
|
5202
|
+
references?: undefined;
|
|
5041
5203
|
messageIds?: undefined;
|
|
5042
5204
|
calendarId?: undefined;
|
|
5043
5205
|
timeMin?: undefined;
|
|
@@ -5058,10 +5220,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5058
5220
|
startAt?: undefined;
|
|
5059
5221
|
issueIdOrKey?: undefined;
|
|
5060
5222
|
projectKey?: undefined;
|
|
5061
|
-
|
|
5223
|
+
issueTypeName?: undefined;
|
|
5062
5224
|
priority?: undefined;
|
|
5063
|
-
|
|
5064
|
-
|
|
5225
|
+
assigneeAccountId?: undefined;
|
|
5226
|
+
transitionId?: undefined;
|
|
5065
5227
|
file_path?: undefined;
|
|
5066
5228
|
content?: undefined;
|
|
5067
5229
|
command?: undefined;
|
|
@@ -5086,6 +5248,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5086
5248
|
multi?: undefined;
|
|
5087
5249
|
separator?: undefined;
|
|
5088
5250
|
default?: undefined;
|
|
5251
|
+
fallback_param?: undefined;
|
|
5252
|
+
derive?: undefined;
|
|
5089
5253
|
};
|
|
5090
5254
|
secondary?: undefined;
|
|
5091
5255
|
};
|
|
@@ -5114,6 +5278,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5114
5278
|
oldest?: undefined;
|
|
5115
5279
|
limit?: undefined;
|
|
5116
5280
|
inclusive?: undefined;
|
|
5281
|
+
cursor?: undefined;
|
|
5117
5282
|
ts?: undefined;
|
|
5118
5283
|
title?: undefined;
|
|
5119
5284
|
body?: undefined;
|
|
@@ -5131,6 +5296,9 @@ declare const ACTION_REGISTRY: {
|
|
|
5131
5296
|
subject?: undefined;
|
|
5132
5297
|
cc?: undefined;
|
|
5133
5298
|
bcc?: undefined;
|
|
5299
|
+
threadId?: undefined;
|
|
5300
|
+
inReplyTo?: undefined;
|
|
5301
|
+
references?: undefined;
|
|
5134
5302
|
messageIds?: undefined;
|
|
5135
5303
|
calendarId?: undefined;
|
|
5136
5304
|
timeMin?: undefined;
|
|
@@ -5151,10 +5319,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5151
5319
|
startAt?: undefined;
|
|
5152
5320
|
issueIdOrKey?: undefined;
|
|
5153
5321
|
projectKey?: undefined;
|
|
5154
|
-
|
|
5322
|
+
issueTypeName?: undefined;
|
|
5155
5323
|
priority?: undefined;
|
|
5156
|
-
|
|
5157
|
-
|
|
5324
|
+
assigneeAccountId?: undefined;
|
|
5325
|
+
transitionId?: undefined;
|
|
5158
5326
|
file_path?: undefined;
|
|
5159
5327
|
content?: undefined;
|
|
5160
5328
|
command?: undefined;
|
|
@@ -5179,6 +5347,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5179
5347
|
multi?: undefined;
|
|
5180
5348
|
separator?: undefined;
|
|
5181
5349
|
default?: undefined;
|
|
5350
|
+
fallback_param?: undefined;
|
|
5351
|
+
derive?: undefined;
|
|
5182
5352
|
};
|
|
5183
5353
|
secondary?: undefined;
|
|
5184
5354
|
};
|
|
@@ -5231,6 +5401,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5231
5401
|
oldest?: undefined;
|
|
5232
5402
|
limit?: undefined;
|
|
5233
5403
|
inclusive?: undefined;
|
|
5404
|
+
cursor?: undefined;
|
|
5234
5405
|
ts?: undefined;
|
|
5235
5406
|
sort?: undefined;
|
|
5236
5407
|
direction?: undefined;
|
|
@@ -5243,6 +5414,9 @@ declare const ACTION_REGISTRY: {
|
|
|
5243
5414
|
subject?: undefined;
|
|
5244
5415
|
cc?: undefined;
|
|
5245
5416
|
bcc?: undefined;
|
|
5417
|
+
threadId?: undefined;
|
|
5418
|
+
inReplyTo?: undefined;
|
|
5419
|
+
references?: undefined;
|
|
5246
5420
|
messageIds?: undefined;
|
|
5247
5421
|
calendarId?: undefined;
|
|
5248
5422
|
timeMin?: undefined;
|
|
@@ -5263,10 +5437,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5263
5437
|
startAt?: undefined;
|
|
5264
5438
|
issueIdOrKey?: undefined;
|
|
5265
5439
|
projectKey?: undefined;
|
|
5266
|
-
|
|
5440
|
+
issueTypeName?: undefined;
|
|
5267
5441
|
priority?: undefined;
|
|
5268
|
-
|
|
5269
|
-
|
|
5442
|
+
assigneeAccountId?: undefined;
|
|
5443
|
+
transitionId?: undefined;
|
|
5270
5444
|
file_path?: undefined;
|
|
5271
5445
|
content?: undefined;
|
|
5272
5446
|
command?: undefined;
|
|
@@ -5291,6 +5465,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5291
5465
|
multi?: undefined;
|
|
5292
5466
|
separator?: undefined;
|
|
5293
5467
|
default?: undefined;
|
|
5468
|
+
fallback_param?: undefined;
|
|
5469
|
+
derive?: undefined;
|
|
5294
5470
|
};
|
|
5295
5471
|
secondary?: undefined;
|
|
5296
5472
|
};
|
|
@@ -5312,6 +5488,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5312
5488
|
type: string;
|
|
5313
5489
|
minimum: number;
|
|
5314
5490
|
maximum: number;
|
|
5491
|
+
description?: undefined;
|
|
5315
5492
|
};
|
|
5316
5493
|
channel?: undefined;
|
|
5317
5494
|
text?: undefined;
|
|
@@ -5324,6 +5501,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5324
5501
|
oldest?: undefined;
|
|
5325
5502
|
limit?: undefined;
|
|
5326
5503
|
inclusive?: undefined;
|
|
5504
|
+
cursor?: undefined;
|
|
5327
5505
|
ts?: undefined;
|
|
5328
5506
|
title?: undefined;
|
|
5329
5507
|
body?: undefined;
|
|
@@ -5340,6 +5518,9 @@ declare const ACTION_REGISTRY: {
|
|
|
5340
5518
|
subject?: undefined;
|
|
5341
5519
|
cc?: undefined;
|
|
5342
5520
|
bcc?: undefined;
|
|
5521
|
+
threadId?: undefined;
|
|
5522
|
+
inReplyTo?: undefined;
|
|
5523
|
+
references?: undefined;
|
|
5343
5524
|
messageIds?: undefined;
|
|
5344
5525
|
calendarId?: undefined;
|
|
5345
5526
|
timeMin?: undefined;
|
|
@@ -5360,10 +5541,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5360
5541
|
startAt?: undefined;
|
|
5361
5542
|
issueIdOrKey?: undefined;
|
|
5362
5543
|
projectKey?: undefined;
|
|
5363
|
-
|
|
5544
|
+
issueTypeName?: undefined;
|
|
5364
5545
|
priority?: undefined;
|
|
5365
|
-
|
|
5366
|
-
|
|
5546
|
+
assigneeAccountId?: undefined;
|
|
5547
|
+
transitionId?: undefined;
|
|
5367
5548
|
file_path?: undefined;
|
|
5368
5549
|
content?: undefined;
|
|
5369
5550
|
command?: undefined;
|
|
@@ -5388,6 +5569,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5388
5569
|
multi?: undefined;
|
|
5389
5570
|
separator?: undefined;
|
|
5390
5571
|
default?: undefined;
|
|
5572
|
+
fallback_param?: undefined;
|
|
5573
|
+
derive?: undefined;
|
|
5391
5574
|
};
|
|
5392
5575
|
secondary?: undefined;
|
|
5393
5576
|
};
|
|
@@ -5416,6 +5599,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5416
5599
|
oldest?: undefined;
|
|
5417
5600
|
limit?: undefined;
|
|
5418
5601
|
inclusive?: undefined;
|
|
5602
|
+
cursor?: undefined;
|
|
5419
5603
|
ts?: undefined;
|
|
5420
5604
|
title?: undefined;
|
|
5421
5605
|
body?: undefined;
|
|
@@ -5433,6 +5617,9 @@ declare const ACTION_REGISTRY: {
|
|
|
5433
5617
|
subject?: undefined;
|
|
5434
5618
|
cc?: undefined;
|
|
5435
5619
|
bcc?: undefined;
|
|
5620
|
+
threadId?: undefined;
|
|
5621
|
+
inReplyTo?: undefined;
|
|
5622
|
+
references?: undefined;
|
|
5436
5623
|
messageIds?: undefined;
|
|
5437
5624
|
calendarId?: undefined;
|
|
5438
5625
|
timeMin?: undefined;
|
|
@@ -5453,10 +5640,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5453
5640
|
startAt?: undefined;
|
|
5454
5641
|
issueIdOrKey?: undefined;
|
|
5455
5642
|
projectKey?: undefined;
|
|
5456
|
-
|
|
5643
|
+
issueTypeName?: undefined;
|
|
5457
5644
|
priority?: undefined;
|
|
5458
|
-
|
|
5459
|
-
|
|
5645
|
+
assigneeAccountId?: undefined;
|
|
5646
|
+
transitionId?: undefined;
|
|
5460
5647
|
file_path?: undefined;
|
|
5461
5648
|
content?: undefined;
|
|
5462
5649
|
command?: undefined;
|
|
@@ -5481,6 +5668,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5481
5668
|
multi?: undefined;
|
|
5482
5669
|
separator?: undefined;
|
|
5483
5670
|
default?: undefined;
|
|
5671
|
+
fallback_param?: undefined;
|
|
5672
|
+
derive?: undefined;
|
|
5484
5673
|
};
|
|
5485
5674
|
secondary?: undefined;
|
|
5486
5675
|
};
|
|
@@ -5512,6 +5701,15 @@ declare const ACTION_REGISTRY: {
|
|
|
5512
5701
|
bcc: {
|
|
5513
5702
|
type: string;
|
|
5514
5703
|
};
|
|
5704
|
+
threadId: {
|
|
5705
|
+
type: string;
|
|
5706
|
+
};
|
|
5707
|
+
inReplyTo: {
|
|
5708
|
+
type: string;
|
|
5709
|
+
};
|
|
5710
|
+
references: {
|
|
5711
|
+
type: string;
|
|
5712
|
+
};
|
|
5515
5713
|
channel?: undefined;
|
|
5516
5714
|
text?: undefined;
|
|
5517
5715
|
thread_ts?: undefined;
|
|
@@ -5523,6 +5721,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5523
5721
|
oldest?: undefined;
|
|
5524
5722
|
limit?: undefined;
|
|
5525
5723
|
inclusive?: undefined;
|
|
5724
|
+
cursor?: undefined;
|
|
5526
5725
|
ts?: undefined;
|
|
5527
5726
|
title?: undefined;
|
|
5528
5727
|
labels?: undefined;
|
|
@@ -5556,10 +5755,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5556
5755
|
startAt?: undefined;
|
|
5557
5756
|
issueIdOrKey?: undefined;
|
|
5558
5757
|
projectKey?: undefined;
|
|
5559
|
-
|
|
5758
|
+
issueTypeName?: undefined;
|
|
5560
5759
|
priority?: undefined;
|
|
5561
|
-
|
|
5562
|
-
|
|
5760
|
+
assigneeAccountId?: undefined;
|
|
5761
|
+
transitionId?: undefined;
|
|
5563
5762
|
file_path?: undefined;
|
|
5564
5763
|
content?: undefined;
|
|
5565
5764
|
command?: undefined;
|
|
@@ -5584,6 +5783,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5584
5783
|
required?: undefined;
|
|
5585
5784
|
key?: undefined;
|
|
5586
5785
|
default?: undefined;
|
|
5786
|
+
fallback_param?: undefined;
|
|
5787
|
+
derive?: undefined;
|
|
5587
5788
|
};
|
|
5588
5789
|
secondary: {
|
|
5589
5790
|
name: string;
|
|
@@ -5624,6 +5825,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5624
5825
|
oldest?: undefined;
|
|
5625
5826
|
limit?: undefined;
|
|
5626
5827
|
inclusive?: undefined;
|
|
5828
|
+
cursor?: undefined;
|
|
5627
5829
|
ts?: undefined;
|
|
5628
5830
|
title?: undefined;
|
|
5629
5831
|
body?: undefined;
|
|
@@ -5642,6 +5844,9 @@ declare const ACTION_REGISTRY: {
|
|
|
5642
5844
|
subject?: undefined;
|
|
5643
5845
|
cc?: undefined;
|
|
5644
5846
|
bcc?: undefined;
|
|
5847
|
+
threadId?: undefined;
|
|
5848
|
+
inReplyTo?: undefined;
|
|
5849
|
+
references?: undefined;
|
|
5645
5850
|
calendarId?: undefined;
|
|
5646
5851
|
timeMin?: undefined;
|
|
5647
5852
|
timeMax?: undefined;
|
|
@@ -5661,10 +5866,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5661
5866
|
startAt?: undefined;
|
|
5662
5867
|
issueIdOrKey?: undefined;
|
|
5663
5868
|
projectKey?: undefined;
|
|
5664
|
-
|
|
5869
|
+
issueTypeName?: undefined;
|
|
5665
5870
|
priority?: undefined;
|
|
5666
|
-
|
|
5667
|
-
|
|
5871
|
+
assigneeAccountId?: undefined;
|
|
5872
|
+
transitionId?: undefined;
|
|
5668
5873
|
file_path?: undefined;
|
|
5669
5874
|
content?: undefined;
|
|
5670
5875
|
command?: undefined;
|
|
@@ -5689,6 +5894,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5689
5894
|
multi?: undefined;
|
|
5690
5895
|
separator?: undefined;
|
|
5691
5896
|
default?: undefined;
|
|
5897
|
+
fallback_param?: undefined;
|
|
5898
|
+
derive?: undefined;
|
|
5692
5899
|
};
|
|
5693
5900
|
secondary?: undefined;
|
|
5694
5901
|
};
|
|
@@ -5704,17 +5911,21 @@ declare const ACTION_REGISTRY: {
|
|
|
5704
5911
|
properties: {
|
|
5705
5912
|
calendarId: {
|
|
5706
5913
|
type: string;
|
|
5914
|
+
description: string;
|
|
5707
5915
|
};
|
|
5708
5916
|
timeMin: {
|
|
5709
5917
|
type: string;
|
|
5918
|
+
description: string;
|
|
5710
5919
|
};
|
|
5711
5920
|
timeMax: {
|
|
5712
5921
|
type: string;
|
|
5922
|
+
description: string;
|
|
5713
5923
|
};
|
|
5714
5924
|
maxResults: {
|
|
5715
5925
|
type: string;
|
|
5716
5926
|
minimum: number;
|
|
5717
5927
|
maximum: number;
|
|
5928
|
+
description: string;
|
|
5718
5929
|
};
|
|
5719
5930
|
channel?: undefined;
|
|
5720
5931
|
text?: undefined;
|
|
@@ -5727,6 +5938,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5727
5938
|
oldest?: undefined;
|
|
5728
5939
|
limit?: undefined;
|
|
5729
5940
|
inclusive?: undefined;
|
|
5941
|
+
cursor?: undefined;
|
|
5730
5942
|
ts?: undefined;
|
|
5731
5943
|
title?: undefined;
|
|
5732
5944
|
body?: undefined;
|
|
@@ -5744,6 +5956,9 @@ declare const ACTION_REGISTRY: {
|
|
|
5744
5956
|
subject?: undefined;
|
|
5745
5957
|
cc?: undefined;
|
|
5746
5958
|
bcc?: undefined;
|
|
5959
|
+
threadId?: undefined;
|
|
5960
|
+
inReplyTo?: undefined;
|
|
5961
|
+
references?: undefined;
|
|
5747
5962
|
messageIds?: undefined;
|
|
5748
5963
|
eventId?: undefined;
|
|
5749
5964
|
summary?: undefined;
|
|
@@ -5761,10 +5976,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5761
5976
|
startAt?: undefined;
|
|
5762
5977
|
issueIdOrKey?: undefined;
|
|
5763
5978
|
projectKey?: undefined;
|
|
5764
|
-
|
|
5979
|
+
issueTypeName?: undefined;
|
|
5765
5980
|
priority?: undefined;
|
|
5766
|
-
|
|
5767
|
-
|
|
5981
|
+
assigneeAccountId?: undefined;
|
|
5982
|
+
transitionId?: undefined;
|
|
5768
5983
|
file_path?: undefined;
|
|
5769
5984
|
content?: undefined;
|
|
5770
5985
|
command?: undefined;
|
|
@@ -5789,6 +6004,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5789
6004
|
key?: undefined;
|
|
5790
6005
|
multi?: undefined;
|
|
5791
6006
|
separator?: undefined;
|
|
6007
|
+
fallback_param?: undefined;
|
|
6008
|
+
derive?: undefined;
|
|
5792
6009
|
};
|
|
5793
6010
|
secondary?: undefined;
|
|
5794
6011
|
};
|
|
@@ -5804,10 +6021,12 @@ declare const ACTION_REGISTRY: {
|
|
|
5804
6021
|
properties: {
|
|
5805
6022
|
calendarId: {
|
|
5806
6023
|
type: string;
|
|
6024
|
+
description?: undefined;
|
|
5807
6025
|
};
|
|
5808
6026
|
eventId: {
|
|
5809
6027
|
type: string;
|
|
5810
6028
|
minLength: number;
|
|
6029
|
+
description?: undefined;
|
|
5811
6030
|
};
|
|
5812
6031
|
channel?: undefined;
|
|
5813
6032
|
text?: undefined;
|
|
@@ -5820,6 +6039,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5820
6039
|
oldest?: undefined;
|
|
5821
6040
|
limit?: undefined;
|
|
5822
6041
|
inclusive?: undefined;
|
|
6042
|
+
cursor?: undefined;
|
|
5823
6043
|
ts?: undefined;
|
|
5824
6044
|
title?: undefined;
|
|
5825
6045
|
body?: undefined;
|
|
@@ -5838,6 +6058,9 @@ declare const ACTION_REGISTRY: {
|
|
|
5838
6058
|
subject?: undefined;
|
|
5839
6059
|
cc?: undefined;
|
|
5840
6060
|
bcc?: undefined;
|
|
6061
|
+
threadId?: undefined;
|
|
6062
|
+
inReplyTo?: undefined;
|
|
6063
|
+
references?: undefined;
|
|
5841
6064
|
messageIds?: undefined;
|
|
5842
6065
|
timeMin?: undefined;
|
|
5843
6066
|
timeMax?: undefined;
|
|
@@ -5856,10 +6079,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5856
6079
|
startAt?: undefined;
|
|
5857
6080
|
issueIdOrKey?: undefined;
|
|
5858
6081
|
projectKey?: undefined;
|
|
5859
|
-
|
|
6082
|
+
issueTypeName?: undefined;
|
|
5860
6083
|
priority?: undefined;
|
|
5861
|
-
|
|
5862
|
-
|
|
6084
|
+
assigneeAccountId?: undefined;
|
|
6085
|
+
transitionId?: undefined;
|
|
5863
6086
|
file_path?: undefined;
|
|
5864
6087
|
content?: undefined;
|
|
5865
6088
|
command?: undefined;
|
|
@@ -5884,6 +6107,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5884
6107
|
multi?: undefined;
|
|
5885
6108
|
separator?: undefined;
|
|
5886
6109
|
default?: undefined;
|
|
6110
|
+
fallback_param?: undefined;
|
|
6111
|
+
derive?: undefined;
|
|
5887
6112
|
};
|
|
5888
6113
|
secondary?: undefined;
|
|
5889
6114
|
};
|
|
@@ -5899,25 +6124,68 @@ declare const ACTION_REGISTRY: {
|
|
|
5899
6124
|
properties: {
|
|
5900
6125
|
calendarId: {
|
|
5901
6126
|
type: string;
|
|
6127
|
+
description: string;
|
|
5902
6128
|
};
|
|
5903
6129
|
summary: {
|
|
5904
6130
|
type: string;
|
|
5905
6131
|
minLength: number;
|
|
6132
|
+
description: string;
|
|
5906
6133
|
};
|
|
5907
6134
|
description: {
|
|
5908
6135
|
type: string;
|
|
6136
|
+
description: string;
|
|
5909
6137
|
};
|
|
5910
6138
|
start: {
|
|
5911
6139
|
type: string;
|
|
6140
|
+
description: string;
|
|
6141
|
+
properties: {
|
|
6142
|
+
dateTime: {
|
|
6143
|
+
type: string;
|
|
6144
|
+
description: string;
|
|
6145
|
+
};
|
|
6146
|
+
date: {
|
|
6147
|
+
type: string;
|
|
6148
|
+
description: string;
|
|
6149
|
+
};
|
|
6150
|
+
timeZone: {
|
|
6151
|
+
type: string;
|
|
6152
|
+
description: string;
|
|
6153
|
+
};
|
|
6154
|
+
};
|
|
5912
6155
|
};
|
|
5913
6156
|
end: {
|
|
5914
6157
|
type: string;
|
|
6158
|
+
description: string;
|
|
6159
|
+
properties: {
|
|
6160
|
+
dateTime: {
|
|
6161
|
+
type: string;
|
|
6162
|
+
description: string;
|
|
6163
|
+
};
|
|
6164
|
+
date: {
|
|
6165
|
+
type: string;
|
|
6166
|
+
description: string;
|
|
6167
|
+
};
|
|
6168
|
+
timeZone: {
|
|
6169
|
+
type: string;
|
|
6170
|
+
description: string;
|
|
6171
|
+
};
|
|
6172
|
+
};
|
|
5915
6173
|
};
|
|
5916
6174
|
attendees: {
|
|
5917
6175
|
type: string;
|
|
6176
|
+
description: string;
|
|
6177
|
+
items: {
|
|
6178
|
+
type: string;
|
|
6179
|
+
properties: {
|
|
6180
|
+
email: {
|
|
6181
|
+
type: string;
|
|
6182
|
+
};
|
|
6183
|
+
};
|
|
6184
|
+
};
|
|
5918
6185
|
};
|
|
5919
6186
|
location: {
|
|
5920
6187
|
type: string;
|
|
6188
|
+
description: string;
|
|
5921
6189
|
};
|
|
5922
6190
|
channel?: undefined;
|
|
5923
6191
|
text?: undefined;
|
|
@@ -5930,6 +6198,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5930
6198
|
oldest?: undefined;
|
|
5931
6199
|
limit?: undefined;
|
|
5932
6200
|
inclusive?: undefined;
|
|
6201
|
+
cursor?: undefined;
|
|
5933
6202
|
ts?: undefined;
|
|
5934
6203
|
title?: undefined;
|
|
5935
6204
|
body?: undefined;
|
|
@@ -5948,6 +6217,9 @@ declare const ACTION_REGISTRY: {
|
|
|
5948
6217
|
subject?: undefined;
|
|
5949
6218
|
cc?: undefined;
|
|
5950
6219
|
bcc?: undefined;
|
|
6220
|
+
threadId?: undefined;
|
|
6221
|
+
inReplyTo?: undefined;
|
|
6222
|
+
references?: undefined;
|
|
5951
6223
|
messageIds?: undefined;
|
|
5952
6224
|
timeMin?: undefined;
|
|
5953
6225
|
timeMax?: undefined;
|
|
@@ -5961,10 +6233,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5961
6233
|
startAt?: undefined;
|
|
5962
6234
|
issueIdOrKey?: undefined;
|
|
5963
6235
|
projectKey?: undefined;
|
|
5964
|
-
|
|
6236
|
+
issueTypeName?: undefined;
|
|
5965
6237
|
priority?: undefined;
|
|
5966
|
-
|
|
5967
|
-
|
|
6238
|
+
assigneeAccountId?: undefined;
|
|
6239
|
+
transitionId?: undefined;
|
|
5968
6240
|
file_path?: undefined;
|
|
5969
6241
|
content?: undefined;
|
|
5970
6242
|
command?: undefined;
|
|
@@ -5989,6 +6261,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5989
6261
|
key?: undefined;
|
|
5990
6262
|
multi?: undefined;
|
|
5991
6263
|
separator?: undefined;
|
|
6264
|
+
fallback_param?: undefined;
|
|
6265
|
+
derive?: undefined;
|
|
5992
6266
|
};
|
|
5993
6267
|
secondary: {
|
|
5994
6268
|
name: string;
|
|
@@ -6011,29 +6285,73 @@ declare const ACTION_REGISTRY: {
|
|
|
6011
6285
|
properties: {
|
|
6012
6286
|
calendarId: {
|
|
6013
6287
|
type: string;
|
|
6288
|
+
description: string;
|
|
6014
6289
|
};
|
|
6015
6290
|
eventId: {
|
|
6016
6291
|
type: string;
|
|
6017
6292
|
minLength: number;
|
|
6293
|
+
description: string;
|
|
6018
6294
|
};
|
|
6019
6295
|
summary: {
|
|
6020
6296
|
type: string;
|
|
6297
|
+
description: string;
|
|
6021
6298
|
minLength?: undefined;
|
|
6022
6299
|
};
|
|
6023
6300
|
description: {
|
|
6024
6301
|
type: string;
|
|
6302
|
+
description: string;
|
|
6025
6303
|
};
|
|
6026
6304
|
start: {
|
|
6027
6305
|
type: string;
|
|
6306
|
+
description: string;
|
|
6307
|
+
properties: {
|
|
6308
|
+
dateTime: {
|
|
6309
|
+
type: string;
|
|
6310
|
+
description: string;
|
|
6311
|
+
};
|
|
6312
|
+
date: {
|
|
6313
|
+
type: string;
|
|
6314
|
+
description: string;
|
|
6315
|
+
};
|
|
6316
|
+
timeZone: {
|
|
6317
|
+
type: string;
|
|
6318
|
+
description: string;
|
|
6319
|
+
};
|
|
6320
|
+
};
|
|
6028
6321
|
};
|
|
6029
6322
|
end: {
|
|
6030
6323
|
type: string;
|
|
6324
|
+
description: string;
|
|
6325
|
+
properties: {
|
|
6326
|
+
dateTime: {
|
|
6327
|
+
type: string;
|
|
6328
|
+
description: string;
|
|
6329
|
+
};
|
|
6330
|
+
date: {
|
|
6331
|
+
type: string;
|
|
6332
|
+
description: string;
|
|
6333
|
+
};
|
|
6334
|
+
timeZone: {
|
|
6335
|
+
type: string;
|
|
6336
|
+
description: string;
|
|
6337
|
+
};
|
|
6338
|
+
};
|
|
6031
6339
|
};
|
|
6032
6340
|
attendees: {
|
|
6033
6341
|
type: string;
|
|
6342
|
+
description: string;
|
|
6343
|
+
items: {
|
|
6344
|
+
type: string;
|
|
6345
|
+
properties: {
|
|
6346
|
+
email: {
|
|
6347
|
+
type: string;
|
|
6348
|
+
};
|
|
6349
|
+
};
|
|
6350
|
+
};
|
|
6034
6351
|
};
|
|
6035
6352
|
location: {
|
|
6036
6353
|
type: string;
|
|
6354
|
+
description: string;
|
|
6037
6355
|
};
|
|
6038
6356
|
channel?: undefined;
|
|
6039
6357
|
text?: undefined;
|
|
@@ -6046,6 +6364,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6046
6364
|
oldest?: undefined;
|
|
6047
6365
|
limit?: undefined;
|
|
6048
6366
|
inclusive?: undefined;
|
|
6367
|
+
cursor?: undefined;
|
|
6049
6368
|
ts?: undefined;
|
|
6050
6369
|
title?: undefined;
|
|
6051
6370
|
body?: undefined;
|
|
@@ -6064,6 +6383,9 @@ declare const ACTION_REGISTRY: {
|
|
|
6064
6383
|
subject?: undefined;
|
|
6065
6384
|
cc?: undefined;
|
|
6066
6385
|
bcc?: undefined;
|
|
6386
|
+
threadId?: undefined;
|
|
6387
|
+
inReplyTo?: undefined;
|
|
6388
|
+
references?: undefined;
|
|
6067
6389
|
messageIds?: undefined;
|
|
6068
6390
|
timeMin?: undefined;
|
|
6069
6391
|
timeMax?: undefined;
|
|
@@ -6076,10 +6398,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6076
6398
|
startAt?: undefined;
|
|
6077
6399
|
issueIdOrKey?: undefined;
|
|
6078
6400
|
projectKey?: undefined;
|
|
6079
|
-
|
|
6401
|
+
issueTypeName?: undefined;
|
|
6080
6402
|
priority?: undefined;
|
|
6081
|
-
|
|
6082
|
-
|
|
6403
|
+
assigneeAccountId?: undefined;
|
|
6404
|
+
transitionId?: undefined;
|
|
6083
6405
|
file_path?: undefined;
|
|
6084
6406
|
content?: undefined;
|
|
6085
6407
|
command?: undefined;
|
|
@@ -6099,11 +6421,13 @@ declare const ACTION_REGISTRY: {
|
|
|
6099
6421
|
resource_id: {
|
|
6100
6422
|
source: "param";
|
|
6101
6423
|
param: string;
|
|
6424
|
+
default: string;
|
|
6102
6425
|
required?: undefined;
|
|
6103
6426
|
key?: undefined;
|
|
6104
6427
|
multi?: undefined;
|
|
6105
6428
|
separator?: undefined;
|
|
6106
|
-
|
|
6429
|
+
fallback_param?: undefined;
|
|
6430
|
+
derive?: undefined;
|
|
6107
6431
|
};
|
|
6108
6432
|
secondary: {
|
|
6109
6433
|
name: string;
|
|
@@ -6115,6 +6439,109 @@ declare const ACTION_REGISTRY: {
|
|
|
6115
6439
|
}[];
|
|
6116
6440
|
};
|
|
6117
6441
|
version: string;
|
|
6442
|
+
} | {
|
|
6443
|
+
action: string;
|
|
6444
|
+
resource_type: string;
|
|
6445
|
+
required_relations: string[];
|
|
6446
|
+
required_scopes: string[];
|
|
6447
|
+
capability: string;
|
|
6448
|
+
input_schema: {
|
|
6449
|
+
type: string;
|
|
6450
|
+
properties: {
|
|
6451
|
+
calendarId: {
|
|
6452
|
+
type: string;
|
|
6453
|
+
description?: undefined;
|
|
6454
|
+
};
|
|
6455
|
+
eventId: {
|
|
6456
|
+
type: string;
|
|
6457
|
+
minLength: number;
|
|
6458
|
+
description?: undefined;
|
|
6459
|
+
};
|
|
6460
|
+
channel?: undefined;
|
|
6461
|
+
text?: undefined;
|
|
6462
|
+
thread_ts?: undefined;
|
|
6463
|
+
username?: undefined;
|
|
6464
|
+
icon_emoji?: undefined;
|
|
6465
|
+
blocks?: undefined;
|
|
6466
|
+
userId?: undefined;
|
|
6467
|
+
latest?: undefined;
|
|
6468
|
+
oldest?: undefined;
|
|
6469
|
+
limit?: undefined;
|
|
6470
|
+
inclusive?: undefined;
|
|
6471
|
+
cursor?: undefined;
|
|
6472
|
+
ts?: undefined;
|
|
6473
|
+
title?: undefined;
|
|
6474
|
+
body?: undefined;
|
|
6475
|
+
labels?: undefined;
|
|
6476
|
+
assignees?: undefined;
|
|
6477
|
+
state?: undefined;
|
|
6478
|
+
sort?: undefined;
|
|
6479
|
+
direction?: undefined;
|
|
6480
|
+
per_page?: undefined;
|
|
6481
|
+
page?: undefined;
|
|
6482
|
+
issue_number?: undefined;
|
|
6483
|
+
query?: undefined;
|
|
6484
|
+
maxResults?: undefined;
|
|
6485
|
+
messageId?: undefined;
|
|
6486
|
+
to?: undefined;
|
|
6487
|
+
subject?: undefined;
|
|
6488
|
+
cc?: undefined;
|
|
6489
|
+
bcc?: undefined;
|
|
6490
|
+
threadId?: undefined;
|
|
6491
|
+
inReplyTo?: undefined;
|
|
6492
|
+
references?: undefined;
|
|
6493
|
+
messageIds?: undefined;
|
|
6494
|
+
timeMin?: undefined;
|
|
6495
|
+
timeMax?: undefined;
|
|
6496
|
+
summary?: undefined;
|
|
6497
|
+
description?: undefined;
|
|
6498
|
+
start?: undefined;
|
|
6499
|
+
end?: undefined;
|
|
6500
|
+
attendees?: undefined;
|
|
6501
|
+
location?: undefined;
|
|
6502
|
+
recent?: undefined;
|
|
6503
|
+
projectKeyOrId?: undefined;
|
|
6504
|
+
type?: undefined;
|
|
6505
|
+
boardId?: undefined;
|
|
6506
|
+
sprintId?: undefined;
|
|
6507
|
+
jql?: undefined;
|
|
6508
|
+
startAt?: undefined;
|
|
6509
|
+
issueIdOrKey?: undefined;
|
|
6510
|
+
projectKey?: undefined;
|
|
6511
|
+
issueTypeName?: undefined;
|
|
6512
|
+
priority?: undefined;
|
|
6513
|
+
assigneeAccountId?: undefined;
|
|
6514
|
+
transitionId?: undefined;
|
|
6515
|
+
file_path?: undefined;
|
|
6516
|
+
content?: undefined;
|
|
6517
|
+
command?: undefined;
|
|
6518
|
+
working_directory?: undefined;
|
|
6519
|
+
env_profile?: undefined;
|
|
6520
|
+
timeout_seconds?: undefined;
|
|
6521
|
+
};
|
|
6522
|
+
required: string[];
|
|
6523
|
+
additionalProperties: boolean;
|
|
6524
|
+
};
|
|
6525
|
+
constraints: {
|
|
6526
|
+
rate_bucket: string;
|
|
6527
|
+
};
|
|
6528
|
+
effects: string[];
|
|
6529
|
+
risk: string;
|
|
6530
|
+
target_bindings: {
|
|
6531
|
+
resource_id: {
|
|
6532
|
+
source: "param";
|
|
6533
|
+
param: string;
|
|
6534
|
+
default: string;
|
|
6535
|
+
required?: undefined;
|
|
6536
|
+
key?: undefined;
|
|
6537
|
+
multi?: undefined;
|
|
6538
|
+
separator?: undefined;
|
|
6539
|
+
fallback_param?: undefined;
|
|
6540
|
+
derive?: undefined;
|
|
6541
|
+
};
|
|
6542
|
+
secondary?: undefined;
|
|
6543
|
+
};
|
|
6544
|
+
version: string;
|
|
6118
6545
|
} | {
|
|
6119
6546
|
action: string;
|
|
6120
6547
|
resource_type: string;
|
|
@@ -6138,6 +6565,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6138
6565
|
oldest?: undefined;
|
|
6139
6566
|
limit?: undefined;
|
|
6140
6567
|
inclusive?: undefined;
|
|
6568
|
+
cursor?: undefined;
|
|
6141
6569
|
ts?: undefined;
|
|
6142
6570
|
title?: undefined;
|
|
6143
6571
|
body?: undefined;
|
|
@@ -6156,6 +6584,9 @@ declare const ACTION_REGISTRY: {
|
|
|
6156
6584
|
subject?: undefined;
|
|
6157
6585
|
cc?: undefined;
|
|
6158
6586
|
bcc?: undefined;
|
|
6587
|
+
threadId?: undefined;
|
|
6588
|
+
inReplyTo?: undefined;
|
|
6589
|
+
references?: undefined;
|
|
6159
6590
|
messageIds?: undefined;
|
|
6160
6591
|
calendarId?: undefined;
|
|
6161
6592
|
timeMin?: undefined;
|
|
@@ -6175,10 +6606,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6175
6606
|
startAt?: undefined;
|
|
6176
6607
|
issueIdOrKey?: undefined;
|
|
6177
6608
|
projectKey?: undefined;
|
|
6178
|
-
|
|
6609
|
+
issueTypeName?: undefined;
|
|
6179
6610
|
priority?: undefined;
|
|
6180
|
-
|
|
6181
|
-
|
|
6611
|
+
assigneeAccountId?: undefined;
|
|
6612
|
+
transitionId?: undefined;
|
|
6182
6613
|
file_path?: undefined;
|
|
6183
6614
|
content?: undefined;
|
|
6184
6615
|
command?: undefined;
|
|
@@ -6203,6 +6634,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6203
6634
|
multi?: undefined;
|
|
6204
6635
|
separator?: undefined;
|
|
6205
6636
|
default?: undefined;
|
|
6637
|
+
fallback_param?: undefined;
|
|
6638
|
+
derive?: undefined;
|
|
6206
6639
|
};
|
|
6207
6640
|
secondary?: undefined;
|
|
6208
6641
|
};
|
|
@@ -6233,6 +6666,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6233
6666
|
oldest?: undefined;
|
|
6234
6667
|
limit?: undefined;
|
|
6235
6668
|
inclusive?: undefined;
|
|
6669
|
+
cursor?: undefined;
|
|
6236
6670
|
ts?: undefined;
|
|
6237
6671
|
title?: undefined;
|
|
6238
6672
|
body?: undefined;
|
|
@@ -6251,6 +6685,9 @@ declare const ACTION_REGISTRY: {
|
|
|
6251
6685
|
subject?: undefined;
|
|
6252
6686
|
cc?: undefined;
|
|
6253
6687
|
bcc?: undefined;
|
|
6688
|
+
threadId?: undefined;
|
|
6689
|
+
inReplyTo?: undefined;
|
|
6690
|
+
references?: undefined;
|
|
6254
6691
|
messageIds?: undefined;
|
|
6255
6692
|
calendarId?: undefined;
|
|
6256
6693
|
timeMin?: undefined;
|
|
@@ -6269,10 +6706,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6269
6706
|
startAt?: undefined;
|
|
6270
6707
|
issueIdOrKey?: undefined;
|
|
6271
6708
|
projectKey?: undefined;
|
|
6272
|
-
|
|
6709
|
+
issueTypeName?: undefined;
|
|
6273
6710
|
priority?: undefined;
|
|
6274
|
-
|
|
6275
|
-
|
|
6711
|
+
assigneeAccountId?: undefined;
|
|
6712
|
+
transitionId?: undefined;
|
|
6276
6713
|
file_path?: undefined;
|
|
6277
6714
|
content?: undefined;
|
|
6278
6715
|
command?: undefined;
|
|
@@ -6297,6 +6734,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6297
6734
|
multi?: undefined;
|
|
6298
6735
|
separator?: undefined;
|
|
6299
6736
|
default?: undefined;
|
|
6737
|
+
fallback_param?: undefined;
|
|
6738
|
+
derive?: undefined;
|
|
6300
6739
|
};
|
|
6301
6740
|
secondary?: undefined;
|
|
6302
6741
|
};
|
|
@@ -6329,6 +6768,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6329
6768
|
oldest?: undefined;
|
|
6330
6769
|
limit?: undefined;
|
|
6331
6770
|
inclusive?: undefined;
|
|
6771
|
+
cursor?: undefined;
|
|
6332
6772
|
ts?: undefined;
|
|
6333
6773
|
title?: undefined;
|
|
6334
6774
|
body?: undefined;
|
|
@@ -6346,6 +6786,9 @@ declare const ACTION_REGISTRY: {
|
|
|
6346
6786
|
subject?: undefined;
|
|
6347
6787
|
cc?: undefined;
|
|
6348
6788
|
bcc?: undefined;
|
|
6789
|
+
threadId?: undefined;
|
|
6790
|
+
inReplyTo?: undefined;
|
|
6791
|
+
references?: undefined;
|
|
6349
6792
|
messageIds?: undefined;
|
|
6350
6793
|
calendarId?: undefined;
|
|
6351
6794
|
timeMin?: undefined;
|
|
@@ -6365,10 +6808,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6365
6808
|
startAt?: undefined;
|
|
6366
6809
|
issueIdOrKey?: undefined;
|
|
6367
6810
|
projectKey?: undefined;
|
|
6368
|
-
|
|
6811
|
+
issueTypeName?: undefined;
|
|
6369
6812
|
priority?: undefined;
|
|
6370
|
-
|
|
6371
|
-
|
|
6813
|
+
assigneeAccountId?: undefined;
|
|
6814
|
+
transitionId?: undefined;
|
|
6372
6815
|
file_path?: undefined;
|
|
6373
6816
|
content?: undefined;
|
|
6374
6817
|
command?: undefined;
|
|
@@ -6393,6 +6836,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6393
6836
|
multi?: undefined;
|
|
6394
6837
|
separator?: undefined;
|
|
6395
6838
|
default?: undefined;
|
|
6839
|
+
fallback_param?: undefined;
|
|
6840
|
+
derive?: undefined;
|
|
6396
6841
|
};
|
|
6397
6842
|
secondary?: undefined;
|
|
6398
6843
|
};
|
|
@@ -6414,6 +6859,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6414
6859
|
type: string;
|
|
6415
6860
|
minimum: number;
|
|
6416
6861
|
maximum: number;
|
|
6862
|
+
description?: undefined;
|
|
6417
6863
|
};
|
|
6418
6864
|
channel?: undefined;
|
|
6419
6865
|
text?: undefined;
|
|
@@ -6426,6 +6872,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6426
6872
|
oldest?: undefined;
|
|
6427
6873
|
limit?: undefined;
|
|
6428
6874
|
inclusive?: undefined;
|
|
6875
|
+
cursor?: undefined;
|
|
6429
6876
|
ts?: undefined;
|
|
6430
6877
|
title?: undefined;
|
|
6431
6878
|
body?: undefined;
|
|
@@ -6443,6 +6890,9 @@ declare const ACTION_REGISTRY: {
|
|
|
6443
6890
|
subject?: undefined;
|
|
6444
6891
|
cc?: undefined;
|
|
6445
6892
|
bcc?: undefined;
|
|
6893
|
+
threadId?: undefined;
|
|
6894
|
+
inReplyTo?: undefined;
|
|
6895
|
+
references?: undefined;
|
|
6446
6896
|
messageIds?: undefined;
|
|
6447
6897
|
calendarId?: undefined;
|
|
6448
6898
|
timeMin?: undefined;
|
|
@@ -6462,10 +6912,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6462
6912
|
startAt?: undefined;
|
|
6463
6913
|
issueIdOrKey?: undefined;
|
|
6464
6914
|
projectKey?: undefined;
|
|
6465
|
-
|
|
6915
|
+
issueTypeName?: undefined;
|
|
6466
6916
|
priority?: undefined;
|
|
6467
|
-
|
|
6468
|
-
|
|
6917
|
+
assigneeAccountId?: undefined;
|
|
6918
|
+
transitionId?: undefined;
|
|
6469
6919
|
file_path?: undefined;
|
|
6470
6920
|
content?: undefined;
|
|
6471
6921
|
command?: undefined;
|
|
@@ -6490,6 +6940,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6490
6940
|
multi?: undefined;
|
|
6491
6941
|
separator?: undefined;
|
|
6492
6942
|
default?: undefined;
|
|
6943
|
+
fallback_param?: undefined;
|
|
6944
|
+
derive?: undefined;
|
|
6493
6945
|
};
|
|
6494
6946
|
secondary?: undefined;
|
|
6495
6947
|
};
|
|
@@ -6511,6 +6963,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6511
6963
|
type: string;
|
|
6512
6964
|
minimum: number;
|
|
6513
6965
|
maximum: number;
|
|
6966
|
+
description?: undefined;
|
|
6514
6967
|
};
|
|
6515
6968
|
startAt: {
|
|
6516
6969
|
type: string;
|
|
@@ -6527,6 +6980,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6527
6980
|
oldest?: undefined;
|
|
6528
6981
|
limit?: undefined;
|
|
6529
6982
|
inclusive?: undefined;
|
|
6983
|
+
cursor?: undefined;
|
|
6530
6984
|
ts?: undefined;
|
|
6531
6985
|
title?: undefined;
|
|
6532
6986
|
body?: undefined;
|
|
@@ -6544,6 +6998,9 @@ declare const ACTION_REGISTRY: {
|
|
|
6544
6998
|
subject?: undefined;
|
|
6545
6999
|
cc?: undefined;
|
|
6546
7000
|
bcc?: undefined;
|
|
7001
|
+
threadId?: undefined;
|
|
7002
|
+
inReplyTo?: undefined;
|
|
7003
|
+
references?: undefined;
|
|
6547
7004
|
messageIds?: undefined;
|
|
6548
7005
|
calendarId?: undefined;
|
|
6549
7006
|
timeMin?: undefined;
|
|
@@ -6562,10 +7019,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6562
7019
|
sprintId?: undefined;
|
|
6563
7020
|
issueIdOrKey?: undefined;
|
|
6564
7021
|
projectKey?: undefined;
|
|
6565
|
-
|
|
7022
|
+
issueTypeName?: undefined;
|
|
6566
7023
|
priority?: undefined;
|
|
6567
|
-
|
|
6568
|
-
|
|
7024
|
+
assigneeAccountId?: undefined;
|
|
7025
|
+
transitionId?: undefined;
|
|
6569
7026
|
file_path?: undefined;
|
|
6570
7027
|
content?: undefined;
|
|
6571
7028
|
command?: undefined;
|
|
@@ -6590,6 +7047,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6590
7047
|
multi?: undefined;
|
|
6591
7048
|
separator?: undefined;
|
|
6592
7049
|
default?: undefined;
|
|
7050
|
+
fallback_param?: undefined;
|
|
7051
|
+
derive?: undefined;
|
|
6593
7052
|
};
|
|
6594
7053
|
secondary?: undefined;
|
|
6595
7054
|
};
|
|
@@ -6618,6 +7077,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6618
7077
|
oldest?: undefined;
|
|
6619
7078
|
limit?: undefined;
|
|
6620
7079
|
inclusive?: undefined;
|
|
7080
|
+
cursor?: undefined;
|
|
6621
7081
|
ts?: undefined;
|
|
6622
7082
|
title?: undefined;
|
|
6623
7083
|
body?: undefined;
|
|
@@ -6636,6 +7096,9 @@ declare const ACTION_REGISTRY: {
|
|
|
6636
7096
|
subject?: undefined;
|
|
6637
7097
|
cc?: undefined;
|
|
6638
7098
|
bcc?: undefined;
|
|
7099
|
+
threadId?: undefined;
|
|
7100
|
+
inReplyTo?: undefined;
|
|
7101
|
+
references?: undefined;
|
|
6639
7102
|
messageIds?: undefined;
|
|
6640
7103
|
calendarId?: undefined;
|
|
6641
7104
|
timeMin?: undefined;
|
|
@@ -6655,10 +7118,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6655
7118
|
jql?: undefined;
|
|
6656
7119
|
startAt?: undefined;
|
|
6657
7120
|
projectKey?: undefined;
|
|
6658
|
-
|
|
7121
|
+
issueTypeName?: undefined;
|
|
6659
7122
|
priority?: undefined;
|
|
6660
|
-
|
|
6661
|
-
|
|
7123
|
+
assigneeAccountId?: undefined;
|
|
7124
|
+
transitionId?: undefined;
|
|
6662
7125
|
file_path?: undefined;
|
|
6663
7126
|
content?: undefined;
|
|
6664
7127
|
command?: undefined;
|
|
@@ -6678,11 +7141,13 @@ declare const ACTION_REGISTRY: {
|
|
|
6678
7141
|
resource_id: {
|
|
6679
7142
|
source: "param";
|
|
6680
7143
|
param: string;
|
|
7144
|
+
fallback_param: string;
|
|
6681
7145
|
required?: undefined;
|
|
6682
7146
|
key?: undefined;
|
|
6683
7147
|
multi?: undefined;
|
|
6684
7148
|
separator?: undefined;
|
|
6685
7149
|
default?: undefined;
|
|
7150
|
+
derive?: undefined;
|
|
6686
7151
|
};
|
|
6687
7152
|
secondary?: undefined;
|
|
6688
7153
|
};
|
|
@@ -6703,19 +7168,28 @@ declare const ACTION_REGISTRY: {
|
|
|
6703
7168
|
summary: {
|
|
6704
7169
|
type: string;
|
|
6705
7170
|
minLength: number;
|
|
7171
|
+
description?: undefined;
|
|
6706
7172
|
};
|
|
6707
7173
|
description: {
|
|
6708
7174
|
type: string;
|
|
7175
|
+
description?: undefined;
|
|
6709
7176
|
};
|
|
6710
|
-
|
|
7177
|
+
issueTypeName: {
|
|
6711
7178
|
type: string;
|
|
6712
7179
|
minLength: number;
|
|
7180
|
+
description: string;
|
|
6713
7181
|
};
|
|
6714
7182
|
priority: {
|
|
6715
7183
|
type: string;
|
|
6716
7184
|
};
|
|
6717
|
-
|
|
7185
|
+
assigneeAccountId: {
|
|
7186
|
+
type: string;
|
|
7187
|
+
};
|
|
7188
|
+
labels: {
|
|
6718
7189
|
type: string;
|
|
7190
|
+
items: {
|
|
7191
|
+
type: string;
|
|
7192
|
+
};
|
|
6719
7193
|
};
|
|
6720
7194
|
channel?: undefined;
|
|
6721
7195
|
text?: undefined;
|
|
@@ -6728,10 +7202,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6728
7202
|
oldest?: undefined;
|
|
6729
7203
|
limit?: undefined;
|
|
6730
7204
|
inclusive?: undefined;
|
|
7205
|
+
cursor?: undefined;
|
|
6731
7206
|
ts?: undefined;
|
|
6732
7207
|
title?: undefined;
|
|
6733
7208
|
body?: undefined;
|
|
6734
|
-
labels?: undefined;
|
|
6735
7209
|
assignees?: undefined;
|
|
6736
7210
|
state?: undefined;
|
|
6737
7211
|
sort?: undefined;
|
|
@@ -6746,6 +7220,9 @@ declare const ACTION_REGISTRY: {
|
|
|
6746
7220
|
subject?: undefined;
|
|
6747
7221
|
cc?: undefined;
|
|
6748
7222
|
bcc?: undefined;
|
|
7223
|
+
threadId?: undefined;
|
|
7224
|
+
inReplyTo?: undefined;
|
|
7225
|
+
references?: undefined;
|
|
6749
7226
|
messageIds?: undefined;
|
|
6750
7227
|
calendarId?: undefined;
|
|
6751
7228
|
timeMin?: undefined;
|
|
@@ -6763,7 +7240,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6763
7240
|
jql?: undefined;
|
|
6764
7241
|
startAt?: undefined;
|
|
6765
7242
|
issueIdOrKey?: undefined;
|
|
6766
|
-
|
|
7243
|
+
transitionId?: undefined;
|
|
6767
7244
|
file_path?: undefined;
|
|
6768
7245
|
content?: undefined;
|
|
6769
7246
|
command?: undefined;
|
|
@@ -6788,6 +7265,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6788
7265
|
multi?: undefined;
|
|
6789
7266
|
separator?: undefined;
|
|
6790
7267
|
default?: undefined;
|
|
7268
|
+
fallback_param?: undefined;
|
|
7269
|
+
derive?: undefined;
|
|
6791
7270
|
};
|
|
6792
7271
|
secondary?: undefined;
|
|
6793
7272
|
};
|
|
@@ -6808,18 +7287,23 @@ declare const ACTION_REGISTRY: {
|
|
|
6808
7287
|
summary: {
|
|
6809
7288
|
type: string;
|
|
6810
7289
|
minLength?: undefined;
|
|
7290
|
+
description?: undefined;
|
|
6811
7291
|
};
|
|
6812
7292
|
description: {
|
|
6813
7293
|
type: string;
|
|
7294
|
+
description?: undefined;
|
|
6814
7295
|
};
|
|
6815
|
-
|
|
7296
|
+
priority: {
|
|
6816
7297
|
type: string;
|
|
6817
7298
|
};
|
|
6818
|
-
|
|
7299
|
+
assigneeAccountId: {
|
|
6819
7300
|
type: string;
|
|
6820
7301
|
};
|
|
6821
|
-
|
|
7302
|
+
labels: {
|
|
6822
7303
|
type: string;
|
|
7304
|
+
items: {
|
|
7305
|
+
type: string;
|
|
7306
|
+
};
|
|
6823
7307
|
};
|
|
6824
7308
|
channel?: undefined;
|
|
6825
7309
|
text?: undefined;
|
|
@@ -6832,10 +7316,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6832
7316
|
oldest?: undefined;
|
|
6833
7317
|
limit?: undefined;
|
|
6834
7318
|
inclusive?: undefined;
|
|
7319
|
+
cursor?: undefined;
|
|
6835
7320
|
ts?: undefined;
|
|
6836
7321
|
title?: undefined;
|
|
6837
7322
|
body?: undefined;
|
|
6838
|
-
labels?: undefined;
|
|
6839
7323
|
assignees?: undefined;
|
|
6840
7324
|
state?: undefined;
|
|
6841
7325
|
sort?: undefined;
|
|
@@ -6850,6 +7334,9 @@ declare const ACTION_REGISTRY: {
|
|
|
6850
7334
|
subject?: undefined;
|
|
6851
7335
|
cc?: undefined;
|
|
6852
7336
|
bcc?: undefined;
|
|
7337
|
+
threadId?: undefined;
|
|
7338
|
+
inReplyTo?: undefined;
|
|
7339
|
+
references?: undefined;
|
|
6853
7340
|
messageIds?: undefined;
|
|
6854
7341
|
calendarId?: undefined;
|
|
6855
7342
|
timeMin?: undefined;
|
|
@@ -6867,7 +7354,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6867
7354
|
jql?: undefined;
|
|
6868
7355
|
startAt?: undefined;
|
|
6869
7356
|
projectKey?: undefined;
|
|
6870
|
-
|
|
7357
|
+
issueTypeName?: undefined;
|
|
7358
|
+
transitionId?: undefined;
|
|
6871
7359
|
file_path?: undefined;
|
|
6872
7360
|
content?: undefined;
|
|
6873
7361
|
command?: undefined;
|
|
@@ -6887,6 +7375,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6887
7375
|
resource_id: {
|
|
6888
7376
|
source: "param";
|
|
6889
7377
|
param: string;
|
|
7378
|
+
fallback_param: string;
|
|
7379
|
+
derive: "project_key";
|
|
6890
7380
|
required?: undefined;
|
|
6891
7381
|
key?: undefined;
|
|
6892
7382
|
multi?: undefined;
|
|
@@ -6905,20 +7395,9 @@ declare const ACTION_REGISTRY: {
|
|
|
6905
7395
|
input_schema: {
|
|
6906
7396
|
type: string;
|
|
6907
7397
|
properties: {
|
|
6908
|
-
|
|
6909
|
-
type: string;
|
|
6910
|
-
};
|
|
6911
|
-
boardId: {
|
|
6912
|
-
type: string;
|
|
6913
|
-
minimum?: undefined;
|
|
6914
|
-
};
|
|
6915
|
-
sprintId: {
|
|
6916
|
-
type: string;
|
|
6917
|
-
minimum?: undefined;
|
|
6918
|
-
};
|
|
6919
|
-
jql: {
|
|
7398
|
+
issueIdOrKey: {
|
|
6920
7399
|
type: string;
|
|
6921
|
-
minLength
|
|
7400
|
+
minLength: number;
|
|
6922
7401
|
};
|
|
6923
7402
|
channel?: undefined;
|
|
6924
7403
|
text?: undefined;
|
|
@@ -6931,6 +7410,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6931
7410
|
oldest?: undefined;
|
|
6932
7411
|
limit?: undefined;
|
|
6933
7412
|
inclusive?: undefined;
|
|
7413
|
+
cursor?: undefined;
|
|
6934
7414
|
ts?: undefined;
|
|
6935
7415
|
title?: undefined;
|
|
6936
7416
|
body?: undefined;
|
|
@@ -6949,6 +7429,323 @@ declare const ACTION_REGISTRY: {
|
|
|
6949
7429
|
subject?: undefined;
|
|
6950
7430
|
cc?: undefined;
|
|
6951
7431
|
bcc?: undefined;
|
|
7432
|
+
threadId?: undefined;
|
|
7433
|
+
inReplyTo?: undefined;
|
|
7434
|
+
references?: undefined;
|
|
7435
|
+
messageIds?: undefined;
|
|
7436
|
+
calendarId?: undefined;
|
|
7437
|
+
timeMin?: undefined;
|
|
7438
|
+
timeMax?: undefined;
|
|
7439
|
+
eventId?: undefined;
|
|
7440
|
+
summary?: undefined;
|
|
7441
|
+
description?: undefined;
|
|
7442
|
+
start?: undefined;
|
|
7443
|
+
end?: undefined;
|
|
7444
|
+
attendees?: undefined;
|
|
7445
|
+
location?: undefined;
|
|
7446
|
+
recent?: undefined;
|
|
7447
|
+
projectKeyOrId?: undefined;
|
|
7448
|
+
type?: undefined;
|
|
7449
|
+
boardId?: undefined;
|
|
7450
|
+
sprintId?: undefined;
|
|
7451
|
+
jql?: undefined;
|
|
7452
|
+
startAt?: undefined;
|
|
7453
|
+
projectKey?: undefined;
|
|
7454
|
+
issueTypeName?: undefined;
|
|
7455
|
+
priority?: undefined;
|
|
7456
|
+
assigneeAccountId?: undefined;
|
|
7457
|
+
transitionId?: undefined;
|
|
7458
|
+
file_path?: undefined;
|
|
7459
|
+
content?: undefined;
|
|
7460
|
+
command?: undefined;
|
|
7461
|
+
working_directory?: undefined;
|
|
7462
|
+
env_profile?: undefined;
|
|
7463
|
+
timeout_seconds?: undefined;
|
|
7464
|
+
};
|
|
7465
|
+
required: string[];
|
|
7466
|
+
additionalProperties: boolean;
|
|
7467
|
+
};
|
|
7468
|
+
constraints: {
|
|
7469
|
+
rate_bucket: string;
|
|
7470
|
+
};
|
|
7471
|
+
effects: string[];
|
|
7472
|
+
risk: string;
|
|
7473
|
+
target_bindings: {
|
|
7474
|
+
resource_id: {
|
|
7475
|
+
source: "param";
|
|
7476
|
+
param: string;
|
|
7477
|
+
fallback_param: string;
|
|
7478
|
+
derive: "project_key";
|
|
7479
|
+
required?: undefined;
|
|
7480
|
+
key?: undefined;
|
|
7481
|
+
multi?: undefined;
|
|
7482
|
+
separator?: undefined;
|
|
7483
|
+
default?: undefined;
|
|
7484
|
+
};
|
|
7485
|
+
secondary?: undefined;
|
|
7486
|
+
};
|
|
7487
|
+
version: string;
|
|
7488
|
+
} | {
|
|
7489
|
+
action: string;
|
|
7490
|
+
resource_type: string;
|
|
7491
|
+
required_relations: string[];
|
|
7492
|
+
required_scopes: string[];
|
|
7493
|
+
capability: string;
|
|
7494
|
+
input_schema: {
|
|
7495
|
+
type: string;
|
|
7496
|
+
properties: {
|
|
7497
|
+
issueIdOrKey: {
|
|
7498
|
+
type: string;
|
|
7499
|
+
minLength: number;
|
|
7500
|
+
};
|
|
7501
|
+
body: {
|
|
7502
|
+
type: string;
|
|
7503
|
+
minLength: number;
|
|
7504
|
+
};
|
|
7505
|
+
channel?: undefined;
|
|
7506
|
+
text?: undefined;
|
|
7507
|
+
thread_ts?: undefined;
|
|
7508
|
+
username?: undefined;
|
|
7509
|
+
icon_emoji?: undefined;
|
|
7510
|
+
blocks?: undefined;
|
|
7511
|
+
userId?: undefined;
|
|
7512
|
+
latest?: undefined;
|
|
7513
|
+
oldest?: undefined;
|
|
7514
|
+
limit?: undefined;
|
|
7515
|
+
inclusive?: undefined;
|
|
7516
|
+
cursor?: undefined;
|
|
7517
|
+
ts?: undefined;
|
|
7518
|
+
title?: undefined;
|
|
7519
|
+
labels?: undefined;
|
|
7520
|
+
assignees?: undefined;
|
|
7521
|
+
state?: undefined;
|
|
7522
|
+
sort?: undefined;
|
|
7523
|
+
direction?: undefined;
|
|
7524
|
+
per_page?: undefined;
|
|
7525
|
+
page?: undefined;
|
|
7526
|
+
issue_number?: undefined;
|
|
7527
|
+
query?: undefined;
|
|
7528
|
+
maxResults?: undefined;
|
|
7529
|
+
messageId?: undefined;
|
|
7530
|
+
to?: undefined;
|
|
7531
|
+
subject?: undefined;
|
|
7532
|
+
cc?: undefined;
|
|
7533
|
+
bcc?: undefined;
|
|
7534
|
+
threadId?: undefined;
|
|
7535
|
+
inReplyTo?: undefined;
|
|
7536
|
+
references?: undefined;
|
|
7537
|
+
messageIds?: undefined;
|
|
7538
|
+
calendarId?: undefined;
|
|
7539
|
+
timeMin?: undefined;
|
|
7540
|
+
timeMax?: undefined;
|
|
7541
|
+
eventId?: undefined;
|
|
7542
|
+
summary?: undefined;
|
|
7543
|
+
description?: undefined;
|
|
7544
|
+
start?: undefined;
|
|
7545
|
+
end?: undefined;
|
|
7546
|
+
attendees?: undefined;
|
|
7547
|
+
location?: undefined;
|
|
7548
|
+
recent?: undefined;
|
|
7549
|
+
projectKeyOrId?: undefined;
|
|
7550
|
+
type?: undefined;
|
|
7551
|
+
boardId?: undefined;
|
|
7552
|
+
sprintId?: undefined;
|
|
7553
|
+
jql?: undefined;
|
|
7554
|
+
startAt?: undefined;
|
|
7555
|
+
projectKey?: undefined;
|
|
7556
|
+
issueTypeName?: undefined;
|
|
7557
|
+
priority?: undefined;
|
|
7558
|
+
assigneeAccountId?: undefined;
|
|
7559
|
+
transitionId?: undefined;
|
|
7560
|
+
file_path?: undefined;
|
|
7561
|
+
content?: undefined;
|
|
7562
|
+
command?: undefined;
|
|
7563
|
+
working_directory?: undefined;
|
|
7564
|
+
env_profile?: undefined;
|
|
7565
|
+
timeout_seconds?: undefined;
|
|
7566
|
+
};
|
|
7567
|
+
required: string[];
|
|
7568
|
+
additionalProperties: boolean;
|
|
7569
|
+
};
|
|
7570
|
+
constraints: {
|
|
7571
|
+
rate_bucket: string;
|
|
7572
|
+
};
|
|
7573
|
+
effects: string[];
|
|
7574
|
+
risk: string;
|
|
7575
|
+
target_bindings: {
|
|
7576
|
+
resource_id: {
|
|
7577
|
+
source: "param";
|
|
7578
|
+
param: string;
|
|
7579
|
+
fallback_param: string;
|
|
7580
|
+
derive: "project_key";
|
|
7581
|
+
required?: undefined;
|
|
7582
|
+
key?: undefined;
|
|
7583
|
+
multi?: undefined;
|
|
7584
|
+
separator?: undefined;
|
|
7585
|
+
default?: undefined;
|
|
7586
|
+
};
|
|
7587
|
+
secondary?: undefined;
|
|
7588
|
+
};
|
|
7589
|
+
version: string;
|
|
7590
|
+
} | {
|
|
7591
|
+
action: string;
|
|
7592
|
+
resource_type: string;
|
|
7593
|
+
required_relations: string[];
|
|
7594
|
+
required_scopes: string[];
|
|
7595
|
+
capability: string;
|
|
7596
|
+
input_schema: {
|
|
7597
|
+
type: string;
|
|
7598
|
+
properties: {
|
|
7599
|
+
issueIdOrKey: {
|
|
7600
|
+
type: string;
|
|
7601
|
+
minLength: number;
|
|
7602
|
+
};
|
|
7603
|
+
transitionId: {
|
|
7604
|
+
type: string;
|
|
7605
|
+
minLength: number;
|
|
7606
|
+
};
|
|
7607
|
+
channel?: undefined;
|
|
7608
|
+
text?: undefined;
|
|
7609
|
+
thread_ts?: undefined;
|
|
7610
|
+
username?: undefined;
|
|
7611
|
+
icon_emoji?: undefined;
|
|
7612
|
+
blocks?: undefined;
|
|
7613
|
+
userId?: undefined;
|
|
7614
|
+
latest?: undefined;
|
|
7615
|
+
oldest?: undefined;
|
|
7616
|
+
limit?: undefined;
|
|
7617
|
+
inclusive?: undefined;
|
|
7618
|
+
cursor?: undefined;
|
|
7619
|
+
ts?: undefined;
|
|
7620
|
+
title?: undefined;
|
|
7621
|
+
body?: undefined;
|
|
7622
|
+
labels?: undefined;
|
|
7623
|
+
assignees?: undefined;
|
|
7624
|
+
state?: undefined;
|
|
7625
|
+
sort?: undefined;
|
|
7626
|
+
direction?: undefined;
|
|
7627
|
+
per_page?: undefined;
|
|
7628
|
+
page?: undefined;
|
|
7629
|
+
issue_number?: undefined;
|
|
7630
|
+
query?: undefined;
|
|
7631
|
+
maxResults?: undefined;
|
|
7632
|
+
messageId?: undefined;
|
|
7633
|
+
to?: undefined;
|
|
7634
|
+
subject?: undefined;
|
|
7635
|
+
cc?: undefined;
|
|
7636
|
+
bcc?: undefined;
|
|
7637
|
+
threadId?: undefined;
|
|
7638
|
+
inReplyTo?: undefined;
|
|
7639
|
+
references?: undefined;
|
|
7640
|
+
messageIds?: undefined;
|
|
7641
|
+
calendarId?: undefined;
|
|
7642
|
+
timeMin?: undefined;
|
|
7643
|
+
timeMax?: undefined;
|
|
7644
|
+
eventId?: undefined;
|
|
7645
|
+
summary?: undefined;
|
|
7646
|
+
description?: undefined;
|
|
7647
|
+
start?: undefined;
|
|
7648
|
+
end?: undefined;
|
|
7649
|
+
attendees?: undefined;
|
|
7650
|
+
location?: undefined;
|
|
7651
|
+
recent?: undefined;
|
|
7652
|
+
projectKeyOrId?: undefined;
|
|
7653
|
+
type?: undefined;
|
|
7654
|
+
boardId?: undefined;
|
|
7655
|
+
sprintId?: undefined;
|
|
7656
|
+
jql?: undefined;
|
|
7657
|
+
startAt?: undefined;
|
|
7658
|
+
projectKey?: undefined;
|
|
7659
|
+
issueTypeName?: undefined;
|
|
7660
|
+
priority?: undefined;
|
|
7661
|
+
assigneeAccountId?: undefined;
|
|
7662
|
+
file_path?: undefined;
|
|
7663
|
+
content?: undefined;
|
|
7664
|
+
command?: undefined;
|
|
7665
|
+
working_directory?: undefined;
|
|
7666
|
+
env_profile?: undefined;
|
|
7667
|
+
timeout_seconds?: undefined;
|
|
7668
|
+
};
|
|
7669
|
+
required: string[];
|
|
7670
|
+
additionalProperties: boolean;
|
|
7671
|
+
};
|
|
7672
|
+
constraints: {
|
|
7673
|
+
rate_bucket: string;
|
|
7674
|
+
};
|
|
7675
|
+
effects: string[];
|
|
7676
|
+
risk: string;
|
|
7677
|
+
target_bindings: {
|
|
7678
|
+
resource_id: {
|
|
7679
|
+
source: "param";
|
|
7680
|
+
param: string;
|
|
7681
|
+
fallback_param: string;
|
|
7682
|
+
derive: "project_key";
|
|
7683
|
+
required?: undefined;
|
|
7684
|
+
key?: undefined;
|
|
7685
|
+
multi?: undefined;
|
|
7686
|
+
separator?: undefined;
|
|
7687
|
+
default?: undefined;
|
|
7688
|
+
};
|
|
7689
|
+
secondary?: undefined;
|
|
7690
|
+
};
|
|
7691
|
+
version: string;
|
|
7692
|
+
} | {
|
|
7693
|
+
action: string;
|
|
7694
|
+
resource_type: string;
|
|
7695
|
+
required_relations: string[];
|
|
7696
|
+
required_scopes: string[];
|
|
7697
|
+
capability: string;
|
|
7698
|
+
input_schema: {
|
|
7699
|
+
type: string;
|
|
7700
|
+
properties: {
|
|
7701
|
+
projectKeyOrId: {
|
|
7702
|
+
type: string;
|
|
7703
|
+
};
|
|
7704
|
+
boardId: {
|
|
7705
|
+
type: string;
|
|
7706
|
+
minimum?: undefined;
|
|
7707
|
+
};
|
|
7708
|
+
sprintId: {
|
|
7709
|
+
type: string;
|
|
7710
|
+
minimum?: undefined;
|
|
7711
|
+
};
|
|
7712
|
+
jql: {
|
|
7713
|
+
type: string;
|
|
7714
|
+
minLength?: undefined;
|
|
7715
|
+
};
|
|
7716
|
+
channel?: undefined;
|
|
7717
|
+
text?: undefined;
|
|
7718
|
+
thread_ts?: undefined;
|
|
7719
|
+
username?: undefined;
|
|
7720
|
+
icon_emoji?: undefined;
|
|
7721
|
+
blocks?: undefined;
|
|
7722
|
+
userId?: undefined;
|
|
7723
|
+
latest?: undefined;
|
|
7724
|
+
oldest?: undefined;
|
|
7725
|
+
limit?: undefined;
|
|
7726
|
+
inclusive?: undefined;
|
|
7727
|
+
cursor?: undefined;
|
|
7728
|
+
ts?: undefined;
|
|
7729
|
+
title?: undefined;
|
|
7730
|
+
body?: undefined;
|
|
7731
|
+
labels?: undefined;
|
|
7732
|
+
assignees?: undefined;
|
|
7733
|
+
state?: undefined;
|
|
7734
|
+
sort?: undefined;
|
|
7735
|
+
direction?: undefined;
|
|
7736
|
+
per_page?: undefined;
|
|
7737
|
+
page?: undefined;
|
|
7738
|
+
issue_number?: undefined;
|
|
7739
|
+
query?: undefined;
|
|
7740
|
+
maxResults?: undefined;
|
|
7741
|
+
messageId?: undefined;
|
|
7742
|
+
to?: undefined;
|
|
7743
|
+
subject?: undefined;
|
|
7744
|
+
cc?: undefined;
|
|
7745
|
+
bcc?: undefined;
|
|
7746
|
+
threadId?: undefined;
|
|
7747
|
+
inReplyTo?: undefined;
|
|
7748
|
+
references?: undefined;
|
|
6952
7749
|
messageIds?: undefined;
|
|
6953
7750
|
calendarId?: undefined;
|
|
6954
7751
|
timeMin?: undefined;
|
|
@@ -6965,10 +7762,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6965
7762
|
startAt?: undefined;
|
|
6966
7763
|
issueIdOrKey?: undefined;
|
|
6967
7764
|
projectKey?: undefined;
|
|
6968
|
-
|
|
7765
|
+
issueTypeName?: undefined;
|
|
6969
7766
|
priority?: undefined;
|
|
6970
|
-
|
|
6971
|
-
|
|
7767
|
+
assigneeAccountId?: undefined;
|
|
7768
|
+
transitionId?: undefined;
|
|
6972
7769
|
file_path?: undefined;
|
|
6973
7770
|
content?: undefined;
|
|
6974
7771
|
command?: undefined;
|
|
@@ -6993,6 +7790,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6993
7790
|
multi?: undefined;
|
|
6994
7791
|
separator?: undefined;
|
|
6995
7792
|
default?: undefined;
|
|
7793
|
+
fallback_param?: undefined;
|
|
7794
|
+
derive?: undefined;
|
|
6996
7795
|
};
|
|
6997
7796
|
secondary?: undefined;
|
|
6998
7797
|
};
|
|
@@ -7020,6 +7819,7 @@ declare const ACTION_REGISTRY: {
|
|
|
7020
7819
|
oldest?: undefined;
|
|
7021
7820
|
limit?: undefined;
|
|
7022
7821
|
inclusive?: undefined;
|
|
7822
|
+
cursor?: undefined;
|
|
7023
7823
|
ts?: undefined;
|
|
7024
7824
|
title?: undefined;
|
|
7025
7825
|
body?: undefined;
|
|
@@ -7038,6 +7838,9 @@ declare const ACTION_REGISTRY: {
|
|
|
7038
7838
|
subject?: undefined;
|
|
7039
7839
|
cc?: undefined;
|
|
7040
7840
|
bcc?: undefined;
|
|
7841
|
+
threadId?: undefined;
|
|
7842
|
+
inReplyTo?: undefined;
|
|
7843
|
+
references?: undefined;
|
|
7041
7844
|
messageIds?: undefined;
|
|
7042
7845
|
calendarId?: undefined;
|
|
7043
7846
|
timeMin?: undefined;
|
|
@@ -7058,10 +7861,10 @@ declare const ACTION_REGISTRY: {
|
|
|
7058
7861
|
startAt?: undefined;
|
|
7059
7862
|
issueIdOrKey?: undefined;
|
|
7060
7863
|
projectKey?: undefined;
|
|
7061
|
-
|
|
7864
|
+
issueTypeName?: undefined;
|
|
7062
7865
|
priority?: undefined;
|
|
7063
|
-
|
|
7064
|
-
|
|
7866
|
+
assigneeAccountId?: undefined;
|
|
7867
|
+
transitionId?: undefined;
|
|
7065
7868
|
content?: undefined;
|
|
7066
7869
|
command?: undefined;
|
|
7067
7870
|
working_directory?: undefined;
|
|
@@ -7082,6 +7885,8 @@ declare const ACTION_REGISTRY: {
|
|
|
7082
7885
|
multi?: undefined;
|
|
7083
7886
|
separator?: undefined;
|
|
7084
7887
|
default?: undefined;
|
|
7888
|
+
fallback_param?: undefined;
|
|
7889
|
+
derive?: undefined;
|
|
7085
7890
|
};
|
|
7086
7891
|
secondary?: undefined;
|
|
7087
7892
|
};
|
|
@@ -7115,6 +7920,7 @@ declare const ACTION_REGISTRY: {
|
|
|
7115
7920
|
oldest?: undefined;
|
|
7116
7921
|
limit?: undefined;
|
|
7117
7922
|
inclusive?: undefined;
|
|
7923
|
+
cursor?: undefined;
|
|
7118
7924
|
ts?: undefined;
|
|
7119
7925
|
title?: undefined;
|
|
7120
7926
|
body?: undefined;
|
|
@@ -7133,6 +7939,9 @@ declare const ACTION_REGISTRY: {
|
|
|
7133
7939
|
subject?: undefined;
|
|
7134
7940
|
cc?: undefined;
|
|
7135
7941
|
bcc?: undefined;
|
|
7942
|
+
threadId?: undefined;
|
|
7943
|
+
inReplyTo?: undefined;
|
|
7944
|
+
references?: undefined;
|
|
7136
7945
|
messageIds?: undefined;
|
|
7137
7946
|
calendarId?: undefined;
|
|
7138
7947
|
timeMin?: undefined;
|
|
@@ -7153,10 +7962,10 @@ declare const ACTION_REGISTRY: {
|
|
|
7153
7962
|
startAt?: undefined;
|
|
7154
7963
|
issueIdOrKey?: undefined;
|
|
7155
7964
|
projectKey?: undefined;
|
|
7156
|
-
|
|
7965
|
+
issueTypeName?: undefined;
|
|
7157
7966
|
priority?: undefined;
|
|
7158
|
-
|
|
7159
|
-
|
|
7967
|
+
assigneeAccountId?: undefined;
|
|
7968
|
+
transitionId?: undefined;
|
|
7160
7969
|
command?: undefined;
|
|
7161
7970
|
working_directory?: undefined;
|
|
7162
7971
|
env_profile?: undefined;
|
|
@@ -7176,6 +7985,8 @@ declare const ACTION_REGISTRY: {
|
|
|
7176
7985
|
multi?: undefined;
|
|
7177
7986
|
separator?: undefined;
|
|
7178
7987
|
default?: undefined;
|
|
7988
|
+
fallback_param?: undefined;
|
|
7989
|
+
derive?: undefined;
|
|
7179
7990
|
};
|
|
7180
7991
|
secondary?: undefined;
|
|
7181
7992
|
};
|
|
@@ -7220,6 +8031,7 @@ declare const ACTION_REGISTRY: {
|
|
|
7220
8031
|
oldest?: undefined;
|
|
7221
8032
|
limit?: undefined;
|
|
7222
8033
|
inclusive?: undefined;
|
|
8034
|
+
cursor?: undefined;
|
|
7223
8035
|
ts?: undefined;
|
|
7224
8036
|
title?: undefined;
|
|
7225
8037
|
body?: undefined;
|
|
@@ -7238,6 +8050,9 @@ declare const ACTION_REGISTRY: {
|
|
|
7238
8050
|
subject?: undefined;
|
|
7239
8051
|
cc?: undefined;
|
|
7240
8052
|
bcc?: undefined;
|
|
8053
|
+
threadId?: undefined;
|
|
8054
|
+
inReplyTo?: undefined;
|
|
8055
|
+
references?: undefined;
|
|
7241
8056
|
messageIds?: undefined;
|
|
7242
8057
|
calendarId?: undefined;
|
|
7243
8058
|
timeMin?: undefined;
|
|
@@ -7258,10 +8073,10 @@ declare const ACTION_REGISTRY: {
|
|
|
7258
8073
|
startAt?: undefined;
|
|
7259
8074
|
issueIdOrKey?: undefined;
|
|
7260
8075
|
projectKey?: undefined;
|
|
7261
|
-
|
|
8076
|
+
issueTypeName?: undefined;
|
|
7262
8077
|
priority?: undefined;
|
|
7263
|
-
|
|
7264
|
-
|
|
8078
|
+
assigneeAccountId?: undefined;
|
|
8079
|
+
transitionId?: undefined;
|
|
7265
8080
|
file_path?: undefined;
|
|
7266
8081
|
content?: undefined;
|
|
7267
8082
|
};
|
|
@@ -7279,6 +8094,8 @@ declare const ACTION_REGISTRY: {
|
|
|
7279
8094
|
multi?: undefined;
|
|
7280
8095
|
separator?: undefined;
|
|
7281
8096
|
default?: undefined;
|
|
8097
|
+
fallback_param?: undefined;
|
|
8098
|
+
derive?: undefined;
|
|
7282
8099
|
};
|
|
7283
8100
|
secondary?: undefined;
|
|
7284
8101
|
};
|
|
@@ -7701,6 +8518,14 @@ declare function getKeyIdFromDid(did: string): string;
|
|
|
7701
8518
|
*/
|
|
7702
8519
|
declare function publicKeysMatch(a: Record<string, unknown>, b: Record<string, unknown>): boolean;
|
|
7703
8520
|
|
|
8521
|
+
/**
|
|
8522
|
+
* Extract the project key from a Jira issue key.
|
|
8523
|
+
* Returns the project prefix (e.g., "AIDENTITY" from "AIDENTITY-35") or null if not a valid issue key.
|
|
8524
|
+
*
|
|
8525
|
+
* @remarks Project keys must be at least 2 uppercase characters, matching Jira's requirement.
|
|
8526
|
+
* Single-letter keys (e.g., "A-1") return null.
|
|
8527
|
+
*/
|
|
8528
|
+
declare function extractProjectKey(value: string): string | null;
|
|
7704
8529
|
/**
|
|
7705
8530
|
* TargetResolver — extracts resource IDs and secondary targets from tool parameters.
|
|
7706
8531
|
*
|
|
@@ -7749,4 +8574,4 @@ declare function getTierLimits(tier: string | undefined | null): TierLimits;
|
|
|
7749
8574
|
|
|
7750
8575
|
declare const version = "0.0.1";
|
|
7751
8576
|
|
|
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 };
|
|
8577
|
+
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 };
|