@vess-id/ai-identity 0.5.0-alpha.6 → 0.5.0-alpha.8
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 +670 -97
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +328 -37
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +325 -37
- package/dist/index.mjs.map +1 -1
- package/dist/registry/action-registry-json.d.ts +657 -96
- package/dist/registry/action-registry-json.d.ts.map +1 -1
- package/dist/registry/action-summary.d.ts +8 -0
- package/dist/registry/action-summary.d.ts.map +1 -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).
|
|
@@ -4264,10 +4268,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4264
4268
|
startAt?: undefined;
|
|
4265
4269
|
issueIdOrKey?: undefined;
|
|
4266
4270
|
projectKey?: undefined;
|
|
4267
|
-
|
|
4271
|
+
issueTypeName?: undefined;
|
|
4268
4272
|
priority?: undefined;
|
|
4269
|
-
|
|
4270
|
-
|
|
4273
|
+
assigneeAccountId?: undefined;
|
|
4274
|
+
transitionId?: undefined;
|
|
4271
4275
|
file_path?: undefined;
|
|
4272
4276
|
content?: undefined;
|
|
4273
4277
|
command?: undefined;
|
|
@@ -4292,6 +4296,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4292
4296
|
multi?: undefined;
|
|
4293
4297
|
separator?: undefined;
|
|
4294
4298
|
default?: undefined;
|
|
4299
|
+
fallback_param?: undefined;
|
|
4300
|
+
derive?: undefined;
|
|
4295
4301
|
};
|
|
4296
4302
|
secondary?: undefined;
|
|
4297
4303
|
};
|
|
@@ -4354,10 +4360,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4354
4360
|
startAt?: undefined;
|
|
4355
4361
|
issueIdOrKey?: undefined;
|
|
4356
4362
|
projectKey?: undefined;
|
|
4357
|
-
|
|
4363
|
+
issueTypeName?: undefined;
|
|
4358
4364
|
priority?: undefined;
|
|
4359
|
-
|
|
4360
|
-
|
|
4365
|
+
assigneeAccountId?: undefined;
|
|
4366
|
+
transitionId?: undefined;
|
|
4361
4367
|
file_path?: undefined;
|
|
4362
4368
|
content?: undefined;
|
|
4363
4369
|
command?: undefined;
|
|
@@ -4382,6 +4388,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4382
4388
|
multi?: undefined;
|
|
4383
4389
|
separator?: undefined;
|
|
4384
4390
|
default?: undefined;
|
|
4391
|
+
fallback_param?: undefined;
|
|
4392
|
+
derive?: undefined;
|
|
4385
4393
|
};
|
|
4386
4394
|
secondary?: undefined;
|
|
4387
4395
|
};
|
|
@@ -4447,10 +4455,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4447
4455
|
startAt?: undefined;
|
|
4448
4456
|
issueIdOrKey?: undefined;
|
|
4449
4457
|
projectKey?: undefined;
|
|
4450
|
-
|
|
4458
|
+
issueTypeName?: undefined;
|
|
4451
4459
|
priority?: undefined;
|
|
4452
|
-
|
|
4453
|
-
|
|
4460
|
+
assigneeAccountId?: undefined;
|
|
4461
|
+
transitionId?: undefined;
|
|
4454
4462
|
file_path?: undefined;
|
|
4455
4463
|
content?: undefined;
|
|
4456
4464
|
command?: undefined;
|
|
@@ -4475,6 +4483,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4475
4483
|
multi?: undefined;
|
|
4476
4484
|
separator?: undefined;
|
|
4477
4485
|
default?: undefined;
|
|
4486
|
+
fallback_param?: undefined;
|
|
4487
|
+
derive?: undefined;
|
|
4478
4488
|
};
|
|
4479
4489
|
secondary?: undefined;
|
|
4480
4490
|
};
|
|
@@ -4550,10 +4560,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4550
4560
|
startAt?: undefined;
|
|
4551
4561
|
issueIdOrKey?: undefined;
|
|
4552
4562
|
projectKey?: undefined;
|
|
4553
|
-
|
|
4563
|
+
issueTypeName?: undefined;
|
|
4554
4564
|
priority?: undefined;
|
|
4555
|
-
|
|
4556
|
-
|
|
4565
|
+
assigneeAccountId?: undefined;
|
|
4566
|
+
transitionId?: undefined;
|
|
4557
4567
|
file_path?: undefined;
|
|
4558
4568
|
content?: undefined;
|
|
4559
4569
|
command?: undefined;
|
|
@@ -4578,6 +4588,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4578
4588
|
multi?: undefined;
|
|
4579
4589
|
separator?: undefined;
|
|
4580
4590
|
default?: undefined;
|
|
4591
|
+
fallback_param?: undefined;
|
|
4592
|
+
derive?: undefined;
|
|
4581
4593
|
};
|
|
4582
4594
|
secondary?: undefined;
|
|
4583
4595
|
};
|
|
@@ -4647,10 +4659,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4647
4659
|
startAt?: undefined;
|
|
4648
4660
|
issueIdOrKey?: undefined;
|
|
4649
4661
|
projectKey?: undefined;
|
|
4650
|
-
|
|
4662
|
+
issueTypeName?: undefined;
|
|
4651
4663
|
priority?: undefined;
|
|
4652
|
-
|
|
4653
|
-
|
|
4664
|
+
assigneeAccountId?: undefined;
|
|
4665
|
+
transitionId?: undefined;
|
|
4654
4666
|
file_path?: undefined;
|
|
4655
4667
|
content?: undefined;
|
|
4656
4668
|
command?: undefined;
|
|
@@ -4675,6 +4687,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4675
4687
|
multi?: undefined;
|
|
4676
4688
|
separator?: undefined;
|
|
4677
4689
|
default?: undefined;
|
|
4690
|
+
fallback_param?: undefined;
|
|
4691
|
+
derive?: undefined;
|
|
4678
4692
|
};
|
|
4679
4693
|
secondary?: undefined;
|
|
4680
4694
|
};
|
|
@@ -4747,10 +4761,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4747
4761
|
startAt?: undefined;
|
|
4748
4762
|
issueIdOrKey?: undefined;
|
|
4749
4763
|
projectKey?: undefined;
|
|
4750
|
-
|
|
4764
|
+
issueTypeName?: undefined;
|
|
4751
4765
|
priority?: undefined;
|
|
4752
|
-
|
|
4753
|
-
|
|
4766
|
+
assigneeAccountId?: undefined;
|
|
4767
|
+
transitionId?: undefined;
|
|
4754
4768
|
file_path?: undefined;
|
|
4755
4769
|
content?: undefined;
|
|
4756
4770
|
command?: undefined;
|
|
@@ -4775,6 +4789,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4775
4789
|
multi?: undefined;
|
|
4776
4790
|
separator?: undefined;
|
|
4777
4791
|
default?: undefined;
|
|
4792
|
+
fallback_param?: undefined;
|
|
4793
|
+
derive?: undefined;
|
|
4778
4794
|
};
|
|
4779
4795
|
secondary?: undefined;
|
|
4780
4796
|
};
|
|
@@ -4843,10 +4859,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4843
4859
|
startAt?: undefined;
|
|
4844
4860
|
issueIdOrKey?: undefined;
|
|
4845
4861
|
projectKey?: undefined;
|
|
4846
|
-
|
|
4862
|
+
issueTypeName?: undefined;
|
|
4847
4863
|
priority?: undefined;
|
|
4848
|
-
|
|
4849
|
-
|
|
4864
|
+
assigneeAccountId?: undefined;
|
|
4865
|
+
transitionId?: undefined;
|
|
4850
4866
|
file_path?: undefined;
|
|
4851
4867
|
content?: undefined;
|
|
4852
4868
|
command?: undefined;
|
|
@@ -4871,6 +4887,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4871
4887
|
multi?: undefined;
|
|
4872
4888
|
separator?: undefined;
|
|
4873
4889
|
default?: undefined;
|
|
4890
|
+
fallback_param?: undefined;
|
|
4891
|
+
derive?: undefined;
|
|
4874
4892
|
};
|
|
4875
4893
|
secondary?: undefined;
|
|
4876
4894
|
};
|
|
@@ -4949,10 +4967,10 @@ declare const ACTION_REGISTRY: {
|
|
|
4949
4967
|
startAt?: undefined;
|
|
4950
4968
|
issueIdOrKey?: undefined;
|
|
4951
4969
|
projectKey?: undefined;
|
|
4952
|
-
|
|
4970
|
+
issueTypeName?: undefined;
|
|
4953
4971
|
priority?: undefined;
|
|
4954
|
-
|
|
4955
|
-
|
|
4972
|
+
assigneeAccountId?: undefined;
|
|
4973
|
+
transitionId?: undefined;
|
|
4956
4974
|
file_path?: undefined;
|
|
4957
4975
|
content?: undefined;
|
|
4958
4976
|
command?: undefined;
|
|
@@ -4977,6 +4995,8 @@ declare const ACTION_REGISTRY: {
|
|
|
4977
4995
|
multi?: undefined;
|
|
4978
4996
|
separator?: undefined;
|
|
4979
4997
|
default?: undefined;
|
|
4998
|
+
fallback_param?: undefined;
|
|
4999
|
+
derive?: undefined;
|
|
4980
5000
|
};
|
|
4981
5001
|
secondary?: undefined;
|
|
4982
5002
|
};
|
|
@@ -5058,10 +5078,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5058
5078
|
startAt?: undefined;
|
|
5059
5079
|
issueIdOrKey?: undefined;
|
|
5060
5080
|
projectKey?: undefined;
|
|
5061
|
-
|
|
5081
|
+
issueTypeName?: undefined;
|
|
5062
5082
|
priority?: undefined;
|
|
5063
|
-
|
|
5064
|
-
|
|
5083
|
+
assigneeAccountId?: undefined;
|
|
5084
|
+
transitionId?: undefined;
|
|
5065
5085
|
file_path?: undefined;
|
|
5066
5086
|
content?: undefined;
|
|
5067
5087
|
command?: undefined;
|
|
@@ -5086,6 +5106,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5086
5106
|
multi?: undefined;
|
|
5087
5107
|
separator?: undefined;
|
|
5088
5108
|
default?: undefined;
|
|
5109
|
+
fallback_param?: undefined;
|
|
5110
|
+
derive?: undefined;
|
|
5089
5111
|
};
|
|
5090
5112
|
secondary?: undefined;
|
|
5091
5113
|
};
|
|
@@ -5151,10 +5173,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5151
5173
|
startAt?: undefined;
|
|
5152
5174
|
issueIdOrKey?: undefined;
|
|
5153
5175
|
projectKey?: undefined;
|
|
5154
|
-
|
|
5176
|
+
issueTypeName?: undefined;
|
|
5155
5177
|
priority?: undefined;
|
|
5156
|
-
|
|
5157
|
-
|
|
5178
|
+
assigneeAccountId?: undefined;
|
|
5179
|
+
transitionId?: undefined;
|
|
5158
5180
|
file_path?: undefined;
|
|
5159
5181
|
content?: undefined;
|
|
5160
5182
|
command?: undefined;
|
|
@@ -5179,6 +5201,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5179
5201
|
multi?: undefined;
|
|
5180
5202
|
separator?: undefined;
|
|
5181
5203
|
default?: undefined;
|
|
5204
|
+
fallback_param?: undefined;
|
|
5205
|
+
derive?: undefined;
|
|
5182
5206
|
};
|
|
5183
5207
|
secondary?: undefined;
|
|
5184
5208
|
};
|
|
@@ -5263,10 +5287,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5263
5287
|
startAt?: undefined;
|
|
5264
5288
|
issueIdOrKey?: undefined;
|
|
5265
5289
|
projectKey?: undefined;
|
|
5266
|
-
|
|
5290
|
+
issueTypeName?: undefined;
|
|
5267
5291
|
priority?: undefined;
|
|
5268
|
-
|
|
5269
|
-
|
|
5292
|
+
assigneeAccountId?: undefined;
|
|
5293
|
+
transitionId?: undefined;
|
|
5270
5294
|
file_path?: undefined;
|
|
5271
5295
|
content?: undefined;
|
|
5272
5296
|
command?: undefined;
|
|
@@ -5291,6 +5315,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5291
5315
|
multi?: undefined;
|
|
5292
5316
|
separator?: undefined;
|
|
5293
5317
|
default?: undefined;
|
|
5318
|
+
fallback_param?: undefined;
|
|
5319
|
+
derive?: undefined;
|
|
5294
5320
|
};
|
|
5295
5321
|
secondary?: undefined;
|
|
5296
5322
|
};
|
|
@@ -5312,6 +5338,7 @@ declare const ACTION_REGISTRY: {
|
|
|
5312
5338
|
type: string;
|
|
5313
5339
|
minimum: number;
|
|
5314
5340
|
maximum: number;
|
|
5341
|
+
description?: undefined;
|
|
5315
5342
|
};
|
|
5316
5343
|
channel?: undefined;
|
|
5317
5344
|
text?: undefined;
|
|
@@ -5360,10 +5387,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5360
5387
|
startAt?: undefined;
|
|
5361
5388
|
issueIdOrKey?: undefined;
|
|
5362
5389
|
projectKey?: undefined;
|
|
5363
|
-
|
|
5390
|
+
issueTypeName?: undefined;
|
|
5364
5391
|
priority?: undefined;
|
|
5365
|
-
|
|
5366
|
-
|
|
5392
|
+
assigneeAccountId?: undefined;
|
|
5393
|
+
transitionId?: undefined;
|
|
5367
5394
|
file_path?: undefined;
|
|
5368
5395
|
content?: undefined;
|
|
5369
5396
|
command?: undefined;
|
|
@@ -5388,6 +5415,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5388
5415
|
multi?: undefined;
|
|
5389
5416
|
separator?: undefined;
|
|
5390
5417
|
default?: undefined;
|
|
5418
|
+
fallback_param?: undefined;
|
|
5419
|
+
derive?: undefined;
|
|
5391
5420
|
};
|
|
5392
5421
|
secondary?: undefined;
|
|
5393
5422
|
};
|
|
@@ -5453,10 +5482,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5453
5482
|
startAt?: undefined;
|
|
5454
5483
|
issueIdOrKey?: undefined;
|
|
5455
5484
|
projectKey?: undefined;
|
|
5456
|
-
|
|
5485
|
+
issueTypeName?: undefined;
|
|
5457
5486
|
priority?: undefined;
|
|
5458
|
-
|
|
5459
|
-
|
|
5487
|
+
assigneeAccountId?: undefined;
|
|
5488
|
+
transitionId?: undefined;
|
|
5460
5489
|
file_path?: undefined;
|
|
5461
5490
|
content?: undefined;
|
|
5462
5491
|
command?: undefined;
|
|
@@ -5481,6 +5510,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5481
5510
|
multi?: undefined;
|
|
5482
5511
|
separator?: undefined;
|
|
5483
5512
|
default?: undefined;
|
|
5513
|
+
fallback_param?: undefined;
|
|
5514
|
+
derive?: undefined;
|
|
5484
5515
|
};
|
|
5485
5516
|
secondary?: undefined;
|
|
5486
5517
|
};
|
|
@@ -5556,10 +5587,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5556
5587
|
startAt?: undefined;
|
|
5557
5588
|
issueIdOrKey?: undefined;
|
|
5558
5589
|
projectKey?: undefined;
|
|
5559
|
-
|
|
5590
|
+
issueTypeName?: undefined;
|
|
5560
5591
|
priority?: undefined;
|
|
5561
|
-
|
|
5562
|
-
|
|
5592
|
+
assigneeAccountId?: undefined;
|
|
5593
|
+
transitionId?: undefined;
|
|
5563
5594
|
file_path?: undefined;
|
|
5564
5595
|
content?: undefined;
|
|
5565
5596
|
command?: undefined;
|
|
@@ -5584,6 +5615,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5584
5615
|
required?: undefined;
|
|
5585
5616
|
key?: undefined;
|
|
5586
5617
|
default?: undefined;
|
|
5618
|
+
fallback_param?: undefined;
|
|
5619
|
+
derive?: undefined;
|
|
5587
5620
|
};
|
|
5588
5621
|
secondary: {
|
|
5589
5622
|
name: string;
|
|
@@ -5661,10 +5694,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5661
5694
|
startAt?: undefined;
|
|
5662
5695
|
issueIdOrKey?: undefined;
|
|
5663
5696
|
projectKey?: undefined;
|
|
5664
|
-
|
|
5697
|
+
issueTypeName?: undefined;
|
|
5665
5698
|
priority?: undefined;
|
|
5666
|
-
|
|
5667
|
-
|
|
5699
|
+
assigneeAccountId?: undefined;
|
|
5700
|
+
transitionId?: undefined;
|
|
5668
5701
|
file_path?: undefined;
|
|
5669
5702
|
content?: undefined;
|
|
5670
5703
|
command?: undefined;
|
|
@@ -5689,6 +5722,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5689
5722
|
multi?: undefined;
|
|
5690
5723
|
separator?: undefined;
|
|
5691
5724
|
default?: undefined;
|
|
5725
|
+
fallback_param?: undefined;
|
|
5726
|
+
derive?: undefined;
|
|
5692
5727
|
};
|
|
5693
5728
|
secondary?: undefined;
|
|
5694
5729
|
};
|
|
@@ -5704,17 +5739,21 @@ declare const ACTION_REGISTRY: {
|
|
|
5704
5739
|
properties: {
|
|
5705
5740
|
calendarId: {
|
|
5706
5741
|
type: string;
|
|
5742
|
+
description: string;
|
|
5707
5743
|
};
|
|
5708
5744
|
timeMin: {
|
|
5709
5745
|
type: string;
|
|
5746
|
+
description: string;
|
|
5710
5747
|
};
|
|
5711
5748
|
timeMax: {
|
|
5712
5749
|
type: string;
|
|
5750
|
+
description: string;
|
|
5713
5751
|
};
|
|
5714
5752
|
maxResults: {
|
|
5715
5753
|
type: string;
|
|
5716
5754
|
minimum: number;
|
|
5717
5755
|
maximum: number;
|
|
5756
|
+
description: string;
|
|
5718
5757
|
};
|
|
5719
5758
|
channel?: undefined;
|
|
5720
5759
|
text?: undefined;
|
|
@@ -5761,10 +5800,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5761
5800
|
startAt?: undefined;
|
|
5762
5801
|
issueIdOrKey?: undefined;
|
|
5763
5802
|
projectKey?: undefined;
|
|
5764
|
-
|
|
5803
|
+
issueTypeName?: undefined;
|
|
5765
5804
|
priority?: undefined;
|
|
5766
|
-
|
|
5767
|
-
|
|
5805
|
+
assigneeAccountId?: undefined;
|
|
5806
|
+
transitionId?: undefined;
|
|
5768
5807
|
file_path?: undefined;
|
|
5769
5808
|
content?: undefined;
|
|
5770
5809
|
command?: undefined;
|
|
@@ -5789,6 +5828,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5789
5828
|
key?: undefined;
|
|
5790
5829
|
multi?: undefined;
|
|
5791
5830
|
separator?: undefined;
|
|
5831
|
+
fallback_param?: undefined;
|
|
5832
|
+
derive?: undefined;
|
|
5792
5833
|
};
|
|
5793
5834
|
secondary?: undefined;
|
|
5794
5835
|
};
|
|
@@ -5804,10 +5845,12 @@ declare const ACTION_REGISTRY: {
|
|
|
5804
5845
|
properties: {
|
|
5805
5846
|
calendarId: {
|
|
5806
5847
|
type: string;
|
|
5848
|
+
description?: undefined;
|
|
5807
5849
|
};
|
|
5808
5850
|
eventId: {
|
|
5809
5851
|
type: string;
|
|
5810
5852
|
minLength: number;
|
|
5853
|
+
description?: undefined;
|
|
5811
5854
|
};
|
|
5812
5855
|
channel?: undefined;
|
|
5813
5856
|
text?: undefined;
|
|
@@ -5856,10 +5899,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5856
5899
|
startAt?: undefined;
|
|
5857
5900
|
issueIdOrKey?: undefined;
|
|
5858
5901
|
projectKey?: undefined;
|
|
5859
|
-
|
|
5902
|
+
issueTypeName?: undefined;
|
|
5860
5903
|
priority?: undefined;
|
|
5861
|
-
|
|
5862
|
-
|
|
5904
|
+
assigneeAccountId?: undefined;
|
|
5905
|
+
transitionId?: undefined;
|
|
5863
5906
|
file_path?: undefined;
|
|
5864
5907
|
content?: undefined;
|
|
5865
5908
|
command?: undefined;
|
|
@@ -5884,6 +5927,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5884
5927
|
multi?: undefined;
|
|
5885
5928
|
separator?: undefined;
|
|
5886
5929
|
default?: undefined;
|
|
5930
|
+
fallback_param?: undefined;
|
|
5931
|
+
derive?: undefined;
|
|
5887
5932
|
};
|
|
5888
5933
|
secondary?: undefined;
|
|
5889
5934
|
};
|
|
@@ -5899,25 +5944,68 @@ declare const ACTION_REGISTRY: {
|
|
|
5899
5944
|
properties: {
|
|
5900
5945
|
calendarId: {
|
|
5901
5946
|
type: string;
|
|
5947
|
+
description: string;
|
|
5902
5948
|
};
|
|
5903
5949
|
summary: {
|
|
5904
5950
|
type: string;
|
|
5905
5951
|
minLength: number;
|
|
5952
|
+
description: string;
|
|
5906
5953
|
};
|
|
5907
5954
|
description: {
|
|
5908
5955
|
type: string;
|
|
5956
|
+
description: string;
|
|
5909
5957
|
};
|
|
5910
5958
|
start: {
|
|
5911
5959
|
type: string;
|
|
5960
|
+
description: string;
|
|
5961
|
+
properties: {
|
|
5962
|
+
dateTime: {
|
|
5963
|
+
type: string;
|
|
5964
|
+
description: string;
|
|
5965
|
+
};
|
|
5966
|
+
date: {
|
|
5967
|
+
type: string;
|
|
5968
|
+
description: string;
|
|
5969
|
+
};
|
|
5970
|
+
timeZone: {
|
|
5971
|
+
type: string;
|
|
5972
|
+
description: string;
|
|
5973
|
+
};
|
|
5974
|
+
};
|
|
5912
5975
|
};
|
|
5913
5976
|
end: {
|
|
5914
5977
|
type: string;
|
|
5978
|
+
description: string;
|
|
5979
|
+
properties: {
|
|
5980
|
+
dateTime: {
|
|
5981
|
+
type: string;
|
|
5982
|
+
description: string;
|
|
5983
|
+
};
|
|
5984
|
+
date: {
|
|
5985
|
+
type: string;
|
|
5986
|
+
description: string;
|
|
5987
|
+
};
|
|
5988
|
+
timeZone: {
|
|
5989
|
+
type: string;
|
|
5990
|
+
description: string;
|
|
5991
|
+
};
|
|
5992
|
+
};
|
|
5915
5993
|
};
|
|
5916
5994
|
attendees: {
|
|
5917
5995
|
type: string;
|
|
5996
|
+
description: string;
|
|
5997
|
+
items: {
|
|
5998
|
+
type: string;
|
|
5999
|
+
properties: {
|
|
6000
|
+
email: {
|
|
6001
|
+
type: string;
|
|
6002
|
+
};
|
|
6003
|
+
};
|
|
6004
|
+
};
|
|
5918
6005
|
};
|
|
5919
6006
|
location: {
|
|
5920
6007
|
type: string;
|
|
6008
|
+
description: string;
|
|
5921
6009
|
};
|
|
5922
6010
|
channel?: undefined;
|
|
5923
6011
|
text?: undefined;
|
|
@@ -5961,10 +6049,10 @@ declare const ACTION_REGISTRY: {
|
|
|
5961
6049
|
startAt?: undefined;
|
|
5962
6050
|
issueIdOrKey?: undefined;
|
|
5963
6051
|
projectKey?: undefined;
|
|
5964
|
-
|
|
6052
|
+
issueTypeName?: undefined;
|
|
5965
6053
|
priority?: undefined;
|
|
5966
|
-
|
|
5967
|
-
|
|
6054
|
+
assigneeAccountId?: undefined;
|
|
6055
|
+
transitionId?: undefined;
|
|
5968
6056
|
file_path?: undefined;
|
|
5969
6057
|
content?: undefined;
|
|
5970
6058
|
command?: undefined;
|
|
@@ -5989,6 +6077,8 @@ declare const ACTION_REGISTRY: {
|
|
|
5989
6077
|
key?: undefined;
|
|
5990
6078
|
multi?: undefined;
|
|
5991
6079
|
separator?: undefined;
|
|
6080
|
+
fallback_param?: undefined;
|
|
6081
|
+
derive?: undefined;
|
|
5992
6082
|
};
|
|
5993
6083
|
secondary: {
|
|
5994
6084
|
name: string;
|
|
@@ -6011,29 +6101,73 @@ declare const ACTION_REGISTRY: {
|
|
|
6011
6101
|
properties: {
|
|
6012
6102
|
calendarId: {
|
|
6013
6103
|
type: string;
|
|
6104
|
+
description: string;
|
|
6014
6105
|
};
|
|
6015
6106
|
eventId: {
|
|
6016
6107
|
type: string;
|
|
6017
6108
|
minLength: number;
|
|
6109
|
+
description: string;
|
|
6018
6110
|
};
|
|
6019
6111
|
summary: {
|
|
6020
6112
|
type: string;
|
|
6113
|
+
description: string;
|
|
6021
6114
|
minLength?: undefined;
|
|
6022
6115
|
};
|
|
6023
6116
|
description: {
|
|
6024
6117
|
type: string;
|
|
6118
|
+
description: string;
|
|
6025
6119
|
};
|
|
6026
6120
|
start: {
|
|
6027
6121
|
type: string;
|
|
6122
|
+
description: string;
|
|
6123
|
+
properties: {
|
|
6124
|
+
dateTime: {
|
|
6125
|
+
type: string;
|
|
6126
|
+
description: string;
|
|
6127
|
+
};
|
|
6128
|
+
date: {
|
|
6129
|
+
type: string;
|
|
6130
|
+
description: string;
|
|
6131
|
+
};
|
|
6132
|
+
timeZone: {
|
|
6133
|
+
type: string;
|
|
6134
|
+
description: string;
|
|
6135
|
+
};
|
|
6136
|
+
};
|
|
6028
6137
|
};
|
|
6029
6138
|
end: {
|
|
6030
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
|
+
};
|
|
6031
6155
|
};
|
|
6032
6156
|
attendees: {
|
|
6033
6157
|
type: string;
|
|
6158
|
+
description: string;
|
|
6159
|
+
items: {
|
|
6160
|
+
type: string;
|
|
6161
|
+
properties: {
|
|
6162
|
+
email: {
|
|
6163
|
+
type: string;
|
|
6164
|
+
};
|
|
6165
|
+
};
|
|
6166
|
+
};
|
|
6034
6167
|
};
|
|
6035
6168
|
location: {
|
|
6036
6169
|
type: string;
|
|
6170
|
+
description: string;
|
|
6037
6171
|
};
|
|
6038
6172
|
channel?: undefined;
|
|
6039
6173
|
text?: undefined;
|
|
@@ -6076,10 +6210,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6076
6210
|
startAt?: undefined;
|
|
6077
6211
|
issueIdOrKey?: undefined;
|
|
6078
6212
|
projectKey?: undefined;
|
|
6079
|
-
|
|
6213
|
+
issueTypeName?: undefined;
|
|
6080
6214
|
priority?: undefined;
|
|
6081
|
-
|
|
6082
|
-
|
|
6215
|
+
assigneeAccountId?: undefined;
|
|
6216
|
+
transitionId?: undefined;
|
|
6083
6217
|
file_path?: undefined;
|
|
6084
6218
|
content?: undefined;
|
|
6085
6219
|
command?: undefined;
|
|
@@ -6099,11 +6233,13 @@ declare const ACTION_REGISTRY: {
|
|
|
6099
6233
|
resource_id: {
|
|
6100
6234
|
source: "param";
|
|
6101
6235
|
param: string;
|
|
6236
|
+
default: string;
|
|
6102
6237
|
required?: undefined;
|
|
6103
6238
|
key?: undefined;
|
|
6104
6239
|
multi?: undefined;
|
|
6105
6240
|
separator?: undefined;
|
|
6106
|
-
|
|
6241
|
+
fallback_param?: undefined;
|
|
6242
|
+
derive?: undefined;
|
|
6107
6243
|
};
|
|
6108
6244
|
secondary: {
|
|
6109
6245
|
name: string;
|
|
@@ -6115,6 +6251,105 @@ declare const ACTION_REGISTRY: {
|
|
|
6115
6251
|
}[];
|
|
6116
6252
|
};
|
|
6117
6253
|
version: string;
|
|
6254
|
+
} | {
|
|
6255
|
+
action: string;
|
|
6256
|
+
resource_type: string;
|
|
6257
|
+
required_relations: string[];
|
|
6258
|
+
required_scopes: string[];
|
|
6259
|
+
capability: string;
|
|
6260
|
+
input_schema: {
|
|
6261
|
+
type: string;
|
|
6262
|
+
properties: {
|
|
6263
|
+
calendarId: {
|
|
6264
|
+
type: string;
|
|
6265
|
+
description?: undefined;
|
|
6266
|
+
};
|
|
6267
|
+
eventId: {
|
|
6268
|
+
type: string;
|
|
6269
|
+
minLength: number;
|
|
6270
|
+
description?: undefined;
|
|
6271
|
+
};
|
|
6272
|
+
channel?: undefined;
|
|
6273
|
+
text?: undefined;
|
|
6274
|
+
thread_ts?: undefined;
|
|
6275
|
+
username?: undefined;
|
|
6276
|
+
icon_emoji?: undefined;
|
|
6277
|
+
blocks?: undefined;
|
|
6278
|
+
userId?: undefined;
|
|
6279
|
+
latest?: undefined;
|
|
6280
|
+
oldest?: undefined;
|
|
6281
|
+
limit?: undefined;
|
|
6282
|
+
inclusive?: undefined;
|
|
6283
|
+
ts?: undefined;
|
|
6284
|
+
title?: undefined;
|
|
6285
|
+
body?: undefined;
|
|
6286
|
+
labels?: undefined;
|
|
6287
|
+
assignees?: undefined;
|
|
6288
|
+
state?: undefined;
|
|
6289
|
+
sort?: undefined;
|
|
6290
|
+
direction?: undefined;
|
|
6291
|
+
per_page?: undefined;
|
|
6292
|
+
page?: undefined;
|
|
6293
|
+
issue_number?: undefined;
|
|
6294
|
+
query?: undefined;
|
|
6295
|
+
maxResults?: undefined;
|
|
6296
|
+
messageId?: undefined;
|
|
6297
|
+
to?: undefined;
|
|
6298
|
+
subject?: undefined;
|
|
6299
|
+
cc?: undefined;
|
|
6300
|
+
bcc?: undefined;
|
|
6301
|
+
messageIds?: undefined;
|
|
6302
|
+
timeMin?: undefined;
|
|
6303
|
+
timeMax?: undefined;
|
|
6304
|
+
summary?: undefined;
|
|
6305
|
+
description?: undefined;
|
|
6306
|
+
start?: undefined;
|
|
6307
|
+
end?: undefined;
|
|
6308
|
+
attendees?: undefined;
|
|
6309
|
+
location?: undefined;
|
|
6310
|
+
recent?: undefined;
|
|
6311
|
+
projectKeyOrId?: undefined;
|
|
6312
|
+
type?: undefined;
|
|
6313
|
+
boardId?: undefined;
|
|
6314
|
+
sprintId?: undefined;
|
|
6315
|
+
jql?: undefined;
|
|
6316
|
+
startAt?: undefined;
|
|
6317
|
+
issueIdOrKey?: undefined;
|
|
6318
|
+
projectKey?: undefined;
|
|
6319
|
+
issueTypeName?: undefined;
|
|
6320
|
+
priority?: undefined;
|
|
6321
|
+
assigneeAccountId?: undefined;
|
|
6322
|
+
transitionId?: undefined;
|
|
6323
|
+
file_path?: undefined;
|
|
6324
|
+
content?: undefined;
|
|
6325
|
+
command?: undefined;
|
|
6326
|
+
working_directory?: undefined;
|
|
6327
|
+
env_profile?: undefined;
|
|
6328
|
+
timeout_seconds?: undefined;
|
|
6329
|
+
};
|
|
6330
|
+
required: string[];
|
|
6331
|
+
additionalProperties: boolean;
|
|
6332
|
+
};
|
|
6333
|
+
constraints: {
|
|
6334
|
+
rate_bucket: string;
|
|
6335
|
+
};
|
|
6336
|
+
effects: string[];
|
|
6337
|
+
risk: string;
|
|
6338
|
+
target_bindings: {
|
|
6339
|
+
resource_id: {
|
|
6340
|
+
source: "param";
|
|
6341
|
+
param: string;
|
|
6342
|
+
default: string;
|
|
6343
|
+
required?: undefined;
|
|
6344
|
+
key?: undefined;
|
|
6345
|
+
multi?: undefined;
|
|
6346
|
+
separator?: undefined;
|
|
6347
|
+
fallback_param?: undefined;
|
|
6348
|
+
derive?: undefined;
|
|
6349
|
+
};
|
|
6350
|
+
secondary?: undefined;
|
|
6351
|
+
};
|
|
6352
|
+
version: string;
|
|
6118
6353
|
} | {
|
|
6119
6354
|
action: string;
|
|
6120
6355
|
resource_type: string;
|
|
@@ -6175,10 +6410,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6175
6410
|
startAt?: undefined;
|
|
6176
6411
|
issueIdOrKey?: undefined;
|
|
6177
6412
|
projectKey?: undefined;
|
|
6178
|
-
|
|
6413
|
+
issueTypeName?: undefined;
|
|
6179
6414
|
priority?: undefined;
|
|
6180
|
-
|
|
6181
|
-
|
|
6415
|
+
assigneeAccountId?: undefined;
|
|
6416
|
+
transitionId?: undefined;
|
|
6182
6417
|
file_path?: undefined;
|
|
6183
6418
|
content?: undefined;
|
|
6184
6419
|
command?: undefined;
|
|
@@ -6203,6 +6438,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6203
6438
|
multi?: undefined;
|
|
6204
6439
|
separator?: undefined;
|
|
6205
6440
|
default?: undefined;
|
|
6441
|
+
fallback_param?: undefined;
|
|
6442
|
+
derive?: undefined;
|
|
6206
6443
|
};
|
|
6207
6444
|
secondary?: undefined;
|
|
6208
6445
|
};
|
|
@@ -6269,10 +6506,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6269
6506
|
startAt?: undefined;
|
|
6270
6507
|
issueIdOrKey?: undefined;
|
|
6271
6508
|
projectKey?: undefined;
|
|
6272
|
-
|
|
6509
|
+
issueTypeName?: undefined;
|
|
6273
6510
|
priority?: undefined;
|
|
6274
|
-
|
|
6275
|
-
|
|
6511
|
+
assigneeAccountId?: undefined;
|
|
6512
|
+
transitionId?: undefined;
|
|
6276
6513
|
file_path?: undefined;
|
|
6277
6514
|
content?: undefined;
|
|
6278
6515
|
command?: undefined;
|
|
@@ -6297,6 +6534,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6297
6534
|
multi?: undefined;
|
|
6298
6535
|
separator?: undefined;
|
|
6299
6536
|
default?: undefined;
|
|
6537
|
+
fallback_param?: undefined;
|
|
6538
|
+
derive?: undefined;
|
|
6300
6539
|
};
|
|
6301
6540
|
secondary?: undefined;
|
|
6302
6541
|
};
|
|
@@ -6365,10 +6604,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6365
6604
|
startAt?: undefined;
|
|
6366
6605
|
issueIdOrKey?: undefined;
|
|
6367
6606
|
projectKey?: undefined;
|
|
6368
|
-
|
|
6607
|
+
issueTypeName?: undefined;
|
|
6369
6608
|
priority?: undefined;
|
|
6370
|
-
|
|
6371
|
-
|
|
6609
|
+
assigneeAccountId?: undefined;
|
|
6610
|
+
transitionId?: undefined;
|
|
6372
6611
|
file_path?: undefined;
|
|
6373
6612
|
content?: undefined;
|
|
6374
6613
|
command?: undefined;
|
|
@@ -6393,6 +6632,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6393
6632
|
multi?: undefined;
|
|
6394
6633
|
separator?: undefined;
|
|
6395
6634
|
default?: undefined;
|
|
6635
|
+
fallback_param?: undefined;
|
|
6636
|
+
derive?: undefined;
|
|
6396
6637
|
};
|
|
6397
6638
|
secondary?: undefined;
|
|
6398
6639
|
};
|
|
@@ -6414,6 +6655,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6414
6655
|
type: string;
|
|
6415
6656
|
minimum: number;
|
|
6416
6657
|
maximum: number;
|
|
6658
|
+
description?: undefined;
|
|
6417
6659
|
};
|
|
6418
6660
|
channel?: undefined;
|
|
6419
6661
|
text?: undefined;
|
|
@@ -6462,10 +6704,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6462
6704
|
startAt?: undefined;
|
|
6463
6705
|
issueIdOrKey?: undefined;
|
|
6464
6706
|
projectKey?: undefined;
|
|
6465
|
-
|
|
6707
|
+
issueTypeName?: undefined;
|
|
6466
6708
|
priority?: undefined;
|
|
6467
|
-
|
|
6468
|
-
|
|
6709
|
+
assigneeAccountId?: undefined;
|
|
6710
|
+
transitionId?: undefined;
|
|
6469
6711
|
file_path?: undefined;
|
|
6470
6712
|
content?: undefined;
|
|
6471
6713
|
command?: undefined;
|
|
@@ -6490,6 +6732,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6490
6732
|
multi?: undefined;
|
|
6491
6733
|
separator?: undefined;
|
|
6492
6734
|
default?: undefined;
|
|
6735
|
+
fallback_param?: undefined;
|
|
6736
|
+
derive?: undefined;
|
|
6493
6737
|
};
|
|
6494
6738
|
secondary?: undefined;
|
|
6495
6739
|
};
|
|
@@ -6511,6 +6755,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6511
6755
|
type: string;
|
|
6512
6756
|
minimum: number;
|
|
6513
6757
|
maximum: number;
|
|
6758
|
+
description?: undefined;
|
|
6514
6759
|
};
|
|
6515
6760
|
startAt: {
|
|
6516
6761
|
type: string;
|
|
@@ -6562,10 +6807,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6562
6807
|
sprintId?: undefined;
|
|
6563
6808
|
issueIdOrKey?: undefined;
|
|
6564
6809
|
projectKey?: undefined;
|
|
6565
|
-
|
|
6810
|
+
issueTypeName?: undefined;
|
|
6566
6811
|
priority?: undefined;
|
|
6567
|
-
|
|
6568
|
-
|
|
6812
|
+
assigneeAccountId?: undefined;
|
|
6813
|
+
transitionId?: undefined;
|
|
6569
6814
|
file_path?: undefined;
|
|
6570
6815
|
content?: undefined;
|
|
6571
6816
|
command?: undefined;
|
|
@@ -6590,6 +6835,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6590
6835
|
multi?: undefined;
|
|
6591
6836
|
separator?: undefined;
|
|
6592
6837
|
default?: undefined;
|
|
6838
|
+
fallback_param?: undefined;
|
|
6839
|
+
derive?: undefined;
|
|
6593
6840
|
};
|
|
6594
6841
|
secondary?: undefined;
|
|
6595
6842
|
};
|
|
@@ -6655,10 +6902,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6655
6902
|
jql?: undefined;
|
|
6656
6903
|
startAt?: undefined;
|
|
6657
6904
|
projectKey?: undefined;
|
|
6658
|
-
|
|
6905
|
+
issueTypeName?: undefined;
|
|
6659
6906
|
priority?: undefined;
|
|
6660
|
-
|
|
6661
|
-
|
|
6907
|
+
assigneeAccountId?: undefined;
|
|
6908
|
+
transitionId?: undefined;
|
|
6662
6909
|
file_path?: undefined;
|
|
6663
6910
|
content?: undefined;
|
|
6664
6911
|
command?: undefined;
|
|
@@ -6678,11 +6925,13 @@ declare const ACTION_REGISTRY: {
|
|
|
6678
6925
|
resource_id: {
|
|
6679
6926
|
source: "param";
|
|
6680
6927
|
param: string;
|
|
6928
|
+
fallback_param: string;
|
|
6681
6929
|
required?: undefined;
|
|
6682
6930
|
key?: undefined;
|
|
6683
6931
|
multi?: undefined;
|
|
6684
6932
|
separator?: undefined;
|
|
6685
6933
|
default?: undefined;
|
|
6934
|
+
derive?: undefined;
|
|
6686
6935
|
};
|
|
6687
6936
|
secondary?: undefined;
|
|
6688
6937
|
};
|
|
@@ -6703,20 +6952,29 @@ declare const ACTION_REGISTRY: {
|
|
|
6703
6952
|
summary: {
|
|
6704
6953
|
type: string;
|
|
6705
6954
|
minLength: number;
|
|
6955
|
+
description?: undefined;
|
|
6706
6956
|
};
|
|
6707
6957
|
description: {
|
|
6708
6958
|
type: string;
|
|
6959
|
+
description?: undefined;
|
|
6709
6960
|
};
|
|
6710
|
-
|
|
6961
|
+
issueTypeName: {
|
|
6711
6962
|
type: string;
|
|
6712
6963
|
minLength: number;
|
|
6964
|
+
description: string;
|
|
6713
6965
|
};
|
|
6714
6966
|
priority: {
|
|
6715
6967
|
type: string;
|
|
6716
6968
|
};
|
|
6717
|
-
|
|
6969
|
+
assigneeAccountId: {
|
|
6718
6970
|
type: string;
|
|
6719
6971
|
};
|
|
6972
|
+
labels: {
|
|
6973
|
+
type: string;
|
|
6974
|
+
items: {
|
|
6975
|
+
type: string;
|
|
6976
|
+
};
|
|
6977
|
+
};
|
|
6720
6978
|
channel?: undefined;
|
|
6721
6979
|
text?: undefined;
|
|
6722
6980
|
thread_ts?: undefined;
|
|
@@ -6731,7 +6989,6 @@ declare const ACTION_REGISTRY: {
|
|
|
6731
6989
|
ts?: undefined;
|
|
6732
6990
|
title?: undefined;
|
|
6733
6991
|
body?: undefined;
|
|
6734
|
-
labels?: undefined;
|
|
6735
6992
|
assignees?: undefined;
|
|
6736
6993
|
state?: undefined;
|
|
6737
6994
|
sort?: undefined;
|
|
@@ -6763,7 +7020,7 @@ declare const ACTION_REGISTRY: {
|
|
|
6763
7020
|
jql?: undefined;
|
|
6764
7021
|
startAt?: undefined;
|
|
6765
7022
|
issueIdOrKey?: undefined;
|
|
6766
|
-
|
|
7023
|
+
transitionId?: undefined;
|
|
6767
7024
|
file_path?: undefined;
|
|
6768
7025
|
content?: undefined;
|
|
6769
7026
|
command?: undefined;
|
|
@@ -6788,6 +7045,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6788
7045
|
multi?: undefined;
|
|
6789
7046
|
separator?: undefined;
|
|
6790
7047
|
default?: undefined;
|
|
7048
|
+
fallback_param?: undefined;
|
|
7049
|
+
derive?: undefined;
|
|
6791
7050
|
};
|
|
6792
7051
|
secondary?: undefined;
|
|
6793
7052
|
};
|
|
@@ -6808,18 +7067,310 @@ declare const ACTION_REGISTRY: {
|
|
|
6808
7067
|
summary: {
|
|
6809
7068
|
type: string;
|
|
6810
7069
|
minLength?: undefined;
|
|
7070
|
+
description?: undefined;
|
|
6811
7071
|
};
|
|
6812
7072
|
description: {
|
|
6813
7073
|
type: string;
|
|
7074
|
+
description?: undefined;
|
|
6814
7075
|
};
|
|
6815
|
-
|
|
7076
|
+
priority: {
|
|
6816
7077
|
type: string;
|
|
6817
7078
|
};
|
|
6818
|
-
|
|
7079
|
+
assigneeAccountId: {
|
|
7080
|
+
type: string;
|
|
7081
|
+
};
|
|
7082
|
+
labels: {
|
|
7083
|
+
type: string;
|
|
7084
|
+
items: {
|
|
7085
|
+
type: string;
|
|
7086
|
+
};
|
|
7087
|
+
};
|
|
7088
|
+
channel?: undefined;
|
|
7089
|
+
text?: undefined;
|
|
7090
|
+
thread_ts?: undefined;
|
|
7091
|
+
username?: undefined;
|
|
7092
|
+
icon_emoji?: undefined;
|
|
7093
|
+
blocks?: undefined;
|
|
7094
|
+
userId?: undefined;
|
|
7095
|
+
latest?: undefined;
|
|
7096
|
+
oldest?: undefined;
|
|
7097
|
+
limit?: undefined;
|
|
7098
|
+
inclusive?: undefined;
|
|
7099
|
+
ts?: undefined;
|
|
7100
|
+
title?: undefined;
|
|
7101
|
+
body?: undefined;
|
|
7102
|
+
assignees?: undefined;
|
|
7103
|
+
state?: undefined;
|
|
7104
|
+
sort?: undefined;
|
|
7105
|
+
direction?: undefined;
|
|
7106
|
+
per_page?: undefined;
|
|
7107
|
+
page?: undefined;
|
|
7108
|
+
issue_number?: undefined;
|
|
7109
|
+
query?: undefined;
|
|
7110
|
+
maxResults?: undefined;
|
|
7111
|
+
messageId?: undefined;
|
|
7112
|
+
to?: undefined;
|
|
7113
|
+
subject?: undefined;
|
|
7114
|
+
cc?: undefined;
|
|
7115
|
+
bcc?: undefined;
|
|
7116
|
+
messageIds?: undefined;
|
|
7117
|
+
calendarId?: undefined;
|
|
7118
|
+
timeMin?: undefined;
|
|
7119
|
+
timeMax?: undefined;
|
|
7120
|
+
eventId?: undefined;
|
|
7121
|
+
start?: undefined;
|
|
7122
|
+
end?: undefined;
|
|
7123
|
+
attendees?: undefined;
|
|
7124
|
+
location?: undefined;
|
|
7125
|
+
recent?: undefined;
|
|
7126
|
+
projectKeyOrId?: undefined;
|
|
7127
|
+
type?: undefined;
|
|
7128
|
+
boardId?: undefined;
|
|
7129
|
+
sprintId?: undefined;
|
|
7130
|
+
jql?: undefined;
|
|
7131
|
+
startAt?: undefined;
|
|
7132
|
+
projectKey?: undefined;
|
|
7133
|
+
issueTypeName?: undefined;
|
|
7134
|
+
transitionId?: undefined;
|
|
7135
|
+
file_path?: undefined;
|
|
7136
|
+
content?: undefined;
|
|
7137
|
+
command?: undefined;
|
|
7138
|
+
working_directory?: undefined;
|
|
7139
|
+
env_profile?: undefined;
|
|
7140
|
+
timeout_seconds?: undefined;
|
|
7141
|
+
};
|
|
7142
|
+
required: string[];
|
|
7143
|
+
additionalProperties: boolean;
|
|
7144
|
+
};
|
|
7145
|
+
constraints: {
|
|
7146
|
+
rate_bucket: string;
|
|
7147
|
+
};
|
|
7148
|
+
effects: string[];
|
|
7149
|
+
risk: string;
|
|
7150
|
+
target_bindings: {
|
|
7151
|
+
resource_id: {
|
|
7152
|
+
source: "param";
|
|
7153
|
+
param: string;
|
|
7154
|
+
fallback_param: string;
|
|
7155
|
+
derive: "project_key";
|
|
7156
|
+
required?: undefined;
|
|
7157
|
+
key?: undefined;
|
|
7158
|
+
multi?: undefined;
|
|
7159
|
+
separator?: undefined;
|
|
7160
|
+
default?: undefined;
|
|
7161
|
+
};
|
|
7162
|
+
secondary?: undefined;
|
|
7163
|
+
};
|
|
7164
|
+
version: string;
|
|
7165
|
+
} | {
|
|
7166
|
+
action: string;
|
|
7167
|
+
resource_type: string;
|
|
7168
|
+
required_relations: string[];
|
|
7169
|
+
required_scopes: string[];
|
|
7170
|
+
capability: string;
|
|
7171
|
+
input_schema: {
|
|
7172
|
+
type: string;
|
|
7173
|
+
properties: {
|
|
7174
|
+
issueIdOrKey: {
|
|
6819
7175
|
type: string;
|
|
7176
|
+
minLength: number;
|
|
6820
7177
|
};
|
|
6821
|
-
|
|
7178
|
+
channel?: undefined;
|
|
7179
|
+
text?: undefined;
|
|
7180
|
+
thread_ts?: undefined;
|
|
7181
|
+
username?: undefined;
|
|
7182
|
+
icon_emoji?: undefined;
|
|
7183
|
+
blocks?: undefined;
|
|
7184
|
+
userId?: undefined;
|
|
7185
|
+
latest?: undefined;
|
|
7186
|
+
oldest?: undefined;
|
|
7187
|
+
limit?: undefined;
|
|
7188
|
+
inclusive?: undefined;
|
|
7189
|
+
ts?: undefined;
|
|
7190
|
+
title?: undefined;
|
|
7191
|
+
body?: undefined;
|
|
7192
|
+
labels?: undefined;
|
|
7193
|
+
assignees?: undefined;
|
|
7194
|
+
state?: undefined;
|
|
7195
|
+
sort?: undefined;
|
|
7196
|
+
direction?: undefined;
|
|
7197
|
+
per_page?: undefined;
|
|
7198
|
+
page?: undefined;
|
|
7199
|
+
issue_number?: undefined;
|
|
7200
|
+
query?: undefined;
|
|
7201
|
+
maxResults?: undefined;
|
|
7202
|
+
messageId?: undefined;
|
|
7203
|
+
to?: undefined;
|
|
7204
|
+
subject?: undefined;
|
|
7205
|
+
cc?: undefined;
|
|
7206
|
+
bcc?: undefined;
|
|
7207
|
+
messageIds?: undefined;
|
|
7208
|
+
calendarId?: undefined;
|
|
7209
|
+
timeMin?: undefined;
|
|
7210
|
+
timeMax?: undefined;
|
|
7211
|
+
eventId?: undefined;
|
|
7212
|
+
summary?: undefined;
|
|
7213
|
+
description?: undefined;
|
|
7214
|
+
start?: undefined;
|
|
7215
|
+
end?: undefined;
|
|
7216
|
+
attendees?: undefined;
|
|
7217
|
+
location?: undefined;
|
|
7218
|
+
recent?: undefined;
|
|
7219
|
+
projectKeyOrId?: undefined;
|
|
7220
|
+
type?: undefined;
|
|
7221
|
+
boardId?: undefined;
|
|
7222
|
+
sprintId?: undefined;
|
|
7223
|
+
jql?: undefined;
|
|
7224
|
+
startAt?: undefined;
|
|
7225
|
+
projectKey?: undefined;
|
|
7226
|
+
issueTypeName?: undefined;
|
|
7227
|
+
priority?: undefined;
|
|
7228
|
+
assigneeAccountId?: undefined;
|
|
7229
|
+
transitionId?: undefined;
|
|
7230
|
+
file_path?: undefined;
|
|
7231
|
+
content?: undefined;
|
|
7232
|
+
command?: undefined;
|
|
7233
|
+
working_directory?: undefined;
|
|
7234
|
+
env_profile?: undefined;
|
|
7235
|
+
timeout_seconds?: undefined;
|
|
7236
|
+
};
|
|
7237
|
+
required: string[];
|
|
7238
|
+
additionalProperties: boolean;
|
|
7239
|
+
};
|
|
7240
|
+
constraints: {
|
|
7241
|
+
rate_bucket: string;
|
|
7242
|
+
};
|
|
7243
|
+
effects: string[];
|
|
7244
|
+
risk: string;
|
|
7245
|
+
target_bindings: {
|
|
7246
|
+
resource_id: {
|
|
7247
|
+
source: "param";
|
|
7248
|
+
param: string;
|
|
7249
|
+
fallback_param: string;
|
|
7250
|
+
derive: "project_key";
|
|
7251
|
+
required?: undefined;
|
|
7252
|
+
key?: undefined;
|
|
7253
|
+
multi?: undefined;
|
|
7254
|
+
separator?: undefined;
|
|
7255
|
+
default?: undefined;
|
|
7256
|
+
};
|
|
7257
|
+
secondary?: undefined;
|
|
7258
|
+
};
|
|
7259
|
+
version: string;
|
|
7260
|
+
} | {
|
|
7261
|
+
action: string;
|
|
7262
|
+
resource_type: string;
|
|
7263
|
+
required_relations: string[];
|
|
7264
|
+
required_scopes: string[];
|
|
7265
|
+
capability: string;
|
|
7266
|
+
input_schema: {
|
|
7267
|
+
type: string;
|
|
7268
|
+
properties: {
|
|
7269
|
+
issueIdOrKey: {
|
|
6822
7270
|
type: string;
|
|
7271
|
+
minLength: number;
|
|
7272
|
+
};
|
|
7273
|
+
body: {
|
|
7274
|
+
type: string;
|
|
7275
|
+
minLength: number;
|
|
7276
|
+
};
|
|
7277
|
+
channel?: undefined;
|
|
7278
|
+
text?: undefined;
|
|
7279
|
+
thread_ts?: undefined;
|
|
7280
|
+
username?: undefined;
|
|
7281
|
+
icon_emoji?: undefined;
|
|
7282
|
+
blocks?: undefined;
|
|
7283
|
+
userId?: undefined;
|
|
7284
|
+
latest?: undefined;
|
|
7285
|
+
oldest?: undefined;
|
|
7286
|
+
limit?: undefined;
|
|
7287
|
+
inclusive?: undefined;
|
|
7288
|
+
ts?: undefined;
|
|
7289
|
+
title?: undefined;
|
|
7290
|
+
labels?: undefined;
|
|
7291
|
+
assignees?: undefined;
|
|
7292
|
+
state?: undefined;
|
|
7293
|
+
sort?: undefined;
|
|
7294
|
+
direction?: undefined;
|
|
7295
|
+
per_page?: undefined;
|
|
7296
|
+
page?: undefined;
|
|
7297
|
+
issue_number?: undefined;
|
|
7298
|
+
query?: undefined;
|
|
7299
|
+
maxResults?: undefined;
|
|
7300
|
+
messageId?: undefined;
|
|
7301
|
+
to?: undefined;
|
|
7302
|
+
subject?: undefined;
|
|
7303
|
+
cc?: undefined;
|
|
7304
|
+
bcc?: undefined;
|
|
7305
|
+
messageIds?: undefined;
|
|
7306
|
+
calendarId?: undefined;
|
|
7307
|
+
timeMin?: undefined;
|
|
7308
|
+
timeMax?: undefined;
|
|
7309
|
+
eventId?: undefined;
|
|
7310
|
+
summary?: undefined;
|
|
7311
|
+
description?: undefined;
|
|
7312
|
+
start?: undefined;
|
|
7313
|
+
end?: undefined;
|
|
7314
|
+
attendees?: undefined;
|
|
7315
|
+
location?: undefined;
|
|
7316
|
+
recent?: undefined;
|
|
7317
|
+
projectKeyOrId?: undefined;
|
|
7318
|
+
type?: undefined;
|
|
7319
|
+
boardId?: undefined;
|
|
7320
|
+
sprintId?: undefined;
|
|
7321
|
+
jql?: undefined;
|
|
7322
|
+
startAt?: undefined;
|
|
7323
|
+
projectKey?: undefined;
|
|
7324
|
+
issueTypeName?: undefined;
|
|
7325
|
+
priority?: undefined;
|
|
7326
|
+
assigneeAccountId?: undefined;
|
|
7327
|
+
transitionId?: undefined;
|
|
7328
|
+
file_path?: undefined;
|
|
7329
|
+
content?: undefined;
|
|
7330
|
+
command?: undefined;
|
|
7331
|
+
working_directory?: undefined;
|
|
7332
|
+
env_profile?: undefined;
|
|
7333
|
+
timeout_seconds?: undefined;
|
|
7334
|
+
};
|
|
7335
|
+
required: string[];
|
|
7336
|
+
additionalProperties: boolean;
|
|
7337
|
+
};
|
|
7338
|
+
constraints: {
|
|
7339
|
+
rate_bucket: string;
|
|
7340
|
+
};
|
|
7341
|
+
effects: string[];
|
|
7342
|
+
risk: string;
|
|
7343
|
+
target_bindings: {
|
|
7344
|
+
resource_id: {
|
|
7345
|
+
source: "param";
|
|
7346
|
+
param: string;
|
|
7347
|
+
fallback_param: string;
|
|
7348
|
+
derive: "project_key";
|
|
7349
|
+
required?: undefined;
|
|
7350
|
+
key?: undefined;
|
|
7351
|
+
multi?: undefined;
|
|
7352
|
+
separator?: undefined;
|
|
7353
|
+
default?: undefined;
|
|
7354
|
+
};
|
|
7355
|
+
secondary?: undefined;
|
|
7356
|
+
};
|
|
7357
|
+
version: string;
|
|
7358
|
+
} | {
|
|
7359
|
+
action: string;
|
|
7360
|
+
resource_type: string;
|
|
7361
|
+
required_relations: string[];
|
|
7362
|
+
required_scopes: string[];
|
|
7363
|
+
capability: string;
|
|
7364
|
+
input_schema: {
|
|
7365
|
+
type: string;
|
|
7366
|
+
properties: {
|
|
7367
|
+
issueIdOrKey: {
|
|
7368
|
+
type: string;
|
|
7369
|
+
minLength: number;
|
|
7370
|
+
};
|
|
7371
|
+
transitionId: {
|
|
7372
|
+
type: string;
|
|
7373
|
+
minLength: number;
|
|
6823
7374
|
};
|
|
6824
7375
|
channel?: undefined;
|
|
6825
7376
|
text?: undefined;
|
|
@@ -6855,6 +7406,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6855
7406
|
timeMin?: undefined;
|
|
6856
7407
|
timeMax?: undefined;
|
|
6857
7408
|
eventId?: undefined;
|
|
7409
|
+
summary?: undefined;
|
|
7410
|
+
description?: undefined;
|
|
6858
7411
|
start?: undefined;
|
|
6859
7412
|
end?: undefined;
|
|
6860
7413
|
attendees?: undefined;
|
|
@@ -6867,7 +7420,9 @@ declare const ACTION_REGISTRY: {
|
|
|
6867
7420
|
jql?: undefined;
|
|
6868
7421
|
startAt?: undefined;
|
|
6869
7422
|
projectKey?: undefined;
|
|
6870
|
-
|
|
7423
|
+
issueTypeName?: undefined;
|
|
7424
|
+
priority?: undefined;
|
|
7425
|
+
assigneeAccountId?: undefined;
|
|
6871
7426
|
file_path?: undefined;
|
|
6872
7427
|
content?: undefined;
|
|
6873
7428
|
command?: undefined;
|
|
@@ -6887,6 +7442,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6887
7442
|
resource_id: {
|
|
6888
7443
|
source: "param";
|
|
6889
7444
|
param: string;
|
|
7445
|
+
fallback_param: string;
|
|
7446
|
+
derive: "project_key";
|
|
6890
7447
|
required?: undefined;
|
|
6891
7448
|
key?: undefined;
|
|
6892
7449
|
multi?: undefined;
|
|
@@ -6965,10 +7522,10 @@ declare const ACTION_REGISTRY: {
|
|
|
6965
7522
|
startAt?: undefined;
|
|
6966
7523
|
issueIdOrKey?: undefined;
|
|
6967
7524
|
projectKey?: undefined;
|
|
6968
|
-
|
|
7525
|
+
issueTypeName?: undefined;
|
|
6969
7526
|
priority?: undefined;
|
|
6970
|
-
|
|
6971
|
-
|
|
7527
|
+
assigneeAccountId?: undefined;
|
|
7528
|
+
transitionId?: undefined;
|
|
6972
7529
|
file_path?: undefined;
|
|
6973
7530
|
content?: undefined;
|
|
6974
7531
|
command?: undefined;
|
|
@@ -6993,6 +7550,8 @@ declare const ACTION_REGISTRY: {
|
|
|
6993
7550
|
multi?: undefined;
|
|
6994
7551
|
separator?: undefined;
|
|
6995
7552
|
default?: undefined;
|
|
7553
|
+
fallback_param?: undefined;
|
|
7554
|
+
derive?: undefined;
|
|
6996
7555
|
};
|
|
6997
7556
|
secondary?: undefined;
|
|
6998
7557
|
};
|
|
@@ -7058,10 +7617,10 @@ declare const ACTION_REGISTRY: {
|
|
|
7058
7617
|
startAt?: undefined;
|
|
7059
7618
|
issueIdOrKey?: undefined;
|
|
7060
7619
|
projectKey?: undefined;
|
|
7061
|
-
|
|
7620
|
+
issueTypeName?: undefined;
|
|
7062
7621
|
priority?: undefined;
|
|
7063
|
-
|
|
7064
|
-
|
|
7622
|
+
assigneeAccountId?: undefined;
|
|
7623
|
+
transitionId?: undefined;
|
|
7065
7624
|
content?: undefined;
|
|
7066
7625
|
command?: undefined;
|
|
7067
7626
|
working_directory?: undefined;
|
|
@@ -7082,6 +7641,8 @@ declare const ACTION_REGISTRY: {
|
|
|
7082
7641
|
multi?: undefined;
|
|
7083
7642
|
separator?: undefined;
|
|
7084
7643
|
default?: undefined;
|
|
7644
|
+
fallback_param?: undefined;
|
|
7645
|
+
derive?: undefined;
|
|
7085
7646
|
};
|
|
7086
7647
|
secondary?: undefined;
|
|
7087
7648
|
};
|
|
@@ -7153,10 +7714,10 @@ declare const ACTION_REGISTRY: {
|
|
|
7153
7714
|
startAt?: undefined;
|
|
7154
7715
|
issueIdOrKey?: undefined;
|
|
7155
7716
|
projectKey?: undefined;
|
|
7156
|
-
|
|
7717
|
+
issueTypeName?: undefined;
|
|
7157
7718
|
priority?: undefined;
|
|
7158
|
-
|
|
7159
|
-
|
|
7719
|
+
assigneeAccountId?: undefined;
|
|
7720
|
+
transitionId?: undefined;
|
|
7160
7721
|
command?: undefined;
|
|
7161
7722
|
working_directory?: undefined;
|
|
7162
7723
|
env_profile?: undefined;
|
|
@@ -7176,6 +7737,8 @@ declare const ACTION_REGISTRY: {
|
|
|
7176
7737
|
multi?: undefined;
|
|
7177
7738
|
separator?: undefined;
|
|
7178
7739
|
default?: undefined;
|
|
7740
|
+
fallback_param?: undefined;
|
|
7741
|
+
derive?: undefined;
|
|
7179
7742
|
};
|
|
7180
7743
|
secondary?: undefined;
|
|
7181
7744
|
};
|
|
@@ -7258,10 +7821,10 @@ declare const ACTION_REGISTRY: {
|
|
|
7258
7821
|
startAt?: undefined;
|
|
7259
7822
|
issueIdOrKey?: undefined;
|
|
7260
7823
|
projectKey?: undefined;
|
|
7261
|
-
|
|
7824
|
+
issueTypeName?: undefined;
|
|
7262
7825
|
priority?: undefined;
|
|
7263
|
-
|
|
7264
|
-
|
|
7826
|
+
assigneeAccountId?: undefined;
|
|
7827
|
+
transitionId?: undefined;
|
|
7265
7828
|
file_path?: undefined;
|
|
7266
7829
|
content?: undefined;
|
|
7267
7830
|
};
|
|
@@ -7279,6 +7842,8 @@ declare const ACTION_REGISTRY: {
|
|
|
7279
7842
|
multi?: undefined;
|
|
7280
7843
|
separator?: undefined;
|
|
7281
7844
|
default?: undefined;
|
|
7845
|
+
fallback_param?: undefined;
|
|
7846
|
+
derive?: undefined;
|
|
7282
7847
|
};
|
|
7283
7848
|
secondary?: undefined;
|
|
7284
7849
|
};
|
|
@@ -7418,6 +7983,14 @@ declare function getValidMcpActionNames(toolName: string): string[];
|
|
|
7418
7983
|
*/
|
|
7419
7984
|
declare function normalizeMcpActionName(toolName: string, actionName: string): string;
|
|
7420
7985
|
|
|
7986
|
+
interface ActionParamDisplay {
|
|
7987
|
+
label: string;
|
|
7988
|
+
value: string;
|
|
7989
|
+
}
|
|
7990
|
+
declare const ACTION_PARAMS_MAX_SIZE = 10000;
|
|
7991
|
+
declare function generateActionSummary(action: string, params: Record<string, any> | undefined | null, maxLength?: number): string;
|
|
7992
|
+
declare function generateActionParamsDisplay(action: string, params: Record<string, any> | undefined | null): ActionParamDisplay[];
|
|
7993
|
+
|
|
7421
7994
|
interface KeyPair {
|
|
7422
7995
|
publicKey: any;
|
|
7423
7996
|
privateKey: any;
|
|
@@ -7741,4 +8314,4 @@ declare function getTierLimits(tier: string | undefined | null): TierLimits;
|
|
|
7741
8314
|
|
|
7742
8315
|
declare const version = "0.0.1";
|
|
7743
8316
|
|
|
7744
|
-
export { type ABACPolicyEngine, 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 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, 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 };
|
|
8317
|
+
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 };
|