@forge/manifest 3.4.0-next.5 → 3.4.0-next.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/out/schema/manifest-schema.json +371 -340
- package/out/schema/manifest.d.ts +383 -367
- package/out/text/errors.d.ts +4 -1
- package/out/text/errors.d.ts.map +1 -1
- package/out/text/errors.js +4 -1
- package/out/types/module-types.d.ts +1 -0
- package/out/types/module-types.d.ts.map +1 -1
- package/out/types/module-types.js +1 -0
- package/out/validators/modules-validator.d.ts.map +1 -1
- package/out/validators/modules-validator.js +8 -3
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -2131,6 +2131,22 @@ export interface Modules {
|
|
|
2131
2131
|
}
|
|
2132
2132
|
)[]
|
|
2133
2133
|
];
|
|
2134
|
+
'jira:workflowCondition'?: [
|
|
2135
|
+
{
|
|
2136
|
+
name: string;
|
|
2137
|
+
description: string;
|
|
2138
|
+
expression: string;
|
|
2139
|
+
key: ModuleKeySchema;
|
|
2140
|
+
[k: string]: unknown;
|
|
2141
|
+
},
|
|
2142
|
+
...{
|
|
2143
|
+
name: string;
|
|
2144
|
+
description: string;
|
|
2145
|
+
expression: string;
|
|
2146
|
+
key: ModuleKeySchema;
|
|
2147
|
+
[k: string]: unknown;
|
|
2148
|
+
}[]
|
|
2149
|
+
];
|
|
2134
2150
|
'compass:adminPage'?: [
|
|
2135
2151
|
(
|
|
2136
2152
|
| {
|
|
@@ -2862,7 +2878,7 @@ export interface Modules {
|
|
|
2862
2878
|
filter?: string;
|
|
2863
2879
|
excludeBody?: boolean;
|
|
2864
2880
|
event?: string;
|
|
2865
|
-
conditions?: (
|
|
2881
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2866
2882
|
propertyKeys?: string[];
|
|
2867
2883
|
url?: string;
|
|
2868
2884
|
key: ModuleKeySchema;
|
|
@@ -2872,7 +2888,7 @@ export interface Modules {
|
|
|
2872
2888
|
filter?: string;
|
|
2873
2889
|
excludeBody?: boolean;
|
|
2874
2890
|
event?: string;
|
|
2875
|
-
conditions?: (
|
|
2891
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2876
2892
|
propertyKeys?: string[];
|
|
2877
2893
|
url?: string;
|
|
2878
2894
|
key: ModuleKeySchema;
|
|
@@ -2886,7 +2902,7 @@ export interface Modules {
|
|
|
2886
2902
|
weight?: number;
|
|
2887
2903
|
cacheable?: boolean;
|
|
2888
2904
|
location?: string;
|
|
2889
|
-
conditions?: (
|
|
2905
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2890
2906
|
params?: {
|
|
2891
2907
|
[k: string]: unknown;
|
|
2892
2908
|
};
|
|
@@ -2900,7 +2916,7 @@ export interface Modules {
|
|
|
2900
2916
|
weight?: number;
|
|
2901
2917
|
cacheable?: boolean;
|
|
2902
2918
|
location?: string;
|
|
2903
|
-
conditions?: (
|
|
2919
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2904
2920
|
params?: {
|
|
2905
2921
|
[k: string]: unknown;
|
|
2906
2922
|
};
|
|
@@ -2915,7 +2931,7 @@ export interface Modules {
|
|
|
2915
2931
|
name?: I18NProperty6;
|
|
2916
2932
|
weight?: number;
|
|
2917
2933
|
location?: string;
|
|
2918
|
-
conditions?: (
|
|
2934
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2919
2935
|
params?: {
|
|
2920
2936
|
[k: string]: unknown;
|
|
2921
2937
|
};
|
|
@@ -2927,7 +2943,7 @@ export interface Modules {
|
|
|
2927
2943
|
name?: I18NProperty6;
|
|
2928
2944
|
weight?: number;
|
|
2929
2945
|
location?: string;
|
|
2930
|
-
conditions?: (
|
|
2946
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2931
2947
|
params?: {
|
|
2932
2948
|
[k: string]: unknown;
|
|
2933
2949
|
};
|
|
@@ -2942,7 +2958,7 @@ export interface Modules {
|
|
|
2942
2958
|
weight?: number;
|
|
2943
2959
|
cacheable?: boolean;
|
|
2944
2960
|
location?: string;
|
|
2945
|
-
conditions?: (
|
|
2961
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2946
2962
|
params?: {
|
|
2947
2963
|
[k: string]: unknown;
|
|
2948
2964
|
};
|
|
@@ -2956,7 +2972,7 @@ export interface Modules {
|
|
|
2956
2972
|
weight?: number;
|
|
2957
2973
|
cacheable?: boolean;
|
|
2958
2974
|
location?: string;
|
|
2959
|
-
conditions?: (
|
|
2975
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2960
2976
|
params?: {
|
|
2961
2977
|
[k: string]: unknown;
|
|
2962
2978
|
};
|
|
@@ -3106,7 +3122,7 @@ export interface Modules {
|
|
|
3106
3122
|
| 'TIME_TRACKING'
|
|
3107
3123
|
| 'other'
|
|
3108
3124
|
| 'OTHER';
|
|
3109
|
-
conditions?: (
|
|
3125
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3110
3126
|
key: ModuleKeySchema;
|
|
3111
3127
|
[k: string]: unknown;
|
|
3112
3128
|
},
|
|
@@ -3128,7 +3144,7 @@ export interface Modules {
|
|
|
3128
3144
|
| 'TIME_TRACKING'
|
|
3129
3145
|
| 'other'
|
|
3130
3146
|
| 'OTHER';
|
|
3131
|
-
conditions?: (
|
|
3147
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3132
3148
|
key: ModuleKeySchema;
|
|
3133
3149
|
[k: string]: unknown;
|
|
3134
3150
|
}[]
|
|
@@ -3236,7 +3252,7 @@ export interface Modules {
|
|
|
3236
3252
|
name?: I18NProperty20;
|
|
3237
3253
|
weight?: number;
|
|
3238
3254
|
iconUrl?: string;
|
|
3239
|
-
conditions?: (
|
|
3255
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3240
3256
|
url?: string;
|
|
3241
3257
|
key: ModuleKeySchema;
|
|
3242
3258
|
[k: string]: unknown;
|
|
@@ -3245,7 +3261,7 @@ export interface Modules {
|
|
|
3245
3261
|
name?: I18NProperty20;
|
|
3246
3262
|
weight?: number;
|
|
3247
3263
|
iconUrl?: string;
|
|
3248
|
-
conditions?: (
|
|
3264
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3249
3265
|
url?: string;
|
|
3250
3266
|
key: ModuleKeySchema;
|
|
3251
3267
|
[k: string]: unknown;
|
|
@@ -3348,9 +3364,9 @@ export interface Modules {
|
|
|
3348
3364
|
icon?: Icon6;
|
|
3349
3365
|
tooltip?: I18NProperty29;
|
|
3350
3366
|
name?: I18NProperty30;
|
|
3351
|
-
conditions?: (
|
|
3367
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3352
3368
|
target?: IssuePageTargetWebPanel;
|
|
3353
|
-
contentPresentConditions?: (
|
|
3369
|
+
contentPresentConditions?: (CompositeCondition | SingleCondition)[];
|
|
3354
3370
|
jiraNativeAppsEnabled?: boolean;
|
|
3355
3371
|
key: ModuleKeySchema;
|
|
3356
3372
|
[k: string]: unknown;
|
|
@@ -3359,9 +3375,9 @@ export interface Modules {
|
|
|
3359
3375
|
icon?: Icon6;
|
|
3360
3376
|
tooltip?: I18NProperty29;
|
|
3361
3377
|
name?: I18NProperty30;
|
|
3362
|
-
conditions?: (
|
|
3378
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3363
3379
|
target?: IssuePageTargetWebPanel;
|
|
3364
|
-
contentPresentConditions?: (
|
|
3380
|
+
contentPresentConditions?: (CompositeCondition | SingleCondition)[];
|
|
3365
3381
|
jiraNativeAppsEnabled?: boolean;
|
|
3366
3382
|
key: ModuleKeySchema;
|
|
3367
3383
|
[k: string]: unknown;
|
|
@@ -3393,7 +3409,7 @@ export interface Modules {
|
|
|
3393
3409
|
{
|
|
3394
3410
|
name?: I18NProperty33;
|
|
3395
3411
|
weight?: number;
|
|
3396
|
-
conditions?: (
|
|
3412
|
+
conditions?: (SingleCondition2 | CompositeCondition2)[];
|
|
3397
3413
|
params?: {
|
|
3398
3414
|
[k: string]: unknown;
|
|
3399
3415
|
};
|
|
@@ -3404,7 +3420,7 @@ export interface Modules {
|
|
|
3404
3420
|
...{
|
|
3405
3421
|
name?: I18NProperty33;
|
|
3406
3422
|
weight?: number;
|
|
3407
|
-
conditions?: (
|
|
3423
|
+
conditions?: (SingleCondition2 | CompositeCondition2)[];
|
|
3408
3424
|
params?: {
|
|
3409
3425
|
[k: string]: unknown;
|
|
3410
3426
|
};
|
|
@@ -3485,7 +3501,7 @@ export interface Modules {
|
|
|
3485
3501
|
{
|
|
3486
3502
|
name?: I18NProperty38;
|
|
3487
3503
|
weight?: number;
|
|
3488
|
-
conditions?: (
|
|
3504
|
+
conditions?: (SingleCondition3 | CompositeCondition4)[];
|
|
3489
3505
|
params?: {
|
|
3490
3506
|
[k: string]: unknown;
|
|
3491
3507
|
};
|
|
@@ -3496,7 +3512,7 @@ export interface Modules {
|
|
|
3496
3512
|
...{
|
|
3497
3513
|
name?: I18NProperty38;
|
|
3498
3514
|
weight?: number;
|
|
3499
|
-
conditions?: (
|
|
3515
|
+
conditions?: (SingleCondition3 | CompositeCondition4)[];
|
|
3500
3516
|
params?: {
|
|
3501
3517
|
[k: string]: unknown;
|
|
3502
3518
|
};
|
|
@@ -3617,7 +3633,7 @@ export interface Modules {
|
|
|
3617
3633
|
expression?: string;
|
|
3618
3634
|
edit?: URL8;
|
|
3619
3635
|
evaluationContext?: 'user' | 'USER' | 'app' | 'APP';
|
|
3620
|
-
errorMessage?:
|
|
3636
|
+
errorMessage?: I18NProperty45 | JiraExpressionErrorMessage;
|
|
3621
3637
|
name?: I18NProperty46;
|
|
3622
3638
|
description?: I18NProperty47;
|
|
3623
3639
|
create?: URL9;
|
|
@@ -3629,7 +3645,7 @@ export interface Modules {
|
|
|
3629
3645
|
expression?: string;
|
|
3630
3646
|
edit?: URL8;
|
|
3631
3647
|
evaluationContext?: 'user' | 'USER' | 'app' | 'APP';
|
|
3632
|
-
errorMessage?:
|
|
3648
|
+
errorMessage?: I18NProperty45 | JiraExpressionErrorMessage;
|
|
3633
3649
|
name?: I18NProperty46;
|
|
3634
3650
|
description?: I18NProperty47;
|
|
3635
3651
|
create?: URL9;
|
|
@@ -3727,7 +3743,7 @@ export interface Modules {
|
|
|
3727
3743
|
fullPage?: boolean;
|
|
3728
3744
|
cacheable?: boolean;
|
|
3729
3745
|
location?: string;
|
|
3730
|
-
conditions?: (
|
|
3746
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3731
3747
|
params?: {
|
|
3732
3748
|
[k: string]: unknown;
|
|
3733
3749
|
};
|
|
@@ -3742,7 +3758,7 @@ export interface Modules {
|
|
|
3742
3758
|
fullPage?: boolean;
|
|
3743
3759
|
cacheable?: boolean;
|
|
3744
3760
|
location?: string;
|
|
3745
|
-
conditions?: (
|
|
3761
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3746
3762
|
params?: {
|
|
3747
3763
|
[k: string]: unknown;
|
|
3748
3764
|
};
|
|
@@ -3760,7 +3776,7 @@ export interface Modules {
|
|
|
3760
3776
|
location?: string;
|
|
3761
3777
|
cacheable?: boolean;
|
|
3762
3778
|
supportsNative?: boolean;
|
|
3763
|
-
conditions?: (
|
|
3779
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3764
3780
|
params?: {
|
|
3765
3781
|
[k: string]: unknown;
|
|
3766
3782
|
};
|
|
@@ -3776,7 +3792,7 @@ export interface Modules {
|
|
|
3776
3792
|
location?: string;
|
|
3777
3793
|
cacheable?: boolean;
|
|
3778
3794
|
supportsNative?: boolean;
|
|
3779
|
-
conditions?: (
|
|
3795
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3780
3796
|
params?: {
|
|
3781
3797
|
[k: string]: unknown;
|
|
3782
3798
|
};
|
|
@@ -3790,7 +3806,7 @@ export interface Modules {
|
|
|
3790
3806
|
filter?: string;
|
|
3791
3807
|
excludeBody?: boolean;
|
|
3792
3808
|
event?: string;
|
|
3793
|
-
conditions?: (
|
|
3809
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3794
3810
|
propertyKeys?: string[];
|
|
3795
3811
|
url?: string;
|
|
3796
3812
|
key: ModuleKeySchema;
|
|
@@ -3800,7 +3816,7 @@ export interface Modules {
|
|
|
3800
3816
|
filter?: string;
|
|
3801
3817
|
excludeBody?: boolean;
|
|
3802
3818
|
event?: string;
|
|
3803
|
-
conditions?: (
|
|
3819
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3804
3820
|
propertyKeys?: string[];
|
|
3805
3821
|
url?: string;
|
|
3806
3822
|
key: ModuleKeySchema;
|
|
@@ -3814,7 +3830,7 @@ export interface Modules {
|
|
|
3814
3830
|
weight?: number;
|
|
3815
3831
|
cacheable?: boolean;
|
|
3816
3832
|
location?: string;
|
|
3817
|
-
conditions?: (
|
|
3833
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3818
3834
|
params?: {
|
|
3819
3835
|
[k: string]: unknown;
|
|
3820
3836
|
};
|
|
@@ -3828,7 +3844,7 @@ export interface Modules {
|
|
|
3828
3844
|
weight?: number;
|
|
3829
3845
|
cacheable?: boolean;
|
|
3830
3846
|
location?: string;
|
|
3831
|
-
conditions?: (
|
|
3847
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3832
3848
|
params?: {
|
|
3833
3849
|
[k: string]: unknown;
|
|
3834
3850
|
};
|
|
@@ -3843,7 +3859,7 @@ export interface Modules {
|
|
|
3843
3859
|
name?: I18NProperty55;
|
|
3844
3860
|
weight?: number;
|
|
3845
3861
|
location?: string;
|
|
3846
|
-
conditions?: (
|
|
3862
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3847
3863
|
params?: {
|
|
3848
3864
|
[k: string]: unknown;
|
|
3849
3865
|
};
|
|
@@ -3855,7 +3871,7 @@ export interface Modules {
|
|
|
3855
3871
|
name?: I18NProperty55;
|
|
3856
3872
|
weight?: number;
|
|
3857
3873
|
location?: string;
|
|
3858
|
-
conditions?: (
|
|
3874
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3859
3875
|
params?: {
|
|
3860
3876
|
[k: string]: unknown;
|
|
3861
3877
|
};
|
|
@@ -3870,7 +3886,7 @@ export interface Modules {
|
|
|
3870
3886
|
weight?: number;
|
|
3871
3887
|
cacheable?: boolean;
|
|
3872
3888
|
location?: string;
|
|
3873
|
-
conditions?: (
|
|
3889
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3874
3890
|
params?: {
|
|
3875
3891
|
[k: string]: unknown;
|
|
3876
3892
|
};
|
|
@@ -3884,7 +3900,7 @@ export interface Modules {
|
|
|
3884
3900
|
weight?: number;
|
|
3885
3901
|
cacheable?: boolean;
|
|
3886
3902
|
location?: string;
|
|
3887
|
-
conditions?: (
|
|
3903
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3888
3904
|
params?: {
|
|
3889
3905
|
[k: string]: unknown;
|
|
3890
3906
|
};
|
|
@@ -3908,7 +3924,7 @@ export interface Modules {
|
|
|
3908
3924
|
name?: I18NProperty59;
|
|
3909
3925
|
location?: string;
|
|
3910
3926
|
cacheable?: boolean;
|
|
3911
|
-
conditions?: (
|
|
3927
|
+
conditions?: (CompositeCondition6 | SingleCondition4)[];
|
|
3912
3928
|
key: ModuleKeySchema;
|
|
3913
3929
|
[k: string]: unknown;
|
|
3914
3930
|
},
|
|
@@ -3926,7 +3942,7 @@ export interface Modules {
|
|
|
3926
3942
|
name?: I18NProperty59;
|
|
3927
3943
|
location?: string;
|
|
3928
3944
|
cacheable?: boolean;
|
|
3929
|
-
conditions?: (
|
|
3945
|
+
conditions?: (CompositeCondition6 | SingleCondition4)[];
|
|
3930
3946
|
key: ModuleKeySchema;
|
|
3931
3947
|
[k: string]: unknown;
|
|
3932
3948
|
}[]
|
|
@@ -3939,7 +3955,7 @@ export interface Modules {
|
|
|
3939
3955
|
fullPage?: boolean;
|
|
3940
3956
|
cacheable?: boolean;
|
|
3941
3957
|
location?: string;
|
|
3942
|
-
conditions?: (
|
|
3958
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3943
3959
|
params?: {
|
|
3944
3960
|
[k: string]: unknown;
|
|
3945
3961
|
};
|
|
@@ -3954,7 +3970,7 @@ export interface Modules {
|
|
|
3954
3970
|
fullPage?: boolean;
|
|
3955
3971
|
cacheable?: boolean;
|
|
3956
3972
|
location?: string;
|
|
3957
|
-
conditions?: (
|
|
3973
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3958
3974
|
params?: {
|
|
3959
3975
|
[k: string]: unknown;
|
|
3960
3976
|
};
|
|
@@ -4212,7 +4228,7 @@ export interface Modules {
|
|
|
4212
4228
|
icon?: Icon18;
|
|
4213
4229
|
name?: I18NProperty91;
|
|
4214
4230
|
cacheable?: boolean;
|
|
4215
|
-
conditions?: (
|
|
4231
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
4216
4232
|
params?: {
|
|
4217
4233
|
[k: string]: unknown;
|
|
4218
4234
|
};
|
|
@@ -4228,7 +4244,7 @@ export interface Modules {
|
|
|
4228
4244
|
icon?: Icon18;
|
|
4229
4245
|
name?: I18NProperty91;
|
|
4230
4246
|
cacheable?: boolean;
|
|
4231
|
-
conditions?: (
|
|
4247
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
4232
4248
|
params?: {
|
|
4233
4249
|
[k: string]: unknown;
|
|
4234
4250
|
};
|
|
@@ -4447,7 +4463,7 @@ export interface I18NProperty1 {
|
|
|
4447
4463
|
*
|
|
4448
4464
|
*/
|
|
4449
4465
|
export interface CompositeCondition {
|
|
4450
|
-
conditions?: (
|
|
4466
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
4451
4467
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
4452
4468
|
[k: string]: unknown;
|
|
4453
4469
|
}
|
|
@@ -4825,7 +4841,7 @@ export interface Icon3 {
|
|
|
4825
4841
|
*
|
|
4826
4842
|
*/
|
|
4827
4843
|
export interface WebItemTarget {
|
|
4828
|
-
options?: InlineDialogOptions |
|
|
4844
|
+
options?: InlineDialogOptions | DialogModuleOptions | DialogOptions;
|
|
4829
4845
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
4830
4846
|
[k: string]: unknown;
|
|
4831
4847
|
}
|
|
@@ -4866,6 +4882,33 @@ export interface InlineDialogOptions {
|
|
|
4866
4882
|
isRelativeToMouse?: boolean;
|
|
4867
4883
|
[k: string]: unknown;
|
|
4868
4884
|
}
|
|
4885
|
+
/**
|
|
4886
|
+
*
|
|
4887
|
+
*
|
|
4888
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
4889
|
+
*
|
|
4890
|
+
* <h3>Example</h3>
|
|
4891
|
+
*
|
|
4892
|
+
*
|
|
4893
|
+
*
|
|
4894
|
+
*
|
|
4895
|
+
*
|
|
4896
|
+
* {
|
|
4897
|
+
* "target": {
|
|
4898
|
+
* "type": "dialogmodule",
|
|
4899
|
+
* "options": {
|
|
4900
|
+
* "key": "dialog-module-key"
|
|
4901
|
+
* }
|
|
4902
|
+
* }
|
|
4903
|
+
* }
|
|
4904
|
+
*
|
|
4905
|
+
*
|
|
4906
|
+
*
|
|
4907
|
+
*/
|
|
4908
|
+
export interface DialogModuleOptions {
|
|
4909
|
+
key: string;
|
|
4910
|
+
[k: string]: unknown;
|
|
4911
|
+
}
|
|
4869
4912
|
/**
|
|
4870
4913
|
*
|
|
4871
4914
|
*
|
|
@@ -4964,33 +5007,6 @@ export interface I18NProperty9 {
|
|
|
4964
5007
|
i18n?: string;
|
|
4965
5008
|
[k: string]: unknown;
|
|
4966
5009
|
}
|
|
4967
|
-
/**
|
|
4968
|
-
*
|
|
4969
|
-
*
|
|
4970
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
4971
|
-
*
|
|
4972
|
-
* <h3>Example</h3>
|
|
4973
|
-
*
|
|
4974
|
-
*
|
|
4975
|
-
*
|
|
4976
|
-
*
|
|
4977
|
-
*
|
|
4978
|
-
* {
|
|
4979
|
-
* "target": {
|
|
4980
|
-
* "type": "dialogmodule",
|
|
4981
|
-
* "options": {
|
|
4982
|
-
* "key": "dialog-module-key"
|
|
4983
|
-
* }
|
|
4984
|
-
* }
|
|
4985
|
-
* }
|
|
4986
|
-
*
|
|
4987
|
-
*
|
|
4988
|
-
*
|
|
4989
|
-
*/
|
|
4990
|
-
export interface DialogModuleOptions {
|
|
4991
|
-
key: string;
|
|
4992
|
-
[k: string]: unknown;
|
|
4993
|
-
}
|
|
4994
5010
|
/**
|
|
4995
5011
|
*
|
|
4996
5012
|
*
|
|
@@ -5052,7 +5068,7 @@ export interface I18NProperty10 {
|
|
|
5052
5068
|
*
|
|
5053
5069
|
*/
|
|
5054
5070
|
export interface CompositeCondition1 {
|
|
5055
|
-
conditions?: (
|
|
5071
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
5056
5072
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
5057
5073
|
[k: string]: unknown;
|
|
5058
5074
|
}
|
|
@@ -5989,6 +6005,37 @@ export interface I18NProperty33 {
|
|
|
5989
6005
|
i18n?: string;
|
|
5990
6006
|
[k: string]: unknown;
|
|
5991
6007
|
}
|
|
6008
|
+
/**
|
|
6009
|
+
*
|
|
6010
|
+
*
|
|
6011
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6012
|
+
* [Conditions](../../conditions/) for more information.
|
|
6013
|
+
*
|
|
6014
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6015
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6016
|
+
*
|
|
6017
|
+
* <h3>Example</h3>
|
|
6018
|
+
*
|
|
6019
|
+
*
|
|
6020
|
+
*
|
|
6021
|
+
*
|
|
6022
|
+
*
|
|
6023
|
+
* {
|
|
6024
|
+
* "condition": "user_is_logged_in",
|
|
6025
|
+
* "invert": false
|
|
6026
|
+
* }
|
|
6027
|
+
*
|
|
6028
|
+
*
|
|
6029
|
+
*
|
|
6030
|
+
*/
|
|
6031
|
+
export interface SingleCondition2 {
|
|
6032
|
+
condition: string;
|
|
6033
|
+
invert?: boolean;
|
|
6034
|
+
params?: {
|
|
6035
|
+
[k: string]: unknown;
|
|
6036
|
+
};
|
|
6037
|
+
[k: string]: unknown;
|
|
6038
|
+
}
|
|
5992
6039
|
/**
|
|
5993
6040
|
*
|
|
5994
6041
|
*
|
|
@@ -6026,7 +6073,7 @@ export interface I18NProperty33 {
|
|
|
6026
6073
|
*
|
|
6027
6074
|
*/
|
|
6028
6075
|
export interface CompositeCondition2 {
|
|
6029
|
-
conditions?: (
|
|
6076
|
+
conditions?: (SingleCondition | CompositeCondition3)[];
|
|
6030
6077
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6031
6078
|
[k: string]: unknown;
|
|
6032
6079
|
}
|
|
@@ -6067,41 +6114,10 @@ export interface CompositeCondition2 {
|
|
|
6067
6114
|
*
|
|
6068
6115
|
*/
|
|
6069
6116
|
export interface CompositeCondition3 {
|
|
6070
|
-
conditions?: (
|
|
6117
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
6071
6118
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6072
6119
|
[k: string]: unknown;
|
|
6073
6120
|
}
|
|
6074
|
-
/**
|
|
6075
|
-
*
|
|
6076
|
-
*
|
|
6077
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6078
|
-
* [Conditions](../../conditions/) for more information.
|
|
6079
|
-
*
|
|
6080
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6081
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6082
|
-
*
|
|
6083
|
-
* <h3>Example</h3>
|
|
6084
|
-
*
|
|
6085
|
-
*
|
|
6086
|
-
*
|
|
6087
|
-
*
|
|
6088
|
-
*
|
|
6089
|
-
* {
|
|
6090
|
-
* "condition": "user_is_logged_in",
|
|
6091
|
-
* "invert": false
|
|
6092
|
-
* }
|
|
6093
|
-
*
|
|
6094
|
-
*
|
|
6095
|
-
*
|
|
6096
|
-
*/
|
|
6097
|
-
export interface SingleCondition2 {
|
|
6098
|
-
condition: string;
|
|
6099
|
-
invert?: boolean;
|
|
6100
|
-
params?: {
|
|
6101
|
-
[k: string]: unknown;
|
|
6102
|
-
};
|
|
6103
|
-
[k: string]: unknown;
|
|
6104
|
-
}
|
|
6105
6121
|
/**
|
|
6106
6122
|
*
|
|
6107
6123
|
*
|
|
@@ -6294,6 +6310,37 @@ export interface I18NProperty38 {
|
|
|
6294
6310
|
i18n?: string;
|
|
6295
6311
|
[k: string]: unknown;
|
|
6296
6312
|
}
|
|
6313
|
+
/**
|
|
6314
|
+
*
|
|
6315
|
+
*
|
|
6316
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6317
|
+
* [Conditions](../../conditions/) for more information.
|
|
6318
|
+
*
|
|
6319
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6320
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6321
|
+
*
|
|
6322
|
+
* <h3>Example</h3>
|
|
6323
|
+
*
|
|
6324
|
+
*
|
|
6325
|
+
*
|
|
6326
|
+
*
|
|
6327
|
+
*
|
|
6328
|
+
* {
|
|
6329
|
+
* "condition": "user_is_logged_in",
|
|
6330
|
+
* "invert": false
|
|
6331
|
+
* }
|
|
6332
|
+
*
|
|
6333
|
+
*
|
|
6334
|
+
*
|
|
6335
|
+
*/
|
|
6336
|
+
export interface SingleCondition3 {
|
|
6337
|
+
condition: string;
|
|
6338
|
+
invert?: boolean;
|
|
6339
|
+
params?: {
|
|
6340
|
+
[k: string]: unknown;
|
|
6341
|
+
};
|
|
6342
|
+
[k: string]: unknown;
|
|
6343
|
+
}
|
|
6297
6344
|
/**
|
|
6298
6345
|
*
|
|
6299
6346
|
*
|
|
@@ -6331,7 +6378,7 @@ export interface I18NProperty38 {
|
|
|
6331
6378
|
*
|
|
6332
6379
|
*/
|
|
6333
6380
|
export interface CompositeCondition4 {
|
|
6334
|
-
conditions?: (
|
|
6381
|
+
conditions?: (SingleCondition | CompositeCondition5)[];
|
|
6335
6382
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6336
6383
|
[k: string]: unknown;
|
|
6337
6384
|
}
|
|
@@ -6372,41 +6419,10 @@ export interface CompositeCondition4 {
|
|
|
6372
6419
|
*
|
|
6373
6420
|
*/
|
|
6374
6421
|
export interface CompositeCondition5 {
|
|
6375
|
-
conditions?: (
|
|
6422
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
6376
6423
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6377
6424
|
[k: string]: unknown;
|
|
6378
6425
|
}
|
|
6379
|
-
/**
|
|
6380
|
-
*
|
|
6381
|
-
*
|
|
6382
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6383
|
-
* [Conditions](../../conditions/) for more information.
|
|
6384
|
-
*
|
|
6385
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6386
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6387
|
-
*
|
|
6388
|
-
* <h3>Example</h3>
|
|
6389
|
-
*
|
|
6390
|
-
*
|
|
6391
|
-
*
|
|
6392
|
-
*
|
|
6393
|
-
*
|
|
6394
|
-
* {
|
|
6395
|
-
* "condition": "user_is_logged_in",
|
|
6396
|
-
* "invert": false
|
|
6397
|
-
* }
|
|
6398
|
-
*
|
|
6399
|
-
*
|
|
6400
|
-
*
|
|
6401
|
-
*/
|
|
6402
|
-
export interface SingleCondition3 {
|
|
6403
|
-
condition: string;
|
|
6404
|
-
invert?: boolean;
|
|
6405
|
-
params?: {
|
|
6406
|
-
[k: string]: unknown;
|
|
6407
|
-
};
|
|
6408
|
-
[k: string]: unknown;
|
|
6409
|
-
}
|
|
6410
6426
|
/**
|
|
6411
6427
|
*
|
|
6412
6428
|
*
|
|
@@ -6596,18 +6612,6 @@ export interface URL8 {
|
|
|
6596
6612
|
url: string;
|
|
6597
6613
|
[k: string]: unknown;
|
|
6598
6614
|
}
|
|
6599
|
-
/**
|
|
6600
|
-
*
|
|
6601
|
-
*
|
|
6602
|
-
* A Jira expression that will be evaluated if the workflow validator fails.
|
|
6603
|
-
* The string returned by the Jira expression will be displayed as the error message for the failed transition.
|
|
6604
|
-
*
|
|
6605
|
-
*
|
|
6606
|
-
*/
|
|
6607
|
-
export interface JiraExpressionErrorMessage {
|
|
6608
|
-
expression: string;
|
|
6609
|
-
[k: string]: unknown;
|
|
6610
|
-
}
|
|
6611
6615
|
/**
|
|
6612
6616
|
*
|
|
6613
6617
|
*
|
|
@@ -6632,6 +6636,18 @@ export interface I18NProperty45 {
|
|
|
6632
6636
|
i18n?: string;
|
|
6633
6637
|
[k: string]: unknown;
|
|
6634
6638
|
}
|
|
6639
|
+
/**
|
|
6640
|
+
*
|
|
6641
|
+
*
|
|
6642
|
+
* A Jira expression that will be evaluated if the workflow validator fails.
|
|
6643
|
+
* The string returned by the Jira expression will be displayed as the error message for the failed transition.
|
|
6644
|
+
*
|
|
6645
|
+
*
|
|
6646
|
+
*/
|
|
6647
|
+
export interface JiraExpressionErrorMessage {
|
|
6648
|
+
expression: string;
|
|
6649
|
+
[k: string]: unknown;
|
|
6650
|
+
}
|
|
6635
6651
|
/**
|
|
6636
6652
|
*
|
|
6637
6653
|
*
|
|
@@ -7345,37 +7361,6 @@ export interface I18NProperty59 {
|
|
|
7345
7361
|
i18n?: string;
|
|
7346
7362
|
[k: string]: unknown;
|
|
7347
7363
|
}
|
|
7348
|
-
/**
|
|
7349
|
-
*
|
|
7350
|
-
*
|
|
7351
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7352
|
-
* [Conditions](../../conditions/) for more information.
|
|
7353
|
-
*
|
|
7354
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7355
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7356
|
-
*
|
|
7357
|
-
* <h3>Example</h3>
|
|
7358
|
-
*
|
|
7359
|
-
*
|
|
7360
|
-
*
|
|
7361
|
-
*
|
|
7362
|
-
*
|
|
7363
|
-
* {
|
|
7364
|
-
* "condition": "user_is_logged_in",
|
|
7365
|
-
* "invert": false
|
|
7366
|
-
* }
|
|
7367
|
-
*
|
|
7368
|
-
*
|
|
7369
|
-
*
|
|
7370
|
-
*/
|
|
7371
|
-
export interface SingleCondition4 {
|
|
7372
|
-
condition: string;
|
|
7373
|
-
invert?: boolean;
|
|
7374
|
-
params?: {
|
|
7375
|
-
[k: string]: unknown;
|
|
7376
|
-
};
|
|
7377
|
-
[k: string]: unknown;
|
|
7378
|
-
}
|
|
7379
7364
|
/**
|
|
7380
7365
|
*
|
|
7381
7366
|
*
|
|
@@ -7413,10 +7398,41 @@ export interface SingleCondition4 {
|
|
|
7413
7398
|
*
|
|
7414
7399
|
*/
|
|
7415
7400
|
export interface CompositeCondition6 {
|
|
7416
|
-
conditions?: (
|
|
7401
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
7417
7402
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7418
7403
|
[k: string]: unknown;
|
|
7419
7404
|
}
|
|
7405
|
+
/**
|
|
7406
|
+
*
|
|
7407
|
+
*
|
|
7408
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7409
|
+
* [Conditions](../../conditions/) for more information.
|
|
7410
|
+
*
|
|
7411
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7412
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7413
|
+
*
|
|
7414
|
+
* <h3>Example</h3>
|
|
7415
|
+
*
|
|
7416
|
+
*
|
|
7417
|
+
*
|
|
7418
|
+
*
|
|
7419
|
+
*
|
|
7420
|
+
* {
|
|
7421
|
+
* "condition": "user_is_logged_in",
|
|
7422
|
+
* "invert": false
|
|
7423
|
+
* }
|
|
7424
|
+
*
|
|
7425
|
+
*
|
|
7426
|
+
*
|
|
7427
|
+
*/
|
|
7428
|
+
export interface SingleCondition4 {
|
|
7429
|
+
condition: string;
|
|
7430
|
+
invert?: boolean;
|
|
7431
|
+
params?: {
|
|
7432
|
+
[k: string]: unknown;
|
|
7433
|
+
};
|
|
7434
|
+
[k: string]: unknown;
|
|
7435
|
+
}
|
|
7420
7436
|
/**
|
|
7421
7437
|
*
|
|
7422
7438
|
*
|
|
@@ -7839,7 +7855,7 @@ export interface SingleCondition5 {
|
|
|
7839
7855
|
*
|
|
7840
7856
|
*/
|
|
7841
7857
|
export interface CompositeCondition7 {
|
|
7842
|
-
conditions?: (
|
|
7858
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
7843
7859
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7844
7860
|
[k: string]: unknown;
|
|
7845
7861
|
}
|
|
@@ -9262,11 +9278,39 @@ export interface I18NProperty74 {
|
|
|
9262
9278
|
*
|
|
9263
9279
|
*/
|
|
9264
9280
|
export interface MacroPropertyPanel {
|
|
9265
|
-
controls?: (
|
|
9281
|
+
controls?: (TextControl | ControlGroup | ButtonControl1 | ToggleGroup)[];
|
|
9266
9282
|
cacheable?: boolean;
|
|
9267
9283
|
url: string;
|
|
9268
9284
|
[k: string]: unknown;
|
|
9269
9285
|
}
|
|
9286
|
+
/**
|
|
9287
|
+
*
|
|
9288
|
+
*
|
|
9289
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
9290
|
+
*
|
|
9291
|
+
* <p><b>Example</b></p>
|
|
9292
|
+
*
|
|
9293
|
+
*
|
|
9294
|
+
*
|
|
9295
|
+
*
|
|
9296
|
+
*
|
|
9297
|
+
* {
|
|
9298
|
+
* "type": "button",
|
|
9299
|
+
* "label": {
|
|
9300
|
+
* "value": "My Custom Control 0"
|
|
9301
|
+
* },
|
|
9302
|
+
* "key": "my-custom-control-0"
|
|
9303
|
+
* }
|
|
9304
|
+
*
|
|
9305
|
+
*
|
|
9306
|
+
*
|
|
9307
|
+
*/
|
|
9308
|
+
export interface TextControl {
|
|
9309
|
+
macroParameter: string;
|
|
9310
|
+
type: 'text' | 'TEXT';
|
|
9311
|
+
key: string;
|
|
9312
|
+
[k: string]: unknown;
|
|
9313
|
+
}
|
|
9270
9314
|
/**
|
|
9271
9315
|
*
|
|
9272
9316
|
*
|
|
@@ -9363,52 +9407,7 @@ export interface I18NProperty75 {
|
|
|
9363
9407
|
/**
|
|
9364
9408
|
*
|
|
9365
9409
|
*
|
|
9366
|
-
* Defines a
|
|
9367
|
-
*
|
|
9368
|
-
* <p><b>Example</b></p>
|
|
9369
|
-
*
|
|
9370
|
-
*
|
|
9371
|
-
*
|
|
9372
|
-
*
|
|
9373
|
-
*
|
|
9374
|
-
* [
|
|
9375
|
-
* {
|
|
9376
|
-
* "type": "togglegroup",
|
|
9377
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
9378
|
-
* "controls": [
|
|
9379
|
-
* {
|
|
9380
|
-
* "type": "togglebutton",
|
|
9381
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
9382
|
-
* "label": {
|
|
9383
|
-
* "value": "My Custom Control 0"
|
|
9384
|
-
* },
|
|
9385
|
-
* "key": "my-custom-toggle-button-0"
|
|
9386
|
-
* },
|
|
9387
|
-
* {
|
|
9388
|
-
* "type": "togglebutton",
|
|
9389
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
9390
|
-
* "label": {
|
|
9391
|
-
* "value": "My Custom Control 1"
|
|
9392
|
-
* },
|
|
9393
|
-
* "key": "my-custom-toggle-button-1"
|
|
9394
|
-
* }
|
|
9395
|
-
* ]
|
|
9396
|
-
* }
|
|
9397
|
-
* ]
|
|
9398
|
-
*
|
|
9399
|
-
*
|
|
9400
|
-
*
|
|
9401
|
-
*/
|
|
9402
|
-
export interface ToggleGroup {
|
|
9403
|
-
controls: ToggleButtonControl[];
|
|
9404
|
-
macroParameter: string;
|
|
9405
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
9406
|
-
[k: string]: unknown;
|
|
9407
|
-
}
|
|
9408
|
-
/**
|
|
9409
|
-
*
|
|
9410
|
-
*
|
|
9411
|
-
* Defines a toggle button which appears inside a ToggleGroup
|
|
9410
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
9412
9411
|
*
|
|
9413
9412
|
* <p><b>Example</b></p>
|
|
9414
9413
|
*
|
|
@@ -9417,21 +9416,19 @@ export interface ToggleGroup {
|
|
|
9417
9416
|
*
|
|
9418
9417
|
*
|
|
9419
9418
|
* {
|
|
9420
|
-
* "type": "
|
|
9421
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
9419
|
+
* "type": "button",
|
|
9422
9420
|
* "label": {
|
|
9423
9421
|
* "value": "My Custom Control 0"
|
|
9424
9422
|
* },
|
|
9425
|
-
* "key": "my-custom-
|
|
9423
|
+
* "key": "my-custom-control-0"
|
|
9426
9424
|
* }
|
|
9427
9425
|
*
|
|
9428
9426
|
*
|
|
9429
9427
|
*
|
|
9430
9428
|
*/
|
|
9431
|
-
export interface
|
|
9432
|
-
macroParameterValue: string;
|
|
9429
|
+
export interface ButtonControl1 {
|
|
9433
9430
|
label: I18NProperty76;
|
|
9434
|
-
type: '
|
|
9431
|
+
type: 'button' | 'BUTTON';
|
|
9435
9432
|
key: string;
|
|
9436
9433
|
[k: string]: unknown;
|
|
9437
9434
|
}
|
|
@@ -9462,7 +9459,7 @@ export interface I18NProperty76 {
|
|
|
9462
9459
|
/**
|
|
9463
9460
|
*
|
|
9464
9461
|
*
|
|
9465
|
-
* Defines a
|
|
9462
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
9466
9463
|
*
|
|
9467
9464
|
* <p><b>Example</b></p>
|
|
9468
9465
|
*
|
|
@@ -9470,27 +9467,44 @@ export interface I18NProperty76 {
|
|
|
9470
9467
|
*
|
|
9471
9468
|
*
|
|
9472
9469
|
*
|
|
9473
|
-
*
|
|
9474
|
-
*
|
|
9475
|
-
*
|
|
9476
|
-
* "
|
|
9477
|
-
*
|
|
9478
|
-
*
|
|
9479
|
-
*
|
|
9470
|
+
* [
|
|
9471
|
+
* {
|
|
9472
|
+
* "type": "togglegroup",
|
|
9473
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
9474
|
+
* "controls": [
|
|
9475
|
+
* {
|
|
9476
|
+
* "type": "togglebutton",
|
|
9477
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
9478
|
+
* "label": {
|
|
9479
|
+
* "value": "My Custom Control 0"
|
|
9480
|
+
* },
|
|
9481
|
+
* "key": "my-custom-toggle-button-0"
|
|
9482
|
+
* },
|
|
9483
|
+
* {
|
|
9484
|
+
* "type": "togglebutton",
|
|
9485
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
9486
|
+
* "label": {
|
|
9487
|
+
* "value": "My Custom Control 1"
|
|
9488
|
+
* },
|
|
9489
|
+
* "key": "my-custom-toggle-button-1"
|
|
9490
|
+
* }
|
|
9491
|
+
* ]
|
|
9492
|
+
* }
|
|
9493
|
+
* ]
|
|
9480
9494
|
*
|
|
9481
9495
|
*
|
|
9482
9496
|
*
|
|
9483
9497
|
*/
|
|
9484
|
-
export interface
|
|
9498
|
+
export interface ToggleGroup {
|
|
9499
|
+
controls: ToggleButtonControl[];
|
|
9485
9500
|
macroParameter: string;
|
|
9486
|
-
type: '
|
|
9487
|
-
key: string;
|
|
9501
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
9488
9502
|
[k: string]: unknown;
|
|
9489
9503
|
}
|
|
9490
9504
|
/**
|
|
9491
9505
|
*
|
|
9492
9506
|
*
|
|
9493
|
-
* Defines a button which
|
|
9507
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
9494
9508
|
*
|
|
9495
9509
|
* <p><b>Example</b></p>
|
|
9496
9510
|
*
|
|
@@ -9499,19 +9513,21 @@ export interface TextControl {
|
|
|
9499
9513
|
*
|
|
9500
9514
|
*
|
|
9501
9515
|
* {
|
|
9502
|
-
* "type": "
|
|
9516
|
+
* "type": "togglebutton",
|
|
9517
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
9503
9518
|
* "label": {
|
|
9504
9519
|
* "value": "My Custom Control 0"
|
|
9505
9520
|
* },
|
|
9506
|
-
* "key": "my-custom-
|
|
9521
|
+
* "key": "my-custom-toggle-button-0"
|
|
9507
9522
|
* }
|
|
9508
9523
|
*
|
|
9509
9524
|
*
|
|
9510
9525
|
*
|
|
9511
9526
|
*/
|
|
9512
|
-
export interface
|
|
9527
|
+
export interface ToggleButtonControl {
|
|
9528
|
+
macroParameterValue: string;
|
|
9513
9529
|
label: I18NProperty77;
|
|
9514
|
-
type: '
|
|
9530
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
9515
9531
|
key: string;
|
|
9516
9532
|
[k: string]: unknown;
|
|
9517
9533
|
}
|
|
@@ -30507,7 +30523,7 @@ export interface I18NProperty83 {
|
|
|
30507
30523
|
*
|
|
30508
30524
|
*/
|
|
30509
30525
|
export interface MacroPropertyPanel1 {
|
|
30510
|
-
controls?: (
|
|
30526
|
+
controls?: (TextControl1 | ButtonControl2 | ControlGroup1 | ToggleGroup1)[];
|
|
30511
30527
|
cacheable?: boolean;
|
|
30512
30528
|
url: string;
|
|
30513
30529
|
[k: string]: unknown;
|
|
@@ -30515,7 +30531,7 @@ export interface MacroPropertyPanel1 {
|
|
|
30515
30531
|
/**
|
|
30516
30532
|
*
|
|
30517
30533
|
*
|
|
30518
|
-
* Defines a
|
|
30534
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
30519
30535
|
*
|
|
30520
30536
|
* <p><b>Example</b></p>
|
|
30521
30537
|
*
|
|
@@ -30523,44 +30539,27 @@ export interface MacroPropertyPanel1 {
|
|
|
30523
30539
|
*
|
|
30524
30540
|
*
|
|
30525
30541
|
*
|
|
30526
|
-
*
|
|
30527
|
-
*
|
|
30528
|
-
*
|
|
30529
|
-
* "
|
|
30530
|
-
*
|
|
30531
|
-
*
|
|
30532
|
-
*
|
|
30533
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30534
|
-
* "label": {
|
|
30535
|
-
* "value": "My Custom Control 0"
|
|
30536
|
-
* },
|
|
30537
|
-
* "key": "my-custom-toggle-button-0"
|
|
30538
|
-
* },
|
|
30539
|
-
* {
|
|
30540
|
-
* "type": "togglebutton",
|
|
30541
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
30542
|
-
* "label": {
|
|
30543
|
-
* "value": "My Custom Control 1"
|
|
30544
|
-
* },
|
|
30545
|
-
* "key": "my-custom-toggle-button-1"
|
|
30546
|
-
* }
|
|
30547
|
-
* ]
|
|
30548
|
-
* }
|
|
30549
|
-
* ]
|
|
30542
|
+
* {
|
|
30543
|
+
* "type": "button",
|
|
30544
|
+
* "label": {
|
|
30545
|
+
* "value": "My Custom Control 0"
|
|
30546
|
+
* },
|
|
30547
|
+
* "key": "my-custom-control-0"
|
|
30548
|
+
* }
|
|
30550
30549
|
*
|
|
30551
30550
|
*
|
|
30552
30551
|
*
|
|
30553
30552
|
*/
|
|
30554
|
-
export interface
|
|
30555
|
-
controls: ToggleButtonControl1[];
|
|
30553
|
+
export interface TextControl1 {
|
|
30556
30554
|
macroParameter: string;
|
|
30557
|
-
type: '
|
|
30555
|
+
type: 'text' | 'TEXT';
|
|
30556
|
+
key: string;
|
|
30558
30557
|
[k: string]: unknown;
|
|
30559
30558
|
}
|
|
30560
30559
|
/**
|
|
30561
30560
|
*
|
|
30562
30561
|
*
|
|
30563
|
-
* Defines a
|
|
30562
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
30564
30563
|
*
|
|
30565
30564
|
* <p><b>Example</b></p>
|
|
30566
30565
|
*
|
|
@@ -30569,21 +30568,19 @@ export interface ToggleGroup1 {
|
|
|
30569
30568
|
*
|
|
30570
30569
|
*
|
|
30571
30570
|
* {
|
|
30572
|
-
* "type": "
|
|
30573
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30571
|
+
* "type": "button",
|
|
30574
30572
|
* "label": {
|
|
30575
30573
|
* "value": "My Custom Control 0"
|
|
30576
30574
|
* },
|
|
30577
|
-
* "key": "my-custom-
|
|
30575
|
+
* "key": "my-custom-control-0"
|
|
30578
30576
|
* }
|
|
30579
30577
|
*
|
|
30580
30578
|
*
|
|
30581
30579
|
*
|
|
30582
30580
|
*/
|
|
30583
|
-
export interface
|
|
30584
|
-
macroParameterValue: string;
|
|
30581
|
+
export interface ButtonControl2 {
|
|
30585
30582
|
label: I18NProperty84;
|
|
30586
|
-
type: '
|
|
30583
|
+
type: 'button' | 'BUTTON';
|
|
30587
30584
|
key: string;
|
|
30588
30585
|
[k: string]: unknown;
|
|
30589
30586
|
}
|
|
@@ -30611,6 +30608,47 @@ export interface I18NProperty84 {
|
|
|
30611
30608
|
i18n?: string;
|
|
30612
30609
|
[k: string]: unknown;
|
|
30613
30610
|
}
|
|
30611
|
+
/**
|
|
30612
|
+
*
|
|
30613
|
+
*
|
|
30614
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
30615
|
+
*
|
|
30616
|
+
* <p><b>Example</b></p>
|
|
30617
|
+
*
|
|
30618
|
+
*
|
|
30619
|
+
*
|
|
30620
|
+
*
|
|
30621
|
+
*
|
|
30622
|
+
* [
|
|
30623
|
+
* {
|
|
30624
|
+
* "type": "group",
|
|
30625
|
+
* "controls": [
|
|
30626
|
+
* {
|
|
30627
|
+
* "type": "button",
|
|
30628
|
+
* "label": {
|
|
30629
|
+
* "value": "My Custom Control 0"
|
|
30630
|
+
* },
|
|
30631
|
+
* "key": "my-custom-control-0"
|
|
30632
|
+
* },
|
|
30633
|
+
* {
|
|
30634
|
+
* "type": "button",
|
|
30635
|
+
* "label": {
|
|
30636
|
+
* "value": "My Custom Control 1"
|
|
30637
|
+
* },
|
|
30638
|
+
* "key": "my-custom-control-1"
|
|
30639
|
+
* }
|
|
30640
|
+
* ]
|
|
30641
|
+
* }
|
|
30642
|
+
* ]
|
|
30643
|
+
*
|
|
30644
|
+
*
|
|
30645
|
+
*
|
|
30646
|
+
*/
|
|
30647
|
+
export interface ControlGroup1 {
|
|
30648
|
+
controls: ButtonControl3[];
|
|
30649
|
+
type: 'group' | 'GROUP';
|
|
30650
|
+
[k: string]: unknown;
|
|
30651
|
+
}
|
|
30614
30652
|
/**
|
|
30615
30653
|
*
|
|
30616
30654
|
*
|
|
@@ -30633,7 +30671,7 @@ export interface I18NProperty84 {
|
|
|
30633
30671
|
*
|
|
30634
30672
|
*
|
|
30635
30673
|
*/
|
|
30636
|
-
export interface
|
|
30674
|
+
export interface ButtonControl3 {
|
|
30637
30675
|
label: I18NProperty85;
|
|
30638
30676
|
type: 'button' | 'BUTTON';
|
|
30639
30677
|
key: string;
|
|
@@ -30666,7 +30704,7 @@ export interface I18NProperty85 {
|
|
|
30666
30704
|
/**
|
|
30667
30705
|
*
|
|
30668
30706
|
*
|
|
30669
|
-
* Defines a
|
|
30707
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
30670
30708
|
*
|
|
30671
30709
|
* <p><b>Example</b></p>
|
|
30672
30710
|
*
|
|
@@ -30676,21 +30714,24 @@ export interface I18NProperty85 {
|
|
|
30676
30714
|
*
|
|
30677
30715
|
* [
|
|
30678
30716
|
* {
|
|
30679
|
-
* "type": "
|
|
30717
|
+
* "type": "togglegroup",
|
|
30718
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
30680
30719
|
* "controls": [
|
|
30681
30720
|
* {
|
|
30682
|
-
* "type": "
|
|
30721
|
+
* "type": "togglebutton",
|
|
30722
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30683
30723
|
* "label": {
|
|
30684
30724
|
* "value": "My Custom Control 0"
|
|
30685
30725
|
* },
|
|
30686
|
-
* "key": "my-custom-
|
|
30726
|
+
* "key": "my-custom-toggle-button-0"
|
|
30687
30727
|
* },
|
|
30688
30728
|
* {
|
|
30689
|
-
* "type": "
|
|
30729
|
+
* "type": "togglebutton",
|
|
30730
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
30690
30731
|
* "label": {
|
|
30691
30732
|
* "value": "My Custom Control 1"
|
|
30692
30733
|
* },
|
|
30693
|
-
* "key": "my-custom-
|
|
30734
|
+
* "key": "my-custom-toggle-button-1"
|
|
30694
30735
|
* }
|
|
30695
30736
|
* ]
|
|
30696
30737
|
* }
|
|
@@ -30699,15 +30740,16 @@ export interface I18NProperty85 {
|
|
|
30699
30740
|
*
|
|
30700
30741
|
*
|
|
30701
30742
|
*/
|
|
30702
|
-
export interface
|
|
30703
|
-
controls:
|
|
30704
|
-
|
|
30743
|
+
export interface ToggleGroup1 {
|
|
30744
|
+
controls: ToggleButtonControl1[];
|
|
30745
|
+
macroParameter: string;
|
|
30746
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
30705
30747
|
[k: string]: unknown;
|
|
30706
30748
|
}
|
|
30707
30749
|
/**
|
|
30708
30750
|
*
|
|
30709
30751
|
*
|
|
30710
|
-
* Defines a button which
|
|
30752
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
30711
30753
|
*
|
|
30712
30754
|
* <p><b>Example</b></p>
|
|
30713
30755
|
*
|
|
@@ -30716,19 +30758,21 @@ export interface ControlGroup1 {
|
|
|
30716
30758
|
*
|
|
30717
30759
|
*
|
|
30718
30760
|
* {
|
|
30719
|
-
* "type": "
|
|
30761
|
+
* "type": "togglebutton",
|
|
30762
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30720
30763
|
* "label": {
|
|
30721
30764
|
* "value": "My Custom Control 0"
|
|
30722
30765
|
* },
|
|
30723
|
-
* "key": "my-custom-
|
|
30766
|
+
* "key": "my-custom-toggle-button-0"
|
|
30724
30767
|
* }
|
|
30725
30768
|
*
|
|
30726
30769
|
*
|
|
30727
30770
|
*
|
|
30728
30771
|
*/
|
|
30729
|
-
export interface
|
|
30772
|
+
export interface ToggleButtonControl1 {
|
|
30773
|
+
macroParameterValue: string;
|
|
30730
30774
|
label: I18NProperty86;
|
|
30731
|
-
type: '
|
|
30775
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
30732
30776
|
key: string;
|
|
30733
30777
|
[k: string]: unknown;
|
|
30734
30778
|
}
|
|
@@ -30756,34 +30800,6 @@ export interface I18NProperty86 {
|
|
|
30756
30800
|
i18n?: string;
|
|
30757
30801
|
[k: string]: unknown;
|
|
30758
30802
|
}
|
|
30759
|
-
/**
|
|
30760
|
-
*
|
|
30761
|
-
*
|
|
30762
|
-
* Defines a text field which may appear in control extension points such as the property panel
|
|
30763
|
-
*
|
|
30764
|
-
* <p><b>Example</b></p>
|
|
30765
|
-
*
|
|
30766
|
-
*
|
|
30767
|
-
*
|
|
30768
|
-
*
|
|
30769
|
-
*
|
|
30770
|
-
* {
|
|
30771
|
-
* "type": "button",
|
|
30772
|
-
* "label": {
|
|
30773
|
-
* "value": "My Custom Control 0"
|
|
30774
|
-
* },
|
|
30775
|
-
* "key": "my-custom-control-0"
|
|
30776
|
-
* }
|
|
30777
|
-
*
|
|
30778
|
-
*
|
|
30779
|
-
*
|
|
30780
|
-
*/
|
|
30781
|
-
export interface TextControl1 {
|
|
30782
|
-
macroParameter: string;
|
|
30783
|
-
type: 'text' | 'TEXT';
|
|
30784
|
-
key: string;
|
|
30785
|
-
[k: string]: unknown;
|
|
30786
|
-
}
|
|
30787
30803
|
/**
|
|
30788
30804
|
*
|
|
30789
30805
|
*
|
|
@@ -51633,47 +51649,10 @@ export interface I18NProperty91 {
|
|
|
51633
51649
|
*
|
|
51634
51650
|
*/
|
|
51635
51651
|
export interface WebItemTarget2 {
|
|
51636
|
-
options?:
|
|
51652
|
+
options?: DialogModuleOptions2 | DialogOptions4 | InlineDialogOptions2;
|
|
51637
51653
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
51638
51654
|
[k: string]: unknown;
|
|
51639
51655
|
}
|
|
51640
|
-
/**
|
|
51641
|
-
*
|
|
51642
|
-
*
|
|
51643
|
-
* Options for an inline dialog target
|
|
51644
|
-
*
|
|
51645
|
-
* <h3>Example</h3>
|
|
51646
|
-
*
|
|
51647
|
-
*
|
|
51648
|
-
*
|
|
51649
|
-
*
|
|
51650
|
-
*
|
|
51651
|
-
* {
|
|
51652
|
-
* "target": {
|
|
51653
|
-
* "type": "inlinedialog",
|
|
51654
|
-
* "options": {
|
|
51655
|
-
* "onHover": true,
|
|
51656
|
-
* "offsetX": "30px",
|
|
51657
|
-
* "offsetY": "20px"
|
|
51658
|
-
* }
|
|
51659
|
-
* }
|
|
51660
|
-
* }
|
|
51661
|
-
*
|
|
51662
|
-
*
|
|
51663
|
-
*
|
|
51664
|
-
*/
|
|
51665
|
-
export interface InlineDialogOptions2 {
|
|
51666
|
-
offsetX?: string;
|
|
51667
|
-
offsetY?: string;
|
|
51668
|
-
width?: string;
|
|
51669
|
-
onTop?: boolean;
|
|
51670
|
-
showDelay?: number;
|
|
51671
|
-
closeOthers?: boolean;
|
|
51672
|
-
persistent?: boolean;
|
|
51673
|
-
onHover?: boolean;
|
|
51674
|
-
isRelativeToMouse?: boolean;
|
|
51675
|
-
[k: string]: unknown;
|
|
51676
|
-
}
|
|
51677
51656
|
/**
|
|
51678
51657
|
*
|
|
51679
51658
|
*
|
|
@@ -51799,6 +51778,43 @@ export interface I18NProperty92 {
|
|
|
51799
51778
|
i18n?: string;
|
|
51800
51779
|
[k: string]: unknown;
|
|
51801
51780
|
}
|
|
51781
|
+
/**
|
|
51782
|
+
*
|
|
51783
|
+
*
|
|
51784
|
+
* Options for an inline dialog target
|
|
51785
|
+
*
|
|
51786
|
+
* <h3>Example</h3>
|
|
51787
|
+
*
|
|
51788
|
+
*
|
|
51789
|
+
*
|
|
51790
|
+
*
|
|
51791
|
+
*
|
|
51792
|
+
* {
|
|
51793
|
+
* "target": {
|
|
51794
|
+
* "type": "inlinedialog",
|
|
51795
|
+
* "options": {
|
|
51796
|
+
* "onHover": true,
|
|
51797
|
+
* "offsetX": "30px",
|
|
51798
|
+
* "offsetY": "20px"
|
|
51799
|
+
* }
|
|
51800
|
+
* }
|
|
51801
|
+
* }
|
|
51802
|
+
*
|
|
51803
|
+
*
|
|
51804
|
+
*
|
|
51805
|
+
*/
|
|
51806
|
+
export interface InlineDialogOptions2 {
|
|
51807
|
+
offsetX?: string;
|
|
51808
|
+
offsetY?: string;
|
|
51809
|
+
width?: string;
|
|
51810
|
+
onTop?: boolean;
|
|
51811
|
+
showDelay?: number;
|
|
51812
|
+
closeOthers?: boolean;
|
|
51813
|
+
persistent?: boolean;
|
|
51814
|
+
onHover?: boolean;
|
|
51815
|
+
isRelativeToMouse?: boolean;
|
|
51816
|
+
[k: string]: unknown;
|
|
51817
|
+
}
|
|
51802
51818
|
/**
|
|
51803
51819
|
*
|
|
51804
51820
|
*
|