@forge/manifest 0.0.0-experimental-490cfcf → 0.0.0-experimental-e1cefc4
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 +129 -1
- package/out/processor/basic-validation-processor.d.ts.map +1 -1
- package/out/processor/basic-validation-processor.js +2 -1
- package/out/processor/full-validation-processor.d.ts.map +1 -1
- package/out/processor/full-validation-processor.js +2 -1
- package/out/schema/manifest-schema.json +509 -329
- package/out/schema/manifest.d.ts +386 -280
- package/out/scopes/shipyard-scopes.json +18 -0
- package/out/text/errors.d.ts +11 -3
- package/out/text/errors.d.ts.map +1 -1
- package/out/text/errors.js +11 -3
- package/out/types/module-types.d.ts +3 -0
- package/out/types/module-types.d.ts.map +1 -1
- package/out/types/module-types.js +3 -0
- package/out/validators/entity-property-validator.d.ts +6 -0
- package/out/validators/entity-property-validator.d.ts.map +1 -0
- package/out/validators/entity-property-validator.js +35 -0
- package/out/validators/index.d.ts +1 -0
- package/out/validators/index.d.ts.map +1 -1
- package/out/validators/index.js +1 -0
- package/out/validators/modules-validator.d.ts.map +1 -1
- package/out/validators/modules-validator.js +14 -6
- package/out/validators/modules-validators/confluence/index.d.ts +4 -0
- package/out/validators/modules-validators/confluence/index.d.ts.map +1 -0
- package/out/validators/modules-validators/confluence/index.js +22 -0
- package/out/validators/modules-validators/confluence/validatePropertyUniqueness.d.ts +4 -0
- package/out/validators/modules-validators/confluence/validatePropertyUniqueness.d.ts.map +1 -0
- package/out/validators/modules-validators/confluence/validatePropertyUniqueness.js +17 -0
- package/out/validators/modules-validators/confluence/validateSingleProperty.d.ts +4 -0
- package/out/validators/modules-validators/confluence/validateSingleProperty.d.ts.map +1 -0
- package/out/validators/modules-validators/confluence/validateSingleProperty.js +15 -0
- package/out/validators/modules-validators/jira/issue-adjustment.d.ts +4 -0
- package/out/validators/modules-validators/jira/issue-adjustment.d.ts.map +1 -0
- package/out/validators/modules-validators/jira/issue-adjustment.js +16 -0
- package/out/validators/providers-validator.d.ts +2 -1
- package/out/validators/providers-validator.d.ts.map +1 -1
- package/out/validators/providers-validator.js +13 -9
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -609,6 +609,7 @@ export interface Modules {
|
|
|
609
609
|
(
|
|
610
610
|
| {
|
|
611
611
|
title: string;
|
|
612
|
+
route?: string;
|
|
612
613
|
function: string;
|
|
613
614
|
displayConditions?: {
|
|
614
615
|
[k: string]: unknown;
|
|
@@ -618,6 +619,7 @@ export interface Modules {
|
|
|
618
619
|
}
|
|
619
620
|
| {
|
|
620
621
|
title: string;
|
|
622
|
+
route?: string;
|
|
621
623
|
resolver?: {
|
|
622
624
|
function: string;
|
|
623
625
|
};
|
|
@@ -633,6 +635,7 @@ export interface Modules {
|
|
|
633
635
|
...(
|
|
634
636
|
| {
|
|
635
637
|
title: string;
|
|
638
|
+
route?: string;
|
|
636
639
|
function: string;
|
|
637
640
|
displayConditions?: {
|
|
638
641
|
[k: string]: unknown;
|
|
@@ -642,6 +645,7 @@ export interface Modules {
|
|
|
642
645
|
}
|
|
643
646
|
| {
|
|
644
647
|
title: string;
|
|
648
|
+
route?: string;
|
|
645
649
|
resolver?: {
|
|
646
650
|
function: string;
|
|
647
651
|
};
|
|
@@ -663,6 +667,14 @@ export interface Modules {
|
|
|
663
667
|
displayConditions?: {
|
|
664
668
|
[k: string]: unknown;
|
|
665
669
|
};
|
|
670
|
+
/**
|
|
671
|
+
* A flag indicating whether this settings instance will be used as the app's configuration
|
|
672
|
+
*/
|
|
673
|
+
useAsConfig?: boolean;
|
|
674
|
+
/**
|
|
675
|
+
* A flag indicating whether this settings instance will be used as the app's "Get Started"
|
|
676
|
+
*/
|
|
677
|
+
useAsGetStarted?: boolean;
|
|
666
678
|
key: ModuleKeySchema;
|
|
667
679
|
[k: string]: unknown;
|
|
668
680
|
}
|
|
@@ -676,6 +688,14 @@ export interface Modules {
|
|
|
676
688
|
displayConditions?: {
|
|
677
689
|
[k: string]: unknown;
|
|
678
690
|
};
|
|
691
|
+
/**
|
|
692
|
+
* A flag indicating whether this settings instance will be used as the app's configuration
|
|
693
|
+
*/
|
|
694
|
+
useAsConfig?: boolean;
|
|
695
|
+
/**
|
|
696
|
+
* A flag indicating whether this settings instance will be used as the app's "Get Started"
|
|
697
|
+
*/
|
|
698
|
+
useAsGetStarted?: boolean;
|
|
679
699
|
key: ModuleKeySchema;
|
|
680
700
|
[k: string]: unknown;
|
|
681
701
|
}
|
|
@@ -687,6 +707,14 @@ export interface Modules {
|
|
|
687
707
|
displayConditions?: {
|
|
688
708
|
[k: string]: unknown;
|
|
689
709
|
};
|
|
710
|
+
/**
|
|
711
|
+
* A flag indicating whether this settings instance will be used as the app's configuration
|
|
712
|
+
*/
|
|
713
|
+
useAsConfig?: boolean;
|
|
714
|
+
/**
|
|
715
|
+
* A flag indicating whether this settings instance will be used as the app's "Get Started"
|
|
716
|
+
*/
|
|
717
|
+
useAsGetStarted?: boolean;
|
|
690
718
|
key: ModuleKeySchema;
|
|
691
719
|
[k: string]: unknown;
|
|
692
720
|
}
|
|
@@ -700,6 +728,14 @@ export interface Modules {
|
|
|
700
728
|
displayConditions?: {
|
|
701
729
|
[k: string]: unknown;
|
|
702
730
|
};
|
|
731
|
+
/**
|
|
732
|
+
* A flag indicating whether this settings instance will be used as the app's configuration
|
|
733
|
+
*/
|
|
734
|
+
useAsConfig?: boolean;
|
|
735
|
+
/**
|
|
736
|
+
* A flag indicating whether this settings instance will be used as the app's "Get Started"
|
|
737
|
+
*/
|
|
738
|
+
useAsGetStarted?: boolean;
|
|
703
739
|
key: ModuleKeySchema;
|
|
704
740
|
[k: string]: unknown;
|
|
705
741
|
}
|
|
@@ -765,7 +801,12 @@ export interface Modules {
|
|
|
765
801
|
description: string;
|
|
766
802
|
function?: string;
|
|
767
803
|
expression?: string;
|
|
768
|
-
errorMessage?:
|
|
804
|
+
errorMessage?:
|
|
805
|
+
| {
|
|
806
|
+
expression: string;
|
|
807
|
+
[k: string]: unknown;
|
|
808
|
+
}
|
|
809
|
+
| string;
|
|
769
810
|
view?: {
|
|
770
811
|
resource: string;
|
|
771
812
|
[k: string]: unknown;
|
|
@@ -786,7 +827,12 @@ export interface Modules {
|
|
|
786
827
|
description: string;
|
|
787
828
|
function?: string;
|
|
788
829
|
expression?: string;
|
|
789
|
-
errorMessage?:
|
|
830
|
+
errorMessage?:
|
|
831
|
+
| {
|
|
832
|
+
expression: string;
|
|
833
|
+
[k: string]: unknown;
|
|
834
|
+
}
|
|
835
|
+
| string;
|
|
790
836
|
view?: {
|
|
791
837
|
resource: string;
|
|
792
838
|
[k: string]: unknown;
|
|
@@ -803,6 +849,32 @@ export interface Modules {
|
|
|
803
849
|
[k: string]: unknown;
|
|
804
850
|
}[]
|
|
805
851
|
];
|
|
852
|
+
'jira:entityProperty'?: [
|
|
853
|
+
{
|
|
854
|
+
propertyKey: string;
|
|
855
|
+
entityType?: 'issue' | 'project' | 'user';
|
|
856
|
+
values: {
|
|
857
|
+
path: string;
|
|
858
|
+
type: 'date' | 'number' | 'string' | 'text' | 'user';
|
|
859
|
+
searchAlias?: string;
|
|
860
|
+
[k: string]: unknown;
|
|
861
|
+
}[];
|
|
862
|
+
key: ModuleKeySchema;
|
|
863
|
+
[k: string]: unknown;
|
|
864
|
+
},
|
|
865
|
+
...{
|
|
866
|
+
propertyKey: string;
|
|
867
|
+
entityType?: 'issue' | 'project' | 'user';
|
|
868
|
+
values: {
|
|
869
|
+
path: string;
|
|
870
|
+
type: 'date' | 'number' | 'string' | 'text' | 'user';
|
|
871
|
+
searchAlias?: string;
|
|
872
|
+
[k: string]: unknown;
|
|
873
|
+
}[];
|
|
874
|
+
key: ModuleKeySchema;
|
|
875
|
+
[k: string]: unknown;
|
|
876
|
+
}[]
|
|
877
|
+
];
|
|
806
878
|
'jira:customField'?: [
|
|
807
879
|
(
|
|
808
880
|
| {
|
|
@@ -1295,6 +1367,26 @@ export interface Modules {
|
|
|
1295
1367
|
}
|
|
1296
1368
|
)[]
|
|
1297
1369
|
];
|
|
1370
|
+
'jira:issueAdjustment'?: [
|
|
1371
|
+
{
|
|
1372
|
+
title: string;
|
|
1373
|
+
resolver?: {
|
|
1374
|
+
function: string;
|
|
1375
|
+
};
|
|
1376
|
+
resource: string;
|
|
1377
|
+
key: ModuleKeySchema;
|
|
1378
|
+
[k: string]: unknown;
|
|
1379
|
+
},
|
|
1380
|
+
...{
|
|
1381
|
+
title: string;
|
|
1382
|
+
resolver?: {
|
|
1383
|
+
function: string;
|
|
1384
|
+
};
|
|
1385
|
+
resource: string;
|
|
1386
|
+
key: ModuleKeySchema;
|
|
1387
|
+
[k: string]: unknown;
|
|
1388
|
+
}[]
|
|
1389
|
+
];
|
|
1298
1390
|
'jira:issueGlance'?: [
|
|
1299
1391
|
(
|
|
1300
1392
|
| {
|
|
@@ -1522,20 +1614,20 @@ export interface Modules {
|
|
|
1522
1614
|
'jira:dashboardGadget'?: [
|
|
1523
1615
|
(
|
|
1524
1616
|
| {
|
|
1617
|
+
function: string;
|
|
1618
|
+
edit?: {
|
|
1619
|
+
function: string;
|
|
1620
|
+
[k: string]: unknown;
|
|
1621
|
+
};
|
|
1525
1622
|
title:
|
|
1526
1623
|
| {
|
|
1527
1624
|
text: string;
|
|
1528
|
-
href
|
|
1625
|
+
href: string;
|
|
1529
1626
|
[k: string]: unknown;
|
|
1530
1627
|
}
|
|
1531
1628
|
| string;
|
|
1532
1629
|
description: string;
|
|
1533
|
-
thumbnail
|
|
1534
|
-
function: string;
|
|
1535
|
-
edit?: {
|
|
1536
|
-
function: string;
|
|
1537
|
-
[k: string]: unknown;
|
|
1538
|
-
};
|
|
1630
|
+
thumbnail?: string;
|
|
1539
1631
|
displayConditions?: {
|
|
1540
1632
|
[k: string]: unknown;
|
|
1541
1633
|
};
|
|
@@ -1547,20 +1639,19 @@ export interface Modules {
|
|
|
1547
1639
|
resolver?: {
|
|
1548
1640
|
function: string;
|
|
1549
1641
|
};
|
|
1642
|
+
edit?: {
|
|
1643
|
+
resource: string;
|
|
1644
|
+
[k: string]: unknown;
|
|
1645
|
+
};
|
|
1550
1646
|
title:
|
|
1551
1647
|
| {
|
|
1552
1648
|
text: string;
|
|
1553
|
-
href
|
|
1649
|
+
href: string;
|
|
1554
1650
|
[k: string]: unknown;
|
|
1555
1651
|
}
|
|
1556
1652
|
| string;
|
|
1557
1653
|
description: string;
|
|
1558
|
-
thumbnail
|
|
1559
|
-
function?: string;
|
|
1560
|
-
edit?: {
|
|
1561
|
-
resource: string;
|
|
1562
|
-
[k: string]: unknown;
|
|
1563
|
-
};
|
|
1654
|
+
thumbnail?: string;
|
|
1564
1655
|
displayConditions?: {
|
|
1565
1656
|
[k: string]: unknown;
|
|
1566
1657
|
};
|
|
@@ -1570,20 +1661,20 @@ export interface Modules {
|
|
|
1570
1661
|
),
|
|
1571
1662
|
...(
|
|
1572
1663
|
| {
|
|
1664
|
+
function: string;
|
|
1665
|
+
edit?: {
|
|
1666
|
+
function: string;
|
|
1667
|
+
[k: string]: unknown;
|
|
1668
|
+
};
|
|
1573
1669
|
title:
|
|
1574
1670
|
| {
|
|
1575
1671
|
text: string;
|
|
1576
|
-
href
|
|
1672
|
+
href: string;
|
|
1577
1673
|
[k: string]: unknown;
|
|
1578
1674
|
}
|
|
1579
1675
|
| string;
|
|
1580
1676
|
description: string;
|
|
1581
|
-
thumbnail
|
|
1582
|
-
function: string;
|
|
1583
|
-
edit?: {
|
|
1584
|
-
function: string;
|
|
1585
|
-
[k: string]: unknown;
|
|
1586
|
-
};
|
|
1677
|
+
thumbnail?: string;
|
|
1587
1678
|
displayConditions?: {
|
|
1588
1679
|
[k: string]: unknown;
|
|
1589
1680
|
};
|
|
@@ -1595,20 +1686,19 @@ export interface Modules {
|
|
|
1595
1686
|
resolver?: {
|
|
1596
1687
|
function: string;
|
|
1597
1688
|
};
|
|
1689
|
+
edit?: {
|
|
1690
|
+
resource: string;
|
|
1691
|
+
[k: string]: unknown;
|
|
1692
|
+
};
|
|
1598
1693
|
title:
|
|
1599
1694
|
| {
|
|
1600
1695
|
text: string;
|
|
1601
|
-
href
|
|
1696
|
+
href: string;
|
|
1602
1697
|
[k: string]: unknown;
|
|
1603
1698
|
}
|
|
1604
1699
|
| string;
|
|
1605
1700
|
description: string;
|
|
1606
|
-
thumbnail
|
|
1607
|
-
function?: string;
|
|
1608
|
-
edit?: {
|
|
1609
|
-
resource: string;
|
|
1610
|
-
[k: string]: unknown;
|
|
1611
|
-
};
|
|
1701
|
+
thumbnail?: string;
|
|
1612
1702
|
displayConditions?: {
|
|
1613
1703
|
[k: string]: unknown;
|
|
1614
1704
|
};
|
|
@@ -2105,6 +2195,22 @@ export interface Modules {
|
|
|
2105
2195
|
}
|
|
2106
2196
|
)[]
|
|
2107
2197
|
];
|
|
2198
|
+
'jira:workflowCondition'?: [
|
|
2199
|
+
{
|
|
2200
|
+
name: string;
|
|
2201
|
+
description: string;
|
|
2202
|
+
expression: string;
|
|
2203
|
+
key: ModuleKeySchema;
|
|
2204
|
+
[k: string]: unknown;
|
|
2205
|
+
},
|
|
2206
|
+
...{
|
|
2207
|
+
name: string;
|
|
2208
|
+
description: string;
|
|
2209
|
+
expression: string;
|
|
2210
|
+
key: ModuleKeySchema;
|
|
2211
|
+
[k: string]: unknown;
|
|
2212
|
+
}[]
|
|
2213
|
+
];
|
|
2108
2214
|
'compass:adminPage'?: [
|
|
2109
2215
|
(
|
|
2110
2216
|
| {
|
|
@@ -2836,7 +2942,7 @@ export interface Modules {
|
|
|
2836
2942
|
filter?: string;
|
|
2837
2943
|
excludeBody?: boolean;
|
|
2838
2944
|
event?: string;
|
|
2839
|
-
conditions?: (
|
|
2945
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2840
2946
|
propertyKeys?: string[];
|
|
2841
2947
|
url?: string;
|
|
2842
2948
|
key: ModuleKeySchema;
|
|
@@ -2846,7 +2952,7 @@ export interface Modules {
|
|
|
2846
2952
|
filter?: string;
|
|
2847
2953
|
excludeBody?: boolean;
|
|
2848
2954
|
event?: string;
|
|
2849
|
-
conditions?: (
|
|
2955
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2850
2956
|
propertyKeys?: string[];
|
|
2851
2957
|
url?: string;
|
|
2852
2958
|
key: ModuleKeySchema;
|
|
@@ -2860,7 +2966,7 @@ export interface Modules {
|
|
|
2860
2966
|
weight?: number;
|
|
2861
2967
|
cacheable?: boolean;
|
|
2862
2968
|
location?: string;
|
|
2863
|
-
conditions?: (
|
|
2969
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2864
2970
|
params?: {
|
|
2865
2971
|
[k: string]: unknown;
|
|
2866
2972
|
};
|
|
@@ -2874,7 +2980,7 @@ export interface Modules {
|
|
|
2874
2980
|
weight?: number;
|
|
2875
2981
|
cacheable?: boolean;
|
|
2876
2982
|
location?: string;
|
|
2877
|
-
conditions?: (
|
|
2983
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2878
2984
|
params?: {
|
|
2879
2985
|
[k: string]: unknown;
|
|
2880
2986
|
};
|
|
@@ -2889,7 +2995,7 @@ export interface Modules {
|
|
|
2889
2995
|
name?: I18NProperty6;
|
|
2890
2996
|
weight?: number;
|
|
2891
2997
|
location?: string;
|
|
2892
|
-
conditions?: (
|
|
2998
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2893
2999
|
params?: {
|
|
2894
3000
|
[k: string]: unknown;
|
|
2895
3001
|
};
|
|
@@ -2901,7 +3007,7 @@ export interface Modules {
|
|
|
2901
3007
|
name?: I18NProperty6;
|
|
2902
3008
|
weight?: number;
|
|
2903
3009
|
location?: string;
|
|
2904
|
-
conditions?: (
|
|
3010
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2905
3011
|
params?: {
|
|
2906
3012
|
[k: string]: unknown;
|
|
2907
3013
|
};
|
|
@@ -2916,7 +3022,7 @@ export interface Modules {
|
|
|
2916
3022
|
weight?: number;
|
|
2917
3023
|
cacheable?: boolean;
|
|
2918
3024
|
location?: string;
|
|
2919
|
-
conditions?: (
|
|
3025
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2920
3026
|
params?: {
|
|
2921
3027
|
[k: string]: unknown;
|
|
2922
3028
|
};
|
|
@@ -2930,7 +3036,7 @@ export interface Modules {
|
|
|
2930
3036
|
weight?: number;
|
|
2931
3037
|
cacheable?: boolean;
|
|
2932
3038
|
location?: string;
|
|
2933
|
-
conditions?: (
|
|
3039
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2934
3040
|
params?: {
|
|
2935
3041
|
[k: string]: unknown;
|
|
2936
3042
|
};
|
|
@@ -3080,7 +3186,7 @@ export interface Modules {
|
|
|
3080
3186
|
| 'TIME_TRACKING'
|
|
3081
3187
|
| 'other'
|
|
3082
3188
|
| 'OTHER';
|
|
3083
|
-
conditions?: (
|
|
3189
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3084
3190
|
key: ModuleKeySchema;
|
|
3085
3191
|
[k: string]: unknown;
|
|
3086
3192
|
},
|
|
@@ -3102,7 +3208,7 @@ export interface Modules {
|
|
|
3102
3208
|
| 'TIME_TRACKING'
|
|
3103
3209
|
| 'other'
|
|
3104
3210
|
| 'OTHER';
|
|
3105
|
-
conditions?: (
|
|
3211
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3106
3212
|
key: ModuleKeySchema;
|
|
3107
3213
|
[k: string]: unknown;
|
|
3108
3214
|
}[]
|
|
@@ -3210,7 +3316,7 @@ export interface Modules {
|
|
|
3210
3316
|
name?: I18NProperty20;
|
|
3211
3317
|
weight?: number;
|
|
3212
3318
|
iconUrl?: string;
|
|
3213
|
-
conditions?: (
|
|
3319
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3214
3320
|
url?: string;
|
|
3215
3321
|
key: ModuleKeySchema;
|
|
3216
3322
|
[k: string]: unknown;
|
|
@@ -3219,7 +3325,7 @@ export interface Modules {
|
|
|
3219
3325
|
name?: I18NProperty20;
|
|
3220
3326
|
weight?: number;
|
|
3221
3327
|
iconUrl?: string;
|
|
3222
|
-
conditions?: (
|
|
3328
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3223
3329
|
url?: string;
|
|
3224
3330
|
key: ModuleKeySchema;
|
|
3225
3331
|
[k: string]: unknown;
|
|
@@ -3322,9 +3428,9 @@ export interface Modules {
|
|
|
3322
3428
|
icon?: Icon6;
|
|
3323
3429
|
tooltip?: I18NProperty29;
|
|
3324
3430
|
name?: I18NProperty30;
|
|
3325
|
-
conditions?: (
|
|
3431
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3326
3432
|
target?: IssuePageTargetWebPanel;
|
|
3327
|
-
contentPresentConditions?: (
|
|
3433
|
+
contentPresentConditions?: (CompositeCondition | SingleCondition)[];
|
|
3328
3434
|
jiraNativeAppsEnabled?: boolean;
|
|
3329
3435
|
key: ModuleKeySchema;
|
|
3330
3436
|
[k: string]: unknown;
|
|
@@ -3333,9 +3439,9 @@ export interface Modules {
|
|
|
3333
3439
|
icon?: Icon6;
|
|
3334
3440
|
tooltip?: I18NProperty29;
|
|
3335
3441
|
name?: I18NProperty30;
|
|
3336
|
-
conditions?: (
|
|
3442
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3337
3443
|
target?: IssuePageTargetWebPanel;
|
|
3338
|
-
contentPresentConditions?: (
|
|
3444
|
+
contentPresentConditions?: (CompositeCondition | SingleCondition)[];
|
|
3339
3445
|
jiraNativeAppsEnabled?: boolean;
|
|
3340
3446
|
key: ModuleKeySchema;
|
|
3341
3447
|
[k: string]: unknown;
|
|
@@ -3367,7 +3473,7 @@ export interface Modules {
|
|
|
3367
3473
|
{
|
|
3368
3474
|
name?: I18NProperty33;
|
|
3369
3475
|
weight?: number;
|
|
3370
|
-
conditions?: (
|
|
3476
|
+
conditions?: (SingleCondition2 | CompositeCondition2)[];
|
|
3371
3477
|
params?: {
|
|
3372
3478
|
[k: string]: unknown;
|
|
3373
3479
|
};
|
|
@@ -3378,7 +3484,7 @@ export interface Modules {
|
|
|
3378
3484
|
...{
|
|
3379
3485
|
name?: I18NProperty33;
|
|
3380
3486
|
weight?: number;
|
|
3381
|
-
conditions?: (
|
|
3487
|
+
conditions?: (SingleCondition2 | CompositeCondition2)[];
|
|
3382
3488
|
params?: {
|
|
3383
3489
|
[k: string]: unknown;
|
|
3384
3490
|
};
|
|
@@ -3459,7 +3565,7 @@ export interface Modules {
|
|
|
3459
3565
|
{
|
|
3460
3566
|
name?: I18NProperty38;
|
|
3461
3567
|
weight?: number;
|
|
3462
|
-
conditions?: (
|
|
3568
|
+
conditions?: (SingleCondition3 | CompositeCondition4)[];
|
|
3463
3569
|
params?: {
|
|
3464
3570
|
[k: string]: unknown;
|
|
3465
3571
|
};
|
|
@@ -3470,7 +3576,7 @@ export interface Modules {
|
|
|
3470
3576
|
...{
|
|
3471
3577
|
name?: I18NProperty38;
|
|
3472
3578
|
weight?: number;
|
|
3473
|
-
conditions?: (
|
|
3579
|
+
conditions?: (SingleCondition3 | CompositeCondition4)[];
|
|
3474
3580
|
params?: {
|
|
3475
3581
|
[k: string]: unknown;
|
|
3476
3582
|
};
|
|
@@ -3591,7 +3697,7 @@ export interface Modules {
|
|
|
3591
3697
|
expression?: string;
|
|
3592
3698
|
edit?: URL8;
|
|
3593
3699
|
evaluationContext?: 'user' | 'USER' | 'app' | 'APP';
|
|
3594
|
-
errorMessage?:
|
|
3700
|
+
errorMessage?: I18NProperty45 | JiraExpressionErrorMessage;
|
|
3595
3701
|
name?: I18NProperty46;
|
|
3596
3702
|
description?: I18NProperty47;
|
|
3597
3703
|
create?: URL9;
|
|
@@ -3603,7 +3709,7 @@ export interface Modules {
|
|
|
3603
3709
|
expression?: string;
|
|
3604
3710
|
edit?: URL8;
|
|
3605
3711
|
evaluationContext?: 'user' | 'USER' | 'app' | 'APP';
|
|
3606
|
-
errorMessage?:
|
|
3712
|
+
errorMessage?: I18NProperty45 | JiraExpressionErrorMessage;
|
|
3607
3713
|
name?: I18NProperty46;
|
|
3608
3714
|
description?: I18NProperty47;
|
|
3609
3715
|
create?: URL9;
|
|
@@ -3734,7 +3840,7 @@ export interface Modules {
|
|
|
3734
3840
|
location?: string;
|
|
3735
3841
|
cacheable?: boolean;
|
|
3736
3842
|
supportsNative?: boolean;
|
|
3737
|
-
conditions?: (
|
|
3843
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3738
3844
|
params?: {
|
|
3739
3845
|
[k: string]: unknown;
|
|
3740
3846
|
};
|
|
@@ -3750,7 +3856,7 @@ export interface Modules {
|
|
|
3750
3856
|
location?: string;
|
|
3751
3857
|
cacheable?: boolean;
|
|
3752
3858
|
supportsNative?: boolean;
|
|
3753
|
-
conditions?: (
|
|
3859
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3754
3860
|
params?: {
|
|
3755
3861
|
[k: string]: unknown;
|
|
3756
3862
|
};
|
|
@@ -3817,7 +3923,7 @@ export interface Modules {
|
|
|
3817
3923
|
name?: I18NProperty55;
|
|
3818
3924
|
weight?: number;
|
|
3819
3925
|
location?: string;
|
|
3820
|
-
conditions?: (
|
|
3926
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3821
3927
|
params?: {
|
|
3822
3928
|
[k: string]: unknown;
|
|
3823
3929
|
};
|
|
@@ -3829,7 +3935,7 @@ export interface Modules {
|
|
|
3829
3935
|
name?: I18NProperty55;
|
|
3830
3936
|
weight?: number;
|
|
3831
3937
|
location?: string;
|
|
3832
|
-
conditions?: (
|
|
3938
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3833
3939
|
params?: {
|
|
3834
3940
|
[k: string]: unknown;
|
|
3835
3941
|
};
|
|
@@ -3882,7 +3988,7 @@ export interface Modules {
|
|
|
3882
3988
|
name?: I18NProperty59;
|
|
3883
3989
|
location?: string;
|
|
3884
3990
|
cacheable?: boolean;
|
|
3885
|
-
conditions?: (
|
|
3991
|
+
conditions?: (SingleCondition4 | CompositeCondition6)[];
|
|
3886
3992
|
key: ModuleKeySchema;
|
|
3887
3993
|
[k: string]: unknown;
|
|
3888
3994
|
},
|
|
@@ -3900,7 +4006,7 @@ export interface Modules {
|
|
|
3900
4006
|
name?: I18NProperty59;
|
|
3901
4007
|
location?: string;
|
|
3902
4008
|
cacheable?: boolean;
|
|
3903
|
-
conditions?: (
|
|
4009
|
+
conditions?: (SingleCondition4 | CompositeCondition6)[];
|
|
3904
4010
|
key: ModuleKeySchema;
|
|
3905
4011
|
[k: string]: unknown;
|
|
3906
4012
|
}[]
|
|
@@ -4799,7 +4905,7 @@ export interface Icon3 {
|
|
|
4799
4905
|
*
|
|
4800
4906
|
*/
|
|
4801
4907
|
export interface WebItemTarget {
|
|
4802
|
-
options?: InlineDialogOptions |
|
|
4908
|
+
options?: InlineDialogOptions | DialogModuleOptions | DialogOptions;
|
|
4803
4909
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
4804
4910
|
[k: string]: unknown;
|
|
4805
4911
|
}
|
|
@@ -4840,6 +4946,33 @@ export interface InlineDialogOptions {
|
|
|
4840
4946
|
isRelativeToMouse?: boolean;
|
|
4841
4947
|
[k: string]: unknown;
|
|
4842
4948
|
}
|
|
4949
|
+
/**
|
|
4950
|
+
*
|
|
4951
|
+
*
|
|
4952
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
4953
|
+
*
|
|
4954
|
+
* <h3>Example</h3>
|
|
4955
|
+
*
|
|
4956
|
+
*
|
|
4957
|
+
*
|
|
4958
|
+
*
|
|
4959
|
+
*
|
|
4960
|
+
* {
|
|
4961
|
+
* "target": {
|
|
4962
|
+
* "type": "dialogmodule",
|
|
4963
|
+
* "options": {
|
|
4964
|
+
* "key": "dialog-module-key"
|
|
4965
|
+
* }
|
|
4966
|
+
* }
|
|
4967
|
+
* }
|
|
4968
|
+
*
|
|
4969
|
+
*
|
|
4970
|
+
*
|
|
4971
|
+
*/
|
|
4972
|
+
export interface DialogModuleOptions {
|
|
4973
|
+
key: string;
|
|
4974
|
+
[k: string]: unknown;
|
|
4975
|
+
}
|
|
4843
4976
|
/**
|
|
4844
4977
|
*
|
|
4845
4978
|
*
|
|
@@ -4938,33 +5071,6 @@ export interface I18NProperty9 {
|
|
|
4938
5071
|
i18n?: string;
|
|
4939
5072
|
[k: string]: unknown;
|
|
4940
5073
|
}
|
|
4941
|
-
/**
|
|
4942
|
-
*
|
|
4943
|
-
*
|
|
4944
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
4945
|
-
*
|
|
4946
|
-
* <h3>Example</h3>
|
|
4947
|
-
*
|
|
4948
|
-
*
|
|
4949
|
-
*
|
|
4950
|
-
*
|
|
4951
|
-
*
|
|
4952
|
-
* {
|
|
4953
|
-
* "target": {
|
|
4954
|
-
* "type": "dialogmodule",
|
|
4955
|
-
* "options": {
|
|
4956
|
-
* "key": "dialog-module-key"
|
|
4957
|
-
* }
|
|
4958
|
-
* }
|
|
4959
|
-
* }
|
|
4960
|
-
*
|
|
4961
|
-
*
|
|
4962
|
-
*
|
|
4963
|
-
*/
|
|
4964
|
-
export interface DialogModuleOptions {
|
|
4965
|
-
key: string;
|
|
4966
|
-
[k: string]: unknown;
|
|
4967
|
-
}
|
|
4968
5074
|
/**
|
|
4969
5075
|
*
|
|
4970
5076
|
*
|
|
@@ -5026,7 +5132,7 @@ export interface I18NProperty10 {
|
|
|
5026
5132
|
*
|
|
5027
5133
|
*/
|
|
5028
5134
|
export interface CompositeCondition1 {
|
|
5029
|
-
conditions?: (
|
|
5135
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
5030
5136
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
5031
5137
|
[k: string]: unknown;
|
|
5032
5138
|
}
|
|
@@ -5963,6 +6069,37 @@ export interface I18NProperty33 {
|
|
|
5963
6069
|
i18n?: string;
|
|
5964
6070
|
[k: string]: unknown;
|
|
5965
6071
|
}
|
|
6072
|
+
/**
|
|
6073
|
+
*
|
|
6074
|
+
*
|
|
6075
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6076
|
+
* [Conditions](../../conditions/) for more information.
|
|
6077
|
+
*
|
|
6078
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6079
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6080
|
+
*
|
|
6081
|
+
* <h3>Example</h3>
|
|
6082
|
+
*
|
|
6083
|
+
*
|
|
6084
|
+
*
|
|
6085
|
+
*
|
|
6086
|
+
*
|
|
6087
|
+
* {
|
|
6088
|
+
* "condition": "user_is_logged_in",
|
|
6089
|
+
* "invert": false
|
|
6090
|
+
* }
|
|
6091
|
+
*
|
|
6092
|
+
*
|
|
6093
|
+
*
|
|
6094
|
+
*/
|
|
6095
|
+
export interface SingleCondition2 {
|
|
6096
|
+
condition: string;
|
|
6097
|
+
invert?: boolean;
|
|
6098
|
+
params?: {
|
|
6099
|
+
[k: string]: unknown;
|
|
6100
|
+
};
|
|
6101
|
+
[k: string]: unknown;
|
|
6102
|
+
}
|
|
5966
6103
|
/**
|
|
5967
6104
|
*
|
|
5968
6105
|
*
|
|
@@ -6000,7 +6137,7 @@ export interface I18NProperty33 {
|
|
|
6000
6137
|
*
|
|
6001
6138
|
*/
|
|
6002
6139
|
export interface CompositeCondition2 {
|
|
6003
|
-
conditions?: (
|
|
6140
|
+
conditions?: (SingleCondition | CompositeCondition3)[];
|
|
6004
6141
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6005
6142
|
[k: string]: unknown;
|
|
6006
6143
|
}
|
|
@@ -6041,41 +6178,10 @@ export interface CompositeCondition2 {
|
|
|
6041
6178
|
*
|
|
6042
6179
|
*/
|
|
6043
6180
|
export interface CompositeCondition3 {
|
|
6044
|
-
conditions?: (
|
|
6181
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
6045
6182
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6046
6183
|
[k: string]: unknown;
|
|
6047
6184
|
}
|
|
6048
|
-
/**
|
|
6049
|
-
*
|
|
6050
|
-
*
|
|
6051
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6052
|
-
* [Conditions](../../conditions/) for more information.
|
|
6053
|
-
*
|
|
6054
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6055
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6056
|
-
*
|
|
6057
|
-
* <h3>Example</h3>
|
|
6058
|
-
*
|
|
6059
|
-
*
|
|
6060
|
-
*
|
|
6061
|
-
*
|
|
6062
|
-
*
|
|
6063
|
-
* {
|
|
6064
|
-
* "condition": "user_is_logged_in",
|
|
6065
|
-
* "invert": false
|
|
6066
|
-
* }
|
|
6067
|
-
*
|
|
6068
|
-
*
|
|
6069
|
-
*
|
|
6070
|
-
*/
|
|
6071
|
-
export interface SingleCondition2 {
|
|
6072
|
-
condition: string;
|
|
6073
|
-
invert?: boolean;
|
|
6074
|
-
params?: {
|
|
6075
|
-
[k: string]: unknown;
|
|
6076
|
-
};
|
|
6077
|
-
[k: string]: unknown;
|
|
6078
|
-
}
|
|
6079
6185
|
/**
|
|
6080
6186
|
*
|
|
6081
6187
|
*
|
|
@@ -6268,6 +6374,37 @@ export interface I18NProperty38 {
|
|
|
6268
6374
|
i18n?: string;
|
|
6269
6375
|
[k: string]: unknown;
|
|
6270
6376
|
}
|
|
6377
|
+
/**
|
|
6378
|
+
*
|
|
6379
|
+
*
|
|
6380
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6381
|
+
* [Conditions](../../conditions/) for more information.
|
|
6382
|
+
*
|
|
6383
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6384
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6385
|
+
*
|
|
6386
|
+
* <h3>Example</h3>
|
|
6387
|
+
*
|
|
6388
|
+
*
|
|
6389
|
+
*
|
|
6390
|
+
*
|
|
6391
|
+
*
|
|
6392
|
+
* {
|
|
6393
|
+
* "condition": "user_is_logged_in",
|
|
6394
|
+
* "invert": false
|
|
6395
|
+
* }
|
|
6396
|
+
*
|
|
6397
|
+
*
|
|
6398
|
+
*
|
|
6399
|
+
*/
|
|
6400
|
+
export interface SingleCondition3 {
|
|
6401
|
+
condition: string;
|
|
6402
|
+
invert?: boolean;
|
|
6403
|
+
params?: {
|
|
6404
|
+
[k: string]: unknown;
|
|
6405
|
+
};
|
|
6406
|
+
[k: string]: unknown;
|
|
6407
|
+
}
|
|
6271
6408
|
/**
|
|
6272
6409
|
*
|
|
6273
6410
|
*
|
|
@@ -6305,7 +6442,7 @@ export interface I18NProperty38 {
|
|
|
6305
6442
|
*
|
|
6306
6443
|
*/
|
|
6307
6444
|
export interface CompositeCondition4 {
|
|
6308
|
-
conditions?: (
|
|
6445
|
+
conditions?: (SingleCondition | CompositeCondition5)[];
|
|
6309
6446
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6310
6447
|
[k: string]: unknown;
|
|
6311
6448
|
}
|
|
@@ -6346,41 +6483,10 @@ export interface CompositeCondition4 {
|
|
|
6346
6483
|
*
|
|
6347
6484
|
*/
|
|
6348
6485
|
export interface CompositeCondition5 {
|
|
6349
|
-
conditions?: (
|
|
6486
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
6350
6487
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6351
6488
|
[k: string]: unknown;
|
|
6352
6489
|
}
|
|
6353
|
-
/**
|
|
6354
|
-
*
|
|
6355
|
-
*
|
|
6356
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6357
|
-
* [Conditions](../../conditions/) for more information.
|
|
6358
|
-
*
|
|
6359
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6360
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6361
|
-
*
|
|
6362
|
-
* <h3>Example</h3>
|
|
6363
|
-
*
|
|
6364
|
-
*
|
|
6365
|
-
*
|
|
6366
|
-
*
|
|
6367
|
-
*
|
|
6368
|
-
* {
|
|
6369
|
-
* "condition": "user_is_logged_in",
|
|
6370
|
-
* "invert": false
|
|
6371
|
-
* }
|
|
6372
|
-
*
|
|
6373
|
-
*
|
|
6374
|
-
*
|
|
6375
|
-
*/
|
|
6376
|
-
export interface SingleCondition3 {
|
|
6377
|
-
condition: string;
|
|
6378
|
-
invert?: boolean;
|
|
6379
|
-
params?: {
|
|
6380
|
-
[k: string]: unknown;
|
|
6381
|
-
};
|
|
6382
|
-
[k: string]: unknown;
|
|
6383
|
-
}
|
|
6384
6490
|
/**
|
|
6385
6491
|
*
|
|
6386
6492
|
*
|
|
@@ -6570,18 +6676,6 @@ export interface URL8 {
|
|
|
6570
6676
|
url: string;
|
|
6571
6677
|
[k: string]: unknown;
|
|
6572
6678
|
}
|
|
6573
|
-
/**
|
|
6574
|
-
*
|
|
6575
|
-
*
|
|
6576
|
-
* A Jira expression that will be evaluated if the workflow validator fails.
|
|
6577
|
-
* The string returned by the Jira expression will be displayed as the error message for the failed transition.
|
|
6578
|
-
*
|
|
6579
|
-
*
|
|
6580
|
-
*/
|
|
6581
|
-
export interface JiraExpressionErrorMessage {
|
|
6582
|
-
expression: string;
|
|
6583
|
-
[k: string]: unknown;
|
|
6584
|
-
}
|
|
6585
6679
|
/**
|
|
6586
6680
|
*
|
|
6587
6681
|
*
|
|
@@ -6606,6 +6700,18 @@ export interface I18NProperty45 {
|
|
|
6606
6700
|
i18n?: string;
|
|
6607
6701
|
[k: string]: unknown;
|
|
6608
6702
|
}
|
|
6703
|
+
/**
|
|
6704
|
+
*
|
|
6705
|
+
*
|
|
6706
|
+
* A Jira expression that will be evaluated if the workflow validator fails.
|
|
6707
|
+
* The string returned by the Jira expression will be displayed as the error message for the failed transition.
|
|
6708
|
+
*
|
|
6709
|
+
*
|
|
6710
|
+
*/
|
|
6711
|
+
export interface JiraExpressionErrorMessage {
|
|
6712
|
+
expression: string;
|
|
6713
|
+
[k: string]: unknown;
|
|
6714
|
+
}
|
|
6609
6715
|
/**
|
|
6610
6716
|
*
|
|
6611
6717
|
*
|
|
@@ -7129,7 +7235,7 @@ export interface Icon10 {
|
|
|
7129
7235
|
*
|
|
7130
7236
|
*/
|
|
7131
7237
|
export interface WebItemTarget1 {
|
|
7132
|
-
options?: DialogOptions2 |
|
|
7238
|
+
options?: DialogOptions2 | DialogModuleOptions1 | InlineDialogOptions1;
|
|
7133
7239
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
7134
7240
|
[k: string]: unknown;
|
|
7135
7241
|
}
|
|
@@ -7231,6 +7337,33 @@ export interface I18NProperty58 {
|
|
|
7231
7337
|
i18n?: string;
|
|
7232
7338
|
[k: string]: unknown;
|
|
7233
7339
|
}
|
|
7340
|
+
/**
|
|
7341
|
+
*
|
|
7342
|
+
*
|
|
7343
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
7344
|
+
*
|
|
7345
|
+
* <h3>Example</h3>
|
|
7346
|
+
*
|
|
7347
|
+
*
|
|
7348
|
+
*
|
|
7349
|
+
*
|
|
7350
|
+
*
|
|
7351
|
+
* {
|
|
7352
|
+
* "target": {
|
|
7353
|
+
* "type": "dialogmodule",
|
|
7354
|
+
* "options": {
|
|
7355
|
+
* "key": "dialog-module-key"
|
|
7356
|
+
* }
|
|
7357
|
+
* }
|
|
7358
|
+
* }
|
|
7359
|
+
*
|
|
7360
|
+
*
|
|
7361
|
+
*
|
|
7362
|
+
*/
|
|
7363
|
+
export interface DialogModuleOptions1 {
|
|
7364
|
+
key: string;
|
|
7365
|
+
[k: string]: unknown;
|
|
7366
|
+
}
|
|
7234
7367
|
/**
|
|
7235
7368
|
*
|
|
7236
7369
|
*
|
|
@@ -7271,7 +7404,8 @@ export interface InlineDialogOptions1 {
|
|
|
7271
7404
|
/**
|
|
7272
7405
|
*
|
|
7273
7406
|
*
|
|
7274
|
-
*
|
|
7407
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
7408
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
7275
7409
|
*
|
|
7276
7410
|
* <h3>Example</h3>
|
|
7277
7411
|
*
|
|
@@ -7280,26 +7414,25 @@ export interface InlineDialogOptions1 {
|
|
|
7280
7414
|
*
|
|
7281
7415
|
*
|
|
7282
7416
|
* {
|
|
7283
|
-
* "
|
|
7284
|
-
* "type": "dialogmodule",
|
|
7285
|
-
* "options": {
|
|
7286
|
-
* "key": "dialog-module-key"
|
|
7287
|
-
* }
|
|
7288
|
-
* }
|
|
7417
|
+
* "value": "My text"
|
|
7289
7418
|
* }
|
|
7290
7419
|
*
|
|
7291
7420
|
*
|
|
7292
7421
|
*
|
|
7293
7422
|
*/
|
|
7294
|
-
export interface
|
|
7295
|
-
|
|
7423
|
+
export interface I18NProperty59 {
|
|
7424
|
+
value: string;
|
|
7425
|
+
i18n?: string;
|
|
7296
7426
|
[k: string]: unknown;
|
|
7297
7427
|
}
|
|
7298
7428
|
/**
|
|
7299
7429
|
*
|
|
7300
7430
|
*
|
|
7301
|
-
*
|
|
7302
|
-
*
|
|
7431
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7432
|
+
* [Conditions](../../conditions/) for more information.
|
|
7433
|
+
*
|
|
7434
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7435
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7303
7436
|
*
|
|
7304
7437
|
* <h3>Example</h3>
|
|
7305
7438
|
*
|
|
@@ -7308,15 +7441,19 @@ export interface DialogModuleOptions1 {
|
|
|
7308
7441
|
*
|
|
7309
7442
|
*
|
|
7310
7443
|
* {
|
|
7311
|
-
* "
|
|
7444
|
+
* "condition": "user_is_logged_in",
|
|
7445
|
+
* "invert": false
|
|
7312
7446
|
* }
|
|
7313
7447
|
*
|
|
7314
7448
|
*
|
|
7315
7449
|
*
|
|
7316
7450
|
*/
|
|
7317
|
-
export interface
|
|
7318
|
-
|
|
7319
|
-
|
|
7451
|
+
export interface SingleCondition4 {
|
|
7452
|
+
condition: string;
|
|
7453
|
+
invert?: boolean;
|
|
7454
|
+
params?: {
|
|
7455
|
+
[k: string]: unknown;
|
|
7456
|
+
};
|
|
7320
7457
|
[k: string]: unknown;
|
|
7321
7458
|
}
|
|
7322
7459
|
/**
|
|
@@ -7360,37 +7497,6 @@ export interface CompositeCondition6 {
|
|
|
7360
7497
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7361
7498
|
[k: string]: unknown;
|
|
7362
7499
|
}
|
|
7363
|
-
/**
|
|
7364
|
-
*
|
|
7365
|
-
*
|
|
7366
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7367
|
-
* [Conditions](../../conditions/) for more information.
|
|
7368
|
-
*
|
|
7369
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7370
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7371
|
-
*
|
|
7372
|
-
* <h3>Example</h3>
|
|
7373
|
-
*
|
|
7374
|
-
*
|
|
7375
|
-
*
|
|
7376
|
-
*
|
|
7377
|
-
*
|
|
7378
|
-
* {
|
|
7379
|
-
* "condition": "user_is_logged_in",
|
|
7380
|
-
* "invert": false
|
|
7381
|
-
* }
|
|
7382
|
-
*
|
|
7383
|
-
*
|
|
7384
|
-
*
|
|
7385
|
-
*/
|
|
7386
|
-
export interface SingleCondition4 {
|
|
7387
|
-
condition: string;
|
|
7388
|
-
invert?: boolean;
|
|
7389
|
-
params?: {
|
|
7390
|
-
[k: string]: unknown;
|
|
7391
|
-
};
|
|
7392
|
-
[k: string]: unknown;
|
|
7393
|
-
}
|
|
7394
7500
|
/**
|
|
7395
7501
|
*
|
|
7396
7502
|
*
|
|
@@ -30481,11 +30587,39 @@ export interface I18NProperty83 {
|
|
|
30481
30587
|
*
|
|
30482
30588
|
*/
|
|
30483
30589
|
export interface MacroPropertyPanel1 {
|
|
30484
|
-
controls?: (ButtonControl2 | ControlGroup1 | ToggleGroup1
|
|
30590
|
+
controls?: (TextControl1 | ButtonControl2 | ControlGroup1 | ToggleGroup1)[];
|
|
30485
30591
|
cacheable?: boolean;
|
|
30486
30592
|
url: string;
|
|
30487
30593
|
[k: string]: unknown;
|
|
30488
30594
|
}
|
|
30595
|
+
/**
|
|
30596
|
+
*
|
|
30597
|
+
*
|
|
30598
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
30599
|
+
*
|
|
30600
|
+
* <p><b>Example</b></p>
|
|
30601
|
+
*
|
|
30602
|
+
*
|
|
30603
|
+
*
|
|
30604
|
+
*
|
|
30605
|
+
*
|
|
30606
|
+
* {
|
|
30607
|
+
* "type": "button",
|
|
30608
|
+
* "label": {
|
|
30609
|
+
* "value": "My Custom Control 0"
|
|
30610
|
+
* },
|
|
30611
|
+
* "key": "my-custom-control-0"
|
|
30612
|
+
* }
|
|
30613
|
+
*
|
|
30614
|
+
*
|
|
30615
|
+
*
|
|
30616
|
+
*/
|
|
30617
|
+
export interface TextControl1 {
|
|
30618
|
+
macroParameter: string;
|
|
30619
|
+
type: 'text' | 'TEXT';
|
|
30620
|
+
key: string;
|
|
30621
|
+
[k: string]: unknown;
|
|
30622
|
+
}
|
|
30489
30623
|
/**
|
|
30490
30624
|
*
|
|
30491
30625
|
*
|
|
@@ -30730,34 +30864,6 @@ export interface I18NProperty86 {
|
|
|
30730
30864
|
i18n?: string;
|
|
30731
30865
|
[k: string]: unknown;
|
|
30732
30866
|
}
|
|
30733
|
-
/**
|
|
30734
|
-
*
|
|
30735
|
-
*
|
|
30736
|
-
* Defines a text field which may appear in control extension points such as the property panel
|
|
30737
|
-
*
|
|
30738
|
-
* <p><b>Example</b></p>
|
|
30739
|
-
*
|
|
30740
|
-
*
|
|
30741
|
-
*
|
|
30742
|
-
*
|
|
30743
|
-
*
|
|
30744
|
-
* {
|
|
30745
|
-
* "type": "button",
|
|
30746
|
-
* "label": {
|
|
30747
|
-
* "value": "My Custom Control 0"
|
|
30748
|
-
* },
|
|
30749
|
-
* "key": "my-custom-control-0"
|
|
30750
|
-
* }
|
|
30751
|
-
*
|
|
30752
|
-
*
|
|
30753
|
-
*
|
|
30754
|
-
*/
|
|
30755
|
-
export interface TextControl1 {
|
|
30756
|
-
macroParameter: string;
|
|
30757
|
-
type: 'text' | 'TEXT';
|
|
30758
|
-
key: string;
|
|
30759
|
-
[k: string]: unknown;
|
|
30760
|
-
}
|
|
30761
30867
|
/**
|
|
30762
30868
|
*
|
|
30763
30869
|
*
|
|
@@ -51607,47 +51713,10 @@ export interface I18NProperty91 {
|
|
|
51607
51713
|
*
|
|
51608
51714
|
*/
|
|
51609
51715
|
export interface WebItemTarget2 {
|
|
51610
|
-
options?:
|
|
51716
|
+
options?: DialogOptions4 | InlineDialogOptions2 | DialogModuleOptions2;
|
|
51611
51717
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
51612
51718
|
[k: string]: unknown;
|
|
51613
51719
|
}
|
|
51614
|
-
/**
|
|
51615
|
-
*
|
|
51616
|
-
*
|
|
51617
|
-
* Options for an inline dialog target
|
|
51618
|
-
*
|
|
51619
|
-
* <h3>Example</h3>
|
|
51620
|
-
*
|
|
51621
|
-
*
|
|
51622
|
-
*
|
|
51623
|
-
*
|
|
51624
|
-
*
|
|
51625
|
-
* {
|
|
51626
|
-
* "target": {
|
|
51627
|
-
* "type": "inlinedialog",
|
|
51628
|
-
* "options": {
|
|
51629
|
-
* "onHover": true,
|
|
51630
|
-
* "offsetX": "30px",
|
|
51631
|
-
* "offsetY": "20px"
|
|
51632
|
-
* }
|
|
51633
|
-
* }
|
|
51634
|
-
* }
|
|
51635
|
-
*
|
|
51636
|
-
*
|
|
51637
|
-
*
|
|
51638
|
-
*/
|
|
51639
|
-
export interface InlineDialogOptions2 {
|
|
51640
|
-
offsetX?: string;
|
|
51641
|
-
offsetY?: string;
|
|
51642
|
-
width?: string;
|
|
51643
|
-
onTop?: boolean;
|
|
51644
|
-
showDelay?: number;
|
|
51645
|
-
closeOthers?: boolean;
|
|
51646
|
-
persistent?: boolean;
|
|
51647
|
-
onHover?: boolean;
|
|
51648
|
-
isRelativeToMouse?: boolean;
|
|
51649
|
-
[k: string]: unknown;
|
|
51650
|
-
}
|
|
51651
51720
|
/**
|
|
51652
51721
|
*
|
|
51653
51722
|
*
|
|
@@ -51746,6 +51815,43 @@ export interface I18NProperty92 {
|
|
|
51746
51815
|
i18n?: string;
|
|
51747
51816
|
[k: string]: unknown;
|
|
51748
51817
|
}
|
|
51818
|
+
/**
|
|
51819
|
+
*
|
|
51820
|
+
*
|
|
51821
|
+
* Options for an inline dialog target
|
|
51822
|
+
*
|
|
51823
|
+
* <h3>Example</h3>
|
|
51824
|
+
*
|
|
51825
|
+
*
|
|
51826
|
+
*
|
|
51827
|
+
*
|
|
51828
|
+
*
|
|
51829
|
+
* {
|
|
51830
|
+
* "target": {
|
|
51831
|
+
* "type": "inlinedialog",
|
|
51832
|
+
* "options": {
|
|
51833
|
+
* "onHover": true,
|
|
51834
|
+
* "offsetX": "30px",
|
|
51835
|
+
* "offsetY": "20px"
|
|
51836
|
+
* }
|
|
51837
|
+
* }
|
|
51838
|
+
* }
|
|
51839
|
+
*
|
|
51840
|
+
*
|
|
51841
|
+
*
|
|
51842
|
+
*/
|
|
51843
|
+
export interface InlineDialogOptions2 {
|
|
51844
|
+
offsetX?: string;
|
|
51845
|
+
offsetY?: string;
|
|
51846
|
+
width?: string;
|
|
51847
|
+
onTop?: boolean;
|
|
51848
|
+
showDelay?: number;
|
|
51849
|
+
closeOthers?: boolean;
|
|
51850
|
+
persistent?: boolean;
|
|
51851
|
+
onHover?: boolean;
|
|
51852
|
+
isRelativeToMouse?: boolean;
|
|
51853
|
+
[k: string]: unknown;
|
|
51854
|
+
}
|
|
51749
51855
|
/**
|
|
51750
51856
|
*
|
|
51751
51857
|
*
|
|
@@ -52612,7 +52718,7 @@ export interface AuthProviderCustom {
|
|
|
52612
52718
|
actions: {
|
|
52613
52719
|
authorization: AuthorizeActionDefinition;
|
|
52614
52720
|
exchange: ExchangeActionDefinition;
|
|
52615
|
-
revokeToken
|
|
52721
|
+
revokeToken?: ActionDefinition;
|
|
52616
52722
|
retrieveProfile: DynamicProfileRetriever | StaticProfileRetriever;
|
|
52617
52723
|
};
|
|
52618
52724
|
}
|