@forge/manifest 10.0.1-next.1 → 10.0.1-next.3
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/CHANGELOG.md +12 -0
- package/out/schema/manifest-schema.json +149 -61
- package/out/schema/manifest.d.ts +520 -26
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -637,7 +637,7 @@
|
|
|
637
637
|
"path": {
|
|
638
638
|
"type": "string",
|
|
639
639
|
"description": "The URL path for the API endpoint",
|
|
640
|
-
"pattern": "^/[a-zA-Z0-9]+(/[a-zA-Z0-9]+|/\\*)*$",
|
|
640
|
+
"pattern": "^/[a-zA-Z0-9]+(/[a-zA-Z0-9]+|/\\*)*/\\*\\*$|^/[a-zA-Z0-9]+(/[a-zA-Z0-9]+|/\\*)*$",
|
|
641
641
|
"minLength": 1,
|
|
642
642
|
"maxLength": 255
|
|
643
643
|
},
|
|
@@ -5251,66 +5251,6 @@
|
|
|
5251
5251
|
},
|
|
5252
5252
|
"minItems": 1
|
|
5253
5253
|
},
|
|
5254
|
-
"confluence:contentProperty": {
|
|
5255
|
-
"type": "array",
|
|
5256
|
-
"items": {
|
|
5257
|
-
"type": "object",
|
|
5258
|
-
"properties": {
|
|
5259
|
-
"propertyKey": {
|
|
5260
|
-
"minLength": 1,
|
|
5261
|
-
"maxLength": 255,
|
|
5262
|
-
"type": "string"
|
|
5263
|
-
},
|
|
5264
|
-
"values": {
|
|
5265
|
-
"type": "array",
|
|
5266
|
-
"items": {
|
|
5267
|
-
"type": "object",
|
|
5268
|
-
"properties": {
|
|
5269
|
-
"path": {
|
|
5270
|
-
"minLength": 1,
|
|
5271
|
-
"maxLength": 255,
|
|
5272
|
-
"type": "string"
|
|
5273
|
-
},
|
|
5274
|
-
"type": {
|
|
5275
|
-
"type": "string",
|
|
5276
|
-
"enum": [
|
|
5277
|
-
"number",
|
|
5278
|
-
"string",
|
|
5279
|
-
"text",
|
|
5280
|
-
"user",
|
|
5281
|
-
"date"
|
|
5282
|
-
]
|
|
5283
|
-
},
|
|
5284
|
-
"searchAlias": {
|
|
5285
|
-
"minLength": 1,
|
|
5286
|
-
"maxLength": 255,
|
|
5287
|
-
"pattern": "^[a-zA-Z0-9-_]+$",
|
|
5288
|
-
"type": "string"
|
|
5289
|
-
}
|
|
5290
|
-
},
|
|
5291
|
-
"required": [
|
|
5292
|
-
"path",
|
|
5293
|
-
"type"
|
|
5294
|
-
]
|
|
5295
|
-
}
|
|
5296
|
-
},
|
|
5297
|
-
"key": {
|
|
5298
|
-
"$ref": "#/definitions/ModuleKeySchema"
|
|
5299
|
-
}
|
|
5300
|
-
},
|
|
5301
|
-
"required": [
|
|
5302
|
-
"propertyKey",
|
|
5303
|
-
"values",
|
|
5304
|
-
"key"
|
|
5305
|
-
],
|
|
5306
|
-
"not": {
|
|
5307
|
-
"required": [
|
|
5308
|
-
"unlicensedAccess"
|
|
5309
|
-
]
|
|
5310
|
-
}
|
|
5311
|
-
},
|
|
5312
|
-
"minItems": 1
|
|
5313
|
-
},
|
|
5314
5254
|
"confluence:pageBanner": {
|
|
5315
5255
|
"type": "array",
|
|
5316
5256
|
"items": {
|
|
@@ -5447,6 +5387,153 @@
|
|
|
5447
5387
|
},
|
|
5448
5388
|
"minItems": 1
|
|
5449
5389
|
},
|
|
5390
|
+
"confluence:contentProperty": {
|
|
5391
|
+
"type": "array",
|
|
5392
|
+
"items": {
|
|
5393
|
+
"type": "object",
|
|
5394
|
+
"properties": {
|
|
5395
|
+
"propertyKey": {
|
|
5396
|
+
"minLength": 1,
|
|
5397
|
+
"maxLength": 100,
|
|
5398
|
+
"type": "string"
|
|
5399
|
+
},
|
|
5400
|
+
"values": {
|
|
5401
|
+
"type": "array",
|
|
5402
|
+
"items": {
|
|
5403
|
+
"type": "object",
|
|
5404
|
+
"properties": {
|
|
5405
|
+
"path": {
|
|
5406
|
+
"minLength": 1,
|
|
5407
|
+
"maxLength": 1000,
|
|
5408
|
+
"type": "string"
|
|
5409
|
+
},
|
|
5410
|
+
"type": {
|
|
5411
|
+
"type": "string",
|
|
5412
|
+
"enum": [
|
|
5413
|
+
"number",
|
|
5414
|
+
"string",
|
|
5415
|
+
"text",
|
|
5416
|
+
"user",
|
|
5417
|
+
"date"
|
|
5418
|
+
]
|
|
5419
|
+
},
|
|
5420
|
+
"searchAlias": {
|
|
5421
|
+
"minLength": 1,
|
|
5422
|
+
"maxLength": 255,
|
|
5423
|
+
"pattern": "^[a-zA-Z0-9-_]+$",
|
|
5424
|
+
"type": "string"
|
|
5425
|
+
},
|
|
5426
|
+
"uiSupport": {
|
|
5427
|
+
"type": "object",
|
|
5428
|
+
"properties": {
|
|
5429
|
+
"defaultOperator": {
|
|
5430
|
+
"type": "string",
|
|
5431
|
+
"minLength": 1,
|
|
5432
|
+
"maxLength": 100
|
|
5433
|
+
},
|
|
5434
|
+
"valueType": {
|
|
5435
|
+
"type": "string",
|
|
5436
|
+
"enum": [
|
|
5437
|
+
"space",
|
|
5438
|
+
"label",
|
|
5439
|
+
"user",
|
|
5440
|
+
"contentId",
|
|
5441
|
+
"contentType",
|
|
5442
|
+
"date",
|
|
5443
|
+
"string",
|
|
5444
|
+
"number"
|
|
5445
|
+
]
|
|
5446
|
+
},
|
|
5447
|
+
"name": {
|
|
5448
|
+
"oneOf": [
|
|
5449
|
+
{
|
|
5450
|
+
"type": "object",
|
|
5451
|
+
"additionalProperties": false,
|
|
5452
|
+
"properties": {
|
|
5453
|
+
"i18n": {
|
|
5454
|
+
"type": "string",
|
|
5455
|
+
"minLength": 1,
|
|
5456
|
+
"maxLength": 300,
|
|
5457
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
5458
|
+
}
|
|
5459
|
+
},
|
|
5460
|
+
"required": [
|
|
5461
|
+
"i18n"
|
|
5462
|
+
]
|
|
5463
|
+
},
|
|
5464
|
+
{
|
|
5465
|
+
"type": "string",
|
|
5466
|
+
"minLength": 1,
|
|
5467
|
+
"maxLength": 1500
|
|
5468
|
+
}
|
|
5469
|
+
]
|
|
5470
|
+
},
|
|
5471
|
+
"name__i18n": {
|
|
5472
|
+
"type": "string",
|
|
5473
|
+
"minLength": 1,
|
|
5474
|
+
"maxLength": 300,
|
|
5475
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
5476
|
+
},
|
|
5477
|
+
"tooltip": {
|
|
5478
|
+
"oneOf": [
|
|
5479
|
+
{
|
|
5480
|
+
"type": "object",
|
|
5481
|
+
"additionalProperties": false,
|
|
5482
|
+
"properties": {
|
|
5483
|
+
"i18n": {
|
|
5484
|
+
"type": "string",
|
|
5485
|
+
"minLength": 1,
|
|
5486
|
+
"maxLength": 300,
|
|
5487
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
5488
|
+
}
|
|
5489
|
+
},
|
|
5490
|
+
"required": [
|
|
5491
|
+
"i18n"
|
|
5492
|
+
]
|
|
5493
|
+
},
|
|
5494
|
+
{
|
|
5495
|
+
"type": "string",
|
|
5496
|
+
"minLength": 1,
|
|
5497
|
+
"maxLength": 1500
|
|
5498
|
+
}
|
|
5499
|
+
]
|
|
5500
|
+
},
|
|
5501
|
+
"tooltip__i18n": {
|
|
5502
|
+
"type": "string",
|
|
5503
|
+
"minLength": 1,
|
|
5504
|
+
"maxLength": 300,
|
|
5505
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
5506
|
+
}
|
|
5507
|
+
},
|
|
5508
|
+
"required": [
|
|
5509
|
+
"name",
|
|
5510
|
+
"valueType"
|
|
5511
|
+
]
|
|
5512
|
+
}
|
|
5513
|
+
},
|
|
5514
|
+
"required": [
|
|
5515
|
+
"path",
|
|
5516
|
+
"type"
|
|
5517
|
+
]
|
|
5518
|
+
}
|
|
5519
|
+
},
|
|
5520
|
+
"key": {
|
|
5521
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
5522
|
+
}
|
|
5523
|
+
},
|
|
5524
|
+
"required": [
|
|
5525
|
+
"propertyKey",
|
|
5526
|
+
"values",
|
|
5527
|
+
"key"
|
|
5528
|
+
],
|
|
5529
|
+
"not": {
|
|
5530
|
+
"required": [
|
|
5531
|
+
"unlicensedAccess"
|
|
5532
|
+
]
|
|
5533
|
+
}
|
|
5534
|
+
},
|
|
5535
|
+
"minItems": 1
|
|
5536
|
+
},
|
|
5450
5537
|
"jira:workflowValidator": {
|
|
5451
5538
|
"type": "array",
|
|
5452
5539
|
"items": {
|
|
@@ -26763,6 +26850,7 @@
|
|
|
26763
26850
|
"description": "A list of actions that will be exposed by the Automation platform.",
|
|
26764
26851
|
"type": "array",
|
|
26765
26852
|
"minItems": 1,
|
|
26853
|
+
"maxItems": 20,
|
|
26766
26854
|
"uniqueItems": true,
|
|
26767
26855
|
"items": {
|
|
26768
26856
|
"description": "The key of an action extension in your manifest.",
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -13645,30 +13645,6 @@ export interface Modules {
|
|
|
13645
13645
|
}
|
|
13646
13646
|
)[]
|
|
13647
13647
|
];
|
|
13648
|
-
'confluence:contentProperty'?: [
|
|
13649
|
-
{
|
|
13650
|
-
propertyKey: string;
|
|
13651
|
-
values: {
|
|
13652
|
-
path: string;
|
|
13653
|
-
type: 'number' | 'string' | 'text' | 'user' | 'date';
|
|
13654
|
-
searchAlias?: string;
|
|
13655
|
-
[k: string]: unknown;
|
|
13656
|
-
}[];
|
|
13657
|
-
key: ModuleKeySchema;
|
|
13658
|
-
[k: string]: unknown;
|
|
13659
|
-
},
|
|
13660
|
-
...{
|
|
13661
|
-
propertyKey: string;
|
|
13662
|
-
values: {
|
|
13663
|
-
path: string;
|
|
13664
|
-
type: 'number' | 'string' | 'text' | 'user' | 'date';
|
|
13665
|
-
searchAlias?: string;
|
|
13666
|
-
[k: string]: unknown;
|
|
13667
|
-
}[];
|
|
13668
|
-
key: ModuleKeySchema;
|
|
13669
|
-
[k: string]: unknown;
|
|
13670
|
-
}[]
|
|
13671
|
-
];
|
|
13672
13648
|
'confluence:pageBanner'?: [
|
|
13673
13649
|
(
|
|
13674
13650
|
| {
|
|
@@ -13737,6 +13713,64 @@ export interface Modules {
|
|
|
13737
13713
|
}
|
|
13738
13714
|
)[]
|
|
13739
13715
|
];
|
|
13716
|
+
'confluence:contentProperty'?: [
|
|
13717
|
+
{
|
|
13718
|
+
propertyKey: string;
|
|
13719
|
+
values: {
|
|
13720
|
+
path: string;
|
|
13721
|
+
type: 'number' | 'string' | 'text' | 'user' | 'date';
|
|
13722
|
+
searchAlias?: string;
|
|
13723
|
+
uiSupport?: {
|
|
13724
|
+
defaultOperator?: string;
|
|
13725
|
+
valueType: 'space' | 'label' | 'user' | 'contentId' | 'contentType' | 'date' | 'string' | 'number';
|
|
13726
|
+
name:
|
|
13727
|
+
| {
|
|
13728
|
+
i18n: string;
|
|
13729
|
+
}
|
|
13730
|
+
| string;
|
|
13731
|
+
name__i18n?: string;
|
|
13732
|
+
tooltip?:
|
|
13733
|
+
| {
|
|
13734
|
+
i18n: string;
|
|
13735
|
+
}
|
|
13736
|
+
| string;
|
|
13737
|
+
tooltip__i18n?: string;
|
|
13738
|
+
[k: string]: unknown;
|
|
13739
|
+
};
|
|
13740
|
+
[k: string]: unknown;
|
|
13741
|
+
}[];
|
|
13742
|
+
key: ModuleKeySchema;
|
|
13743
|
+
[k: string]: unknown;
|
|
13744
|
+
},
|
|
13745
|
+
...{
|
|
13746
|
+
propertyKey: string;
|
|
13747
|
+
values: {
|
|
13748
|
+
path: string;
|
|
13749
|
+
type: 'number' | 'string' | 'text' | 'user' | 'date';
|
|
13750
|
+
searchAlias?: string;
|
|
13751
|
+
uiSupport?: {
|
|
13752
|
+
defaultOperator?: string;
|
|
13753
|
+
valueType: 'space' | 'label' | 'user' | 'contentId' | 'contentType' | 'date' | 'string' | 'number';
|
|
13754
|
+
name:
|
|
13755
|
+
| {
|
|
13756
|
+
i18n: string;
|
|
13757
|
+
}
|
|
13758
|
+
| string;
|
|
13759
|
+
name__i18n?: string;
|
|
13760
|
+
tooltip?:
|
|
13761
|
+
| {
|
|
13762
|
+
i18n: string;
|
|
13763
|
+
}
|
|
13764
|
+
| string;
|
|
13765
|
+
tooltip__i18n?: string;
|
|
13766
|
+
[k: string]: unknown;
|
|
13767
|
+
};
|
|
13768
|
+
[k: string]: unknown;
|
|
13769
|
+
}[];
|
|
13770
|
+
key: ModuleKeySchema;
|
|
13771
|
+
[k: string]: unknown;
|
|
13772
|
+
}[]
|
|
13773
|
+
];
|
|
13740
13774
|
'jira:workflowValidator'?: [
|
|
13741
13775
|
{
|
|
13742
13776
|
name:
|
|
@@ -22640,14 +22674,474 @@ export interface Modules {
|
|
|
22640
22674
|
/**
|
|
22641
22675
|
* A list of actions that will be exposed by the Automation platform.
|
|
22642
22676
|
*/
|
|
22643
|
-
actions:
|
|
22677
|
+
actions:
|
|
22678
|
+
| [ActionExtensionKey]
|
|
22679
|
+
| [ActionExtensionKey, ActionExtensionKey]
|
|
22680
|
+
| [ActionExtensionKey, ActionExtensionKey, ActionExtensionKey]
|
|
22681
|
+
| [ActionExtensionKey, ActionExtensionKey, ActionExtensionKey, ActionExtensionKey]
|
|
22682
|
+
| [ActionExtensionKey, ActionExtensionKey, ActionExtensionKey, ActionExtensionKey, ActionExtensionKey]
|
|
22683
|
+
| [
|
|
22684
|
+
ActionExtensionKey,
|
|
22685
|
+
ActionExtensionKey,
|
|
22686
|
+
ActionExtensionKey,
|
|
22687
|
+
ActionExtensionKey,
|
|
22688
|
+
ActionExtensionKey,
|
|
22689
|
+
ActionExtensionKey
|
|
22690
|
+
]
|
|
22691
|
+
| [
|
|
22692
|
+
ActionExtensionKey,
|
|
22693
|
+
ActionExtensionKey,
|
|
22694
|
+
ActionExtensionKey,
|
|
22695
|
+
ActionExtensionKey,
|
|
22696
|
+
ActionExtensionKey,
|
|
22697
|
+
ActionExtensionKey,
|
|
22698
|
+
ActionExtensionKey
|
|
22699
|
+
]
|
|
22700
|
+
| [
|
|
22701
|
+
ActionExtensionKey,
|
|
22702
|
+
ActionExtensionKey,
|
|
22703
|
+
ActionExtensionKey,
|
|
22704
|
+
ActionExtensionKey,
|
|
22705
|
+
ActionExtensionKey,
|
|
22706
|
+
ActionExtensionKey,
|
|
22707
|
+
ActionExtensionKey,
|
|
22708
|
+
ActionExtensionKey
|
|
22709
|
+
]
|
|
22710
|
+
| [
|
|
22711
|
+
ActionExtensionKey,
|
|
22712
|
+
ActionExtensionKey,
|
|
22713
|
+
ActionExtensionKey,
|
|
22714
|
+
ActionExtensionKey,
|
|
22715
|
+
ActionExtensionKey,
|
|
22716
|
+
ActionExtensionKey,
|
|
22717
|
+
ActionExtensionKey,
|
|
22718
|
+
ActionExtensionKey,
|
|
22719
|
+
ActionExtensionKey
|
|
22720
|
+
]
|
|
22721
|
+
| [
|
|
22722
|
+
ActionExtensionKey,
|
|
22723
|
+
ActionExtensionKey,
|
|
22724
|
+
ActionExtensionKey,
|
|
22725
|
+
ActionExtensionKey,
|
|
22726
|
+
ActionExtensionKey,
|
|
22727
|
+
ActionExtensionKey,
|
|
22728
|
+
ActionExtensionKey,
|
|
22729
|
+
ActionExtensionKey,
|
|
22730
|
+
ActionExtensionKey,
|
|
22731
|
+
ActionExtensionKey
|
|
22732
|
+
]
|
|
22733
|
+
| [
|
|
22734
|
+
ActionExtensionKey,
|
|
22735
|
+
ActionExtensionKey,
|
|
22736
|
+
ActionExtensionKey,
|
|
22737
|
+
ActionExtensionKey,
|
|
22738
|
+
ActionExtensionKey,
|
|
22739
|
+
ActionExtensionKey,
|
|
22740
|
+
ActionExtensionKey,
|
|
22741
|
+
ActionExtensionKey,
|
|
22742
|
+
ActionExtensionKey,
|
|
22743
|
+
ActionExtensionKey,
|
|
22744
|
+
ActionExtensionKey
|
|
22745
|
+
]
|
|
22746
|
+
| [
|
|
22747
|
+
ActionExtensionKey,
|
|
22748
|
+
ActionExtensionKey,
|
|
22749
|
+
ActionExtensionKey,
|
|
22750
|
+
ActionExtensionKey,
|
|
22751
|
+
ActionExtensionKey,
|
|
22752
|
+
ActionExtensionKey,
|
|
22753
|
+
ActionExtensionKey,
|
|
22754
|
+
ActionExtensionKey,
|
|
22755
|
+
ActionExtensionKey,
|
|
22756
|
+
ActionExtensionKey,
|
|
22757
|
+
ActionExtensionKey,
|
|
22758
|
+
ActionExtensionKey
|
|
22759
|
+
]
|
|
22760
|
+
| [
|
|
22761
|
+
ActionExtensionKey,
|
|
22762
|
+
ActionExtensionKey,
|
|
22763
|
+
ActionExtensionKey,
|
|
22764
|
+
ActionExtensionKey,
|
|
22765
|
+
ActionExtensionKey,
|
|
22766
|
+
ActionExtensionKey,
|
|
22767
|
+
ActionExtensionKey,
|
|
22768
|
+
ActionExtensionKey,
|
|
22769
|
+
ActionExtensionKey,
|
|
22770
|
+
ActionExtensionKey,
|
|
22771
|
+
ActionExtensionKey,
|
|
22772
|
+
ActionExtensionKey,
|
|
22773
|
+
ActionExtensionKey
|
|
22774
|
+
]
|
|
22775
|
+
| [
|
|
22776
|
+
ActionExtensionKey,
|
|
22777
|
+
ActionExtensionKey,
|
|
22778
|
+
ActionExtensionKey,
|
|
22779
|
+
ActionExtensionKey,
|
|
22780
|
+
ActionExtensionKey,
|
|
22781
|
+
ActionExtensionKey,
|
|
22782
|
+
ActionExtensionKey,
|
|
22783
|
+
ActionExtensionKey,
|
|
22784
|
+
ActionExtensionKey,
|
|
22785
|
+
ActionExtensionKey,
|
|
22786
|
+
ActionExtensionKey,
|
|
22787
|
+
ActionExtensionKey,
|
|
22788
|
+
ActionExtensionKey,
|
|
22789
|
+
ActionExtensionKey
|
|
22790
|
+
]
|
|
22791
|
+
| [
|
|
22792
|
+
ActionExtensionKey,
|
|
22793
|
+
ActionExtensionKey,
|
|
22794
|
+
ActionExtensionKey,
|
|
22795
|
+
ActionExtensionKey,
|
|
22796
|
+
ActionExtensionKey,
|
|
22797
|
+
ActionExtensionKey,
|
|
22798
|
+
ActionExtensionKey,
|
|
22799
|
+
ActionExtensionKey,
|
|
22800
|
+
ActionExtensionKey,
|
|
22801
|
+
ActionExtensionKey,
|
|
22802
|
+
ActionExtensionKey,
|
|
22803
|
+
ActionExtensionKey,
|
|
22804
|
+
ActionExtensionKey,
|
|
22805
|
+
ActionExtensionKey,
|
|
22806
|
+
ActionExtensionKey
|
|
22807
|
+
]
|
|
22808
|
+
| [
|
|
22809
|
+
ActionExtensionKey,
|
|
22810
|
+
ActionExtensionKey,
|
|
22811
|
+
ActionExtensionKey,
|
|
22812
|
+
ActionExtensionKey,
|
|
22813
|
+
ActionExtensionKey,
|
|
22814
|
+
ActionExtensionKey,
|
|
22815
|
+
ActionExtensionKey,
|
|
22816
|
+
ActionExtensionKey,
|
|
22817
|
+
ActionExtensionKey,
|
|
22818
|
+
ActionExtensionKey,
|
|
22819
|
+
ActionExtensionKey,
|
|
22820
|
+
ActionExtensionKey,
|
|
22821
|
+
ActionExtensionKey,
|
|
22822
|
+
ActionExtensionKey,
|
|
22823
|
+
ActionExtensionKey,
|
|
22824
|
+
ActionExtensionKey
|
|
22825
|
+
]
|
|
22826
|
+
| [
|
|
22827
|
+
ActionExtensionKey,
|
|
22828
|
+
ActionExtensionKey,
|
|
22829
|
+
ActionExtensionKey,
|
|
22830
|
+
ActionExtensionKey,
|
|
22831
|
+
ActionExtensionKey,
|
|
22832
|
+
ActionExtensionKey,
|
|
22833
|
+
ActionExtensionKey,
|
|
22834
|
+
ActionExtensionKey,
|
|
22835
|
+
ActionExtensionKey,
|
|
22836
|
+
ActionExtensionKey,
|
|
22837
|
+
ActionExtensionKey,
|
|
22838
|
+
ActionExtensionKey,
|
|
22839
|
+
ActionExtensionKey,
|
|
22840
|
+
ActionExtensionKey,
|
|
22841
|
+
ActionExtensionKey,
|
|
22842
|
+
ActionExtensionKey,
|
|
22843
|
+
ActionExtensionKey
|
|
22844
|
+
]
|
|
22845
|
+
| [
|
|
22846
|
+
ActionExtensionKey,
|
|
22847
|
+
ActionExtensionKey,
|
|
22848
|
+
ActionExtensionKey,
|
|
22849
|
+
ActionExtensionKey,
|
|
22850
|
+
ActionExtensionKey,
|
|
22851
|
+
ActionExtensionKey,
|
|
22852
|
+
ActionExtensionKey,
|
|
22853
|
+
ActionExtensionKey,
|
|
22854
|
+
ActionExtensionKey,
|
|
22855
|
+
ActionExtensionKey,
|
|
22856
|
+
ActionExtensionKey,
|
|
22857
|
+
ActionExtensionKey,
|
|
22858
|
+
ActionExtensionKey,
|
|
22859
|
+
ActionExtensionKey,
|
|
22860
|
+
ActionExtensionKey,
|
|
22861
|
+
ActionExtensionKey,
|
|
22862
|
+
ActionExtensionKey,
|
|
22863
|
+
ActionExtensionKey
|
|
22864
|
+
]
|
|
22865
|
+
| [
|
|
22866
|
+
ActionExtensionKey,
|
|
22867
|
+
ActionExtensionKey,
|
|
22868
|
+
ActionExtensionKey,
|
|
22869
|
+
ActionExtensionKey,
|
|
22870
|
+
ActionExtensionKey,
|
|
22871
|
+
ActionExtensionKey,
|
|
22872
|
+
ActionExtensionKey,
|
|
22873
|
+
ActionExtensionKey,
|
|
22874
|
+
ActionExtensionKey,
|
|
22875
|
+
ActionExtensionKey,
|
|
22876
|
+
ActionExtensionKey,
|
|
22877
|
+
ActionExtensionKey,
|
|
22878
|
+
ActionExtensionKey,
|
|
22879
|
+
ActionExtensionKey,
|
|
22880
|
+
ActionExtensionKey,
|
|
22881
|
+
ActionExtensionKey,
|
|
22882
|
+
ActionExtensionKey,
|
|
22883
|
+
ActionExtensionKey,
|
|
22884
|
+
ActionExtensionKey
|
|
22885
|
+
]
|
|
22886
|
+
| [
|
|
22887
|
+
ActionExtensionKey,
|
|
22888
|
+
ActionExtensionKey,
|
|
22889
|
+
ActionExtensionKey,
|
|
22890
|
+
ActionExtensionKey,
|
|
22891
|
+
ActionExtensionKey,
|
|
22892
|
+
ActionExtensionKey,
|
|
22893
|
+
ActionExtensionKey,
|
|
22894
|
+
ActionExtensionKey,
|
|
22895
|
+
ActionExtensionKey,
|
|
22896
|
+
ActionExtensionKey,
|
|
22897
|
+
ActionExtensionKey,
|
|
22898
|
+
ActionExtensionKey,
|
|
22899
|
+
ActionExtensionKey,
|
|
22900
|
+
ActionExtensionKey,
|
|
22901
|
+
ActionExtensionKey,
|
|
22902
|
+
ActionExtensionKey,
|
|
22903
|
+
ActionExtensionKey,
|
|
22904
|
+
ActionExtensionKey,
|
|
22905
|
+
ActionExtensionKey,
|
|
22906
|
+
ActionExtensionKey
|
|
22907
|
+
];
|
|
22644
22908
|
key: ModuleKeySchema;
|
|
22645
22909
|
},
|
|
22646
22910
|
...{
|
|
22647
22911
|
/**
|
|
22648
22912
|
* A list of actions that will be exposed by the Automation platform.
|
|
22649
22913
|
*/
|
|
22650
|
-
actions:
|
|
22914
|
+
actions:
|
|
22915
|
+
| [ActionExtensionKey]
|
|
22916
|
+
| [ActionExtensionKey, ActionExtensionKey]
|
|
22917
|
+
| [ActionExtensionKey, ActionExtensionKey, ActionExtensionKey]
|
|
22918
|
+
| [ActionExtensionKey, ActionExtensionKey, ActionExtensionKey, ActionExtensionKey]
|
|
22919
|
+
| [ActionExtensionKey, ActionExtensionKey, ActionExtensionKey, ActionExtensionKey, ActionExtensionKey]
|
|
22920
|
+
| [
|
|
22921
|
+
ActionExtensionKey,
|
|
22922
|
+
ActionExtensionKey,
|
|
22923
|
+
ActionExtensionKey,
|
|
22924
|
+
ActionExtensionKey,
|
|
22925
|
+
ActionExtensionKey,
|
|
22926
|
+
ActionExtensionKey
|
|
22927
|
+
]
|
|
22928
|
+
| [
|
|
22929
|
+
ActionExtensionKey,
|
|
22930
|
+
ActionExtensionKey,
|
|
22931
|
+
ActionExtensionKey,
|
|
22932
|
+
ActionExtensionKey,
|
|
22933
|
+
ActionExtensionKey,
|
|
22934
|
+
ActionExtensionKey,
|
|
22935
|
+
ActionExtensionKey
|
|
22936
|
+
]
|
|
22937
|
+
| [
|
|
22938
|
+
ActionExtensionKey,
|
|
22939
|
+
ActionExtensionKey,
|
|
22940
|
+
ActionExtensionKey,
|
|
22941
|
+
ActionExtensionKey,
|
|
22942
|
+
ActionExtensionKey,
|
|
22943
|
+
ActionExtensionKey,
|
|
22944
|
+
ActionExtensionKey,
|
|
22945
|
+
ActionExtensionKey
|
|
22946
|
+
]
|
|
22947
|
+
| [
|
|
22948
|
+
ActionExtensionKey,
|
|
22949
|
+
ActionExtensionKey,
|
|
22950
|
+
ActionExtensionKey,
|
|
22951
|
+
ActionExtensionKey,
|
|
22952
|
+
ActionExtensionKey,
|
|
22953
|
+
ActionExtensionKey,
|
|
22954
|
+
ActionExtensionKey,
|
|
22955
|
+
ActionExtensionKey,
|
|
22956
|
+
ActionExtensionKey
|
|
22957
|
+
]
|
|
22958
|
+
| [
|
|
22959
|
+
ActionExtensionKey,
|
|
22960
|
+
ActionExtensionKey,
|
|
22961
|
+
ActionExtensionKey,
|
|
22962
|
+
ActionExtensionKey,
|
|
22963
|
+
ActionExtensionKey,
|
|
22964
|
+
ActionExtensionKey,
|
|
22965
|
+
ActionExtensionKey,
|
|
22966
|
+
ActionExtensionKey,
|
|
22967
|
+
ActionExtensionKey,
|
|
22968
|
+
ActionExtensionKey
|
|
22969
|
+
]
|
|
22970
|
+
| [
|
|
22971
|
+
ActionExtensionKey,
|
|
22972
|
+
ActionExtensionKey,
|
|
22973
|
+
ActionExtensionKey,
|
|
22974
|
+
ActionExtensionKey,
|
|
22975
|
+
ActionExtensionKey,
|
|
22976
|
+
ActionExtensionKey,
|
|
22977
|
+
ActionExtensionKey,
|
|
22978
|
+
ActionExtensionKey,
|
|
22979
|
+
ActionExtensionKey,
|
|
22980
|
+
ActionExtensionKey,
|
|
22981
|
+
ActionExtensionKey
|
|
22982
|
+
]
|
|
22983
|
+
| [
|
|
22984
|
+
ActionExtensionKey,
|
|
22985
|
+
ActionExtensionKey,
|
|
22986
|
+
ActionExtensionKey,
|
|
22987
|
+
ActionExtensionKey,
|
|
22988
|
+
ActionExtensionKey,
|
|
22989
|
+
ActionExtensionKey,
|
|
22990
|
+
ActionExtensionKey,
|
|
22991
|
+
ActionExtensionKey,
|
|
22992
|
+
ActionExtensionKey,
|
|
22993
|
+
ActionExtensionKey,
|
|
22994
|
+
ActionExtensionKey,
|
|
22995
|
+
ActionExtensionKey
|
|
22996
|
+
]
|
|
22997
|
+
| [
|
|
22998
|
+
ActionExtensionKey,
|
|
22999
|
+
ActionExtensionKey,
|
|
23000
|
+
ActionExtensionKey,
|
|
23001
|
+
ActionExtensionKey,
|
|
23002
|
+
ActionExtensionKey,
|
|
23003
|
+
ActionExtensionKey,
|
|
23004
|
+
ActionExtensionKey,
|
|
23005
|
+
ActionExtensionKey,
|
|
23006
|
+
ActionExtensionKey,
|
|
23007
|
+
ActionExtensionKey,
|
|
23008
|
+
ActionExtensionKey,
|
|
23009
|
+
ActionExtensionKey,
|
|
23010
|
+
ActionExtensionKey
|
|
23011
|
+
]
|
|
23012
|
+
| [
|
|
23013
|
+
ActionExtensionKey,
|
|
23014
|
+
ActionExtensionKey,
|
|
23015
|
+
ActionExtensionKey,
|
|
23016
|
+
ActionExtensionKey,
|
|
23017
|
+
ActionExtensionKey,
|
|
23018
|
+
ActionExtensionKey,
|
|
23019
|
+
ActionExtensionKey,
|
|
23020
|
+
ActionExtensionKey,
|
|
23021
|
+
ActionExtensionKey,
|
|
23022
|
+
ActionExtensionKey,
|
|
23023
|
+
ActionExtensionKey,
|
|
23024
|
+
ActionExtensionKey,
|
|
23025
|
+
ActionExtensionKey,
|
|
23026
|
+
ActionExtensionKey
|
|
23027
|
+
]
|
|
23028
|
+
| [
|
|
23029
|
+
ActionExtensionKey,
|
|
23030
|
+
ActionExtensionKey,
|
|
23031
|
+
ActionExtensionKey,
|
|
23032
|
+
ActionExtensionKey,
|
|
23033
|
+
ActionExtensionKey,
|
|
23034
|
+
ActionExtensionKey,
|
|
23035
|
+
ActionExtensionKey,
|
|
23036
|
+
ActionExtensionKey,
|
|
23037
|
+
ActionExtensionKey,
|
|
23038
|
+
ActionExtensionKey,
|
|
23039
|
+
ActionExtensionKey,
|
|
23040
|
+
ActionExtensionKey,
|
|
23041
|
+
ActionExtensionKey,
|
|
23042
|
+
ActionExtensionKey,
|
|
23043
|
+
ActionExtensionKey
|
|
23044
|
+
]
|
|
23045
|
+
| [
|
|
23046
|
+
ActionExtensionKey,
|
|
23047
|
+
ActionExtensionKey,
|
|
23048
|
+
ActionExtensionKey,
|
|
23049
|
+
ActionExtensionKey,
|
|
23050
|
+
ActionExtensionKey,
|
|
23051
|
+
ActionExtensionKey,
|
|
23052
|
+
ActionExtensionKey,
|
|
23053
|
+
ActionExtensionKey,
|
|
23054
|
+
ActionExtensionKey,
|
|
23055
|
+
ActionExtensionKey,
|
|
23056
|
+
ActionExtensionKey,
|
|
23057
|
+
ActionExtensionKey,
|
|
23058
|
+
ActionExtensionKey,
|
|
23059
|
+
ActionExtensionKey,
|
|
23060
|
+
ActionExtensionKey,
|
|
23061
|
+
ActionExtensionKey
|
|
23062
|
+
]
|
|
23063
|
+
| [
|
|
23064
|
+
ActionExtensionKey,
|
|
23065
|
+
ActionExtensionKey,
|
|
23066
|
+
ActionExtensionKey,
|
|
23067
|
+
ActionExtensionKey,
|
|
23068
|
+
ActionExtensionKey,
|
|
23069
|
+
ActionExtensionKey,
|
|
23070
|
+
ActionExtensionKey,
|
|
23071
|
+
ActionExtensionKey,
|
|
23072
|
+
ActionExtensionKey,
|
|
23073
|
+
ActionExtensionKey,
|
|
23074
|
+
ActionExtensionKey,
|
|
23075
|
+
ActionExtensionKey,
|
|
23076
|
+
ActionExtensionKey,
|
|
23077
|
+
ActionExtensionKey,
|
|
23078
|
+
ActionExtensionKey,
|
|
23079
|
+
ActionExtensionKey,
|
|
23080
|
+
ActionExtensionKey
|
|
23081
|
+
]
|
|
23082
|
+
| [
|
|
23083
|
+
ActionExtensionKey,
|
|
23084
|
+
ActionExtensionKey,
|
|
23085
|
+
ActionExtensionKey,
|
|
23086
|
+
ActionExtensionKey,
|
|
23087
|
+
ActionExtensionKey,
|
|
23088
|
+
ActionExtensionKey,
|
|
23089
|
+
ActionExtensionKey,
|
|
23090
|
+
ActionExtensionKey,
|
|
23091
|
+
ActionExtensionKey,
|
|
23092
|
+
ActionExtensionKey,
|
|
23093
|
+
ActionExtensionKey,
|
|
23094
|
+
ActionExtensionKey,
|
|
23095
|
+
ActionExtensionKey,
|
|
23096
|
+
ActionExtensionKey,
|
|
23097
|
+
ActionExtensionKey,
|
|
23098
|
+
ActionExtensionKey,
|
|
23099
|
+
ActionExtensionKey,
|
|
23100
|
+
ActionExtensionKey
|
|
23101
|
+
]
|
|
23102
|
+
| [
|
|
23103
|
+
ActionExtensionKey,
|
|
23104
|
+
ActionExtensionKey,
|
|
23105
|
+
ActionExtensionKey,
|
|
23106
|
+
ActionExtensionKey,
|
|
23107
|
+
ActionExtensionKey,
|
|
23108
|
+
ActionExtensionKey,
|
|
23109
|
+
ActionExtensionKey,
|
|
23110
|
+
ActionExtensionKey,
|
|
23111
|
+
ActionExtensionKey,
|
|
23112
|
+
ActionExtensionKey,
|
|
23113
|
+
ActionExtensionKey,
|
|
23114
|
+
ActionExtensionKey,
|
|
23115
|
+
ActionExtensionKey,
|
|
23116
|
+
ActionExtensionKey,
|
|
23117
|
+
ActionExtensionKey,
|
|
23118
|
+
ActionExtensionKey,
|
|
23119
|
+
ActionExtensionKey,
|
|
23120
|
+
ActionExtensionKey,
|
|
23121
|
+
ActionExtensionKey
|
|
23122
|
+
]
|
|
23123
|
+
| [
|
|
23124
|
+
ActionExtensionKey,
|
|
23125
|
+
ActionExtensionKey,
|
|
23126
|
+
ActionExtensionKey,
|
|
23127
|
+
ActionExtensionKey,
|
|
23128
|
+
ActionExtensionKey,
|
|
23129
|
+
ActionExtensionKey,
|
|
23130
|
+
ActionExtensionKey,
|
|
23131
|
+
ActionExtensionKey,
|
|
23132
|
+
ActionExtensionKey,
|
|
23133
|
+
ActionExtensionKey,
|
|
23134
|
+
ActionExtensionKey,
|
|
23135
|
+
ActionExtensionKey,
|
|
23136
|
+
ActionExtensionKey,
|
|
23137
|
+
ActionExtensionKey,
|
|
23138
|
+
ActionExtensionKey,
|
|
23139
|
+
ActionExtensionKey,
|
|
23140
|
+
ActionExtensionKey,
|
|
23141
|
+
ActionExtensionKey,
|
|
23142
|
+
ActionExtensionKey,
|
|
23143
|
+
ActionExtensionKey
|
|
23144
|
+
];
|
|
22651
23145
|
key: ModuleKeySchema;
|
|
22652
23146
|
}[]
|
|
22653
23147
|
];
|