@forge/manifest 5.1.0 → 5.1.1-next.1
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 +306 -44
- package/out/schema/manifest.d.ts +494 -246
- package/out/types/module-types.d.ts +2 -0
- package/out/types/module-types.d.ts.map +1 -1
- package/out/types/module-types.js +2 -0
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -3631,9 +3631,13 @@ export interface Modules {
|
|
|
3631
3631
|
| {
|
|
3632
3632
|
title: string;
|
|
3633
3633
|
icon?: string;
|
|
3634
|
-
resolver?:
|
|
3635
|
-
|
|
3636
|
-
|
|
3634
|
+
resolver?:
|
|
3635
|
+
| {
|
|
3636
|
+
function: string;
|
|
3637
|
+
}
|
|
3638
|
+
| {
|
|
3639
|
+
endpoint: string;
|
|
3640
|
+
};
|
|
3637
3641
|
resource: string;
|
|
3638
3642
|
key: ModuleKeySchema;
|
|
3639
3643
|
[k: string]: unknown;
|
|
@@ -3650,9 +3654,13 @@ export interface Modules {
|
|
|
3650
3654
|
| {
|
|
3651
3655
|
title: string;
|
|
3652
3656
|
icon?: string;
|
|
3653
|
-
resolver?:
|
|
3654
|
-
|
|
3655
|
-
|
|
3657
|
+
resolver?:
|
|
3658
|
+
| {
|
|
3659
|
+
function: string;
|
|
3660
|
+
}
|
|
3661
|
+
| {
|
|
3662
|
+
endpoint: string;
|
|
3663
|
+
};
|
|
3656
3664
|
resource: string;
|
|
3657
3665
|
key: ModuleKeySchema;
|
|
3658
3666
|
[k: string]: unknown;
|
|
@@ -3672,9 +3680,13 @@ export interface Modules {
|
|
|
3672
3680
|
| {
|
|
3673
3681
|
title: string;
|
|
3674
3682
|
icon?: string;
|
|
3675
|
-
resolver?:
|
|
3676
|
-
|
|
3677
|
-
|
|
3683
|
+
resolver?:
|
|
3684
|
+
| {
|
|
3685
|
+
function: string;
|
|
3686
|
+
}
|
|
3687
|
+
| {
|
|
3688
|
+
endpoint: string;
|
|
3689
|
+
};
|
|
3678
3690
|
displayConditions?: DisplayConditions;
|
|
3679
3691
|
resource: string;
|
|
3680
3692
|
key: ModuleKeySchema;
|
|
@@ -3693,9 +3705,13 @@ export interface Modules {
|
|
|
3693
3705
|
| {
|
|
3694
3706
|
title: string;
|
|
3695
3707
|
icon?: string;
|
|
3696
|
-
resolver?:
|
|
3697
|
-
|
|
3698
|
-
|
|
3708
|
+
resolver?:
|
|
3709
|
+
| {
|
|
3710
|
+
function: string;
|
|
3711
|
+
}
|
|
3712
|
+
| {
|
|
3713
|
+
endpoint: string;
|
|
3714
|
+
};
|
|
3699
3715
|
displayConditions?: DisplayConditions;
|
|
3700
3716
|
resource: string;
|
|
3701
3717
|
key: ModuleKeySchema;
|
|
@@ -3715,9 +3731,13 @@ export interface Modules {
|
|
|
3715
3731
|
| {
|
|
3716
3732
|
title: string;
|
|
3717
3733
|
icon?: string;
|
|
3718
|
-
resolver?:
|
|
3719
|
-
|
|
3720
|
-
|
|
3734
|
+
resolver?:
|
|
3735
|
+
| {
|
|
3736
|
+
function: string;
|
|
3737
|
+
}
|
|
3738
|
+
| {
|
|
3739
|
+
endpoint: string;
|
|
3740
|
+
};
|
|
3721
3741
|
resource: string;
|
|
3722
3742
|
key: ModuleKeySchema;
|
|
3723
3743
|
[k: string]: unknown;
|
|
@@ -3734,9 +3754,13 @@ export interface Modules {
|
|
|
3734
3754
|
| {
|
|
3735
3755
|
title: string;
|
|
3736
3756
|
icon?: string;
|
|
3737
|
-
resolver?:
|
|
3738
|
-
|
|
3739
|
-
|
|
3757
|
+
resolver?:
|
|
3758
|
+
| {
|
|
3759
|
+
function: string;
|
|
3760
|
+
}
|
|
3761
|
+
| {
|
|
3762
|
+
endpoint: string;
|
|
3763
|
+
};
|
|
3740
3764
|
resource: string;
|
|
3741
3765
|
key: ModuleKeySchema;
|
|
3742
3766
|
[k: string]: unknown;
|
|
@@ -3755,9 +3779,13 @@ export interface Modules {
|
|
|
3755
3779
|
| {
|
|
3756
3780
|
title: string;
|
|
3757
3781
|
icon?: string;
|
|
3758
|
-
resolver?:
|
|
3759
|
-
|
|
3760
|
-
|
|
3782
|
+
resolver?:
|
|
3783
|
+
| {
|
|
3784
|
+
function: string;
|
|
3785
|
+
}
|
|
3786
|
+
| {
|
|
3787
|
+
endpoint: string;
|
|
3788
|
+
};
|
|
3761
3789
|
resource: string;
|
|
3762
3790
|
key: ModuleKeySchema;
|
|
3763
3791
|
[k: string]: unknown;
|
|
@@ -3774,9 +3802,13 @@ export interface Modules {
|
|
|
3774
3802
|
| {
|
|
3775
3803
|
title: string;
|
|
3776
3804
|
icon?: string;
|
|
3777
|
-
resolver?:
|
|
3778
|
-
|
|
3779
|
-
|
|
3805
|
+
resolver?:
|
|
3806
|
+
| {
|
|
3807
|
+
function: string;
|
|
3808
|
+
}
|
|
3809
|
+
| {
|
|
3810
|
+
endpoint: string;
|
|
3811
|
+
};
|
|
3780
3812
|
resource: string;
|
|
3781
3813
|
key: ModuleKeySchema;
|
|
3782
3814
|
[k: string]: unknown;
|
|
@@ -5407,6 +5439,52 @@ export interface Modules {
|
|
|
5407
5439
|
[k: string]: unknown;
|
|
5408
5440
|
}[]
|
|
5409
5441
|
];
|
|
5442
|
+
'connect-jira:jiraRemoteLinkInfoProvider'?: [
|
|
5443
|
+
{
|
|
5444
|
+
homeUrl?: string;
|
|
5445
|
+
documentationUrl?: string;
|
|
5446
|
+
name?: I18NProperty30;
|
|
5447
|
+
actions?: {
|
|
5448
|
+
actionId: string;
|
|
5449
|
+
/**
|
|
5450
|
+
*
|
|
5451
|
+
*
|
|
5452
|
+
*
|
|
5453
|
+
*/
|
|
5454
|
+
actionLabel: {
|
|
5455
|
+
value: I18NProperty31;
|
|
5456
|
+
[k: string]: unknown;
|
|
5457
|
+
};
|
|
5458
|
+
templateUrl: string;
|
|
5459
|
+
[k: string]: unknown;
|
|
5460
|
+
}[];
|
|
5461
|
+
logoUrl?: string;
|
|
5462
|
+
key: ModuleKeySchema;
|
|
5463
|
+
[k: string]: unknown;
|
|
5464
|
+
},
|
|
5465
|
+
...{
|
|
5466
|
+
homeUrl?: string;
|
|
5467
|
+
documentationUrl?: string;
|
|
5468
|
+
name?: I18NProperty30;
|
|
5469
|
+
actions?: {
|
|
5470
|
+
actionId: string;
|
|
5471
|
+
/**
|
|
5472
|
+
*
|
|
5473
|
+
*
|
|
5474
|
+
*
|
|
5475
|
+
*/
|
|
5476
|
+
actionLabel: {
|
|
5477
|
+
value: I18NProperty31;
|
|
5478
|
+
[k: string]: unknown;
|
|
5479
|
+
};
|
|
5480
|
+
templateUrl: string;
|
|
5481
|
+
[k: string]: unknown;
|
|
5482
|
+
}[];
|
|
5483
|
+
logoUrl?: string;
|
|
5484
|
+
key: ModuleKeySchema;
|
|
5485
|
+
[k: string]: unknown;
|
|
5486
|
+
}[]
|
|
5487
|
+
];
|
|
5410
5488
|
'connect-jira:jiraBackgroundScripts'?: [
|
|
5411
5489
|
{
|
|
5412
5490
|
location?: DashboardBackgroundScriptLocation | IssueBackgroundScriptLocation;
|
|
@@ -5425,7 +5503,7 @@ export interface Modules {
|
|
|
5425
5503
|
{
|
|
5426
5504
|
homeUrl?: string;
|
|
5427
5505
|
documentationUrl?: string;
|
|
5428
|
-
name?:
|
|
5506
|
+
name?: I18NProperty32;
|
|
5429
5507
|
/**
|
|
5430
5508
|
*
|
|
5431
5509
|
*
|
|
@@ -5455,7 +5533,7 @@ export interface Modules {
|
|
|
5455
5533
|
...{
|
|
5456
5534
|
homeUrl?: string;
|
|
5457
5535
|
documentationUrl?: string;
|
|
5458
|
-
name?:
|
|
5536
|
+
name?: I18NProperty32;
|
|
5459
5537
|
/**
|
|
5460
5538
|
*
|
|
5461
5539
|
*
|
|
@@ -5485,8 +5563,8 @@ export interface Modules {
|
|
|
5485
5563
|
];
|
|
5486
5564
|
'connect-jira:jiraReports'?: [
|
|
5487
5565
|
{
|
|
5488
|
-
name?:
|
|
5489
|
-
description?:
|
|
5566
|
+
name?: I18NProperty33;
|
|
5567
|
+
description?: I18NProperty34;
|
|
5490
5568
|
reportCategory?:
|
|
5491
5569
|
| 'agile'
|
|
5492
5570
|
| 'AGILE'
|
|
@@ -5502,8 +5580,8 @@ export interface Modules {
|
|
|
5502
5580
|
[k: string]: unknown;
|
|
5503
5581
|
},
|
|
5504
5582
|
...{
|
|
5505
|
-
name?:
|
|
5506
|
-
description?:
|
|
5583
|
+
name?: I18NProperty33;
|
|
5584
|
+
description?: I18NProperty34;
|
|
5507
5585
|
reportCategory?:
|
|
5508
5586
|
| 'agile'
|
|
5509
5587
|
| 'AGILE'
|
|
@@ -5519,10 +5597,32 @@ export interface Modules {
|
|
|
5519
5597
|
[k: string]: unknown;
|
|
5520
5598
|
}[]
|
|
5521
5599
|
];
|
|
5600
|
+
'connect-jira:jiraIssueContexts'?: [
|
|
5601
|
+
{
|
|
5602
|
+
icon?: Icon6;
|
|
5603
|
+
name?: I18NProperty35;
|
|
5604
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5605
|
+
content?: IssueContextContentLabel;
|
|
5606
|
+
target?: IssueContextTargetWebPanel;
|
|
5607
|
+
jiraNativeAppsEnabled?: boolean;
|
|
5608
|
+
key: ModuleKeySchema;
|
|
5609
|
+
[k: string]: unknown;
|
|
5610
|
+
},
|
|
5611
|
+
...{
|
|
5612
|
+
icon?: Icon6;
|
|
5613
|
+
name?: I18NProperty35;
|
|
5614
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5615
|
+
content?: IssueContextContentLabel;
|
|
5616
|
+
target?: IssueContextTargetWebPanel;
|
|
5617
|
+
jiraNativeAppsEnabled?: boolean;
|
|
5618
|
+
key: ModuleKeySchema;
|
|
5619
|
+
[k: string]: unknown;
|
|
5620
|
+
}[]
|
|
5621
|
+
];
|
|
5522
5622
|
'connect-jira:jiraDashboardItems'?: [
|
|
5523
5623
|
{
|
|
5524
|
-
name?:
|
|
5525
|
-
description?:
|
|
5624
|
+
name?: I18NProperty37;
|
|
5625
|
+
description?: I18NProperty38;
|
|
5526
5626
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5527
5627
|
url?: string;
|
|
5528
5628
|
configurable?: boolean;
|
|
@@ -5532,8 +5632,8 @@ export interface Modules {
|
|
|
5532
5632
|
[k: string]: unknown;
|
|
5533
5633
|
},
|
|
5534
5634
|
...{
|
|
5535
|
-
name?:
|
|
5536
|
-
description?:
|
|
5635
|
+
name?: I18NProperty37;
|
|
5636
|
+
description?: I18NProperty38;
|
|
5537
5637
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5538
5638
|
url?: string;
|
|
5539
5639
|
configurable?: boolean;
|
|
@@ -5548,8 +5648,8 @@ export interface Modules {
|
|
|
5548
5648
|
view?: URL6;
|
|
5549
5649
|
triggered?: URL7;
|
|
5550
5650
|
edit?: URL8;
|
|
5551
|
-
name?:
|
|
5552
|
-
description?:
|
|
5651
|
+
name?: I18NProperty39;
|
|
5652
|
+
description?: I18NProperty40;
|
|
5553
5653
|
create?: URL9;
|
|
5554
5654
|
key: ModuleKeySchema;
|
|
5555
5655
|
[k: string]: unknown;
|
|
@@ -5558,8 +5658,8 @@ export interface Modules {
|
|
|
5558
5658
|
view?: URL6;
|
|
5559
5659
|
triggered?: URL7;
|
|
5560
5660
|
edit?: URL8;
|
|
5561
|
-
name?:
|
|
5562
|
-
description?:
|
|
5661
|
+
name?: I18NProperty39;
|
|
5662
|
+
description?: I18NProperty40;
|
|
5563
5663
|
create?: URL9;
|
|
5564
5664
|
key: ModuleKeySchema;
|
|
5565
5665
|
[k: string]: unknown;
|
|
@@ -5567,9 +5667,9 @@ export interface Modules {
|
|
|
5567
5667
|
];
|
|
5568
5668
|
'connect-jira:jiraIssueContents'?: [
|
|
5569
5669
|
{
|
|
5570
|
-
icon?:
|
|
5571
|
-
tooltip?:
|
|
5572
|
-
name?:
|
|
5670
|
+
icon?: Icon7;
|
|
5671
|
+
tooltip?: I18NProperty41;
|
|
5672
|
+
name?: I18NProperty42;
|
|
5573
5673
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5574
5674
|
target?: IssuePageTargetWebPanel;
|
|
5575
5675
|
contentPresentConditions?: (CompositeCondition | SingleCondition)[];
|
|
@@ -5578,9 +5678,9 @@ export interface Modules {
|
|
|
5578
5678
|
[k: string]: unknown;
|
|
5579
5679
|
},
|
|
5580
5680
|
...{
|
|
5581
|
-
icon?:
|
|
5582
|
-
tooltip?:
|
|
5583
|
-
name?:
|
|
5681
|
+
icon?: Icon7;
|
|
5682
|
+
tooltip?: I18NProperty41;
|
|
5683
|
+
name?: I18NProperty42;
|
|
5584
5684
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5585
5685
|
target?: IssuePageTargetWebPanel;
|
|
5586
5686
|
contentPresentConditions?: (CompositeCondition | SingleCondition)[];
|
|
@@ -5592,8 +5692,8 @@ export interface Modules {
|
|
|
5592
5692
|
'connect-jira:jiraDevelopmentTool'?: [
|
|
5593
5693
|
{
|
|
5594
5694
|
capabilities?: ('commit' | 'COMMIT' | 'branch' | 'BRANCH' | 'pull_request' | 'PULL_REQUEST')[];
|
|
5595
|
-
application?:
|
|
5596
|
-
name?:
|
|
5695
|
+
application?: I18NProperty43;
|
|
5696
|
+
name?: I18NProperty44;
|
|
5597
5697
|
actions?: DevelopmentActions;
|
|
5598
5698
|
url?: string;
|
|
5599
5699
|
logoUrl?: string;
|
|
@@ -5602,8 +5702,8 @@ export interface Modules {
|
|
|
5602
5702
|
},
|
|
5603
5703
|
...{
|
|
5604
5704
|
capabilities?: ('commit' | 'COMMIT' | 'branch' | 'BRANCH' | 'pull_request' | 'PULL_REQUEST')[];
|
|
5605
|
-
application?:
|
|
5606
|
-
name?:
|
|
5705
|
+
application?: I18NProperty43;
|
|
5706
|
+
name?: I18NProperty44;
|
|
5607
5707
|
actions?: DevelopmentActions;
|
|
5608
5708
|
url?: string;
|
|
5609
5709
|
logoUrl?: string;
|
|
@@ -5613,7 +5713,7 @@ export interface Modules {
|
|
|
5613
5713
|
];
|
|
5614
5714
|
'connect-jira:jiraProjectTabPanels'?: [
|
|
5615
5715
|
{
|
|
5616
|
-
name?:
|
|
5716
|
+
name?: I18NProperty45;
|
|
5617
5717
|
weight?: number;
|
|
5618
5718
|
conditions?: (CompositeCondition5 | SingleCondition3)[];
|
|
5619
5719
|
params?: {
|
|
@@ -5624,7 +5724,7 @@ export interface Modules {
|
|
|
5624
5724
|
[k: string]: unknown;
|
|
5625
5725
|
},
|
|
5626
5726
|
...{
|
|
5627
|
-
name?:
|
|
5727
|
+
name?: I18NProperty45;
|
|
5628
5728
|
weight?: number;
|
|
5629
5729
|
conditions?: (CompositeCondition5 | SingleCondition3)[];
|
|
5630
5730
|
params?: {
|
|
@@ -5638,16 +5738,16 @@ export interface Modules {
|
|
|
5638
5738
|
'connect-jira:jiraGlobalPermissions'?: [
|
|
5639
5739
|
{
|
|
5640
5740
|
defaultGrants?: ('none' | 'NONE' | 'jira-administrators' | 'JIRA-ADMINISTRATORS' | 'all' | 'ALL')[];
|
|
5641
|
-
name?:
|
|
5642
|
-
description?:
|
|
5741
|
+
name?: I18NProperty46;
|
|
5742
|
+
description?: I18NProperty47;
|
|
5643
5743
|
anonymousAllowed?: boolean;
|
|
5644
5744
|
key: ModuleKeySchema;
|
|
5645
5745
|
[k: string]: unknown;
|
|
5646
5746
|
},
|
|
5647
5747
|
...{
|
|
5648
5748
|
defaultGrants?: ('none' | 'NONE' | 'jira-administrators' | 'JIRA-ADMINISTRATORS' | 'all' | 'ALL')[];
|
|
5649
|
-
name?:
|
|
5650
|
-
description?:
|
|
5749
|
+
name?: I18NProperty46;
|
|
5750
|
+
description?: I18NProperty47;
|
|
5651
5751
|
anonymousAllowed?: boolean;
|
|
5652
5752
|
key: ModuleKeySchema;
|
|
5653
5753
|
[k: string]: unknown;
|
|
@@ -5657,8 +5757,8 @@ export interface Modules {
|
|
|
5657
5757
|
{
|
|
5658
5758
|
template?: IssueFieldTemplate;
|
|
5659
5759
|
property?: IssueFieldProperty;
|
|
5660
|
-
name?:
|
|
5661
|
-
description?:
|
|
5760
|
+
name?: I18NProperty48;
|
|
5761
|
+
description?: I18NProperty49;
|
|
5662
5762
|
type?:
|
|
5663
5763
|
| 'string'
|
|
5664
5764
|
| 'STRING'
|
|
@@ -5681,8 +5781,8 @@ export interface Modules {
|
|
|
5681
5781
|
...{
|
|
5682
5782
|
template?: IssueFieldTemplate;
|
|
5683
5783
|
property?: IssueFieldProperty;
|
|
5684
|
-
name?:
|
|
5685
|
-
description?:
|
|
5784
|
+
name?: I18NProperty48;
|
|
5785
|
+
description?: I18NProperty49;
|
|
5686
5786
|
type?:
|
|
5687
5787
|
| 'string'
|
|
5688
5788
|
| 'STRING'
|
|
@@ -5705,15 +5805,15 @@ export interface Modules {
|
|
|
5705
5805
|
];
|
|
5706
5806
|
'connect-jira:jiraIssueTypes'?: [
|
|
5707
5807
|
{
|
|
5708
|
-
name?:
|
|
5709
|
-
description?:
|
|
5808
|
+
name?: I18NProperty50;
|
|
5809
|
+
description?: I18NProperty51;
|
|
5710
5810
|
type?: 'standard' | 'STANDARD' | 'subtask' | 'SUBTASK';
|
|
5711
5811
|
key: ModuleKeySchema;
|
|
5712
5812
|
[k: string]: unknown;
|
|
5713
5813
|
},
|
|
5714
5814
|
...{
|
|
5715
|
-
name?:
|
|
5716
|
-
description?:
|
|
5815
|
+
name?: I18NProperty50;
|
|
5816
|
+
description?: I18NProperty51;
|
|
5717
5817
|
type?: 'standard' | 'STANDARD' | 'subtask' | 'SUBTASK';
|
|
5718
5818
|
key: ModuleKeySchema;
|
|
5719
5819
|
[k: string]: unknown;
|
|
@@ -5722,13 +5822,13 @@ export interface Modules {
|
|
|
5722
5822
|
'connect-jira:jiraTimeTrackingProviders'?: [
|
|
5723
5823
|
{
|
|
5724
5824
|
adminPageKey?: string;
|
|
5725
|
-
name?:
|
|
5825
|
+
name?: I18NProperty52;
|
|
5726
5826
|
key: ModuleKeySchema;
|
|
5727
5827
|
[k: string]: unknown;
|
|
5728
5828
|
},
|
|
5729
5829
|
...{
|
|
5730
5830
|
adminPageKey?: string;
|
|
5731
|
-
name?:
|
|
5831
|
+
name?: I18NProperty52;
|
|
5732
5832
|
key: ModuleKeySchema;
|
|
5733
5833
|
[k: string]: unknown;
|
|
5734
5834
|
}[]
|
|
@@ -5765,7 +5865,7 @@ export interface Modules {
|
|
|
5765
5865
|
| 'ISSUE_ACTION'
|
|
5766
5866
|
| 'agile_board'
|
|
5767
5867
|
| 'AGILE_BOARD';
|
|
5768
|
-
name?:
|
|
5868
|
+
name?: I18NProperty53;
|
|
5769
5869
|
target?: KeyboardShortcutTarget1;
|
|
5770
5870
|
key: ModuleKeySchema;
|
|
5771
5871
|
[k: string]: unknown;
|
|
@@ -5781,7 +5881,7 @@ export interface Modules {
|
|
|
5781
5881
|
| 'ISSUE_ACTION'
|
|
5782
5882
|
| 'agile_board'
|
|
5783
5883
|
| 'AGILE_BOARD';
|
|
5784
|
-
name?:
|
|
5884
|
+
name?: I18NProperty53;
|
|
5785
5885
|
target?: KeyboardShortcutTarget1;
|
|
5786
5886
|
key: ModuleKeySchema;
|
|
5787
5887
|
[k: string]: unknown;
|
|
@@ -5789,8 +5889,8 @@ export interface Modules {
|
|
|
5789
5889
|
];
|
|
5790
5890
|
'connect-confluence:adminPages'?: [
|
|
5791
5891
|
{
|
|
5792
|
-
icon?:
|
|
5793
|
-
name?:
|
|
5892
|
+
icon?: Icon8;
|
|
5893
|
+
name?: I18NProperty54;
|
|
5794
5894
|
weight?: number;
|
|
5795
5895
|
fullPage?: boolean;
|
|
5796
5896
|
cacheable?: boolean;
|
|
@@ -5804,8 +5904,8 @@ export interface Modules {
|
|
|
5804
5904
|
[k: string]: unknown;
|
|
5805
5905
|
},
|
|
5806
5906
|
...{
|
|
5807
|
-
icon?:
|
|
5808
|
-
name?:
|
|
5907
|
+
icon?: Icon8;
|
|
5908
|
+
name?: I18NProperty54;
|
|
5809
5909
|
weight?: number;
|
|
5810
5910
|
fullPage?: boolean;
|
|
5811
5911
|
cacheable?: boolean;
|
|
@@ -5822,8 +5922,8 @@ export interface Modules {
|
|
|
5822
5922
|
'connect-confluence:webPanels'?: [
|
|
5823
5923
|
{
|
|
5824
5924
|
layout?: WebPanelLayout1;
|
|
5825
|
-
tooltip?:
|
|
5826
|
-
name?:
|
|
5925
|
+
tooltip?: I18NProperty55;
|
|
5926
|
+
name?: I18NProperty56;
|
|
5827
5927
|
weight?: number;
|
|
5828
5928
|
location?: string;
|
|
5829
5929
|
cacheable?: boolean;
|
|
@@ -5838,8 +5938,8 @@ export interface Modules {
|
|
|
5838
5938
|
},
|
|
5839
5939
|
...{
|
|
5840
5940
|
layout?: WebPanelLayout1;
|
|
5841
|
-
tooltip?:
|
|
5842
|
-
name?:
|
|
5941
|
+
tooltip?: I18NProperty55;
|
|
5942
|
+
name?: I18NProperty56;
|
|
5843
5943
|
weight?: number;
|
|
5844
5944
|
location?: string;
|
|
5845
5945
|
cacheable?: boolean;
|
|
@@ -5877,8 +5977,8 @@ export interface Modules {
|
|
|
5877
5977
|
];
|
|
5878
5978
|
'connect-confluence:postInstallPage'?: [
|
|
5879
5979
|
{
|
|
5880
|
-
icon?:
|
|
5881
|
-
name?:
|
|
5980
|
+
icon?: Icon9;
|
|
5981
|
+
name?: I18NProperty57;
|
|
5882
5982
|
weight?: number;
|
|
5883
5983
|
cacheable?: boolean;
|
|
5884
5984
|
location?: string;
|
|
@@ -5891,8 +5991,8 @@ export interface Modules {
|
|
|
5891
5991
|
[k: string]: unknown;
|
|
5892
5992
|
},
|
|
5893
5993
|
...{
|
|
5894
|
-
icon?:
|
|
5895
|
-
name?:
|
|
5994
|
+
icon?: Icon9;
|
|
5995
|
+
name?: I18NProperty57;
|
|
5896
5996
|
weight?: number;
|
|
5897
5997
|
cacheable?: boolean;
|
|
5898
5998
|
location?: string;
|
|
@@ -5907,8 +6007,8 @@ export interface Modules {
|
|
|
5907
6007
|
];
|
|
5908
6008
|
'connect-confluence:webSections'?: [
|
|
5909
6009
|
{
|
|
5910
|
-
tooltip?:
|
|
5911
|
-
name?:
|
|
6010
|
+
tooltip?: I18NProperty58;
|
|
6011
|
+
name?: I18NProperty59;
|
|
5912
6012
|
weight?: number;
|
|
5913
6013
|
location?: string;
|
|
5914
6014
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
@@ -5919,8 +6019,8 @@ export interface Modules {
|
|
|
5919
6019
|
[k: string]: unknown;
|
|
5920
6020
|
},
|
|
5921
6021
|
...{
|
|
5922
|
-
tooltip?:
|
|
5923
|
-
name?:
|
|
6022
|
+
tooltip?: I18NProperty58;
|
|
6023
|
+
name?: I18NProperty59;
|
|
5924
6024
|
weight?: number;
|
|
5925
6025
|
location?: string;
|
|
5926
6026
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
@@ -5933,8 +6033,8 @@ export interface Modules {
|
|
|
5933
6033
|
];
|
|
5934
6034
|
'connect-confluence:generalPages'?: [
|
|
5935
6035
|
{
|
|
5936
|
-
icon?:
|
|
5937
|
-
name?:
|
|
6036
|
+
icon?: Icon10;
|
|
6037
|
+
name?: I18NProperty60;
|
|
5938
6038
|
weight?: number;
|
|
5939
6039
|
cacheable?: boolean;
|
|
5940
6040
|
location?: string;
|
|
@@ -5947,8 +6047,8 @@ export interface Modules {
|
|
|
5947
6047
|
[k: string]: unknown;
|
|
5948
6048
|
},
|
|
5949
6049
|
...{
|
|
5950
|
-
icon?:
|
|
5951
|
-
name?:
|
|
6050
|
+
icon?: Icon10;
|
|
6051
|
+
name?: I18NProperty60;
|
|
5952
6052
|
weight?: number;
|
|
5953
6053
|
cacheable?: boolean;
|
|
5954
6054
|
location?: string;
|
|
@@ -5964,8 +6064,8 @@ export interface Modules {
|
|
|
5964
6064
|
'connect-confluence:webItems'?: [
|
|
5965
6065
|
{
|
|
5966
6066
|
styleClasses?: string[];
|
|
5967
|
-
tooltip?:
|
|
5968
|
-
icon?:
|
|
6067
|
+
tooltip?: I18NProperty61;
|
|
6068
|
+
icon?: Icon11;
|
|
5969
6069
|
weight?: number;
|
|
5970
6070
|
params?: {
|
|
5971
6071
|
[k: string]: unknown;
|
|
@@ -5973,7 +6073,7 @@ export interface Modules {
|
|
|
5973
6073
|
url?: string;
|
|
5974
6074
|
target?: WebItemTarget1;
|
|
5975
6075
|
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
5976
|
-
name?:
|
|
6076
|
+
name?: I18NProperty63;
|
|
5977
6077
|
location?: string;
|
|
5978
6078
|
cacheable?: boolean;
|
|
5979
6079
|
conditions?: (SingleCondition4 | CompositeCondition7)[];
|
|
@@ -5982,8 +6082,8 @@ export interface Modules {
|
|
|
5982
6082
|
},
|
|
5983
6083
|
...{
|
|
5984
6084
|
styleClasses?: string[];
|
|
5985
|
-
tooltip?:
|
|
5986
|
-
icon?:
|
|
6085
|
+
tooltip?: I18NProperty61;
|
|
6086
|
+
icon?: Icon11;
|
|
5987
6087
|
weight?: number;
|
|
5988
6088
|
params?: {
|
|
5989
6089
|
[k: string]: unknown;
|
|
@@ -5991,7 +6091,7 @@ export interface Modules {
|
|
|
5991
6091
|
url?: string;
|
|
5992
6092
|
target?: WebItemTarget1;
|
|
5993
6093
|
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
5994
|
-
name?:
|
|
6094
|
+
name?: I18NProperty63;
|
|
5995
6095
|
location?: string;
|
|
5996
6096
|
cacheable?: boolean;
|
|
5997
6097
|
conditions?: (SingleCondition4 | CompositeCondition7)[];
|
|
@@ -6001,8 +6101,8 @@ export interface Modules {
|
|
|
6001
6101
|
];
|
|
6002
6102
|
'connect-confluence:configurePage'?: [
|
|
6003
6103
|
{
|
|
6004
|
-
icon?:
|
|
6005
|
-
name?:
|
|
6104
|
+
icon?: Icon12;
|
|
6105
|
+
name?: I18NProperty64;
|
|
6006
6106
|
weight?: number;
|
|
6007
6107
|
fullPage?: boolean;
|
|
6008
6108
|
cacheable?: boolean;
|
|
@@ -6016,8 +6116,8 @@ export interface Modules {
|
|
|
6016
6116
|
[k: string]: unknown;
|
|
6017
6117
|
},
|
|
6018
6118
|
...{
|
|
6019
|
-
icon?:
|
|
6020
|
-
name?:
|
|
6119
|
+
icon?: Icon12;
|
|
6120
|
+
name?: I18NProperty64;
|
|
6021
6121
|
weight?: number;
|
|
6022
6122
|
fullPage?: boolean;
|
|
6023
6123
|
cacheable?: boolean;
|
|
@@ -6050,18 +6150,18 @@ export interface Modules {
|
|
|
6050
6150
|
'connect-confluence:blueprints'?: [
|
|
6051
6151
|
{
|
|
6052
6152
|
template?: BlueprintTemplate;
|
|
6053
|
-
icon?:
|
|
6054
|
-
name?:
|
|
6055
|
-
description?:
|
|
6153
|
+
icon?: Icon13;
|
|
6154
|
+
name?: I18NProperty65;
|
|
6155
|
+
description?: I18NProperty66;
|
|
6056
6156
|
createResult?: 'edit' | 'EDIT' | 'view' | 'VIEW';
|
|
6057
6157
|
key: ModuleKeySchema;
|
|
6058
6158
|
[k: string]: unknown;
|
|
6059
6159
|
},
|
|
6060
6160
|
...{
|
|
6061
6161
|
template?: BlueprintTemplate;
|
|
6062
|
-
icon?:
|
|
6063
|
-
name?:
|
|
6064
|
-
description?:
|
|
6162
|
+
icon?: Icon13;
|
|
6163
|
+
name?: I18NProperty65;
|
|
6164
|
+
description?: I18NProperty66;
|
|
6065
6165
|
createResult?: 'edit' | 'EDIT' | 'view' | 'VIEW';
|
|
6066
6166
|
key: ModuleKeySchema;
|
|
6067
6167
|
[k: string]: unknown;
|
|
@@ -6069,7 +6169,7 @@ export interface Modules {
|
|
|
6069
6169
|
];
|
|
6070
6170
|
'connect-confluence:spaceToolsTabs'?: [
|
|
6071
6171
|
{
|
|
6072
|
-
name?:
|
|
6172
|
+
name?: I18NProperty67;
|
|
6073
6173
|
weight?: number;
|
|
6074
6174
|
location?: string;
|
|
6075
6175
|
conditions?: (CompositeCondition9 | SingleCondition5)[];
|
|
@@ -6081,7 +6181,7 @@ export interface Modules {
|
|
|
6081
6181
|
[k: string]: unknown;
|
|
6082
6182
|
},
|
|
6083
6183
|
...{
|
|
6084
|
-
name?:
|
|
6184
|
+
name?: I18NProperty67;
|
|
6085
6185
|
weight?: number;
|
|
6086
6186
|
location?: string;
|
|
6087
6187
|
conditions?: (CompositeCondition9 | SingleCondition5)[];
|
|
@@ -6095,13 +6195,13 @@ export interface Modules {
|
|
|
6095
6195
|
];
|
|
6096
6196
|
'connect-confluence:confluenceContentProperties'?: [
|
|
6097
6197
|
{
|
|
6098
|
-
name?:
|
|
6198
|
+
name?: I18NProperty68;
|
|
6099
6199
|
keyConfigurations?: ContentPropertyIndexKeyConfiguration[];
|
|
6100
6200
|
key: ModuleKeySchema;
|
|
6101
6201
|
[k: string]: unknown;
|
|
6102
6202
|
},
|
|
6103
6203
|
...{
|
|
6104
|
-
name?:
|
|
6204
|
+
name?: I18NProperty68;
|
|
6105
6205
|
keyConfigurations?: ContentPropertyIndexKeyConfiguration[];
|
|
6106
6206
|
key: ModuleKeySchema;
|
|
6107
6207
|
[k: string]: unknown;
|
|
@@ -6110,16 +6210,16 @@ export interface Modules {
|
|
|
6110
6210
|
'connect-confluence:customContent'?: [
|
|
6111
6211
|
{
|
|
6112
6212
|
uiSupport?: CustomContentUISupport;
|
|
6113
|
-
name?:
|
|
6114
|
-
description?:
|
|
6213
|
+
name?: I18NProperty74;
|
|
6214
|
+
description?: I18NProperty75;
|
|
6115
6215
|
apiSupport?: CustomContentAPISupport;
|
|
6116
6216
|
key: ModuleKeySchema;
|
|
6117
6217
|
[k: string]: unknown;
|
|
6118
6218
|
},
|
|
6119
6219
|
...{
|
|
6120
6220
|
uiSupport?: CustomContentUISupport;
|
|
6121
|
-
name?:
|
|
6122
|
-
description?:
|
|
6221
|
+
name?: I18NProperty74;
|
|
6222
|
+
description?: I18NProperty75;
|
|
6123
6223
|
apiSupport?: CustomContentAPISupport;
|
|
6124
6224
|
key: ModuleKeySchema;
|
|
6125
6225
|
[k: string]: unknown;
|
|
@@ -6134,8 +6234,8 @@ export interface Modules {
|
|
|
6134
6234
|
hidden?: boolean;
|
|
6135
6235
|
renderModes?: MacroRenderModes;
|
|
6136
6236
|
documentation?: Link;
|
|
6137
|
-
icon?:
|
|
6138
|
-
description?:
|
|
6237
|
+
icon?: Icon17;
|
|
6238
|
+
description?: I18NProperty78;
|
|
6139
6239
|
outputType?: 'block' | 'BLOCK' | 'inline' | 'INLINE';
|
|
6140
6240
|
url?: string;
|
|
6141
6241
|
propertyPanel?: MacroPropertyPanel;
|
|
@@ -6169,7 +6269,7 @@ export interface Modules {
|
|
|
6169
6269
|
[k: string]: unknown;
|
|
6170
6270
|
};
|
|
6171
6271
|
width?: string;
|
|
6172
|
-
name?:
|
|
6272
|
+
name?: I18NProperty82;
|
|
6173
6273
|
cacheable?: boolean;
|
|
6174
6274
|
categories?: string[];
|
|
6175
6275
|
parameters?: MacroInputParameter[];
|
|
@@ -6185,8 +6285,8 @@ export interface Modules {
|
|
|
6185
6285
|
hidden?: boolean;
|
|
6186
6286
|
renderModes?: MacroRenderModes;
|
|
6187
6287
|
documentation?: Link;
|
|
6188
|
-
icon?:
|
|
6189
|
-
description?:
|
|
6288
|
+
icon?: Icon17;
|
|
6289
|
+
description?: I18NProperty78;
|
|
6190
6290
|
outputType?: 'block' | 'BLOCK' | 'inline' | 'INLINE';
|
|
6191
6291
|
url?: string;
|
|
6192
6292
|
propertyPanel?: MacroPropertyPanel;
|
|
@@ -6220,7 +6320,7 @@ export interface Modules {
|
|
|
6220
6320
|
[k: string]: unknown;
|
|
6221
6321
|
};
|
|
6222
6322
|
width?: string;
|
|
6223
|
-
name?:
|
|
6323
|
+
name?: I18NProperty82;
|
|
6224
6324
|
cacheable?: boolean;
|
|
6225
6325
|
categories?: string[];
|
|
6226
6326
|
parameters?: MacroInputParameter[];
|
|
@@ -6237,15 +6337,15 @@ export interface Modules {
|
|
|
6237
6337
|
aliases?: string[];
|
|
6238
6338
|
hidden?: boolean;
|
|
6239
6339
|
documentation?: Link1;
|
|
6240
|
-
icon?:
|
|
6241
|
-
description?:
|
|
6340
|
+
icon?: Icon18;
|
|
6341
|
+
description?: I18NProperty87;
|
|
6242
6342
|
outputType?: 'block' | 'BLOCK' | 'inline' | 'INLINE';
|
|
6243
6343
|
url?: string;
|
|
6244
6344
|
propertyPanel?: MacroPropertyPanel1;
|
|
6245
6345
|
autoconvert?: Autoconvert1;
|
|
6246
6346
|
imagePlaceholder?: ImagePlaceholder1;
|
|
6247
6347
|
renderingMethod?: 'get' | 'GET' | 'post' | 'POST';
|
|
6248
|
-
name?:
|
|
6348
|
+
name?: I18NProperty91;
|
|
6249
6349
|
categories?: string[];
|
|
6250
6350
|
parameters?: MacroInputParameter1[];
|
|
6251
6351
|
key: ModuleKeySchema;
|
|
@@ -6258,15 +6358,15 @@ export interface Modules {
|
|
|
6258
6358
|
aliases?: string[];
|
|
6259
6359
|
hidden?: boolean;
|
|
6260
6360
|
documentation?: Link1;
|
|
6261
|
-
icon?:
|
|
6262
|
-
description?:
|
|
6361
|
+
icon?: Icon18;
|
|
6362
|
+
description?: I18NProperty87;
|
|
6263
6363
|
outputType?: 'block' | 'BLOCK' | 'inline' | 'INLINE';
|
|
6264
6364
|
url?: string;
|
|
6265
6365
|
propertyPanel?: MacroPropertyPanel1;
|
|
6266
6366
|
autoconvert?: Autoconvert1;
|
|
6267
6367
|
imagePlaceholder?: ImagePlaceholder1;
|
|
6268
6368
|
renderingMethod?: 'get' | 'GET' | 'post' | 'POST';
|
|
6269
|
-
name?:
|
|
6369
|
+
name?: I18NProperty91;
|
|
6270
6370
|
categories?: string[];
|
|
6271
6371
|
parameters?: MacroInputParameter1[];
|
|
6272
6372
|
key: ModuleKeySchema;
|
|
@@ -6276,9 +6376,9 @@ export interface Modules {
|
|
|
6276
6376
|
'connect-confluence:contentBylineItems'?: [
|
|
6277
6377
|
{
|
|
6278
6378
|
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
6279
|
-
tooltip?:
|
|
6280
|
-
icon?:
|
|
6281
|
-
name?:
|
|
6379
|
+
tooltip?: I18NProperty94;
|
|
6380
|
+
icon?: Icon19;
|
|
6381
|
+
name?: I18NProperty95;
|
|
6282
6382
|
cacheable?: boolean;
|
|
6283
6383
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
6284
6384
|
params?: {
|
|
@@ -6292,9 +6392,9 @@ export interface Modules {
|
|
|
6292
6392
|
},
|
|
6293
6393
|
...{
|
|
6294
6394
|
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
6295
|
-
tooltip?:
|
|
6296
|
-
icon?:
|
|
6297
|
-
name?:
|
|
6395
|
+
tooltip?: I18NProperty94;
|
|
6396
|
+
icon?: Icon19;
|
|
6397
|
+
name?: I18NProperty95;
|
|
6298
6398
|
cacheable?: boolean;
|
|
6299
6399
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
6300
6400
|
params?: {
|
|
@@ -6311,10 +6411,10 @@ export interface Modules {
|
|
|
6311
6411
|
{
|
|
6312
6412
|
routes?: ThemeRoutes;
|
|
6313
6413
|
lookAndFeel?: LookAndFeel;
|
|
6314
|
-
icon?:
|
|
6414
|
+
icon?: Icon20;
|
|
6315
6415
|
routeOverride?: boolean;
|
|
6316
|
-
name?:
|
|
6317
|
-
description?:
|
|
6416
|
+
name?: I18NProperty97;
|
|
6417
|
+
description?: I18NProperty98;
|
|
6318
6418
|
availableGlobally?: boolean;
|
|
6319
6419
|
key: ModuleKeySchema;
|
|
6320
6420
|
[k: string]: unknown;
|
|
@@ -6322,10 +6422,10 @@ export interface Modules {
|
|
|
6322
6422
|
...{
|
|
6323
6423
|
routes?: ThemeRoutes;
|
|
6324
6424
|
lookAndFeel?: LookAndFeel;
|
|
6325
|
-
icon?:
|
|
6425
|
+
icon?: Icon20;
|
|
6326
6426
|
routeOverride?: boolean;
|
|
6327
|
-
name?:
|
|
6328
|
-
description?:
|
|
6427
|
+
name?: I18NProperty97;
|
|
6428
|
+
description?: I18NProperty98;
|
|
6329
6429
|
availableGlobally?: boolean;
|
|
6330
6430
|
key: ModuleKeySchema;
|
|
6331
6431
|
[k: string]: unknown;
|
|
@@ -8156,7 +8256,64 @@ export interface I18NProperty28 {
|
|
|
8156
8256
|
*
|
|
8157
8257
|
*
|
|
8158
8258
|
*/
|
|
8159
|
-
export interface I18NProperty29 {
|
|
8259
|
+
export interface I18NProperty29 {
|
|
8260
|
+
value: string;
|
|
8261
|
+
i18n?: string;
|
|
8262
|
+
[k: string]: unknown;
|
|
8263
|
+
}
|
|
8264
|
+
/**
|
|
8265
|
+
*
|
|
8266
|
+
*
|
|
8267
|
+
*
|
|
8268
|
+
*/
|
|
8269
|
+
export interface URL5 {
|
|
8270
|
+
url: string;
|
|
8271
|
+
[k: string]: unknown;
|
|
8272
|
+
}
|
|
8273
|
+
/**
|
|
8274
|
+
*
|
|
8275
|
+
*
|
|
8276
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8277
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8278
|
+
*
|
|
8279
|
+
* <h3>Example</h3>
|
|
8280
|
+
*
|
|
8281
|
+
*
|
|
8282
|
+
*
|
|
8283
|
+
*
|
|
8284
|
+
*
|
|
8285
|
+
* {
|
|
8286
|
+
* "value": "My text"
|
|
8287
|
+
* }
|
|
8288
|
+
*
|
|
8289
|
+
*
|
|
8290
|
+
*
|
|
8291
|
+
*/
|
|
8292
|
+
export interface I18NProperty30 {
|
|
8293
|
+
value: string;
|
|
8294
|
+
i18n?: string;
|
|
8295
|
+
[k: string]: unknown;
|
|
8296
|
+
}
|
|
8297
|
+
/**
|
|
8298
|
+
*
|
|
8299
|
+
*
|
|
8300
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8301
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8302
|
+
*
|
|
8303
|
+
* <h3>Example</h3>
|
|
8304
|
+
*
|
|
8305
|
+
*
|
|
8306
|
+
*
|
|
8307
|
+
*
|
|
8308
|
+
*
|
|
8309
|
+
* {
|
|
8310
|
+
* "value": "My text"
|
|
8311
|
+
* }
|
|
8312
|
+
*
|
|
8313
|
+
*
|
|
8314
|
+
*
|
|
8315
|
+
*/
|
|
8316
|
+
export interface I18NProperty31 {
|
|
8160
8317
|
value: string;
|
|
8161
8318
|
i18n?: string;
|
|
8162
8319
|
[k: string]: unknown;
|
|
@@ -8164,33 +8321,48 @@ export interface I18NProperty29 {
|
|
|
8164
8321
|
/**
|
|
8165
8322
|
*
|
|
8166
8323
|
*
|
|
8324
|
+
* Describes the location of the dashboard background script module.
|
|
8325
|
+
*
|
|
8167
8326
|
*
|
|
8168
8327
|
*/
|
|
8169
|
-
export interface
|
|
8170
|
-
|
|
8328
|
+
export interface DashboardBackgroundScriptLocation {
|
|
8329
|
+
type: 'issue_view' | 'ISSUE_VIEW' | 'dashboard' | 'DASHBOARD';
|
|
8171
8330
|
[k: string]: unknown;
|
|
8172
8331
|
}
|
|
8173
8332
|
/**
|
|
8174
8333
|
*
|
|
8175
8334
|
*
|
|
8176
|
-
* Describes the location of the
|
|
8335
|
+
* Describes the location of the issue background script module.
|
|
8177
8336
|
*
|
|
8178
8337
|
*
|
|
8179
8338
|
*/
|
|
8180
|
-
export interface
|
|
8339
|
+
export interface IssueBackgroundScriptLocation {
|
|
8181
8340
|
type: 'issue_view' | 'ISSUE_VIEW' | 'dashboard' | 'DASHBOARD';
|
|
8341
|
+
shouldReloadOnRefresh?: boolean;
|
|
8182
8342
|
[k: string]: unknown;
|
|
8183
8343
|
}
|
|
8184
8344
|
/**
|
|
8185
8345
|
*
|
|
8186
8346
|
*
|
|
8187
|
-
*
|
|
8347
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8348
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8349
|
+
*
|
|
8350
|
+
* <h3>Example</h3>
|
|
8351
|
+
*
|
|
8352
|
+
*
|
|
8353
|
+
*
|
|
8354
|
+
*
|
|
8355
|
+
*
|
|
8356
|
+
* {
|
|
8357
|
+
* "value": "My text"
|
|
8358
|
+
* }
|
|
8359
|
+
*
|
|
8188
8360
|
*
|
|
8189
8361
|
*
|
|
8190
8362
|
*/
|
|
8191
|
-
export interface
|
|
8192
|
-
|
|
8193
|
-
|
|
8363
|
+
export interface I18NProperty32 {
|
|
8364
|
+
value: string;
|
|
8365
|
+
i18n?: string;
|
|
8194
8366
|
[k: string]: unknown;
|
|
8195
8367
|
}
|
|
8196
8368
|
/**
|
|
@@ -8212,7 +8384,7 @@ export interface IssueBackgroundScriptLocation {
|
|
|
8212
8384
|
*
|
|
8213
8385
|
*
|
|
8214
8386
|
*/
|
|
8215
|
-
export interface
|
|
8387
|
+
export interface I18NProperty33 {
|
|
8216
8388
|
value: string;
|
|
8217
8389
|
i18n?: string;
|
|
8218
8390
|
[k: string]: unknown;
|
|
@@ -8236,11 +8408,39 @@ export interface I18NProperty30 {
|
|
|
8236
8408
|
*
|
|
8237
8409
|
*
|
|
8238
8410
|
*/
|
|
8239
|
-
export interface
|
|
8411
|
+
export interface I18NProperty34 {
|
|
8240
8412
|
value: string;
|
|
8241
8413
|
i18n?: string;
|
|
8242
8414
|
[k: string]: unknown;
|
|
8243
8415
|
}
|
|
8416
|
+
/**
|
|
8417
|
+
*
|
|
8418
|
+
*
|
|
8419
|
+
* Defines an icon to display.
|
|
8420
|
+
*
|
|
8421
|
+
* <h3>Example</h3>
|
|
8422
|
+
*
|
|
8423
|
+
*
|
|
8424
|
+
*
|
|
8425
|
+
*
|
|
8426
|
+
*
|
|
8427
|
+
* {
|
|
8428
|
+
* "icon": {
|
|
8429
|
+
* "width": 16,
|
|
8430
|
+
* "height": 16,
|
|
8431
|
+
* "url": "/my-icon.png"
|
|
8432
|
+
* }
|
|
8433
|
+
* }
|
|
8434
|
+
*
|
|
8435
|
+
*
|
|
8436
|
+
*
|
|
8437
|
+
*/
|
|
8438
|
+
export interface Icon6 {
|
|
8439
|
+
width?: number;
|
|
8440
|
+
url: string;
|
|
8441
|
+
height?: number;
|
|
8442
|
+
[k: string]: unknown;
|
|
8443
|
+
}
|
|
8244
8444
|
/**
|
|
8245
8445
|
*
|
|
8246
8446
|
*
|
|
@@ -8260,11 +8460,23 @@ export interface I18NProperty31 {
|
|
|
8260
8460
|
*
|
|
8261
8461
|
*
|
|
8262
8462
|
*/
|
|
8263
|
-
export interface
|
|
8463
|
+
export interface I18NProperty35 {
|
|
8264
8464
|
value: string;
|
|
8265
8465
|
i18n?: string;
|
|
8266
8466
|
[k: string]: unknown;
|
|
8267
8467
|
}
|
|
8468
|
+
/**
|
|
8469
|
+
*
|
|
8470
|
+
*
|
|
8471
|
+
* Describes the content for the issue context module. It specifies static text to show inside the context panel, which is left-aligned next to the icon.
|
|
8472
|
+
*
|
|
8473
|
+
*
|
|
8474
|
+
*/
|
|
8475
|
+
export interface IssueContextContentLabel {
|
|
8476
|
+
label: I18NProperty36;
|
|
8477
|
+
type: 'label' | 'LABEL';
|
|
8478
|
+
[k: string]: unknown;
|
|
8479
|
+
}
|
|
8268
8480
|
/**
|
|
8269
8481
|
*
|
|
8270
8482
|
*
|
|
@@ -8284,11 +8496,23 @@ export interface I18NProperty32 {
|
|
|
8284
8496
|
*
|
|
8285
8497
|
*
|
|
8286
8498
|
*/
|
|
8287
|
-
export interface
|
|
8499
|
+
export interface I18NProperty36 {
|
|
8288
8500
|
value: string;
|
|
8289
8501
|
i18n?: string;
|
|
8290
8502
|
[k: string]: unknown;
|
|
8291
8503
|
}
|
|
8504
|
+
/**
|
|
8505
|
+
*
|
|
8506
|
+
*
|
|
8507
|
+
* Describes the target of the issue context module. This supports displaying a web panel in the context area of the issue.
|
|
8508
|
+
*
|
|
8509
|
+
*
|
|
8510
|
+
*/
|
|
8511
|
+
export interface IssueContextTargetWebPanel {
|
|
8512
|
+
type: 'web_panel' | 'WEB_PANEL';
|
|
8513
|
+
url: string;
|
|
8514
|
+
[k: string]: unknown;
|
|
8515
|
+
}
|
|
8292
8516
|
/**
|
|
8293
8517
|
*
|
|
8294
8518
|
*
|
|
@@ -8308,7 +8532,31 @@ export interface I18NProperty33 {
|
|
|
8308
8532
|
*
|
|
8309
8533
|
*
|
|
8310
8534
|
*/
|
|
8311
|
-
export interface
|
|
8535
|
+
export interface I18NProperty37 {
|
|
8536
|
+
value: string;
|
|
8537
|
+
i18n?: string;
|
|
8538
|
+
[k: string]: unknown;
|
|
8539
|
+
}
|
|
8540
|
+
/**
|
|
8541
|
+
*
|
|
8542
|
+
*
|
|
8543
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8544
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8545
|
+
*
|
|
8546
|
+
* <h3>Example</h3>
|
|
8547
|
+
*
|
|
8548
|
+
*
|
|
8549
|
+
*
|
|
8550
|
+
*
|
|
8551
|
+
*
|
|
8552
|
+
* {
|
|
8553
|
+
* "value": "My text"
|
|
8554
|
+
* }
|
|
8555
|
+
*
|
|
8556
|
+
*
|
|
8557
|
+
*
|
|
8558
|
+
*/
|
|
8559
|
+
export interface I18NProperty38 {
|
|
8312
8560
|
value: string;
|
|
8313
8561
|
i18n?: string;
|
|
8314
8562
|
[k: string]: unknown;
|
|
@@ -8359,7 +8607,7 @@ export interface URL8 {
|
|
|
8359
8607
|
*
|
|
8360
8608
|
*
|
|
8361
8609
|
*/
|
|
8362
|
-
export interface
|
|
8610
|
+
export interface I18NProperty39 {
|
|
8363
8611
|
value: string;
|
|
8364
8612
|
i18n?: string;
|
|
8365
8613
|
[k: string]: unknown;
|
|
@@ -8383,7 +8631,7 @@ export interface I18NProperty35 {
|
|
|
8383
8631
|
*
|
|
8384
8632
|
*
|
|
8385
8633
|
*/
|
|
8386
|
-
export interface
|
|
8634
|
+
export interface I18NProperty40 {
|
|
8387
8635
|
value: string;
|
|
8388
8636
|
i18n?: string;
|
|
8389
8637
|
[k: string]: unknown;
|
|
@@ -8419,7 +8667,7 @@ export interface URL9 {
|
|
|
8419
8667
|
*
|
|
8420
8668
|
*
|
|
8421
8669
|
*/
|
|
8422
|
-
export interface
|
|
8670
|
+
export interface Icon7 {
|
|
8423
8671
|
width?: number;
|
|
8424
8672
|
url: string;
|
|
8425
8673
|
height?: number;
|
|
@@ -8444,7 +8692,7 @@ export interface Icon6 {
|
|
|
8444
8692
|
*
|
|
8445
8693
|
*
|
|
8446
8694
|
*/
|
|
8447
|
-
export interface
|
|
8695
|
+
export interface I18NProperty41 {
|
|
8448
8696
|
value: string;
|
|
8449
8697
|
i18n?: string;
|
|
8450
8698
|
[k: string]: unknown;
|
|
@@ -8468,7 +8716,7 @@ export interface I18NProperty37 {
|
|
|
8468
8716
|
*
|
|
8469
8717
|
*
|
|
8470
8718
|
*/
|
|
8471
|
-
export interface
|
|
8719
|
+
export interface I18NProperty42 {
|
|
8472
8720
|
value: string;
|
|
8473
8721
|
i18n?: string;
|
|
8474
8722
|
[k: string]: unknown;
|
|
@@ -8504,7 +8752,7 @@ export interface IssuePageTargetWebPanel {
|
|
|
8504
8752
|
*
|
|
8505
8753
|
*
|
|
8506
8754
|
*/
|
|
8507
|
-
export interface
|
|
8755
|
+
export interface I18NProperty43 {
|
|
8508
8756
|
value: string;
|
|
8509
8757
|
i18n?: string;
|
|
8510
8758
|
[k: string]: unknown;
|
|
@@ -8528,7 +8776,7 @@ export interface I18NProperty39 {
|
|
|
8528
8776
|
*
|
|
8529
8777
|
*
|
|
8530
8778
|
*/
|
|
8531
|
-
export interface
|
|
8779
|
+
export interface I18NProperty44 {
|
|
8532
8780
|
value: string;
|
|
8533
8781
|
i18n?: string;
|
|
8534
8782
|
[k: string]: unknown;
|
|
@@ -8574,7 +8822,7 @@ export interface DevelopmentActions {
|
|
|
8574
8822
|
*
|
|
8575
8823
|
*
|
|
8576
8824
|
*/
|
|
8577
|
-
export interface
|
|
8825
|
+
export interface I18NProperty45 {
|
|
8578
8826
|
value: string;
|
|
8579
8827
|
i18n?: string;
|
|
8580
8828
|
[k: string]: unknown;
|
|
@@ -8711,7 +8959,7 @@ export interface SingleCondition3 {
|
|
|
8711
8959
|
*
|
|
8712
8960
|
*
|
|
8713
8961
|
*/
|
|
8714
|
-
export interface
|
|
8962
|
+
export interface I18NProperty46 {
|
|
8715
8963
|
value: string;
|
|
8716
8964
|
i18n?: string;
|
|
8717
8965
|
[k: string]: unknown;
|
|
@@ -8735,7 +8983,7 @@ export interface I18NProperty42 {
|
|
|
8735
8983
|
*
|
|
8736
8984
|
*
|
|
8737
8985
|
*/
|
|
8738
|
-
export interface
|
|
8986
|
+
export interface I18NProperty47 {
|
|
8739
8987
|
value: string;
|
|
8740
8988
|
i18n?: string;
|
|
8741
8989
|
[k: string]: unknown;
|
|
@@ -8797,7 +9045,7 @@ export interface IssueFieldProperty {
|
|
|
8797
9045
|
*
|
|
8798
9046
|
*
|
|
8799
9047
|
*/
|
|
8800
|
-
export interface
|
|
9048
|
+
export interface I18NProperty48 {
|
|
8801
9049
|
value: string;
|
|
8802
9050
|
i18n?: string;
|
|
8803
9051
|
[k: string]: unknown;
|
|
@@ -8821,7 +9069,7 @@ export interface I18NProperty44 {
|
|
|
8821
9069
|
*
|
|
8822
9070
|
*
|
|
8823
9071
|
*/
|
|
8824
|
-
export interface
|
|
9072
|
+
export interface I18NProperty49 {
|
|
8825
9073
|
value: string;
|
|
8826
9074
|
i18n?: string;
|
|
8827
9075
|
[k: string]: unknown;
|
|
@@ -8879,7 +9127,7 @@ export interface IssueFieldOptionPropertyIndex {
|
|
|
8879
9127
|
*
|
|
8880
9128
|
*
|
|
8881
9129
|
*/
|
|
8882
|
-
export interface
|
|
9130
|
+
export interface I18NProperty50 {
|
|
8883
9131
|
value: string;
|
|
8884
9132
|
i18n?: string;
|
|
8885
9133
|
[k: string]: unknown;
|
|
@@ -8903,7 +9151,7 @@ export interface I18NProperty46 {
|
|
|
8903
9151
|
*
|
|
8904
9152
|
*
|
|
8905
9153
|
*/
|
|
8906
|
-
export interface
|
|
9154
|
+
export interface I18NProperty51 {
|
|
8907
9155
|
value: string;
|
|
8908
9156
|
i18n?: string;
|
|
8909
9157
|
[k: string]: unknown;
|
|
@@ -8927,7 +9175,7 @@ export interface I18NProperty47 {
|
|
|
8927
9175
|
*
|
|
8928
9176
|
*
|
|
8929
9177
|
*/
|
|
8930
|
-
export interface
|
|
9178
|
+
export interface I18NProperty52 {
|
|
8931
9179
|
value: string;
|
|
8932
9180
|
i18n?: string;
|
|
8933
9181
|
[k: string]: unknown;
|
|
@@ -8951,7 +9199,7 @@ export interface I18NProperty48 {
|
|
|
8951
9199
|
*
|
|
8952
9200
|
*
|
|
8953
9201
|
*/
|
|
8954
|
-
export interface
|
|
9202
|
+
export interface I18NProperty53 {
|
|
8955
9203
|
value: string;
|
|
8956
9204
|
i18n?: string;
|
|
8957
9205
|
[k: string]: unknown;
|
|
@@ -8989,7 +9237,7 @@ export interface KeyboardShortcutTarget1 {
|
|
|
8989
9237
|
*
|
|
8990
9238
|
*
|
|
8991
9239
|
*/
|
|
8992
|
-
export interface
|
|
9240
|
+
export interface Icon8 {
|
|
8993
9241
|
width?: number;
|
|
8994
9242
|
url: string;
|
|
8995
9243
|
height?: number;
|
|
@@ -9014,7 +9262,7 @@ export interface Icon7 {
|
|
|
9014
9262
|
*
|
|
9015
9263
|
*
|
|
9016
9264
|
*/
|
|
9017
|
-
export interface
|
|
9265
|
+
export interface I18NProperty54 {
|
|
9018
9266
|
value: string;
|
|
9019
9267
|
i18n?: string;
|
|
9020
9268
|
[k: string]: unknown;
|
|
@@ -9062,7 +9310,7 @@ export interface WebPanelLayout1 {
|
|
|
9062
9310
|
*
|
|
9063
9311
|
*
|
|
9064
9312
|
*/
|
|
9065
|
-
export interface
|
|
9313
|
+
export interface I18NProperty55 {
|
|
9066
9314
|
value: string;
|
|
9067
9315
|
i18n?: string;
|
|
9068
9316
|
[k: string]: unknown;
|
|
@@ -9086,7 +9334,7 @@ export interface I18NProperty51 {
|
|
|
9086
9334
|
*
|
|
9087
9335
|
*
|
|
9088
9336
|
*/
|
|
9089
|
-
export interface
|
|
9337
|
+
export interface I18NProperty56 {
|
|
9090
9338
|
value: string;
|
|
9091
9339
|
i18n?: string;
|
|
9092
9340
|
[k: string]: unknown;
|
|
@@ -9113,7 +9361,7 @@ export interface I18NProperty52 {
|
|
|
9113
9361
|
*
|
|
9114
9362
|
*
|
|
9115
9363
|
*/
|
|
9116
|
-
export interface
|
|
9364
|
+
export interface Icon9 {
|
|
9117
9365
|
width?: number;
|
|
9118
9366
|
url: string;
|
|
9119
9367
|
height?: number;
|
|
@@ -9138,7 +9386,7 @@ export interface Icon8 {
|
|
|
9138
9386
|
*
|
|
9139
9387
|
*
|
|
9140
9388
|
*/
|
|
9141
|
-
export interface
|
|
9389
|
+
export interface I18NProperty57 {
|
|
9142
9390
|
value: string;
|
|
9143
9391
|
i18n?: string;
|
|
9144
9392
|
[k: string]: unknown;
|
|
@@ -9162,7 +9410,7 @@ export interface I18NProperty53 {
|
|
|
9162
9410
|
*
|
|
9163
9411
|
*
|
|
9164
9412
|
*/
|
|
9165
|
-
export interface
|
|
9413
|
+
export interface I18NProperty58 {
|
|
9166
9414
|
value: string;
|
|
9167
9415
|
i18n?: string;
|
|
9168
9416
|
[k: string]: unknown;
|
|
@@ -9186,7 +9434,7 @@ export interface I18NProperty54 {
|
|
|
9186
9434
|
*
|
|
9187
9435
|
*
|
|
9188
9436
|
*/
|
|
9189
|
-
export interface
|
|
9437
|
+
export interface I18NProperty59 {
|
|
9190
9438
|
value: string;
|
|
9191
9439
|
i18n?: string;
|
|
9192
9440
|
[k: string]: unknown;
|
|
@@ -9213,7 +9461,7 @@ export interface I18NProperty55 {
|
|
|
9213
9461
|
*
|
|
9214
9462
|
*
|
|
9215
9463
|
*/
|
|
9216
|
-
export interface
|
|
9464
|
+
export interface Icon10 {
|
|
9217
9465
|
width?: number;
|
|
9218
9466
|
url: string;
|
|
9219
9467
|
height?: number;
|
|
@@ -9238,7 +9486,7 @@ export interface Icon9 {
|
|
|
9238
9486
|
*
|
|
9239
9487
|
*
|
|
9240
9488
|
*/
|
|
9241
|
-
export interface
|
|
9489
|
+
export interface I18NProperty60 {
|
|
9242
9490
|
value: string;
|
|
9243
9491
|
i18n?: string;
|
|
9244
9492
|
[k: string]: unknown;
|
|
@@ -9262,7 +9510,7 @@ export interface I18NProperty56 {
|
|
|
9262
9510
|
*
|
|
9263
9511
|
*
|
|
9264
9512
|
*/
|
|
9265
|
-
export interface
|
|
9513
|
+
export interface I18NProperty61 {
|
|
9266
9514
|
value: string;
|
|
9267
9515
|
i18n?: string;
|
|
9268
9516
|
[k: string]: unknown;
|
|
@@ -9289,7 +9537,7 @@ export interface I18NProperty57 {
|
|
|
9289
9537
|
*
|
|
9290
9538
|
*
|
|
9291
9539
|
*/
|
|
9292
|
-
export interface
|
|
9540
|
+
export interface Icon11 {
|
|
9293
9541
|
width?: number;
|
|
9294
9542
|
url: string;
|
|
9295
9543
|
height?: number;
|
|
@@ -9500,7 +9748,7 @@ export interface DialogOptions2 {
|
|
|
9500
9748
|
| 'MAXIMUM';
|
|
9501
9749
|
chrome?: boolean;
|
|
9502
9750
|
width?: string;
|
|
9503
|
-
header?:
|
|
9751
|
+
header?: I18NProperty62;
|
|
9504
9752
|
height?: string;
|
|
9505
9753
|
[k: string]: unknown;
|
|
9506
9754
|
}
|
|
@@ -9523,7 +9771,7 @@ export interface DialogOptions2 {
|
|
|
9523
9771
|
*
|
|
9524
9772
|
*
|
|
9525
9773
|
*/
|
|
9526
|
-
export interface
|
|
9774
|
+
export interface I18NProperty62 {
|
|
9527
9775
|
value: string;
|
|
9528
9776
|
i18n?: string;
|
|
9529
9777
|
[k: string]: unknown;
|
|
@@ -9547,7 +9795,7 @@ export interface I18NProperty58 {
|
|
|
9547
9795
|
*
|
|
9548
9796
|
*
|
|
9549
9797
|
*/
|
|
9550
|
-
export interface
|
|
9798
|
+
export interface I18NProperty63 {
|
|
9551
9799
|
value: string;
|
|
9552
9800
|
i18n?: string;
|
|
9553
9801
|
[k: string]: unknown;
|
|
@@ -9687,7 +9935,7 @@ export interface CompositeCondition8 {
|
|
|
9687
9935
|
*
|
|
9688
9936
|
*
|
|
9689
9937
|
*/
|
|
9690
|
-
export interface
|
|
9938
|
+
export interface Icon12 {
|
|
9691
9939
|
width?: number;
|
|
9692
9940
|
url: string;
|
|
9693
9941
|
height?: number;
|
|
@@ -9712,7 +9960,7 @@ export interface Icon11 {
|
|
|
9712
9960
|
*
|
|
9713
9961
|
*
|
|
9714
9962
|
*/
|
|
9715
|
-
export interface
|
|
9963
|
+
export interface I18NProperty64 {
|
|
9716
9964
|
value: string;
|
|
9717
9965
|
i18n?: string;
|
|
9718
9966
|
[k: string]: unknown;
|
|
@@ -9941,7 +10189,7 @@ export interface BlueprintTemplateContext {
|
|
|
9941
10189
|
*
|
|
9942
10190
|
*
|
|
9943
10191
|
*/
|
|
9944
|
-
export interface
|
|
10192
|
+
export interface Icon13 {
|
|
9945
10193
|
width?: number;
|
|
9946
10194
|
url: string;
|
|
9947
10195
|
height?: number;
|
|
@@ -9966,7 +10214,7 @@ export interface Icon12 {
|
|
|
9966
10214
|
*
|
|
9967
10215
|
*
|
|
9968
10216
|
*/
|
|
9969
|
-
export interface
|
|
10217
|
+
export interface I18NProperty65 {
|
|
9970
10218
|
value: string;
|
|
9971
10219
|
i18n?: string;
|
|
9972
10220
|
[k: string]: unknown;
|
|
@@ -9990,7 +10238,7 @@ export interface I18NProperty61 {
|
|
|
9990
10238
|
*
|
|
9991
10239
|
*
|
|
9992
10240
|
*/
|
|
9993
|
-
export interface
|
|
10241
|
+
export interface I18NProperty66 {
|
|
9994
10242
|
value: string;
|
|
9995
10243
|
i18n?: string;
|
|
9996
10244
|
[k: string]: unknown;
|
|
@@ -10014,7 +10262,7 @@ export interface I18NProperty62 {
|
|
|
10014
10262
|
*
|
|
10015
10263
|
*
|
|
10016
10264
|
*/
|
|
10017
|
-
export interface
|
|
10265
|
+
export interface I18NProperty67 {
|
|
10018
10266
|
value: string;
|
|
10019
10267
|
i18n?: string;
|
|
10020
10268
|
[k: string]: unknown;
|
|
@@ -10110,7 +10358,7 @@ export interface SingleCondition5 {
|
|
|
10110
10358
|
*
|
|
10111
10359
|
*
|
|
10112
10360
|
*/
|
|
10113
|
-
export interface
|
|
10361
|
+
export interface I18NProperty68 {
|
|
10114
10362
|
value: string;
|
|
10115
10363
|
i18n?: string;
|
|
10116
10364
|
[k: string]: unknown;
|
|
@@ -10334,8 +10582,8 @@ export interface UserInterfaceSupport {
|
|
|
10334
10582
|
| 'STRING'
|
|
10335
10583
|
| 'number'
|
|
10336
10584
|
| 'NUMBER';
|
|
10337
|
-
name:
|
|
10338
|
-
tooltip?:
|
|
10585
|
+
name: I18NProperty69;
|
|
10586
|
+
tooltip?: I18NProperty70;
|
|
10339
10587
|
[k: string]: unknown;
|
|
10340
10588
|
}
|
|
10341
10589
|
/**
|
|
@@ -10357,7 +10605,7 @@ export interface UserInterfaceSupport {
|
|
|
10357
10605
|
*
|
|
10358
10606
|
*
|
|
10359
10607
|
*/
|
|
10360
|
-
export interface
|
|
10608
|
+
export interface I18NProperty69 {
|
|
10361
10609
|
value: string;
|
|
10362
10610
|
i18n?: string;
|
|
10363
10611
|
[k: string]: unknown;
|
|
@@ -10381,7 +10629,7 @@ export interface I18NProperty65 {
|
|
|
10381
10629
|
*
|
|
10382
10630
|
*
|
|
10383
10631
|
*/
|
|
10384
|
-
export interface
|
|
10632
|
+
export interface I18NProperty70 {
|
|
10385
10633
|
value: string;
|
|
10386
10634
|
i18n?: string;
|
|
10387
10635
|
[k: string]: unknown;
|
|
@@ -10463,13 +10711,13 @@ export interface I18NProperty66 {
|
|
|
10463
10711
|
*
|
|
10464
10712
|
*/
|
|
10465
10713
|
export interface CustomContentUISupport {
|
|
10466
|
-
editComponentTitlePlaceholder?:
|
|
10714
|
+
editComponentTitlePlaceholder?: I18NProperty71;
|
|
10467
10715
|
listViewComponent?: ModuleReference;
|
|
10468
10716
|
editComponent?: ModuleReference1;
|
|
10469
10717
|
icons: CustomContentIcons;
|
|
10470
10718
|
contentViewComponent: ModuleReference2;
|
|
10471
|
-
editComponentSubmitButtonLabel?:
|
|
10472
|
-
editComponentCancelButtonLabel?:
|
|
10719
|
+
editComponentSubmitButtonLabel?: I18NProperty72;
|
|
10720
|
+
editComponentCancelButtonLabel?: I18NProperty73;
|
|
10473
10721
|
breadcrumbs?: CustomContentBreadcrumbs;
|
|
10474
10722
|
[k: string]: unknown;
|
|
10475
10723
|
}
|
|
@@ -10492,7 +10740,7 @@ export interface CustomContentUISupport {
|
|
|
10492
10740
|
*
|
|
10493
10741
|
*
|
|
10494
10742
|
*/
|
|
10495
|
-
export interface
|
|
10743
|
+
export interface I18NProperty71 {
|
|
10496
10744
|
value: string;
|
|
10497
10745
|
i18n?: string;
|
|
10498
10746
|
[k: string]: unknown;
|
|
@@ -10562,9 +10810,9 @@ export interface ModuleReference1 {
|
|
|
10562
10810
|
*
|
|
10563
10811
|
*/
|
|
10564
10812
|
export interface CustomContentIcons {
|
|
10565
|
-
item:
|
|
10566
|
-
create?:
|
|
10567
|
-
list?:
|
|
10813
|
+
item: Icon14;
|
|
10814
|
+
create?: Icon15;
|
|
10815
|
+
list?: Icon16;
|
|
10568
10816
|
[k: string]: unknown;
|
|
10569
10817
|
}
|
|
10570
10818
|
/**
|
|
@@ -10589,7 +10837,7 @@ export interface CustomContentIcons {
|
|
|
10589
10837
|
*
|
|
10590
10838
|
*
|
|
10591
10839
|
*/
|
|
10592
|
-
export interface
|
|
10840
|
+
export interface Icon14 {
|
|
10593
10841
|
width?: number;
|
|
10594
10842
|
url: string;
|
|
10595
10843
|
height?: number;
|
|
@@ -10617,7 +10865,7 @@ export interface Icon13 {
|
|
|
10617
10865
|
*
|
|
10618
10866
|
*
|
|
10619
10867
|
*/
|
|
10620
|
-
export interface
|
|
10868
|
+
export interface Icon15 {
|
|
10621
10869
|
width?: number;
|
|
10622
10870
|
url: string;
|
|
10623
10871
|
height?: number;
|
|
@@ -10645,7 +10893,7 @@ export interface Icon14 {
|
|
|
10645
10893
|
*
|
|
10646
10894
|
*
|
|
10647
10895
|
*/
|
|
10648
|
-
export interface
|
|
10896
|
+
export interface Icon16 {
|
|
10649
10897
|
width?: number;
|
|
10650
10898
|
url: string;
|
|
10651
10899
|
height?: number;
|
|
@@ -10692,7 +10940,7 @@ export interface ModuleReference2 {
|
|
|
10692
10940
|
*
|
|
10693
10941
|
*
|
|
10694
10942
|
*/
|
|
10695
|
-
export interface
|
|
10943
|
+
export interface I18NProperty72 {
|
|
10696
10944
|
value: string;
|
|
10697
10945
|
i18n?: string;
|
|
10698
10946
|
[k: string]: unknown;
|
|
@@ -10716,7 +10964,7 @@ export interface I18NProperty68 {
|
|
|
10716
10964
|
*
|
|
10717
10965
|
*
|
|
10718
10966
|
*/
|
|
10719
|
-
export interface
|
|
10967
|
+
export interface I18NProperty73 {
|
|
10720
10968
|
value: string;
|
|
10721
10969
|
i18n?: string;
|
|
10722
10970
|
[k: string]: unknown;
|
|
@@ -10825,7 +11073,7 @@ export interface CustomContentRelation {
|
|
|
10825
11073
|
*
|
|
10826
11074
|
*
|
|
10827
11075
|
*/
|
|
10828
|
-
export interface
|
|
11076
|
+
export interface I18NProperty74 {
|
|
10829
11077
|
value: string;
|
|
10830
11078
|
i18n?: string;
|
|
10831
11079
|
[k: string]: unknown;
|
|
@@ -10849,7 +11097,7 @@ export interface I18NProperty70 {
|
|
|
10849
11097
|
*
|
|
10850
11098
|
*
|
|
10851
11099
|
*/
|
|
10852
|
-
export interface
|
|
11100
|
+
export interface I18NProperty75 {
|
|
10853
11101
|
value: string;
|
|
10854
11102
|
i18n?: string;
|
|
10855
11103
|
[k: string]: unknown;
|
|
@@ -11089,8 +11337,8 @@ export interface MacroParameterIndexing {
|
|
|
11089
11337
|
*
|
|
11090
11338
|
*/
|
|
11091
11339
|
export interface MacroEditor {
|
|
11092
|
-
insertTitle?:
|
|
11093
|
-
editTitle?:
|
|
11340
|
+
insertTitle?: I18NProperty76;
|
|
11341
|
+
editTitle?: I18NProperty77;
|
|
11094
11342
|
width?: string;
|
|
11095
11343
|
cacheable?: boolean;
|
|
11096
11344
|
url: string;
|
|
@@ -11116,7 +11364,7 @@ export interface MacroEditor {
|
|
|
11116
11364
|
*
|
|
11117
11365
|
*
|
|
11118
11366
|
*/
|
|
11119
|
-
export interface
|
|
11367
|
+
export interface I18NProperty76 {
|
|
11120
11368
|
value: string;
|
|
11121
11369
|
i18n?: string;
|
|
11122
11370
|
[k: string]: unknown;
|
|
@@ -11140,7 +11388,7 @@ export interface I18NProperty72 {
|
|
|
11140
11388
|
*
|
|
11141
11389
|
*
|
|
11142
11390
|
*/
|
|
11143
|
-
export interface
|
|
11391
|
+
export interface I18NProperty77 {
|
|
11144
11392
|
value: string;
|
|
11145
11393
|
i18n?: string;
|
|
11146
11394
|
[k: string]: unknown;
|
|
@@ -11439,7 +11687,7 @@ export interface Link {
|
|
|
11439
11687
|
*
|
|
11440
11688
|
*
|
|
11441
11689
|
*/
|
|
11442
|
-
export interface
|
|
11690
|
+
export interface Icon17 {
|
|
11443
11691
|
width?: number;
|
|
11444
11692
|
url: string;
|
|
11445
11693
|
height?: number;
|
|
@@ -11464,7 +11712,7 @@ export interface Icon16 {
|
|
|
11464
11712
|
*
|
|
11465
11713
|
*
|
|
11466
11714
|
*/
|
|
11467
|
-
export interface
|
|
11715
|
+
export interface I18NProperty78 {
|
|
11468
11716
|
value: string;
|
|
11469
11717
|
i18n?: string;
|
|
11470
11718
|
[k: string]: unknown;
|
|
@@ -11538,7 +11786,7 @@ export interface MacroPropertyPanel {
|
|
|
11538
11786
|
*
|
|
11539
11787
|
*/
|
|
11540
11788
|
export interface ButtonControl {
|
|
11541
|
-
label:
|
|
11789
|
+
label: I18NProperty79;
|
|
11542
11790
|
type: 'button' | 'BUTTON';
|
|
11543
11791
|
key: string;
|
|
11544
11792
|
[k: string]: unknown;
|
|
@@ -11562,7 +11810,7 @@ export interface ButtonControl {
|
|
|
11562
11810
|
*
|
|
11563
11811
|
*
|
|
11564
11812
|
*/
|
|
11565
|
-
export interface
|
|
11813
|
+
export interface I18NProperty79 {
|
|
11566
11814
|
value: string;
|
|
11567
11815
|
i18n?: string;
|
|
11568
11816
|
[k: string]: unknown;
|
|
@@ -11637,7 +11885,7 @@ export interface ToggleGroup {
|
|
|
11637
11885
|
*/
|
|
11638
11886
|
export interface ToggleButtonControl {
|
|
11639
11887
|
macroParameterValue: string;
|
|
11640
|
-
label:
|
|
11888
|
+
label: I18NProperty80;
|
|
11641
11889
|
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
11642
11890
|
key: string;
|
|
11643
11891
|
[k: string]: unknown;
|
|
@@ -11661,7 +11909,7 @@ export interface ToggleButtonControl {
|
|
|
11661
11909
|
*
|
|
11662
11910
|
*
|
|
11663
11911
|
*/
|
|
11664
|
-
export interface
|
|
11912
|
+
export interface I18NProperty80 {
|
|
11665
11913
|
value: string;
|
|
11666
11914
|
i18n?: string;
|
|
11667
11915
|
[k: string]: unknown;
|
|
@@ -11730,7 +11978,7 @@ export interface ControlGroup {
|
|
|
11730
11978
|
*
|
|
11731
11979
|
*/
|
|
11732
11980
|
export interface ButtonControl1 {
|
|
11733
|
-
label:
|
|
11981
|
+
label: I18NProperty81;
|
|
11734
11982
|
type: 'button' | 'BUTTON';
|
|
11735
11983
|
key: string;
|
|
11736
11984
|
[k: string]: unknown;
|
|
@@ -11754,7 +12002,7 @@ export interface ButtonControl1 {
|
|
|
11754
12002
|
*
|
|
11755
12003
|
*
|
|
11756
12004
|
*/
|
|
11757
|
-
export interface
|
|
12005
|
+
export interface I18NProperty81 {
|
|
11758
12006
|
value: string;
|
|
11759
12007
|
i18n?: string;
|
|
11760
12008
|
[k: string]: unknown;
|
|
@@ -32339,7 +32587,7 @@ export interface ImagePlaceholder {
|
|
|
32339
32587
|
*
|
|
32340
32588
|
*
|
|
32341
32589
|
*/
|
|
32342
|
-
export interface
|
|
32590
|
+
export interface I18NProperty82 {
|
|
32343
32591
|
value: string;
|
|
32344
32592
|
i18n?: string;
|
|
32345
32593
|
[k: string]: unknown;
|
|
@@ -32414,9 +32662,9 @@ export interface MacroInputParameter {
|
|
|
32414
32662
|
indexing?: MacroParameterIndexing1;
|
|
32415
32663
|
defaultValue?: string;
|
|
32416
32664
|
values?: string[];
|
|
32417
|
-
name:
|
|
32665
|
+
name: I18NProperty83;
|
|
32418
32666
|
multiple?: boolean;
|
|
32419
|
-
description?:
|
|
32667
|
+
description?: I18NProperty84;
|
|
32420
32668
|
type:
|
|
32421
32669
|
| 'attachment'
|
|
32422
32670
|
| 'ATTACHMENT'
|
|
@@ -32491,7 +32739,7 @@ export interface MacroParameterIndexing1 {
|
|
|
32491
32739
|
*
|
|
32492
32740
|
*
|
|
32493
32741
|
*/
|
|
32494
|
-
export interface
|
|
32742
|
+
export interface I18NProperty83 {
|
|
32495
32743
|
value: string;
|
|
32496
32744
|
i18n?: string;
|
|
32497
32745
|
[k: string]: unknown;
|
|
@@ -32515,7 +32763,7 @@ export interface I18NProperty79 {
|
|
|
32515
32763
|
*
|
|
32516
32764
|
*
|
|
32517
32765
|
*/
|
|
32518
|
-
export interface
|
|
32766
|
+
export interface I18NProperty84 {
|
|
32519
32767
|
value: string;
|
|
32520
32768
|
i18n?: string;
|
|
32521
32769
|
[k: string]: unknown;
|
|
@@ -32578,8 +32826,8 @@ export interface I18NProperty80 {
|
|
|
32578
32826
|
*
|
|
32579
32827
|
*/
|
|
32580
32828
|
export interface MacroEditor1 {
|
|
32581
|
-
insertTitle?:
|
|
32582
|
-
editTitle?:
|
|
32829
|
+
insertTitle?: I18NProperty85;
|
|
32830
|
+
editTitle?: I18NProperty86;
|
|
32583
32831
|
width?: string;
|
|
32584
32832
|
cacheable?: boolean;
|
|
32585
32833
|
url: string;
|
|
@@ -32605,7 +32853,7 @@ export interface MacroEditor1 {
|
|
|
32605
32853
|
*
|
|
32606
32854
|
*
|
|
32607
32855
|
*/
|
|
32608
|
-
export interface
|
|
32856
|
+
export interface I18NProperty85 {
|
|
32609
32857
|
value: string;
|
|
32610
32858
|
i18n?: string;
|
|
32611
32859
|
[k: string]: unknown;
|
|
@@ -32629,7 +32877,7 @@ export interface I18NProperty81 {
|
|
|
32629
32877
|
*
|
|
32630
32878
|
*
|
|
32631
32879
|
*/
|
|
32632
|
-
export interface
|
|
32880
|
+
export interface I18NProperty86 {
|
|
32633
32881
|
value: string;
|
|
32634
32882
|
i18n?: string;
|
|
32635
32883
|
[k: string]: unknown;
|
|
@@ -32684,7 +32932,7 @@ export interface Link1 {
|
|
|
32684
32932
|
*
|
|
32685
32933
|
*
|
|
32686
32934
|
*/
|
|
32687
|
-
export interface
|
|
32935
|
+
export interface Icon18 {
|
|
32688
32936
|
width?: number;
|
|
32689
32937
|
url: string;
|
|
32690
32938
|
height?: number;
|
|
@@ -32709,7 +32957,7 @@ export interface Icon17 {
|
|
|
32709
32957
|
*
|
|
32710
32958
|
*
|
|
32711
32959
|
*/
|
|
32712
|
-
export interface
|
|
32960
|
+
export interface I18NProperty87 {
|
|
32713
32961
|
value: string;
|
|
32714
32962
|
i18n?: string;
|
|
32715
32963
|
[k: string]: unknown;
|
|
@@ -32830,7 +33078,7 @@ export interface ToggleGroup1 {
|
|
|
32830
33078
|
*/
|
|
32831
33079
|
export interface ToggleButtonControl1 {
|
|
32832
33080
|
macroParameterValue: string;
|
|
32833
|
-
label:
|
|
33081
|
+
label: I18NProperty88;
|
|
32834
33082
|
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
32835
33083
|
key: string;
|
|
32836
33084
|
[k: string]: unknown;
|
|
@@ -32854,7 +33102,7 @@ export interface ToggleButtonControl1 {
|
|
|
32854
33102
|
*
|
|
32855
33103
|
*
|
|
32856
33104
|
*/
|
|
32857
|
-
export interface
|
|
33105
|
+
export interface I18NProperty88 {
|
|
32858
33106
|
value: string;
|
|
32859
33107
|
i18n?: string;
|
|
32860
33108
|
[k: string]: unknown;
|
|
@@ -32882,7 +33130,7 @@ export interface I18NProperty84 {
|
|
|
32882
33130
|
*
|
|
32883
33131
|
*/
|
|
32884
33132
|
export interface ButtonControl2 {
|
|
32885
|
-
label:
|
|
33133
|
+
label: I18NProperty89;
|
|
32886
33134
|
type: 'button' | 'BUTTON';
|
|
32887
33135
|
key: string;
|
|
32888
33136
|
[k: string]: unknown;
|
|
@@ -32906,7 +33154,7 @@ export interface ButtonControl2 {
|
|
|
32906
33154
|
*
|
|
32907
33155
|
*
|
|
32908
33156
|
*/
|
|
32909
|
-
export interface
|
|
33157
|
+
export interface I18NProperty89 {
|
|
32910
33158
|
value: string;
|
|
32911
33159
|
i18n?: string;
|
|
32912
33160
|
[k: string]: unknown;
|
|
@@ -33003,7 +33251,7 @@ export interface ControlGroup1 {
|
|
|
33003
33251
|
*
|
|
33004
33252
|
*/
|
|
33005
33253
|
export interface ButtonControl3 {
|
|
33006
|
-
label:
|
|
33254
|
+
label: I18NProperty90;
|
|
33007
33255
|
type: 'button' | 'BUTTON';
|
|
33008
33256
|
key: string;
|
|
33009
33257
|
[k: string]: unknown;
|
|
@@ -33027,7 +33275,7 @@ export interface ButtonControl3 {
|
|
|
33027
33275
|
*
|
|
33028
33276
|
*
|
|
33029
33277
|
*/
|
|
33030
|
-
export interface
|
|
33278
|
+
export interface I18NProperty90 {
|
|
33031
33279
|
value: string;
|
|
33032
33280
|
i18n?: string;
|
|
33033
33281
|
[k: string]: unknown;
|
|
@@ -53557,7 +53805,7 @@ export interface ImagePlaceholder1 {
|
|
|
53557
53805
|
*
|
|
53558
53806
|
*
|
|
53559
53807
|
*/
|
|
53560
|
-
export interface
|
|
53808
|
+
export interface I18NProperty91 {
|
|
53561
53809
|
value: string;
|
|
53562
53810
|
i18n?: string;
|
|
53563
53811
|
[k: string]: unknown;
|
|
@@ -53632,9 +53880,9 @@ export interface MacroInputParameter1 {
|
|
|
53632
53880
|
indexing?: MacroParameterIndexing2;
|
|
53633
53881
|
defaultValue?: string;
|
|
53634
53882
|
values?: string[];
|
|
53635
|
-
name:
|
|
53883
|
+
name: I18NProperty92;
|
|
53636
53884
|
multiple?: boolean;
|
|
53637
|
-
description?:
|
|
53885
|
+
description?: I18NProperty93;
|
|
53638
53886
|
type:
|
|
53639
53887
|
| 'attachment'
|
|
53640
53888
|
| 'ATTACHMENT'
|
|
@@ -53709,7 +53957,7 @@ export interface MacroParameterIndexing2 {
|
|
|
53709
53957
|
*
|
|
53710
53958
|
*
|
|
53711
53959
|
*/
|
|
53712
|
-
export interface
|
|
53960
|
+
export interface I18NProperty92 {
|
|
53713
53961
|
value: string;
|
|
53714
53962
|
i18n?: string;
|
|
53715
53963
|
[k: string]: unknown;
|
|
@@ -53733,7 +53981,7 @@ export interface I18NProperty88 {
|
|
|
53733
53981
|
*
|
|
53734
53982
|
*
|
|
53735
53983
|
*/
|
|
53736
|
-
export interface
|
|
53984
|
+
export interface I18NProperty93 {
|
|
53737
53985
|
value: string;
|
|
53738
53986
|
i18n?: string;
|
|
53739
53987
|
[k: string]: unknown;
|
|
@@ -53757,7 +54005,7 @@ export interface I18NProperty89 {
|
|
|
53757
54005
|
*
|
|
53758
54006
|
*
|
|
53759
54007
|
*/
|
|
53760
|
-
export interface
|
|
54008
|
+
export interface I18NProperty94 {
|
|
53761
54009
|
value: string;
|
|
53762
54010
|
i18n?: string;
|
|
53763
54011
|
[k: string]: unknown;
|
|
@@ -53784,7 +54032,7 @@ export interface I18NProperty90 {
|
|
|
53784
54032
|
*
|
|
53785
54033
|
*
|
|
53786
54034
|
*/
|
|
53787
|
-
export interface
|
|
54035
|
+
export interface Icon19 {
|
|
53788
54036
|
width?: number;
|
|
53789
54037
|
url: string;
|
|
53790
54038
|
height?: number;
|
|
@@ -53809,7 +54057,7 @@ export interface Icon18 {
|
|
|
53809
54057
|
*
|
|
53810
54058
|
*
|
|
53811
54059
|
*/
|
|
53812
|
-
export interface
|
|
54060
|
+
export interface I18NProperty95 {
|
|
53813
54061
|
value: string;
|
|
53814
54062
|
i18n?: string;
|
|
53815
54063
|
[k: string]: unknown;
|
|
@@ -54019,7 +54267,7 @@ export interface DialogOptions4 {
|
|
|
54019
54267
|
| 'MAXIMUM';
|
|
54020
54268
|
chrome?: boolean;
|
|
54021
54269
|
width?: string;
|
|
54022
|
-
header?:
|
|
54270
|
+
header?: I18NProperty96;
|
|
54023
54271
|
height?: string;
|
|
54024
54272
|
[k: string]: unknown;
|
|
54025
54273
|
}
|
|
@@ -54042,7 +54290,7 @@ export interface DialogOptions4 {
|
|
|
54042
54290
|
*
|
|
54043
54291
|
*
|
|
54044
54292
|
*/
|
|
54045
|
-
export interface
|
|
54293
|
+
export interface I18NProperty96 {
|
|
54046
54294
|
value: string;
|
|
54047
54295
|
i18n?: string;
|
|
54048
54296
|
[k: string]: unknown;
|
|
@@ -54750,7 +54998,7 @@ export interface Body {
|
|
|
54750
54998
|
*
|
|
54751
54999
|
*
|
|
54752
55000
|
*/
|
|
54753
|
-
export interface
|
|
55001
|
+
export interface Icon20 {
|
|
54754
55002
|
width?: number;
|
|
54755
55003
|
url: string;
|
|
54756
55004
|
height?: number;
|
|
@@ -54775,7 +55023,7 @@ export interface Icon19 {
|
|
|
54775
55023
|
*
|
|
54776
55024
|
*
|
|
54777
55025
|
*/
|
|
54778
|
-
export interface
|
|
55026
|
+
export interface I18NProperty97 {
|
|
54779
55027
|
value: string;
|
|
54780
55028
|
i18n?: string;
|
|
54781
55029
|
[k: string]: unknown;
|
|
@@ -54799,7 +55047,7 @@ export interface I18NProperty93 {
|
|
|
54799
55047
|
*
|
|
54800
55048
|
*
|
|
54801
55049
|
*/
|
|
54802
|
-
export interface
|
|
55050
|
+
export interface I18NProperty98 {
|
|
54803
55051
|
value: string;
|
|
54804
55052
|
i18n?: string;
|
|
54805
55053
|
[k: string]: unknown;
|