@forge/manifest 3.4.0-next.4 → 3.4.0-next.7
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/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 +409 -343
- package/out/schema/manifest.d.ts +393 -367
- package/out/text/errors.d.ts +3 -0
- package/out/text/errors.d.ts.map +1 -1
- package/out/text/errors.js +3 -0
- 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/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 +1 -2
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -803,6 +803,32 @@ export interface Modules {
|
|
|
803
803
|
[k: string]: unknown;
|
|
804
804
|
}[]
|
|
805
805
|
];
|
|
806
|
+
'jira:entityProperty'?: [
|
|
807
|
+
{
|
|
808
|
+
propertyKey: string;
|
|
809
|
+
entityType?: 'issue' | 'project' | 'user';
|
|
810
|
+
values: {
|
|
811
|
+
path: string;
|
|
812
|
+
type: 'date' | 'number' | 'string' | 'text' | 'user';
|
|
813
|
+
searchAlias?: string;
|
|
814
|
+
[k: string]: unknown;
|
|
815
|
+
}[];
|
|
816
|
+
key: ModuleKeySchema;
|
|
817
|
+
[k: string]: unknown;
|
|
818
|
+
},
|
|
819
|
+
...{
|
|
820
|
+
propertyKey: string;
|
|
821
|
+
entityType?: 'issue' | 'project' | 'user';
|
|
822
|
+
values: {
|
|
823
|
+
path: string;
|
|
824
|
+
type: 'date' | 'number' | 'string' | 'text' | 'user';
|
|
825
|
+
searchAlias?: string;
|
|
826
|
+
[k: string]: unknown;
|
|
827
|
+
}[];
|
|
828
|
+
key: ModuleKeySchema;
|
|
829
|
+
[k: string]: unknown;
|
|
830
|
+
}[]
|
|
831
|
+
];
|
|
806
832
|
'jira:customField'?: [
|
|
807
833
|
(
|
|
808
834
|
| {
|
|
@@ -2836,7 +2862,7 @@ export interface Modules {
|
|
|
2836
2862
|
filter?: string;
|
|
2837
2863
|
excludeBody?: boolean;
|
|
2838
2864
|
event?: string;
|
|
2839
|
-
conditions?: (
|
|
2865
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2840
2866
|
propertyKeys?: string[];
|
|
2841
2867
|
url?: string;
|
|
2842
2868
|
key: ModuleKeySchema;
|
|
@@ -2846,7 +2872,7 @@ export interface Modules {
|
|
|
2846
2872
|
filter?: string;
|
|
2847
2873
|
excludeBody?: boolean;
|
|
2848
2874
|
event?: string;
|
|
2849
|
-
conditions?: (
|
|
2875
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2850
2876
|
propertyKeys?: string[];
|
|
2851
2877
|
url?: string;
|
|
2852
2878
|
key: ModuleKeySchema;
|
|
@@ -2860,7 +2886,7 @@ export interface Modules {
|
|
|
2860
2886
|
weight?: number;
|
|
2861
2887
|
cacheable?: boolean;
|
|
2862
2888
|
location?: string;
|
|
2863
|
-
conditions?: (
|
|
2889
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2864
2890
|
params?: {
|
|
2865
2891
|
[k: string]: unknown;
|
|
2866
2892
|
};
|
|
@@ -2874,7 +2900,7 @@ export interface Modules {
|
|
|
2874
2900
|
weight?: number;
|
|
2875
2901
|
cacheable?: boolean;
|
|
2876
2902
|
location?: string;
|
|
2877
|
-
conditions?: (
|
|
2903
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2878
2904
|
params?: {
|
|
2879
2905
|
[k: string]: unknown;
|
|
2880
2906
|
};
|
|
@@ -2889,7 +2915,7 @@ export interface Modules {
|
|
|
2889
2915
|
name?: I18NProperty6;
|
|
2890
2916
|
weight?: number;
|
|
2891
2917
|
location?: string;
|
|
2892
|
-
conditions?: (
|
|
2918
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2893
2919
|
params?: {
|
|
2894
2920
|
[k: string]: unknown;
|
|
2895
2921
|
};
|
|
@@ -2901,7 +2927,7 @@ export interface Modules {
|
|
|
2901
2927
|
name?: I18NProperty6;
|
|
2902
2928
|
weight?: number;
|
|
2903
2929
|
location?: string;
|
|
2904
|
-
conditions?: (
|
|
2930
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2905
2931
|
params?: {
|
|
2906
2932
|
[k: string]: unknown;
|
|
2907
2933
|
};
|
|
@@ -2916,7 +2942,7 @@ export interface Modules {
|
|
|
2916
2942
|
weight?: number;
|
|
2917
2943
|
cacheable?: boolean;
|
|
2918
2944
|
location?: string;
|
|
2919
|
-
conditions?: (
|
|
2945
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2920
2946
|
params?: {
|
|
2921
2947
|
[k: string]: unknown;
|
|
2922
2948
|
};
|
|
@@ -2930,7 +2956,7 @@ export interface Modules {
|
|
|
2930
2956
|
weight?: number;
|
|
2931
2957
|
cacheable?: boolean;
|
|
2932
2958
|
location?: string;
|
|
2933
|
-
conditions?: (
|
|
2959
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2934
2960
|
params?: {
|
|
2935
2961
|
[k: string]: unknown;
|
|
2936
2962
|
};
|
|
@@ -3080,7 +3106,7 @@ export interface Modules {
|
|
|
3080
3106
|
| 'TIME_TRACKING'
|
|
3081
3107
|
| 'other'
|
|
3082
3108
|
| 'OTHER';
|
|
3083
|
-
conditions?: (
|
|
3109
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3084
3110
|
key: ModuleKeySchema;
|
|
3085
3111
|
[k: string]: unknown;
|
|
3086
3112
|
},
|
|
@@ -3102,7 +3128,7 @@ export interface Modules {
|
|
|
3102
3128
|
| 'TIME_TRACKING'
|
|
3103
3129
|
| 'other'
|
|
3104
3130
|
| 'OTHER';
|
|
3105
|
-
conditions?: (
|
|
3131
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3106
3132
|
key: ModuleKeySchema;
|
|
3107
3133
|
[k: string]: unknown;
|
|
3108
3134
|
}[]
|
|
@@ -3210,7 +3236,7 @@ export interface Modules {
|
|
|
3210
3236
|
name?: I18NProperty20;
|
|
3211
3237
|
weight?: number;
|
|
3212
3238
|
iconUrl?: string;
|
|
3213
|
-
conditions?: (
|
|
3239
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3214
3240
|
url?: string;
|
|
3215
3241
|
key: ModuleKeySchema;
|
|
3216
3242
|
[k: string]: unknown;
|
|
@@ -3219,7 +3245,7 @@ export interface Modules {
|
|
|
3219
3245
|
name?: I18NProperty20;
|
|
3220
3246
|
weight?: number;
|
|
3221
3247
|
iconUrl?: string;
|
|
3222
|
-
conditions?: (
|
|
3248
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3223
3249
|
url?: string;
|
|
3224
3250
|
key: ModuleKeySchema;
|
|
3225
3251
|
[k: string]: unknown;
|
|
@@ -3322,9 +3348,9 @@ export interface Modules {
|
|
|
3322
3348
|
icon?: Icon6;
|
|
3323
3349
|
tooltip?: I18NProperty29;
|
|
3324
3350
|
name?: I18NProperty30;
|
|
3325
|
-
conditions?: (
|
|
3351
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3326
3352
|
target?: IssuePageTargetWebPanel;
|
|
3327
|
-
contentPresentConditions?: (
|
|
3353
|
+
contentPresentConditions?: (CompositeCondition | SingleCondition)[];
|
|
3328
3354
|
jiraNativeAppsEnabled?: boolean;
|
|
3329
3355
|
key: ModuleKeySchema;
|
|
3330
3356
|
[k: string]: unknown;
|
|
@@ -3333,9 +3359,9 @@ export interface Modules {
|
|
|
3333
3359
|
icon?: Icon6;
|
|
3334
3360
|
tooltip?: I18NProperty29;
|
|
3335
3361
|
name?: I18NProperty30;
|
|
3336
|
-
conditions?: (
|
|
3362
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3337
3363
|
target?: IssuePageTargetWebPanel;
|
|
3338
|
-
contentPresentConditions?: (
|
|
3364
|
+
contentPresentConditions?: (CompositeCondition | SingleCondition)[];
|
|
3339
3365
|
jiraNativeAppsEnabled?: boolean;
|
|
3340
3366
|
key: ModuleKeySchema;
|
|
3341
3367
|
[k: string]: unknown;
|
|
@@ -3367,7 +3393,7 @@ export interface Modules {
|
|
|
3367
3393
|
{
|
|
3368
3394
|
name?: I18NProperty33;
|
|
3369
3395
|
weight?: number;
|
|
3370
|
-
conditions?: (
|
|
3396
|
+
conditions?: (SingleCondition2 | CompositeCondition2)[];
|
|
3371
3397
|
params?: {
|
|
3372
3398
|
[k: string]: unknown;
|
|
3373
3399
|
};
|
|
@@ -3378,7 +3404,7 @@ export interface Modules {
|
|
|
3378
3404
|
...{
|
|
3379
3405
|
name?: I18NProperty33;
|
|
3380
3406
|
weight?: number;
|
|
3381
|
-
conditions?: (
|
|
3407
|
+
conditions?: (SingleCondition2 | CompositeCondition2)[];
|
|
3382
3408
|
params?: {
|
|
3383
3409
|
[k: string]: unknown;
|
|
3384
3410
|
};
|
|
@@ -3459,7 +3485,7 @@ export interface Modules {
|
|
|
3459
3485
|
{
|
|
3460
3486
|
name?: I18NProperty38;
|
|
3461
3487
|
weight?: number;
|
|
3462
|
-
conditions?: (
|
|
3488
|
+
conditions?: (SingleCondition3 | CompositeCondition4)[];
|
|
3463
3489
|
params?: {
|
|
3464
3490
|
[k: string]: unknown;
|
|
3465
3491
|
};
|
|
@@ -3470,7 +3496,7 @@ export interface Modules {
|
|
|
3470
3496
|
...{
|
|
3471
3497
|
name?: I18NProperty38;
|
|
3472
3498
|
weight?: number;
|
|
3473
|
-
conditions?: (
|
|
3499
|
+
conditions?: (SingleCondition3 | CompositeCondition4)[];
|
|
3474
3500
|
params?: {
|
|
3475
3501
|
[k: string]: unknown;
|
|
3476
3502
|
};
|
|
@@ -3591,7 +3617,7 @@ export interface Modules {
|
|
|
3591
3617
|
expression?: string;
|
|
3592
3618
|
edit?: URL8;
|
|
3593
3619
|
evaluationContext?: 'user' | 'USER' | 'app' | 'APP';
|
|
3594
|
-
errorMessage?:
|
|
3620
|
+
errorMessage?: I18NProperty45 | JiraExpressionErrorMessage;
|
|
3595
3621
|
name?: I18NProperty46;
|
|
3596
3622
|
description?: I18NProperty47;
|
|
3597
3623
|
create?: URL9;
|
|
@@ -3603,7 +3629,7 @@ export interface Modules {
|
|
|
3603
3629
|
expression?: string;
|
|
3604
3630
|
edit?: URL8;
|
|
3605
3631
|
evaluationContext?: 'user' | 'USER' | 'app' | 'APP';
|
|
3606
|
-
errorMessage?:
|
|
3632
|
+
errorMessage?: I18NProperty45 | JiraExpressionErrorMessage;
|
|
3607
3633
|
name?: I18NProperty46;
|
|
3608
3634
|
description?: I18NProperty47;
|
|
3609
3635
|
create?: URL9;
|
|
@@ -3701,7 +3727,7 @@ export interface Modules {
|
|
|
3701
3727
|
fullPage?: boolean;
|
|
3702
3728
|
cacheable?: boolean;
|
|
3703
3729
|
location?: string;
|
|
3704
|
-
conditions?: (
|
|
3730
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3705
3731
|
params?: {
|
|
3706
3732
|
[k: string]: unknown;
|
|
3707
3733
|
};
|
|
@@ -3716,7 +3742,7 @@ export interface Modules {
|
|
|
3716
3742
|
fullPage?: boolean;
|
|
3717
3743
|
cacheable?: boolean;
|
|
3718
3744
|
location?: string;
|
|
3719
|
-
conditions?: (
|
|
3745
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3720
3746
|
params?: {
|
|
3721
3747
|
[k: string]: unknown;
|
|
3722
3748
|
};
|
|
@@ -3734,7 +3760,7 @@ export interface Modules {
|
|
|
3734
3760
|
location?: string;
|
|
3735
3761
|
cacheable?: boolean;
|
|
3736
3762
|
supportsNative?: boolean;
|
|
3737
|
-
conditions?: (
|
|
3763
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3738
3764
|
params?: {
|
|
3739
3765
|
[k: string]: unknown;
|
|
3740
3766
|
};
|
|
@@ -3750,7 +3776,7 @@ export interface Modules {
|
|
|
3750
3776
|
location?: string;
|
|
3751
3777
|
cacheable?: boolean;
|
|
3752
3778
|
supportsNative?: boolean;
|
|
3753
|
-
conditions?: (
|
|
3779
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3754
3780
|
params?: {
|
|
3755
3781
|
[k: string]: unknown;
|
|
3756
3782
|
};
|
|
@@ -3764,7 +3790,7 @@ export interface Modules {
|
|
|
3764
3790
|
filter?: string;
|
|
3765
3791
|
excludeBody?: boolean;
|
|
3766
3792
|
event?: string;
|
|
3767
|
-
conditions?: (
|
|
3793
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3768
3794
|
propertyKeys?: string[];
|
|
3769
3795
|
url?: string;
|
|
3770
3796
|
key: ModuleKeySchema;
|
|
@@ -3774,7 +3800,7 @@ export interface Modules {
|
|
|
3774
3800
|
filter?: string;
|
|
3775
3801
|
excludeBody?: boolean;
|
|
3776
3802
|
event?: string;
|
|
3777
|
-
conditions?: (
|
|
3803
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3778
3804
|
propertyKeys?: string[];
|
|
3779
3805
|
url?: string;
|
|
3780
3806
|
key: ModuleKeySchema;
|
|
@@ -3788,7 +3814,7 @@ export interface Modules {
|
|
|
3788
3814
|
weight?: number;
|
|
3789
3815
|
cacheable?: boolean;
|
|
3790
3816
|
location?: string;
|
|
3791
|
-
conditions?: (
|
|
3817
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3792
3818
|
params?: {
|
|
3793
3819
|
[k: string]: unknown;
|
|
3794
3820
|
};
|
|
@@ -3802,7 +3828,7 @@ export interface Modules {
|
|
|
3802
3828
|
weight?: number;
|
|
3803
3829
|
cacheable?: boolean;
|
|
3804
3830
|
location?: string;
|
|
3805
|
-
conditions?: (
|
|
3831
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3806
3832
|
params?: {
|
|
3807
3833
|
[k: string]: unknown;
|
|
3808
3834
|
};
|
|
@@ -3817,7 +3843,7 @@ export interface Modules {
|
|
|
3817
3843
|
name?: I18NProperty55;
|
|
3818
3844
|
weight?: number;
|
|
3819
3845
|
location?: string;
|
|
3820
|
-
conditions?: (
|
|
3846
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3821
3847
|
params?: {
|
|
3822
3848
|
[k: string]: unknown;
|
|
3823
3849
|
};
|
|
@@ -3829,7 +3855,7 @@ export interface Modules {
|
|
|
3829
3855
|
name?: I18NProperty55;
|
|
3830
3856
|
weight?: number;
|
|
3831
3857
|
location?: string;
|
|
3832
|
-
conditions?: (
|
|
3858
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3833
3859
|
params?: {
|
|
3834
3860
|
[k: string]: unknown;
|
|
3835
3861
|
};
|
|
@@ -3844,7 +3870,7 @@ export interface Modules {
|
|
|
3844
3870
|
weight?: number;
|
|
3845
3871
|
cacheable?: boolean;
|
|
3846
3872
|
location?: string;
|
|
3847
|
-
conditions?: (
|
|
3873
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3848
3874
|
params?: {
|
|
3849
3875
|
[k: string]: unknown;
|
|
3850
3876
|
};
|
|
@@ -3858,7 +3884,7 @@ export interface Modules {
|
|
|
3858
3884
|
weight?: number;
|
|
3859
3885
|
cacheable?: boolean;
|
|
3860
3886
|
location?: string;
|
|
3861
|
-
conditions?: (
|
|
3887
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3862
3888
|
params?: {
|
|
3863
3889
|
[k: string]: unknown;
|
|
3864
3890
|
};
|
|
@@ -3882,7 +3908,7 @@ export interface Modules {
|
|
|
3882
3908
|
name?: I18NProperty59;
|
|
3883
3909
|
location?: string;
|
|
3884
3910
|
cacheable?: boolean;
|
|
3885
|
-
conditions?: (
|
|
3911
|
+
conditions?: (CompositeCondition6 | SingleCondition4)[];
|
|
3886
3912
|
key: ModuleKeySchema;
|
|
3887
3913
|
[k: string]: unknown;
|
|
3888
3914
|
},
|
|
@@ -3900,7 +3926,7 @@ export interface Modules {
|
|
|
3900
3926
|
name?: I18NProperty59;
|
|
3901
3927
|
location?: string;
|
|
3902
3928
|
cacheable?: boolean;
|
|
3903
|
-
conditions?: (
|
|
3929
|
+
conditions?: (CompositeCondition6 | SingleCondition4)[];
|
|
3904
3930
|
key: ModuleKeySchema;
|
|
3905
3931
|
[k: string]: unknown;
|
|
3906
3932
|
}[]
|
|
@@ -3913,7 +3939,7 @@ export interface Modules {
|
|
|
3913
3939
|
fullPage?: boolean;
|
|
3914
3940
|
cacheable?: boolean;
|
|
3915
3941
|
location?: string;
|
|
3916
|
-
conditions?: (
|
|
3942
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3917
3943
|
params?: {
|
|
3918
3944
|
[k: string]: unknown;
|
|
3919
3945
|
};
|
|
@@ -3928,7 +3954,7 @@ export interface Modules {
|
|
|
3928
3954
|
fullPage?: boolean;
|
|
3929
3955
|
cacheable?: boolean;
|
|
3930
3956
|
location?: string;
|
|
3931
|
-
conditions?: (
|
|
3957
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3932
3958
|
params?: {
|
|
3933
3959
|
[k: string]: unknown;
|
|
3934
3960
|
};
|
|
@@ -4186,7 +4212,7 @@ export interface Modules {
|
|
|
4186
4212
|
icon?: Icon18;
|
|
4187
4213
|
name?: I18NProperty91;
|
|
4188
4214
|
cacheable?: boolean;
|
|
4189
|
-
conditions?: (
|
|
4215
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
4190
4216
|
params?: {
|
|
4191
4217
|
[k: string]: unknown;
|
|
4192
4218
|
};
|
|
@@ -4202,7 +4228,7 @@ export interface Modules {
|
|
|
4202
4228
|
icon?: Icon18;
|
|
4203
4229
|
name?: I18NProperty91;
|
|
4204
4230
|
cacheable?: boolean;
|
|
4205
|
-
conditions?: (
|
|
4231
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
4206
4232
|
params?: {
|
|
4207
4233
|
[k: string]: unknown;
|
|
4208
4234
|
};
|
|
@@ -4421,7 +4447,7 @@ export interface I18NProperty1 {
|
|
|
4421
4447
|
*
|
|
4422
4448
|
*/
|
|
4423
4449
|
export interface CompositeCondition {
|
|
4424
|
-
conditions?: (
|
|
4450
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
4425
4451
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
4426
4452
|
[k: string]: unknown;
|
|
4427
4453
|
}
|
|
@@ -4799,7 +4825,7 @@ export interface Icon3 {
|
|
|
4799
4825
|
*
|
|
4800
4826
|
*/
|
|
4801
4827
|
export interface WebItemTarget {
|
|
4802
|
-
options?: InlineDialogOptions |
|
|
4828
|
+
options?: InlineDialogOptions | DialogModuleOptions | DialogOptions;
|
|
4803
4829
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
4804
4830
|
[k: string]: unknown;
|
|
4805
4831
|
}
|
|
@@ -4840,6 +4866,33 @@ export interface InlineDialogOptions {
|
|
|
4840
4866
|
isRelativeToMouse?: boolean;
|
|
4841
4867
|
[k: string]: unknown;
|
|
4842
4868
|
}
|
|
4869
|
+
/**
|
|
4870
|
+
*
|
|
4871
|
+
*
|
|
4872
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
4873
|
+
*
|
|
4874
|
+
* <h3>Example</h3>
|
|
4875
|
+
*
|
|
4876
|
+
*
|
|
4877
|
+
*
|
|
4878
|
+
*
|
|
4879
|
+
*
|
|
4880
|
+
* {
|
|
4881
|
+
* "target": {
|
|
4882
|
+
* "type": "dialogmodule",
|
|
4883
|
+
* "options": {
|
|
4884
|
+
* "key": "dialog-module-key"
|
|
4885
|
+
* }
|
|
4886
|
+
* }
|
|
4887
|
+
* }
|
|
4888
|
+
*
|
|
4889
|
+
*
|
|
4890
|
+
*
|
|
4891
|
+
*/
|
|
4892
|
+
export interface DialogModuleOptions {
|
|
4893
|
+
key: string;
|
|
4894
|
+
[k: string]: unknown;
|
|
4895
|
+
}
|
|
4843
4896
|
/**
|
|
4844
4897
|
*
|
|
4845
4898
|
*
|
|
@@ -4938,33 +4991,6 @@ export interface I18NProperty9 {
|
|
|
4938
4991
|
i18n?: string;
|
|
4939
4992
|
[k: string]: unknown;
|
|
4940
4993
|
}
|
|
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
4994
|
/**
|
|
4969
4995
|
*
|
|
4970
4996
|
*
|
|
@@ -5026,7 +5052,7 @@ export interface I18NProperty10 {
|
|
|
5026
5052
|
*
|
|
5027
5053
|
*/
|
|
5028
5054
|
export interface CompositeCondition1 {
|
|
5029
|
-
conditions?: (
|
|
5055
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
5030
5056
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
5031
5057
|
[k: string]: unknown;
|
|
5032
5058
|
}
|
|
@@ -5963,6 +5989,37 @@ export interface I18NProperty33 {
|
|
|
5963
5989
|
i18n?: string;
|
|
5964
5990
|
[k: string]: unknown;
|
|
5965
5991
|
}
|
|
5992
|
+
/**
|
|
5993
|
+
*
|
|
5994
|
+
*
|
|
5995
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
5996
|
+
* [Conditions](../../conditions/) for more information.
|
|
5997
|
+
*
|
|
5998
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
5999
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6000
|
+
*
|
|
6001
|
+
* <h3>Example</h3>
|
|
6002
|
+
*
|
|
6003
|
+
*
|
|
6004
|
+
*
|
|
6005
|
+
*
|
|
6006
|
+
*
|
|
6007
|
+
* {
|
|
6008
|
+
* "condition": "user_is_logged_in",
|
|
6009
|
+
* "invert": false
|
|
6010
|
+
* }
|
|
6011
|
+
*
|
|
6012
|
+
*
|
|
6013
|
+
*
|
|
6014
|
+
*/
|
|
6015
|
+
export interface SingleCondition2 {
|
|
6016
|
+
condition: string;
|
|
6017
|
+
invert?: boolean;
|
|
6018
|
+
params?: {
|
|
6019
|
+
[k: string]: unknown;
|
|
6020
|
+
};
|
|
6021
|
+
[k: string]: unknown;
|
|
6022
|
+
}
|
|
5966
6023
|
/**
|
|
5967
6024
|
*
|
|
5968
6025
|
*
|
|
@@ -6000,7 +6057,7 @@ export interface I18NProperty33 {
|
|
|
6000
6057
|
*
|
|
6001
6058
|
*/
|
|
6002
6059
|
export interface CompositeCondition2 {
|
|
6003
|
-
conditions?: (
|
|
6060
|
+
conditions?: (SingleCondition | CompositeCondition3)[];
|
|
6004
6061
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6005
6062
|
[k: string]: unknown;
|
|
6006
6063
|
}
|
|
@@ -6041,41 +6098,10 @@ export interface CompositeCondition2 {
|
|
|
6041
6098
|
*
|
|
6042
6099
|
*/
|
|
6043
6100
|
export interface CompositeCondition3 {
|
|
6044
|
-
conditions?: (
|
|
6101
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
6045
6102
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6046
6103
|
[k: string]: unknown;
|
|
6047
6104
|
}
|
|
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
6105
|
/**
|
|
6080
6106
|
*
|
|
6081
6107
|
*
|
|
@@ -6268,6 +6294,37 @@ export interface I18NProperty38 {
|
|
|
6268
6294
|
i18n?: string;
|
|
6269
6295
|
[k: string]: unknown;
|
|
6270
6296
|
}
|
|
6297
|
+
/**
|
|
6298
|
+
*
|
|
6299
|
+
*
|
|
6300
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6301
|
+
* [Conditions](../../conditions/) for more information.
|
|
6302
|
+
*
|
|
6303
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6304
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6305
|
+
*
|
|
6306
|
+
* <h3>Example</h3>
|
|
6307
|
+
*
|
|
6308
|
+
*
|
|
6309
|
+
*
|
|
6310
|
+
*
|
|
6311
|
+
*
|
|
6312
|
+
* {
|
|
6313
|
+
* "condition": "user_is_logged_in",
|
|
6314
|
+
* "invert": false
|
|
6315
|
+
* }
|
|
6316
|
+
*
|
|
6317
|
+
*
|
|
6318
|
+
*
|
|
6319
|
+
*/
|
|
6320
|
+
export interface SingleCondition3 {
|
|
6321
|
+
condition: string;
|
|
6322
|
+
invert?: boolean;
|
|
6323
|
+
params?: {
|
|
6324
|
+
[k: string]: unknown;
|
|
6325
|
+
};
|
|
6326
|
+
[k: string]: unknown;
|
|
6327
|
+
}
|
|
6271
6328
|
/**
|
|
6272
6329
|
*
|
|
6273
6330
|
*
|
|
@@ -6305,7 +6362,7 @@ export interface I18NProperty38 {
|
|
|
6305
6362
|
*
|
|
6306
6363
|
*/
|
|
6307
6364
|
export interface CompositeCondition4 {
|
|
6308
|
-
conditions?: (
|
|
6365
|
+
conditions?: (SingleCondition | CompositeCondition5)[];
|
|
6309
6366
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6310
6367
|
[k: string]: unknown;
|
|
6311
6368
|
}
|
|
@@ -6346,41 +6403,10 @@ export interface CompositeCondition4 {
|
|
|
6346
6403
|
*
|
|
6347
6404
|
*/
|
|
6348
6405
|
export interface CompositeCondition5 {
|
|
6349
|
-
conditions?: (
|
|
6406
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
6350
6407
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6351
6408
|
[k: string]: unknown;
|
|
6352
6409
|
}
|
|
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
6410
|
/**
|
|
6385
6411
|
*
|
|
6386
6412
|
*
|
|
@@ -6570,18 +6596,6 @@ export interface URL8 {
|
|
|
6570
6596
|
url: string;
|
|
6571
6597
|
[k: string]: unknown;
|
|
6572
6598
|
}
|
|
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
6599
|
/**
|
|
6586
6600
|
*
|
|
6587
6601
|
*
|
|
@@ -6606,6 +6620,18 @@ export interface I18NProperty45 {
|
|
|
6606
6620
|
i18n?: string;
|
|
6607
6621
|
[k: string]: unknown;
|
|
6608
6622
|
}
|
|
6623
|
+
/**
|
|
6624
|
+
*
|
|
6625
|
+
*
|
|
6626
|
+
* A Jira expression that will be evaluated if the workflow validator fails.
|
|
6627
|
+
* The string returned by the Jira expression will be displayed as the error message for the failed transition.
|
|
6628
|
+
*
|
|
6629
|
+
*
|
|
6630
|
+
*/
|
|
6631
|
+
export interface JiraExpressionErrorMessage {
|
|
6632
|
+
expression: string;
|
|
6633
|
+
[k: string]: unknown;
|
|
6634
|
+
}
|
|
6609
6635
|
/**
|
|
6610
6636
|
*
|
|
6611
6637
|
*
|
|
@@ -7319,37 +7345,6 @@ export interface I18NProperty59 {
|
|
|
7319
7345
|
i18n?: string;
|
|
7320
7346
|
[k: string]: unknown;
|
|
7321
7347
|
}
|
|
7322
|
-
/**
|
|
7323
|
-
*
|
|
7324
|
-
*
|
|
7325
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7326
|
-
* [Conditions](../../conditions/) for more information.
|
|
7327
|
-
*
|
|
7328
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7329
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7330
|
-
*
|
|
7331
|
-
* <h3>Example</h3>
|
|
7332
|
-
*
|
|
7333
|
-
*
|
|
7334
|
-
*
|
|
7335
|
-
*
|
|
7336
|
-
*
|
|
7337
|
-
* {
|
|
7338
|
-
* "condition": "user_is_logged_in",
|
|
7339
|
-
* "invert": false
|
|
7340
|
-
* }
|
|
7341
|
-
*
|
|
7342
|
-
*
|
|
7343
|
-
*
|
|
7344
|
-
*/
|
|
7345
|
-
export interface SingleCondition4 {
|
|
7346
|
-
condition: string;
|
|
7347
|
-
invert?: boolean;
|
|
7348
|
-
params?: {
|
|
7349
|
-
[k: string]: unknown;
|
|
7350
|
-
};
|
|
7351
|
-
[k: string]: unknown;
|
|
7352
|
-
}
|
|
7353
7348
|
/**
|
|
7354
7349
|
*
|
|
7355
7350
|
*
|
|
@@ -7387,10 +7382,41 @@ export interface SingleCondition4 {
|
|
|
7387
7382
|
*
|
|
7388
7383
|
*/
|
|
7389
7384
|
export interface CompositeCondition6 {
|
|
7390
|
-
conditions?: (
|
|
7385
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
7391
7386
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7392
7387
|
[k: string]: unknown;
|
|
7393
7388
|
}
|
|
7389
|
+
/**
|
|
7390
|
+
*
|
|
7391
|
+
*
|
|
7392
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7393
|
+
* [Conditions](../../conditions/) for more information.
|
|
7394
|
+
*
|
|
7395
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7396
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7397
|
+
*
|
|
7398
|
+
* <h3>Example</h3>
|
|
7399
|
+
*
|
|
7400
|
+
*
|
|
7401
|
+
*
|
|
7402
|
+
*
|
|
7403
|
+
*
|
|
7404
|
+
* {
|
|
7405
|
+
* "condition": "user_is_logged_in",
|
|
7406
|
+
* "invert": false
|
|
7407
|
+
* }
|
|
7408
|
+
*
|
|
7409
|
+
*
|
|
7410
|
+
*
|
|
7411
|
+
*/
|
|
7412
|
+
export interface SingleCondition4 {
|
|
7413
|
+
condition: string;
|
|
7414
|
+
invert?: boolean;
|
|
7415
|
+
params?: {
|
|
7416
|
+
[k: string]: unknown;
|
|
7417
|
+
};
|
|
7418
|
+
[k: string]: unknown;
|
|
7419
|
+
}
|
|
7394
7420
|
/**
|
|
7395
7421
|
*
|
|
7396
7422
|
*
|
|
@@ -7813,7 +7839,7 @@ export interface SingleCondition5 {
|
|
|
7813
7839
|
*
|
|
7814
7840
|
*/
|
|
7815
7841
|
export interface CompositeCondition7 {
|
|
7816
|
-
conditions?: (
|
|
7842
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
7817
7843
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7818
7844
|
[k: string]: unknown;
|
|
7819
7845
|
}
|
|
@@ -9236,11 +9262,39 @@ export interface I18NProperty74 {
|
|
|
9236
9262
|
*
|
|
9237
9263
|
*/
|
|
9238
9264
|
export interface MacroPropertyPanel {
|
|
9239
|
-
controls?: (
|
|
9265
|
+
controls?: (TextControl | ControlGroup | ButtonControl1 | ToggleGroup)[];
|
|
9240
9266
|
cacheable?: boolean;
|
|
9241
9267
|
url: string;
|
|
9242
9268
|
[k: string]: unknown;
|
|
9243
9269
|
}
|
|
9270
|
+
/**
|
|
9271
|
+
*
|
|
9272
|
+
*
|
|
9273
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
9274
|
+
*
|
|
9275
|
+
* <p><b>Example</b></p>
|
|
9276
|
+
*
|
|
9277
|
+
*
|
|
9278
|
+
*
|
|
9279
|
+
*
|
|
9280
|
+
*
|
|
9281
|
+
* {
|
|
9282
|
+
* "type": "button",
|
|
9283
|
+
* "label": {
|
|
9284
|
+
* "value": "My Custom Control 0"
|
|
9285
|
+
* },
|
|
9286
|
+
* "key": "my-custom-control-0"
|
|
9287
|
+
* }
|
|
9288
|
+
*
|
|
9289
|
+
*
|
|
9290
|
+
*
|
|
9291
|
+
*/
|
|
9292
|
+
export interface TextControl {
|
|
9293
|
+
macroParameter: string;
|
|
9294
|
+
type: 'text' | 'TEXT';
|
|
9295
|
+
key: string;
|
|
9296
|
+
[k: string]: unknown;
|
|
9297
|
+
}
|
|
9244
9298
|
/**
|
|
9245
9299
|
*
|
|
9246
9300
|
*
|
|
@@ -9337,52 +9391,7 @@ export interface I18NProperty75 {
|
|
|
9337
9391
|
/**
|
|
9338
9392
|
*
|
|
9339
9393
|
*
|
|
9340
|
-
* Defines a
|
|
9341
|
-
*
|
|
9342
|
-
* <p><b>Example</b></p>
|
|
9343
|
-
*
|
|
9344
|
-
*
|
|
9345
|
-
*
|
|
9346
|
-
*
|
|
9347
|
-
*
|
|
9348
|
-
* [
|
|
9349
|
-
* {
|
|
9350
|
-
* "type": "togglegroup",
|
|
9351
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
9352
|
-
* "controls": [
|
|
9353
|
-
* {
|
|
9354
|
-
* "type": "togglebutton",
|
|
9355
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
9356
|
-
* "label": {
|
|
9357
|
-
* "value": "My Custom Control 0"
|
|
9358
|
-
* },
|
|
9359
|
-
* "key": "my-custom-toggle-button-0"
|
|
9360
|
-
* },
|
|
9361
|
-
* {
|
|
9362
|
-
* "type": "togglebutton",
|
|
9363
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
9364
|
-
* "label": {
|
|
9365
|
-
* "value": "My Custom Control 1"
|
|
9366
|
-
* },
|
|
9367
|
-
* "key": "my-custom-toggle-button-1"
|
|
9368
|
-
* }
|
|
9369
|
-
* ]
|
|
9370
|
-
* }
|
|
9371
|
-
* ]
|
|
9372
|
-
*
|
|
9373
|
-
*
|
|
9374
|
-
*
|
|
9375
|
-
*/
|
|
9376
|
-
export interface ToggleGroup {
|
|
9377
|
-
controls: ToggleButtonControl[];
|
|
9378
|
-
macroParameter: string;
|
|
9379
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
9380
|
-
[k: string]: unknown;
|
|
9381
|
-
}
|
|
9382
|
-
/**
|
|
9383
|
-
*
|
|
9384
|
-
*
|
|
9385
|
-
* Defines a toggle button which appears inside a ToggleGroup
|
|
9394
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
9386
9395
|
*
|
|
9387
9396
|
* <p><b>Example</b></p>
|
|
9388
9397
|
*
|
|
@@ -9391,21 +9400,19 @@ export interface ToggleGroup {
|
|
|
9391
9400
|
*
|
|
9392
9401
|
*
|
|
9393
9402
|
* {
|
|
9394
|
-
* "type": "
|
|
9395
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
9403
|
+
* "type": "button",
|
|
9396
9404
|
* "label": {
|
|
9397
9405
|
* "value": "My Custom Control 0"
|
|
9398
9406
|
* },
|
|
9399
|
-
* "key": "my-custom-
|
|
9407
|
+
* "key": "my-custom-control-0"
|
|
9400
9408
|
* }
|
|
9401
9409
|
*
|
|
9402
9410
|
*
|
|
9403
9411
|
*
|
|
9404
9412
|
*/
|
|
9405
|
-
export interface
|
|
9406
|
-
macroParameterValue: string;
|
|
9413
|
+
export interface ButtonControl1 {
|
|
9407
9414
|
label: I18NProperty76;
|
|
9408
|
-
type: '
|
|
9415
|
+
type: 'button' | 'BUTTON';
|
|
9409
9416
|
key: string;
|
|
9410
9417
|
[k: string]: unknown;
|
|
9411
9418
|
}
|
|
@@ -9436,7 +9443,7 @@ export interface I18NProperty76 {
|
|
|
9436
9443
|
/**
|
|
9437
9444
|
*
|
|
9438
9445
|
*
|
|
9439
|
-
* Defines a
|
|
9446
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
9440
9447
|
*
|
|
9441
9448
|
* <p><b>Example</b></p>
|
|
9442
9449
|
*
|
|
@@ -9444,27 +9451,44 @@ export interface I18NProperty76 {
|
|
|
9444
9451
|
*
|
|
9445
9452
|
*
|
|
9446
9453
|
*
|
|
9447
|
-
*
|
|
9448
|
-
*
|
|
9449
|
-
*
|
|
9450
|
-
* "
|
|
9451
|
-
*
|
|
9452
|
-
*
|
|
9453
|
-
*
|
|
9454
|
+
* [
|
|
9455
|
+
* {
|
|
9456
|
+
* "type": "togglegroup",
|
|
9457
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
9458
|
+
* "controls": [
|
|
9459
|
+
* {
|
|
9460
|
+
* "type": "togglebutton",
|
|
9461
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
9462
|
+
* "label": {
|
|
9463
|
+
* "value": "My Custom Control 0"
|
|
9464
|
+
* },
|
|
9465
|
+
* "key": "my-custom-toggle-button-0"
|
|
9466
|
+
* },
|
|
9467
|
+
* {
|
|
9468
|
+
* "type": "togglebutton",
|
|
9469
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
9470
|
+
* "label": {
|
|
9471
|
+
* "value": "My Custom Control 1"
|
|
9472
|
+
* },
|
|
9473
|
+
* "key": "my-custom-toggle-button-1"
|
|
9474
|
+
* }
|
|
9475
|
+
* ]
|
|
9476
|
+
* }
|
|
9477
|
+
* ]
|
|
9454
9478
|
*
|
|
9455
9479
|
*
|
|
9456
9480
|
*
|
|
9457
9481
|
*/
|
|
9458
|
-
export interface
|
|
9482
|
+
export interface ToggleGroup {
|
|
9483
|
+
controls: ToggleButtonControl[];
|
|
9459
9484
|
macroParameter: string;
|
|
9460
|
-
type: '
|
|
9461
|
-
key: string;
|
|
9485
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
9462
9486
|
[k: string]: unknown;
|
|
9463
9487
|
}
|
|
9464
9488
|
/**
|
|
9465
9489
|
*
|
|
9466
9490
|
*
|
|
9467
|
-
* Defines a button which
|
|
9491
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
9468
9492
|
*
|
|
9469
9493
|
* <p><b>Example</b></p>
|
|
9470
9494
|
*
|
|
@@ -9473,19 +9497,21 @@ export interface TextControl {
|
|
|
9473
9497
|
*
|
|
9474
9498
|
*
|
|
9475
9499
|
* {
|
|
9476
|
-
* "type": "
|
|
9500
|
+
* "type": "togglebutton",
|
|
9501
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
9477
9502
|
* "label": {
|
|
9478
9503
|
* "value": "My Custom Control 0"
|
|
9479
9504
|
* },
|
|
9480
|
-
* "key": "my-custom-
|
|
9505
|
+
* "key": "my-custom-toggle-button-0"
|
|
9481
9506
|
* }
|
|
9482
9507
|
*
|
|
9483
9508
|
*
|
|
9484
9509
|
*
|
|
9485
9510
|
*/
|
|
9486
|
-
export interface
|
|
9511
|
+
export interface ToggleButtonControl {
|
|
9512
|
+
macroParameterValue: string;
|
|
9487
9513
|
label: I18NProperty77;
|
|
9488
|
-
type: '
|
|
9514
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
9489
9515
|
key: string;
|
|
9490
9516
|
[k: string]: unknown;
|
|
9491
9517
|
}
|
|
@@ -30481,7 +30507,7 @@ export interface I18NProperty83 {
|
|
|
30481
30507
|
*
|
|
30482
30508
|
*/
|
|
30483
30509
|
export interface MacroPropertyPanel1 {
|
|
30484
|
-
controls?: (
|
|
30510
|
+
controls?: (TextControl1 | ButtonControl2 | ControlGroup1 | ToggleGroup1)[];
|
|
30485
30511
|
cacheable?: boolean;
|
|
30486
30512
|
url: string;
|
|
30487
30513
|
[k: string]: unknown;
|
|
@@ -30489,7 +30515,7 @@ export interface MacroPropertyPanel1 {
|
|
|
30489
30515
|
/**
|
|
30490
30516
|
*
|
|
30491
30517
|
*
|
|
30492
|
-
* Defines a
|
|
30518
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
30493
30519
|
*
|
|
30494
30520
|
* <p><b>Example</b></p>
|
|
30495
30521
|
*
|
|
@@ -30497,44 +30523,27 @@ export interface MacroPropertyPanel1 {
|
|
|
30497
30523
|
*
|
|
30498
30524
|
*
|
|
30499
30525
|
*
|
|
30500
|
-
*
|
|
30501
|
-
*
|
|
30502
|
-
*
|
|
30503
|
-
* "
|
|
30504
|
-
*
|
|
30505
|
-
*
|
|
30506
|
-
*
|
|
30507
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30508
|
-
* "label": {
|
|
30509
|
-
* "value": "My Custom Control 0"
|
|
30510
|
-
* },
|
|
30511
|
-
* "key": "my-custom-toggle-button-0"
|
|
30512
|
-
* },
|
|
30513
|
-
* {
|
|
30514
|
-
* "type": "togglebutton",
|
|
30515
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
30516
|
-
* "label": {
|
|
30517
|
-
* "value": "My Custom Control 1"
|
|
30518
|
-
* },
|
|
30519
|
-
* "key": "my-custom-toggle-button-1"
|
|
30520
|
-
* }
|
|
30521
|
-
* ]
|
|
30522
|
-
* }
|
|
30523
|
-
* ]
|
|
30526
|
+
* {
|
|
30527
|
+
* "type": "button",
|
|
30528
|
+
* "label": {
|
|
30529
|
+
* "value": "My Custom Control 0"
|
|
30530
|
+
* },
|
|
30531
|
+
* "key": "my-custom-control-0"
|
|
30532
|
+
* }
|
|
30524
30533
|
*
|
|
30525
30534
|
*
|
|
30526
30535
|
*
|
|
30527
30536
|
*/
|
|
30528
|
-
export interface
|
|
30529
|
-
controls: ToggleButtonControl1[];
|
|
30537
|
+
export interface TextControl1 {
|
|
30530
30538
|
macroParameter: string;
|
|
30531
|
-
type: '
|
|
30539
|
+
type: 'text' | 'TEXT';
|
|
30540
|
+
key: string;
|
|
30532
30541
|
[k: string]: unknown;
|
|
30533
30542
|
}
|
|
30534
30543
|
/**
|
|
30535
30544
|
*
|
|
30536
30545
|
*
|
|
30537
|
-
* Defines a
|
|
30546
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
30538
30547
|
*
|
|
30539
30548
|
* <p><b>Example</b></p>
|
|
30540
30549
|
*
|
|
@@ -30543,21 +30552,19 @@ export interface ToggleGroup1 {
|
|
|
30543
30552
|
*
|
|
30544
30553
|
*
|
|
30545
30554
|
* {
|
|
30546
|
-
* "type": "
|
|
30547
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30555
|
+
* "type": "button",
|
|
30548
30556
|
* "label": {
|
|
30549
30557
|
* "value": "My Custom Control 0"
|
|
30550
30558
|
* },
|
|
30551
|
-
* "key": "my-custom-
|
|
30559
|
+
* "key": "my-custom-control-0"
|
|
30552
30560
|
* }
|
|
30553
30561
|
*
|
|
30554
30562
|
*
|
|
30555
30563
|
*
|
|
30556
30564
|
*/
|
|
30557
|
-
export interface
|
|
30558
|
-
macroParameterValue: string;
|
|
30565
|
+
export interface ButtonControl2 {
|
|
30559
30566
|
label: I18NProperty84;
|
|
30560
|
-
type: '
|
|
30567
|
+
type: 'button' | 'BUTTON';
|
|
30561
30568
|
key: string;
|
|
30562
30569
|
[k: string]: unknown;
|
|
30563
30570
|
}
|
|
@@ -30585,6 +30592,47 @@ export interface I18NProperty84 {
|
|
|
30585
30592
|
i18n?: string;
|
|
30586
30593
|
[k: string]: unknown;
|
|
30587
30594
|
}
|
|
30595
|
+
/**
|
|
30596
|
+
*
|
|
30597
|
+
*
|
|
30598
|
+
* Defines a ControlGroup 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
|
+
* {
|
|
30608
|
+
* "type": "group",
|
|
30609
|
+
* "controls": [
|
|
30610
|
+
* {
|
|
30611
|
+
* "type": "button",
|
|
30612
|
+
* "label": {
|
|
30613
|
+
* "value": "My Custom Control 0"
|
|
30614
|
+
* },
|
|
30615
|
+
* "key": "my-custom-control-0"
|
|
30616
|
+
* },
|
|
30617
|
+
* {
|
|
30618
|
+
* "type": "button",
|
|
30619
|
+
* "label": {
|
|
30620
|
+
* "value": "My Custom Control 1"
|
|
30621
|
+
* },
|
|
30622
|
+
* "key": "my-custom-control-1"
|
|
30623
|
+
* }
|
|
30624
|
+
* ]
|
|
30625
|
+
* }
|
|
30626
|
+
* ]
|
|
30627
|
+
*
|
|
30628
|
+
*
|
|
30629
|
+
*
|
|
30630
|
+
*/
|
|
30631
|
+
export interface ControlGroup1 {
|
|
30632
|
+
controls: ButtonControl3[];
|
|
30633
|
+
type: 'group' | 'GROUP';
|
|
30634
|
+
[k: string]: unknown;
|
|
30635
|
+
}
|
|
30588
30636
|
/**
|
|
30589
30637
|
*
|
|
30590
30638
|
*
|
|
@@ -30607,7 +30655,7 @@ export interface I18NProperty84 {
|
|
|
30607
30655
|
*
|
|
30608
30656
|
*
|
|
30609
30657
|
*/
|
|
30610
|
-
export interface
|
|
30658
|
+
export interface ButtonControl3 {
|
|
30611
30659
|
label: I18NProperty85;
|
|
30612
30660
|
type: 'button' | 'BUTTON';
|
|
30613
30661
|
key: string;
|
|
@@ -30640,7 +30688,7 @@ export interface I18NProperty85 {
|
|
|
30640
30688
|
/**
|
|
30641
30689
|
*
|
|
30642
30690
|
*
|
|
30643
|
-
* Defines a
|
|
30691
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
30644
30692
|
*
|
|
30645
30693
|
* <p><b>Example</b></p>
|
|
30646
30694
|
*
|
|
@@ -30650,21 +30698,24 @@ export interface I18NProperty85 {
|
|
|
30650
30698
|
*
|
|
30651
30699
|
* [
|
|
30652
30700
|
* {
|
|
30653
|
-
* "type": "
|
|
30701
|
+
* "type": "togglegroup",
|
|
30702
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
30654
30703
|
* "controls": [
|
|
30655
30704
|
* {
|
|
30656
|
-
* "type": "
|
|
30705
|
+
* "type": "togglebutton",
|
|
30706
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30657
30707
|
* "label": {
|
|
30658
30708
|
* "value": "My Custom Control 0"
|
|
30659
30709
|
* },
|
|
30660
|
-
* "key": "my-custom-
|
|
30710
|
+
* "key": "my-custom-toggle-button-0"
|
|
30661
30711
|
* },
|
|
30662
30712
|
* {
|
|
30663
|
-
* "type": "
|
|
30713
|
+
* "type": "togglebutton",
|
|
30714
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
30664
30715
|
* "label": {
|
|
30665
30716
|
* "value": "My Custom Control 1"
|
|
30666
30717
|
* },
|
|
30667
|
-
* "key": "my-custom-
|
|
30718
|
+
* "key": "my-custom-toggle-button-1"
|
|
30668
30719
|
* }
|
|
30669
30720
|
* ]
|
|
30670
30721
|
* }
|
|
@@ -30673,15 +30724,16 @@ export interface I18NProperty85 {
|
|
|
30673
30724
|
*
|
|
30674
30725
|
*
|
|
30675
30726
|
*/
|
|
30676
|
-
export interface
|
|
30677
|
-
controls:
|
|
30678
|
-
|
|
30727
|
+
export interface ToggleGroup1 {
|
|
30728
|
+
controls: ToggleButtonControl1[];
|
|
30729
|
+
macroParameter: string;
|
|
30730
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
30679
30731
|
[k: string]: unknown;
|
|
30680
30732
|
}
|
|
30681
30733
|
/**
|
|
30682
30734
|
*
|
|
30683
30735
|
*
|
|
30684
|
-
* Defines a button which
|
|
30736
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
30685
30737
|
*
|
|
30686
30738
|
* <p><b>Example</b></p>
|
|
30687
30739
|
*
|
|
@@ -30690,19 +30742,21 @@ export interface ControlGroup1 {
|
|
|
30690
30742
|
*
|
|
30691
30743
|
*
|
|
30692
30744
|
* {
|
|
30693
|
-
* "type": "
|
|
30745
|
+
* "type": "togglebutton",
|
|
30746
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30694
30747
|
* "label": {
|
|
30695
30748
|
* "value": "My Custom Control 0"
|
|
30696
30749
|
* },
|
|
30697
|
-
* "key": "my-custom-
|
|
30750
|
+
* "key": "my-custom-toggle-button-0"
|
|
30698
30751
|
* }
|
|
30699
30752
|
*
|
|
30700
30753
|
*
|
|
30701
30754
|
*
|
|
30702
30755
|
*/
|
|
30703
|
-
export interface
|
|
30756
|
+
export interface ToggleButtonControl1 {
|
|
30757
|
+
macroParameterValue: string;
|
|
30704
30758
|
label: I18NProperty86;
|
|
30705
|
-
type: '
|
|
30759
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
30706
30760
|
key: string;
|
|
30707
30761
|
[k: string]: unknown;
|
|
30708
30762
|
}
|
|
@@ -30730,34 +30784,6 @@ export interface I18NProperty86 {
|
|
|
30730
30784
|
i18n?: string;
|
|
30731
30785
|
[k: string]: unknown;
|
|
30732
30786
|
}
|
|
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
30787
|
/**
|
|
30762
30788
|
*
|
|
30763
30789
|
*
|
|
@@ -51607,47 +51633,10 @@ export interface I18NProperty91 {
|
|
|
51607
51633
|
*
|
|
51608
51634
|
*/
|
|
51609
51635
|
export interface WebItemTarget2 {
|
|
51610
|
-
options?:
|
|
51636
|
+
options?: DialogModuleOptions2 | DialogOptions4 | InlineDialogOptions2;
|
|
51611
51637
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
51612
51638
|
[k: string]: unknown;
|
|
51613
51639
|
}
|
|
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
51640
|
/**
|
|
51652
51641
|
*
|
|
51653
51642
|
*
|
|
@@ -51773,6 +51762,43 @@ export interface I18NProperty92 {
|
|
|
51773
51762
|
i18n?: string;
|
|
51774
51763
|
[k: string]: unknown;
|
|
51775
51764
|
}
|
|
51765
|
+
/**
|
|
51766
|
+
*
|
|
51767
|
+
*
|
|
51768
|
+
* Options for an inline dialog target
|
|
51769
|
+
*
|
|
51770
|
+
* <h3>Example</h3>
|
|
51771
|
+
*
|
|
51772
|
+
*
|
|
51773
|
+
*
|
|
51774
|
+
*
|
|
51775
|
+
*
|
|
51776
|
+
* {
|
|
51777
|
+
* "target": {
|
|
51778
|
+
* "type": "inlinedialog",
|
|
51779
|
+
* "options": {
|
|
51780
|
+
* "onHover": true,
|
|
51781
|
+
* "offsetX": "30px",
|
|
51782
|
+
* "offsetY": "20px"
|
|
51783
|
+
* }
|
|
51784
|
+
* }
|
|
51785
|
+
* }
|
|
51786
|
+
*
|
|
51787
|
+
*
|
|
51788
|
+
*
|
|
51789
|
+
*/
|
|
51790
|
+
export interface InlineDialogOptions2 {
|
|
51791
|
+
offsetX?: string;
|
|
51792
|
+
offsetY?: string;
|
|
51793
|
+
width?: string;
|
|
51794
|
+
onTop?: boolean;
|
|
51795
|
+
showDelay?: number;
|
|
51796
|
+
closeOthers?: boolean;
|
|
51797
|
+
persistent?: boolean;
|
|
51798
|
+
onHover?: boolean;
|
|
51799
|
+
isRelativeToMouse?: boolean;
|
|
51800
|
+
[k: string]: unknown;
|
|
51801
|
+
}
|
|
51776
51802
|
/**
|
|
51777
51803
|
*
|
|
51778
51804
|
*
|