@forge/manifest 3.1.0-next.0 → 3.1.0-next.4
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 +24 -0
- package/out/mapping/product-event-to-scope-mapping.json +342 -107
- package/out/schema/manifest-schema.json +235 -250
- package/out/schema/manifest.d.ts +246 -252
- package/out/validators/product-trigger-scopes-validator.d.ts +4 -1
- package/out/validators/product-trigger-scopes-validator.d.ts.map +1 -1
- package/out/validators/product-trigger-scopes-validator.js +23 -7
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -1832,7 +1832,6 @@ export interface Modules {
|
|
|
1832
1832
|
function: string;
|
|
1833
1833
|
};
|
|
1834
1834
|
resource: string;
|
|
1835
|
-
resourceUploadId?: string;
|
|
1836
1835
|
key: ModuleKeySchema;
|
|
1837
1836
|
[k: string]: unknown;
|
|
1838
1837
|
}
|
|
@@ -1852,7 +1851,6 @@ export interface Modules {
|
|
|
1852
1851
|
function: string;
|
|
1853
1852
|
};
|
|
1854
1853
|
resource: string;
|
|
1855
|
-
resourceUploadId?: string;
|
|
1856
1854
|
key: ModuleKeySchema;
|
|
1857
1855
|
[k: string]: unknown;
|
|
1858
1856
|
}
|
|
@@ -1876,7 +1874,6 @@ export interface Modules {
|
|
|
1876
1874
|
};
|
|
1877
1875
|
displayConditions?: DisplayConditions;
|
|
1878
1876
|
resource: string;
|
|
1879
|
-
resourceUploadId?: string;
|
|
1880
1877
|
key: ModuleKeySchema;
|
|
1881
1878
|
[k: string]: unknown;
|
|
1882
1879
|
}
|
|
@@ -1898,7 +1895,6 @@ export interface Modules {
|
|
|
1898
1895
|
};
|
|
1899
1896
|
displayConditions?: DisplayConditions;
|
|
1900
1897
|
resource: string;
|
|
1901
|
-
resourceUploadId?: string;
|
|
1902
1898
|
key: ModuleKeySchema;
|
|
1903
1899
|
[k: string]: unknown;
|
|
1904
1900
|
}
|
|
@@ -1920,7 +1916,6 @@ export interface Modules {
|
|
|
1920
1916
|
function: string;
|
|
1921
1917
|
};
|
|
1922
1918
|
resource: string;
|
|
1923
|
-
resourceUploadId?: string;
|
|
1924
1919
|
key: ModuleKeySchema;
|
|
1925
1920
|
[k: string]: unknown;
|
|
1926
1921
|
}
|
|
@@ -1940,7 +1935,6 @@ export interface Modules {
|
|
|
1940
1935
|
function: string;
|
|
1941
1936
|
};
|
|
1942
1937
|
resource: string;
|
|
1943
|
-
resourceUploadId?: string;
|
|
1944
1938
|
key: ModuleKeySchema;
|
|
1945
1939
|
[k: string]: unknown;
|
|
1946
1940
|
}
|
|
@@ -2021,7 +2015,7 @@ export interface Modules {
|
|
|
2021
2015
|
location?: string;
|
|
2022
2016
|
cacheable?: boolean;
|
|
2023
2017
|
supportsNative?: boolean;
|
|
2024
|
-
conditions?: (
|
|
2018
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2025
2019
|
params?: {
|
|
2026
2020
|
[k: string]: unknown;
|
|
2027
2021
|
};
|
|
@@ -2037,7 +2031,7 @@ export interface Modules {
|
|
|
2037
2031
|
location?: string;
|
|
2038
2032
|
cacheable?: boolean;
|
|
2039
2033
|
supportsNative?: boolean;
|
|
2040
|
-
conditions?: (
|
|
2034
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2041
2035
|
params?: {
|
|
2042
2036
|
[k: string]: unknown;
|
|
2043
2037
|
};
|
|
@@ -2051,7 +2045,7 @@ export interface Modules {
|
|
|
2051
2045
|
filter?: string;
|
|
2052
2046
|
excludeBody?: boolean;
|
|
2053
2047
|
event?: string;
|
|
2054
|
-
conditions?: (
|
|
2048
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2055
2049
|
propertyKeys?: string[];
|
|
2056
2050
|
url?: string;
|
|
2057
2051
|
key: ModuleKeySchema;
|
|
@@ -2061,7 +2055,7 @@ export interface Modules {
|
|
|
2061
2055
|
filter?: string;
|
|
2062
2056
|
excludeBody?: boolean;
|
|
2063
2057
|
event?: string;
|
|
2064
|
-
conditions?: (
|
|
2058
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2065
2059
|
propertyKeys?: string[];
|
|
2066
2060
|
url?: string;
|
|
2067
2061
|
key: ModuleKeySchema;
|
|
@@ -2169,7 +2163,7 @@ export interface Modules {
|
|
|
2169
2163
|
name?: I18NProperty10;
|
|
2170
2164
|
location?: string;
|
|
2171
2165
|
cacheable?: boolean;
|
|
2172
|
-
conditions?: (
|
|
2166
|
+
conditions?: (CompositeCondition1 | SingleCondition1)[];
|
|
2173
2167
|
key: ModuleKeySchema;
|
|
2174
2168
|
[k: string]: unknown;
|
|
2175
2169
|
},
|
|
@@ -2187,7 +2181,7 @@ export interface Modules {
|
|
|
2187
2181
|
name?: I18NProperty10;
|
|
2188
2182
|
location?: string;
|
|
2189
2183
|
cacheable?: boolean;
|
|
2190
|
-
conditions?: (
|
|
2184
|
+
conditions?: (CompositeCondition1 | SingleCondition1)[];
|
|
2191
2185
|
key: ModuleKeySchema;
|
|
2192
2186
|
[k: string]: unknown;
|
|
2193
2187
|
}[]
|
|
@@ -2979,7 +2973,7 @@ export interface Modules {
|
|
|
2979
2973
|
filter?: string;
|
|
2980
2974
|
excludeBody?: boolean;
|
|
2981
2975
|
event?: string;
|
|
2982
|
-
conditions?: (
|
|
2976
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2983
2977
|
propertyKeys?: string[];
|
|
2984
2978
|
url?: string;
|
|
2985
2979
|
key: ModuleKeySchema;
|
|
@@ -2989,7 +2983,7 @@ export interface Modules {
|
|
|
2989
2983
|
filter?: string;
|
|
2990
2984
|
excludeBody?: boolean;
|
|
2991
2985
|
event?: string;
|
|
2992
|
-
conditions?: (
|
|
2986
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2993
2987
|
propertyKeys?: string[];
|
|
2994
2988
|
url?: string;
|
|
2995
2989
|
key: ModuleKeySchema;
|
|
@@ -3003,7 +2997,7 @@ export interface Modules {
|
|
|
3003
2997
|
weight?: number;
|
|
3004
2998
|
cacheable?: boolean;
|
|
3005
2999
|
location?: string;
|
|
3006
|
-
conditions?: (
|
|
3000
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3007
3001
|
params?: {
|
|
3008
3002
|
[k: string]: unknown;
|
|
3009
3003
|
};
|
|
@@ -3017,7 +3011,7 @@ export interface Modules {
|
|
|
3017
3011
|
weight?: number;
|
|
3018
3012
|
cacheable?: boolean;
|
|
3019
3013
|
location?: string;
|
|
3020
|
-
conditions?: (
|
|
3014
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3021
3015
|
params?: {
|
|
3022
3016
|
[k: string]: unknown;
|
|
3023
3017
|
};
|
|
@@ -3059,7 +3053,7 @@ export interface Modules {
|
|
|
3059
3053
|
weight?: number;
|
|
3060
3054
|
cacheable?: boolean;
|
|
3061
3055
|
location?: string;
|
|
3062
|
-
conditions?: (
|
|
3056
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3063
3057
|
params?: {
|
|
3064
3058
|
[k: string]: unknown;
|
|
3065
3059
|
};
|
|
@@ -3073,7 +3067,7 @@ export interface Modules {
|
|
|
3073
3067
|
weight?: number;
|
|
3074
3068
|
cacheable?: boolean;
|
|
3075
3069
|
location?: string;
|
|
3076
|
-
conditions?: (
|
|
3070
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3077
3071
|
params?: {
|
|
3078
3072
|
[k: string]: unknown;
|
|
3079
3073
|
};
|
|
@@ -3097,7 +3091,7 @@ export interface Modules {
|
|
|
3097
3091
|
name?: I18NProperty59;
|
|
3098
3092
|
location?: string;
|
|
3099
3093
|
cacheable?: boolean;
|
|
3100
|
-
conditions?: (
|
|
3094
|
+
conditions?: (SingleCondition4 | CompositeCondition6)[];
|
|
3101
3095
|
key: ModuleKeySchema;
|
|
3102
3096
|
[k: string]: unknown;
|
|
3103
3097
|
},
|
|
@@ -3115,7 +3109,7 @@ export interface Modules {
|
|
|
3115
3109
|
name?: I18NProperty59;
|
|
3116
3110
|
location?: string;
|
|
3117
3111
|
cacheable?: boolean;
|
|
3118
|
-
conditions?: (
|
|
3112
|
+
conditions?: (SingleCondition4 | CompositeCondition6)[];
|
|
3119
3113
|
key: ModuleKeySchema;
|
|
3120
3114
|
[k: string]: unknown;
|
|
3121
3115
|
}[]
|
|
@@ -3193,7 +3187,7 @@ export interface Modules {
|
|
|
3193
3187
|
name?: I18NProperty63;
|
|
3194
3188
|
weight?: number;
|
|
3195
3189
|
location?: string;
|
|
3196
|
-
conditions?: (
|
|
3190
|
+
conditions?: (CompositeCondition7 | SingleCondition5)[];
|
|
3197
3191
|
params?: {
|
|
3198
3192
|
[k: string]: unknown;
|
|
3199
3193
|
};
|
|
@@ -3205,7 +3199,7 @@ export interface Modules {
|
|
|
3205
3199
|
name?: I18NProperty63;
|
|
3206
3200
|
weight?: number;
|
|
3207
3201
|
location?: string;
|
|
3208
|
-
conditions?: (
|
|
3202
|
+
conditions?: (CompositeCondition7 | SingleCondition5)[];
|
|
3209
3203
|
params?: {
|
|
3210
3204
|
[k: string]: unknown;
|
|
3211
3205
|
};
|
|
@@ -3636,7 +3630,7 @@ export interface I18NProperty1 {
|
|
|
3636
3630
|
*
|
|
3637
3631
|
*/
|
|
3638
3632
|
export interface CompositeCondition {
|
|
3639
|
-
conditions?: (
|
|
3633
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
3640
3634
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
3641
3635
|
[k: string]: unknown;
|
|
3642
3636
|
}
|
|
@@ -4204,37 +4198,6 @@ export interface I18NProperty10 {
|
|
|
4204
4198
|
i18n?: string;
|
|
4205
4199
|
[k: string]: unknown;
|
|
4206
4200
|
}
|
|
4207
|
-
/**
|
|
4208
|
-
*
|
|
4209
|
-
*
|
|
4210
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
4211
|
-
* [Conditions](../../conditions/) for more information.
|
|
4212
|
-
*
|
|
4213
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
4214
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
4215
|
-
*
|
|
4216
|
-
* <h3>Example</h3>
|
|
4217
|
-
*
|
|
4218
|
-
*
|
|
4219
|
-
*
|
|
4220
|
-
*
|
|
4221
|
-
*
|
|
4222
|
-
* {
|
|
4223
|
-
* "condition": "user_is_logged_in",
|
|
4224
|
-
* "invert": false
|
|
4225
|
-
* }
|
|
4226
|
-
*
|
|
4227
|
-
*
|
|
4228
|
-
*
|
|
4229
|
-
*/
|
|
4230
|
-
export interface SingleCondition1 {
|
|
4231
|
-
condition: string;
|
|
4232
|
-
invert?: boolean;
|
|
4233
|
-
params?: {
|
|
4234
|
-
[k: string]: unknown;
|
|
4235
|
-
};
|
|
4236
|
-
[k: string]: unknown;
|
|
4237
|
-
}
|
|
4238
4201
|
/**
|
|
4239
4202
|
*
|
|
4240
4203
|
*
|
|
@@ -4276,6 +4239,37 @@ export interface CompositeCondition1 {
|
|
|
4276
4239
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
4277
4240
|
[k: string]: unknown;
|
|
4278
4241
|
}
|
|
4242
|
+
/**
|
|
4243
|
+
*
|
|
4244
|
+
*
|
|
4245
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
4246
|
+
* [Conditions](../../conditions/) for more information.
|
|
4247
|
+
*
|
|
4248
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
4249
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
4250
|
+
*
|
|
4251
|
+
* <h3>Example</h3>
|
|
4252
|
+
*
|
|
4253
|
+
*
|
|
4254
|
+
*
|
|
4255
|
+
*
|
|
4256
|
+
*
|
|
4257
|
+
* {
|
|
4258
|
+
* "condition": "user_is_logged_in",
|
|
4259
|
+
* "invert": false
|
|
4260
|
+
* }
|
|
4261
|
+
*
|
|
4262
|
+
*
|
|
4263
|
+
*
|
|
4264
|
+
*/
|
|
4265
|
+
export interface SingleCondition1 {
|
|
4266
|
+
condition: string;
|
|
4267
|
+
invert?: boolean;
|
|
4268
|
+
params?: {
|
|
4269
|
+
[k: string]: unknown;
|
|
4270
|
+
};
|
|
4271
|
+
[k: string]: unknown;
|
|
4272
|
+
}
|
|
4279
4273
|
/**
|
|
4280
4274
|
*
|
|
4281
4275
|
*
|
|
@@ -6534,6 +6528,37 @@ export interface I18NProperty59 {
|
|
|
6534
6528
|
i18n?: string;
|
|
6535
6529
|
[k: string]: unknown;
|
|
6536
6530
|
}
|
|
6531
|
+
/**
|
|
6532
|
+
*
|
|
6533
|
+
*
|
|
6534
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6535
|
+
* [Conditions](../../conditions/) for more information.
|
|
6536
|
+
*
|
|
6537
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6538
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6539
|
+
*
|
|
6540
|
+
* <h3>Example</h3>
|
|
6541
|
+
*
|
|
6542
|
+
*
|
|
6543
|
+
*
|
|
6544
|
+
*
|
|
6545
|
+
*
|
|
6546
|
+
* {
|
|
6547
|
+
* "condition": "user_is_logged_in",
|
|
6548
|
+
* "invert": false
|
|
6549
|
+
* }
|
|
6550
|
+
*
|
|
6551
|
+
*
|
|
6552
|
+
*
|
|
6553
|
+
*/
|
|
6554
|
+
export interface SingleCondition4 {
|
|
6555
|
+
condition: string;
|
|
6556
|
+
invert?: boolean;
|
|
6557
|
+
params?: {
|
|
6558
|
+
[k: string]: unknown;
|
|
6559
|
+
};
|
|
6560
|
+
[k: string]: unknown;
|
|
6561
|
+
}
|
|
6537
6562
|
/**
|
|
6538
6563
|
*
|
|
6539
6564
|
*
|
|
@@ -6571,41 +6596,10 @@ export interface I18NProperty59 {
|
|
|
6571
6596
|
*
|
|
6572
6597
|
*/
|
|
6573
6598
|
export interface CompositeCondition6 {
|
|
6574
|
-
conditions?: (
|
|
6599
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
6575
6600
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6576
6601
|
[k: string]: unknown;
|
|
6577
6602
|
}
|
|
6578
|
-
/**
|
|
6579
|
-
*
|
|
6580
|
-
*
|
|
6581
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6582
|
-
* [Conditions](../../conditions/) for more information.
|
|
6583
|
-
*
|
|
6584
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6585
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6586
|
-
*
|
|
6587
|
-
* <h3>Example</h3>
|
|
6588
|
-
*
|
|
6589
|
-
*
|
|
6590
|
-
*
|
|
6591
|
-
*
|
|
6592
|
-
*
|
|
6593
|
-
* {
|
|
6594
|
-
* "condition": "user_is_logged_in",
|
|
6595
|
-
* "invert": false
|
|
6596
|
-
* }
|
|
6597
|
-
*
|
|
6598
|
-
*
|
|
6599
|
-
*
|
|
6600
|
-
*/
|
|
6601
|
-
export interface SingleCondition4 {
|
|
6602
|
-
condition: string;
|
|
6603
|
-
invert?: boolean;
|
|
6604
|
-
params?: {
|
|
6605
|
-
[k: string]: unknown;
|
|
6606
|
-
};
|
|
6607
|
-
[k: string]: unknown;
|
|
6608
|
-
}
|
|
6609
6603
|
/**
|
|
6610
6604
|
*
|
|
6611
6605
|
*
|
|
@@ -6960,37 +6954,6 @@ export interface I18NProperty63 {
|
|
|
6960
6954
|
i18n?: string;
|
|
6961
6955
|
[k: string]: unknown;
|
|
6962
6956
|
}
|
|
6963
|
-
/**
|
|
6964
|
-
*
|
|
6965
|
-
*
|
|
6966
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6967
|
-
* [Conditions](../../conditions/) for more information.
|
|
6968
|
-
*
|
|
6969
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6970
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6971
|
-
*
|
|
6972
|
-
* <h3>Example</h3>
|
|
6973
|
-
*
|
|
6974
|
-
*
|
|
6975
|
-
*
|
|
6976
|
-
*
|
|
6977
|
-
*
|
|
6978
|
-
* {
|
|
6979
|
-
* "condition": "user_is_logged_in",
|
|
6980
|
-
* "invert": false
|
|
6981
|
-
* }
|
|
6982
|
-
*
|
|
6983
|
-
*
|
|
6984
|
-
*
|
|
6985
|
-
*/
|
|
6986
|
-
export interface SingleCondition5 {
|
|
6987
|
-
condition: string;
|
|
6988
|
-
invert?: boolean;
|
|
6989
|
-
params?: {
|
|
6990
|
-
[k: string]: unknown;
|
|
6991
|
-
};
|
|
6992
|
-
[k: string]: unknown;
|
|
6993
|
-
}
|
|
6994
6957
|
/**
|
|
6995
6958
|
*
|
|
6996
6959
|
*
|
|
@@ -7028,10 +6991,41 @@ export interface SingleCondition5 {
|
|
|
7028
6991
|
*
|
|
7029
6992
|
*/
|
|
7030
6993
|
export interface CompositeCondition7 {
|
|
7031
|
-
conditions?: (
|
|
6994
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
7032
6995
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7033
6996
|
[k: string]: unknown;
|
|
7034
6997
|
}
|
|
6998
|
+
/**
|
|
6999
|
+
*
|
|
7000
|
+
*
|
|
7001
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7002
|
+
* [Conditions](../../conditions/) for more information.
|
|
7003
|
+
*
|
|
7004
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7005
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7006
|
+
*
|
|
7007
|
+
* <h3>Example</h3>
|
|
7008
|
+
*
|
|
7009
|
+
*
|
|
7010
|
+
*
|
|
7011
|
+
*
|
|
7012
|
+
*
|
|
7013
|
+
* {
|
|
7014
|
+
* "condition": "user_is_logged_in",
|
|
7015
|
+
* "invert": false
|
|
7016
|
+
* }
|
|
7017
|
+
*
|
|
7018
|
+
*
|
|
7019
|
+
*
|
|
7020
|
+
*/
|
|
7021
|
+
export interface SingleCondition5 {
|
|
7022
|
+
condition: string;
|
|
7023
|
+
invert?: boolean;
|
|
7024
|
+
params?: {
|
|
7025
|
+
[k: string]: unknown;
|
|
7026
|
+
};
|
|
7027
|
+
[k: string]: unknown;
|
|
7028
|
+
}
|
|
7035
7029
|
/**
|
|
7036
7030
|
*
|
|
7037
7031
|
*
|
|
@@ -8451,7 +8445,7 @@ export interface I18NProperty74 {
|
|
|
8451
8445
|
*
|
|
8452
8446
|
*/
|
|
8453
8447
|
export interface MacroPropertyPanel {
|
|
8454
|
-
controls?: (ButtonControl |
|
|
8448
|
+
controls?: (ButtonControl | ControlGroup | ToggleGroup | TextControl)[];
|
|
8455
8449
|
cacheable?: boolean;
|
|
8456
8450
|
url: string;
|
|
8457
8451
|
[k: string]: unknown;
|
|
@@ -8511,7 +8505,7 @@ export interface I18NProperty75 {
|
|
|
8511
8505
|
/**
|
|
8512
8506
|
*
|
|
8513
8507
|
*
|
|
8514
|
-
* Defines a
|
|
8508
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
8515
8509
|
*
|
|
8516
8510
|
* <p><b>Example</b></p>
|
|
8517
8511
|
*
|
|
@@ -8521,24 +8515,21 @@ export interface I18NProperty75 {
|
|
|
8521
8515
|
*
|
|
8522
8516
|
* [
|
|
8523
8517
|
* {
|
|
8524
|
-
* "type": "
|
|
8525
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
8518
|
+
* "type": "group",
|
|
8526
8519
|
* "controls": [
|
|
8527
8520
|
* {
|
|
8528
|
-
* "type": "
|
|
8529
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
8521
|
+
* "type": "button",
|
|
8530
8522
|
* "label": {
|
|
8531
8523
|
* "value": "My Custom Control 0"
|
|
8532
8524
|
* },
|
|
8533
|
-
* "key": "my-custom-
|
|
8525
|
+
* "key": "my-custom-control-0"
|
|
8534
8526
|
* },
|
|
8535
8527
|
* {
|
|
8536
|
-
* "type": "
|
|
8537
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
8528
|
+
* "type": "button",
|
|
8538
8529
|
* "label": {
|
|
8539
8530
|
* "value": "My Custom Control 1"
|
|
8540
8531
|
* },
|
|
8541
|
-
* "key": "my-custom-
|
|
8532
|
+
* "key": "my-custom-control-1"
|
|
8542
8533
|
* }
|
|
8543
8534
|
* ]
|
|
8544
8535
|
* }
|
|
@@ -8547,16 +8538,15 @@ export interface I18NProperty75 {
|
|
|
8547
8538
|
*
|
|
8548
8539
|
*
|
|
8549
8540
|
*/
|
|
8550
|
-
export interface
|
|
8551
|
-
controls:
|
|
8552
|
-
|
|
8553
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
8541
|
+
export interface ControlGroup {
|
|
8542
|
+
controls: ButtonControl1[];
|
|
8543
|
+
type: 'group' | 'GROUP';
|
|
8554
8544
|
[k: string]: unknown;
|
|
8555
8545
|
}
|
|
8556
8546
|
/**
|
|
8557
8547
|
*
|
|
8558
8548
|
*
|
|
8559
|
-
* Defines a
|
|
8549
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
8560
8550
|
*
|
|
8561
8551
|
* <p><b>Example</b></p>
|
|
8562
8552
|
*
|
|
@@ -8565,21 +8555,19 @@ export interface ToggleGroup {
|
|
|
8565
8555
|
*
|
|
8566
8556
|
*
|
|
8567
8557
|
* {
|
|
8568
|
-
* "type": "
|
|
8569
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
8558
|
+
* "type": "button",
|
|
8570
8559
|
* "label": {
|
|
8571
8560
|
* "value": "My Custom Control 0"
|
|
8572
8561
|
* },
|
|
8573
|
-
* "key": "my-custom-
|
|
8562
|
+
* "key": "my-custom-control-0"
|
|
8574
8563
|
* }
|
|
8575
8564
|
*
|
|
8576
8565
|
*
|
|
8577
8566
|
*
|
|
8578
8567
|
*/
|
|
8579
|
-
export interface
|
|
8580
|
-
macroParameterValue: string;
|
|
8568
|
+
export interface ButtonControl1 {
|
|
8581
8569
|
label: I18NProperty76;
|
|
8582
|
-
type: '
|
|
8570
|
+
type: 'button' | 'BUTTON';
|
|
8583
8571
|
key: string;
|
|
8584
8572
|
[k: string]: unknown;
|
|
8585
8573
|
}
|
|
@@ -8610,7 +8598,7 @@ export interface I18NProperty76 {
|
|
|
8610
8598
|
/**
|
|
8611
8599
|
*
|
|
8612
8600
|
*
|
|
8613
|
-
* Defines a
|
|
8601
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
8614
8602
|
*
|
|
8615
8603
|
* <p><b>Example</b></p>
|
|
8616
8604
|
*
|
|
@@ -8620,21 +8608,24 @@ export interface I18NProperty76 {
|
|
|
8620
8608
|
*
|
|
8621
8609
|
* [
|
|
8622
8610
|
* {
|
|
8623
|
-
* "type": "
|
|
8611
|
+
* "type": "togglegroup",
|
|
8612
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
8624
8613
|
* "controls": [
|
|
8625
8614
|
* {
|
|
8626
|
-
* "type": "
|
|
8615
|
+
* "type": "togglebutton",
|
|
8616
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8627
8617
|
* "label": {
|
|
8628
8618
|
* "value": "My Custom Control 0"
|
|
8629
8619
|
* },
|
|
8630
|
-
* "key": "my-custom-
|
|
8620
|
+
* "key": "my-custom-toggle-button-0"
|
|
8631
8621
|
* },
|
|
8632
8622
|
* {
|
|
8633
|
-
* "type": "
|
|
8623
|
+
* "type": "togglebutton",
|
|
8624
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
8634
8625
|
* "label": {
|
|
8635
8626
|
* "value": "My Custom Control 1"
|
|
8636
8627
|
* },
|
|
8637
|
-
* "key": "my-custom-
|
|
8628
|
+
* "key": "my-custom-toggle-button-1"
|
|
8638
8629
|
* }
|
|
8639
8630
|
* ]
|
|
8640
8631
|
* }
|
|
@@ -8643,15 +8634,16 @@ export interface I18NProperty76 {
|
|
|
8643
8634
|
*
|
|
8644
8635
|
*
|
|
8645
8636
|
*/
|
|
8646
|
-
export interface
|
|
8647
|
-
controls:
|
|
8648
|
-
|
|
8637
|
+
export interface ToggleGroup {
|
|
8638
|
+
controls: ToggleButtonControl[];
|
|
8639
|
+
macroParameter: string;
|
|
8640
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
8649
8641
|
[k: string]: unknown;
|
|
8650
8642
|
}
|
|
8651
8643
|
/**
|
|
8652
8644
|
*
|
|
8653
8645
|
*
|
|
8654
|
-
* Defines a button which
|
|
8646
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
8655
8647
|
*
|
|
8656
8648
|
* <p><b>Example</b></p>
|
|
8657
8649
|
*
|
|
@@ -8660,19 +8652,21 @@ export interface ControlGroup {
|
|
|
8660
8652
|
*
|
|
8661
8653
|
*
|
|
8662
8654
|
* {
|
|
8663
|
-
* "type": "
|
|
8655
|
+
* "type": "togglebutton",
|
|
8656
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8664
8657
|
* "label": {
|
|
8665
8658
|
* "value": "My Custom Control 0"
|
|
8666
8659
|
* },
|
|
8667
|
-
* "key": "my-custom-
|
|
8660
|
+
* "key": "my-custom-toggle-button-0"
|
|
8668
8661
|
* }
|
|
8669
8662
|
*
|
|
8670
8663
|
*
|
|
8671
8664
|
*
|
|
8672
8665
|
*/
|
|
8673
|
-
export interface
|
|
8666
|
+
export interface ToggleButtonControl {
|
|
8667
|
+
macroParameterValue: string;
|
|
8674
8668
|
label: I18NProperty77;
|
|
8675
|
-
type: '
|
|
8669
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
8676
8670
|
key: string;
|
|
8677
8671
|
[k: string]: unknown;
|
|
8678
8672
|
}
|
|
@@ -29696,7 +29690,7 @@ export interface I18NProperty83 {
|
|
|
29696
29690
|
*
|
|
29697
29691
|
*/
|
|
29698
29692
|
export interface MacroPropertyPanel1 {
|
|
29699
|
-
controls?: (
|
|
29693
|
+
controls?: (TextControl1 | ButtonControl2 | ControlGroup1 | ToggleGroup1)[];
|
|
29700
29694
|
cacheable?: boolean;
|
|
29701
29695
|
url: string;
|
|
29702
29696
|
[k: string]: unknown;
|
|
@@ -29704,7 +29698,7 @@ export interface MacroPropertyPanel1 {
|
|
|
29704
29698
|
/**
|
|
29705
29699
|
*
|
|
29706
29700
|
*
|
|
29707
|
-
* Defines a
|
|
29701
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
29708
29702
|
*
|
|
29709
29703
|
* <p><b>Example</b></p>
|
|
29710
29704
|
*
|
|
@@ -29712,44 +29706,27 @@ export interface MacroPropertyPanel1 {
|
|
|
29712
29706
|
*
|
|
29713
29707
|
*
|
|
29714
29708
|
*
|
|
29715
|
-
*
|
|
29716
|
-
*
|
|
29717
|
-
*
|
|
29718
|
-
* "
|
|
29719
|
-
*
|
|
29720
|
-
*
|
|
29721
|
-
*
|
|
29722
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29723
|
-
* "label": {
|
|
29724
|
-
* "value": "My Custom Control 0"
|
|
29725
|
-
* },
|
|
29726
|
-
* "key": "my-custom-toggle-button-0"
|
|
29727
|
-
* },
|
|
29728
|
-
* {
|
|
29729
|
-
* "type": "togglebutton",
|
|
29730
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
29731
|
-
* "label": {
|
|
29732
|
-
* "value": "My Custom Control 1"
|
|
29733
|
-
* },
|
|
29734
|
-
* "key": "my-custom-toggle-button-1"
|
|
29735
|
-
* }
|
|
29736
|
-
* ]
|
|
29737
|
-
* }
|
|
29738
|
-
* ]
|
|
29709
|
+
* {
|
|
29710
|
+
* "type": "button",
|
|
29711
|
+
* "label": {
|
|
29712
|
+
* "value": "My Custom Control 0"
|
|
29713
|
+
* },
|
|
29714
|
+
* "key": "my-custom-control-0"
|
|
29715
|
+
* }
|
|
29739
29716
|
*
|
|
29740
29717
|
*
|
|
29741
29718
|
*
|
|
29742
29719
|
*/
|
|
29743
|
-
export interface
|
|
29744
|
-
controls: ToggleButtonControl1[];
|
|
29720
|
+
export interface TextControl1 {
|
|
29745
29721
|
macroParameter: string;
|
|
29746
|
-
type: '
|
|
29722
|
+
type: 'text' | 'TEXT';
|
|
29723
|
+
key: string;
|
|
29747
29724
|
[k: string]: unknown;
|
|
29748
29725
|
}
|
|
29749
29726
|
/**
|
|
29750
29727
|
*
|
|
29751
29728
|
*
|
|
29752
|
-
* Defines a
|
|
29729
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
29753
29730
|
*
|
|
29754
29731
|
* <p><b>Example</b></p>
|
|
29755
29732
|
*
|
|
@@ -29758,21 +29735,19 @@ export interface ToggleGroup1 {
|
|
|
29758
29735
|
*
|
|
29759
29736
|
*
|
|
29760
29737
|
* {
|
|
29761
|
-
* "type": "
|
|
29762
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29738
|
+
* "type": "button",
|
|
29763
29739
|
* "label": {
|
|
29764
29740
|
* "value": "My Custom Control 0"
|
|
29765
29741
|
* },
|
|
29766
|
-
* "key": "my-custom-
|
|
29742
|
+
* "key": "my-custom-control-0"
|
|
29767
29743
|
* }
|
|
29768
29744
|
*
|
|
29769
29745
|
*
|
|
29770
29746
|
*
|
|
29771
29747
|
*/
|
|
29772
|
-
export interface
|
|
29773
|
-
macroParameterValue: string;
|
|
29748
|
+
export interface ButtonControl2 {
|
|
29774
29749
|
label: I18NProperty84;
|
|
29775
|
-
type: '
|
|
29750
|
+
type: 'button' | 'BUTTON';
|
|
29776
29751
|
key: string;
|
|
29777
29752
|
[k: string]: unknown;
|
|
29778
29753
|
}
|
|
@@ -29800,34 +29775,6 @@ export interface I18NProperty84 {
|
|
|
29800
29775
|
i18n?: string;
|
|
29801
29776
|
[k: string]: unknown;
|
|
29802
29777
|
}
|
|
29803
|
-
/**
|
|
29804
|
-
*
|
|
29805
|
-
*
|
|
29806
|
-
* Defines a text field which may appear in control extension points such as the property panel
|
|
29807
|
-
*
|
|
29808
|
-
* <p><b>Example</b></p>
|
|
29809
|
-
*
|
|
29810
|
-
*
|
|
29811
|
-
*
|
|
29812
|
-
*
|
|
29813
|
-
*
|
|
29814
|
-
* {
|
|
29815
|
-
* "type": "button",
|
|
29816
|
-
* "label": {
|
|
29817
|
-
* "value": "My Custom Control 0"
|
|
29818
|
-
* },
|
|
29819
|
-
* "key": "my-custom-control-0"
|
|
29820
|
-
* }
|
|
29821
|
-
*
|
|
29822
|
-
*
|
|
29823
|
-
*
|
|
29824
|
-
*/
|
|
29825
|
-
export interface TextControl1 {
|
|
29826
|
-
macroParameter: string;
|
|
29827
|
-
type: 'text' | 'TEXT';
|
|
29828
|
-
key: string;
|
|
29829
|
-
[k: string]: unknown;
|
|
29830
|
-
}
|
|
29831
29778
|
/**
|
|
29832
29779
|
*
|
|
29833
29780
|
*
|
|
@@ -29865,7 +29812,7 @@ export interface TextControl1 {
|
|
|
29865
29812
|
*
|
|
29866
29813
|
*/
|
|
29867
29814
|
export interface ControlGroup1 {
|
|
29868
|
-
controls:
|
|
29815
|
+
controls: ButtonControl3[];
|
|
29869
29816
|
type: 'group' | 'GROUP';
|
|
29870
29817
|
[k: string]: unknown;
|
|
29871
29818
|
}
|
|
@@ -29891,7 +29838,7 @@ export interface ControlGroup1 {
|
|
|
29891
29838
|
*
|
|
29892
29839
|
*
|
|
29893
29840
|
*/
|
|
29894
|
-
export interface
|
|
29841
|
+
export interface ButtonControl3 {
|
|
29895
29842
|
label: I18NProperty85;
|
|
29896
29843
|
type: 'button' | 'BUTTON';
|
|
29897
29844
|
key: string;
|
|
@@ -29924,7 +29871,52 @@ export interface I18NProperty85 {
|
|
|
29924
29871
|
/**
|
|
29925
29872
|
*
|
|
29926
29873
|
*
|
|
29927
|
-
* Defines a
|
|
29874
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
29875
|
+
*
|
|
29876
|
+
* <p><b>Example</b></p>
|
|
29877
|
+
*
|
|
29878
|
+
*
|
|
29879
|
+
*
|
|
29880
|
+
*
|
|
29881
|
+
*
|
|
29882
|
+
* [
|
|
29883
|
+
* {
|
|
29884
|
+
* "type": "togglegroup",
|
|
29885
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
29886
|
+
* "controls": [
|
|
29887
|
+
* {
|
|
29888
|
+
* "type": "togglebutton",
|
|
29889
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29890
|
+
* "label": {
|
|
29891
|
+
* "value": "My Custom Control 0"
|
|
29892
|
+
* },
|
|
29893
|
+
* "key": "my-custom-toggle-button-0"
|
|
29894
|
+
* },
|
|
29895
|
+
* {
|
|
29896
|
+
* "type": "togglebutton",
|
|
29897
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
29898
|
+
* "label": {
|
|
29899
|
+
* "value": "My Custom Control 1"
|
|
29900
|
+
* },
|
|
29901
|
+
* "key": "my-custom-toggle-button-1"
|
|
29902
|
+
* }
|
|
29903
|
+
* ]
|
|
29904
|
+
* }
|
|
29905
|
+
* ]
|
|
29906
|
+
*
|
|
29907
|
+
*
|
|
29908
|
+
*
|
|
29909
|
+
*/
|
|
29910
|
+
export interface ToggleGroup1 {
|
|
29911
|
+
controls: ToggleButtonControl1[];
|
|
29912
|
+
macroParameter: string;
|
|
29913
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29914
|
+
[k: string]: unknown;
|
|
29915
|
+
}
|
|
29916
|
+
/**
|
|
29917
|
+
*
|
|
29918
|
+
*
|
|
29919
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
29928
29920
|
*
|
|
29929
29921
|
* <p><b>Example</b></p>
|
|
29930
29922
|
*
|
|
@@ -29933,19 +29925,21 @@ export interface I18NProperty85 {
|
|
|
29933
29925
|
*
|
|
29934
29926
|
*
|
|
29935
29927
|
* {
|
|
29936
|
-
* "type": "
|
|
29928
|
+
* "type": "togglebutton",
|
|
29929
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29937
29930
|
* "label": {
|
|
29938
29931
|
* "value": "My Custom Control 0"
|
|
29939
29932
|
* },
|
|
29940
|
-
* "key": "my-custom-
|
|
29933
|
+
* "key": "my-custom-toggle-button-0"
|
|
29941
29934
|
* }
|
|
29942
29935
|
*
|
|
29943
29936
|
*
|
|
29944
29937
|
*
|
|
29945
29938
|
*/
|
|
29946
|
-
export interface
|
|
29939
|
+
export interface ToggleButtonControl1 {
|
|
29940
|
+
macroParameterValue: string;
|
|
29947
29941
|
label: I18NProperty86;
|
|
29948
|
-
type: '
|
|
29942
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
29949
29943
|
key: string;
|
|
29950
29944
|
[k: string]: unknown;
|
|
29951
29945
|
}
|
|
@@ -50822,37 +50816,10 @@ export interface I18NProperty91 {
|
|
|
50822
50816
|
*
|
|
50823
50817
|
*/
|
|
50824
50818
|
export interface WebItemTarget2 {
|
|
50825
|
-
options?:
|
|
50819
|
+
options?: DialogOptions4 | DialogModuleOptions2 | InlineDialogOptions2;
|
|
50826
50820
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
50827
50821
|
[k: string]: unknown;
|
|
50828
50822
|
}
|
|
50829
|
-
/**
|
|
50830
|
-
*
|
|
50831
|
-
*
|
|
50832
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50833
|
-
*
|
|
50834
|
-
* <h3>Example</h3>
|
|
50835
|
-
*
|
|
50836
|
-
*
|
|
50837
|
-
*
|
|
50838
|
-
*
|
|
50839
|
-
*
|
|
50840
|
-
* {
|
|
50841
|
-
* "target": {
|
|
50842
|
-
* "type": "dialogmodule",
|
|
50843
|
-
* "options": {
|
|
50844
|
-
* "key": "dialog-module-key"
|
|
50845
|
-
* }
|
|
50846
|
-
* }
|
|
50847
|
-
* }
|
|
50848
|
-
*
|
|
50849
|
-
*
|
|
50850
|
-
*
|
|
50851
|
-
*/
|
|
50852
|
-
export interface DialogModuleOptions2 {
|
|
50853
|
-
key: string;
|
|
50854
|
-
[k: string]: unknown;
|
|
50855
|
-
}
|
|
50856
50823
|
/**
|
|
50857
50824
|
*
|
|
50858
50825
|
*
|
|
@@ -50951,6 +50918,33 @@ export interface I18NProperty92 {
|
|
|
50951
50918
|
i18n?: string;
|
|
50952
50919
|
[k: string]: unknown;
|
|
50953
50920
|
}
|
|
50921
|
+
/**
|
|
50922
|
+
*
|
|
50923
|
+
*
|
|
50924
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50925
|
+
*
|
|
50926
|
+
* <h3>Example</h3>
|
|
50927
|
+
*
|
|
50928
|
+
*
|
|
50929
|
+
*
|
|
50930
|
+
*
|
|
50931
|
+
*
|
|
50932
|
+
* {
|
|
50933
|
+
* "target": {
|
|
50934
|
+
* "type": "dialogmodule",
|
|
50935
|
+
* "options": {
|
|
50936
|
+
* "key": "dialog-module-key"
|
|
50937
|
+
* }
|
|
50938
|
+
* }
|
|
50939
|
+
* }
|
|
50940
|
+
*
|
|
50941
|
+
*
|
|
50942
|
+
*
|
|
50943
|
+
*/
|
|
50944
|
+
export interface DialogModuleOptions2 {
|
|
50945
|
+
key: string;
|
|
50946
|
+
[k: string]: unknown;
|
|
50947
|
+
}
|
|
50954
50948
|
/**
|
|
50955
50949
|
*
|
|
50956
50950
|
*
|