@forge/manifest 3.0.0-next.21 → 3.1.0-next.2
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 +64 -0
- package/out/schema/manifest-schema.json +184 -200
- package/out/schema/manifest.d.ts +231 -237
- 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
|
}[]
|
|
@@ -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
|
};
|
|
@@ -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
|
*
|
|
@@ -6344,10 +6338,37 @@ export interface Icon10 {
|
|
|
6344
6338
|
*
|
|
6345
6339
|
*/
|
|
6346
6340
|
export interface WebItemTarget1 {
|
|
6347
|
-
options?:
|
|
6341
|
+
options?: DialogModuleOptions1 | DialogOptions2 | InlineDialogOptions1;
|
|
6348
6342
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
6349
6343
|
[k: string]: unknown;
|
|
6350
6344
|
}
|
|
6345
|
+
/**
|
|
6346
|
+
*
|
|
6347
|
+
*
|
|
6348
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
6349
|
+
*
|
|
6350
|
+
* <h3>Example</h3>
|
|
6351
|
+
*
|
|
6352
|
+
*
|
|
6353
|
+
*
|
|
6354
|
+
*
|
|
6355
|
+
*
|
|
6356
|
+
* {
|
|
6357
|
+
* "target": {
|
|
6358
|
+
* "type": "dialogmodule",
|
|
6359
|
+
* "options": {
|
|
6360
|
+
* "key": "dialog-module-key"
|
|
6361
|
+
* }
|
|
6362
|
+
* }
|
|
6363
|
+
* }
|
|
6364
|
+
*
|
|
6365
|
+
*
|
|
6366
|
+
*
|
|
6367
|
+
*/
|
|
6368
|
+
export interface DialogModuleOptions1 {
|
|
6369
|
+
key: string;
|
|
6370
|
+
[k: string]: unknown;
|
|
6371
|
+
}
|
|
6351
6372
|
/**
|
|
6352
6373
|
*
|
|
6353
6374
|
*
|
|
@@ -6486,7 +6507,8 @@ export interface InlineDialogOptions1 {
|
|
|
6486
6507
|
/**
|
|
6487
6508
|
*
|
|
6488
6509
|
*
|
|
6489
|
-
*
|
|
6510
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
6511
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
6490
6512
|
*
|
|
6491
6513
|
* <h3>Example</h3>
|
|
6492
6514
|
*
|
|
@@ -6495,26 +6517,25 @@ export interface InlineDialogOptions1 {
|
|
|
6495
6517
|
*
|
|
6496
6518
|
*
|
|
6497
6519
|
* {
|
|
6498
|
-
* "
|
|
6499
|
-
* "type": "dialogmodule",
|
|
6500
|
-
* "options": {
|
|
6501
|
-
* "key": "dialog-module-key"
|
|
6502
|
-
* }
|
|
6503
|
-
* }
|
|
6520
|
+
* "value": "My text"
|
|
6504
6521
|
* }
|
|
6505
6522
|
*
|
|
6506
6523
|
*
|
|
6507
6524
|
*
|
|
6508
6525
|
*/
|
|
6509
|
-
export interface
|
|
6510
|
-
|
|
6526
|
+
export interface I18NProperty59 {
|
|
6527
|
+
value: string;
|
|
6528
|
+
i18n?: string;
|
|
6511
6529
|
[k: string]: unknown;
|
|
6512
6530
|
}
|
|
6513
6531
|
/**
|
|
6514
6532
|
*
|
|
6515
6533
|
*
|
|
6516
|
-
*
|
|
6517
|
-
*
|
|
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.
|
|
6518
6539
|
*
|
|
6519
6540
|
* <h3>Example</h3>
|
|
6520
6541
|
*
|
|
@@ -6523,15 +6544,19 @@ export interface DialogModuleOptions1 {
|
|
|
6523
6544
|
*
|
|
6524
6545
|
*
|
|
6525
6546
|
* {
|
|
6526
|
-
* "
|
|
6547
|
+
* "condition": "user_is_logged_in",
|
|
6548
|
+
* "invert": false
|
|
6527
6549
|
* }
|
|
6528
6550
|
*
|
|
6529
6551
|
*
|
|
6530
6552
|
*
|
|
6531
6553
|
*/
|
|
6532
|
-
export interface
|
|
6533
|
-
|
|
6534
|
-
|
|
6554
|
+
export interface SingleCondition4 {
|
|
6555
|
+
condition: string;
|
|
6556
|
+
invert?: boolean;
|
|
6557
|
+
params?: {
|
|
6558
|
+
[k: string]: unknown;
|
|
6559
|
+
};
|
|
6535
6560
|
[k: string]: unknown;
|
|
6536
6561
|
}
|
|
6537
6562
|
/**
|
|
@@ -6575,37 +6600,6 @@ export interface CompositeCondition6 {
|
|
|
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
|
*
|
|
@@ -7032,6 +6995,37 @@ export interface CompositeCondition7 {
|
|
|
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,63 +8445,11 @@ export interface I18NProperty74 {
|
|
|
8451
8445
|
*
|
|
8452
8446
|
*/
|
|
8453
8447
|
export interface MacroPropertyPanel {
|
|
8454
|
-
controls?: (
|
|
8448
|
+
controls?: (ToggleGroup | ButtonControl | ControlGroup | TextControl)[];
|
|
8455
8449
|
cacheable?: boolean;
|
|
8456
8450
|
url: string;
|
|
8457
8451
|
[k: string]: unknown;
|
|
8458
8452
|
}
|
|
8459
|
-
/**
|
|
8460
|
-
*
|
|
8461
|
-
*
|
|
8462
|
-
* Defines a button which may appear in control extension points such as the property panel
|
|
8463
|
-
*
|
|
8464
|
-
* <p><b>Example</b></p>
|
|
8465
|
-
*
|
|
8466
|
-
*
|
|
8467
|
-
*
|
|
8468
|
-
*
|
|
8469
|
-
*
|
|
8470
|
-
* {
|
|
8471
|
-
* "type": "button",
|
|
8472
|
-
* "label": {
|
|
8473
|
-
* "value": "My Custom Control 0"
|
|
8474
|
-
* },
|
|
8475
|
-
* "key": "my-custom-control-0"
|
|
8476
|
-
* }
|
|
8477
|
-
*
|
|
8478
|
-
*
|
|
8479
|
-
*
|
|
8480
|
-
*/
|
|
8481
|
-
export interface ButtonControl {
|
|
8482
|
-
label: I18NProperty75;
|
|
8483
|
-
type: 'button' | 'BUTTON';
|
|
8484
|
-
key: string;
|
|
8485
|
-
[k: string]: unknown;
|
|
8486
|
-
}
|
|
8487
|
-
/**
|
|
8488
|
-
*
|
|
8489
|
-
*
|
|
8490
|
-
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8491
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8492
|
-
*
|
|
8493
|
-
* <h3>Example</h3>
|
|
8494
|
-
*
|
|
8495
|
-
*
|
|
8496
|
-
*
|
|
8497
|
-
*
|
|
8498
|
-
*
|
|
8499
|
-
* {
|
|
8500
|
-
* "value": "My text"
|
|
8501
|
-
* }
|
|
8502
|
-
*
|
|
8503
|
-
*
|
|
8504
|
-
*
|
|
8505
|
-
*/
|
|
8506
|
-
export interface I18NProperty75 {
|
|
8507
|
-
value: string;
|
|
8508
|
-
i18n?: string;
|
|
8509
|
-
[k: string]: unknown;
|
|
8510
|
-
}
|
|
8511
8453
|
/**
|
|
8512
8454
|
*
|
|
8513
8455
|
*
|
|
@@ -8578,11 +8520,63 @@ export interface ToggleGroup {
|
|
|
8578
8520
|
*/
|
|
8579
8521
|
export interface ToggleButtonControl {
|
|
8580
8522
|
macroParameterValue: string;
|
|
8581
|
-
label:
|
|
8523
|
+
label: I18NProperty75;
|
|
8582
8524
|
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
8583
8525
|
key: string;
|
|
8584
8526
|
[k: string]: unknown;
|
|
8585
8527
|
}
|
|
8528
|
+
/**
|
|
8529
|
+
*
|
|
8530
|
+
*
|
|
8531
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8532
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8533
|
+
*
|
|
8534
|
+
* <h3>Example</h3>
|
|
8535
|
+
*
|
|
8536
|
+
*
|
|
8537
|
+
*
|
|
8538
|
+
*
|
|
8539
|
+
*
|
|
8540
|
+
* {
|
|
8541
|
+
* "value": "My text"
|
|
8542
|
+
* }
|
|
8543
|
+
*
|
|
8544
|
+
*
|
|
8545
|
+
*
|
|
8546
|
+
*/
|
|
8547
|
+
export interface I18NProperty75 {
|
|
8548
|
+
value: string;
|
|
8549
|
+
i18n?: string;
|
|
8550
|
+
[k: string]: unknown;
|
|
8551
|
+
}
|
|
8552
|
+
/**
|
|
8553
|
+
*
|
|
8554
|
+
*
|
|
8555
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
8556
|
+
*
|
|
8557
|
+
* <p><b>Example</b></p>
|
|
8558
|
+
*
|
|
8559
|
+
*
|
|
8560
|
+
*
|
|
8561
|
+
*
|
|
8562
|
+
*
|
|
8563
|
+
* {
|
|
8564
|
+
* "type": "button",
|
|
8565
|
+
* "label": {
|
|
8566
|
+
* "value": "My Custom Control 0"
|
|
8567
|
+
* },
|
|
8568
|
+
* "key": "my-custom-control-0"
|
|
8569
|
+
* }
|
|
8570
|
+
*
|
|
8571
|
+
*
|
|
8572
|
+
*
|
|
8573
|
+
*/
|
|
8574
|
+
export interface ButtonControl {
|
|
8575
|
+
label: I18NProperty76;
|
|
8576
|
+
type: 'button' | 'BUTTON';
|
|
8577
|
+
key: string;
|
|
8578
|
+
[k: string]: unknown;
|
|
8579
|
+
}
|
|
8586
8580
|
/**
|
|
8587
8581
|
*
|
|
8588
8582
|
*
|
|
@@ -29696,7 +29690,7 @@ export interface I18NProperty83 {
|
|
|
29696
29690
|
*
|
|
29697
29691
|
*/
|
|
29698
29692
|
export interface MacroPropertyPanel1 {
|
|
29699
|
-
controls?: (ToggleGroup1 |
|
|
29693
|
+
controls?: (ToggleGroup1 | ControlGroup1 | TextControl1 | ButtonControl3)[];
|
|
29700
29694
|
cacheable?: boolean;
|
|
29701
29695
|
url: string;
|
|
29702
29696
|
[k: string]: unknown;
|
|
@@ -29800,34 +29794,6 @@ export interface I18NProperty84 {
|
|
|
29800
29794
|
i18n?: string;
|
|
29801
29795
|
[k: string]: unknown;
|
|
29802
29796
|
}
|
|
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
29797
|
/**
|
|
29832
29798
|
*
|
|
29833
29799
|
*
|
|
@@ -29921,6 +29887,34 @@ export interface I18NProperty85 {
|
|
|
29921
29887
|
i18n?: string;
|
|
29922
29888
|
[k: string]: unknown;
|
|
29923
29889
|
}
|
|
29890
|
+
/**
|
|
29891
|
+
*
|
|
29892
|
+
*
|
|
29893
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
29894
|
+
*
|
|
29895
|
+
* <p><b>Example</b></p>
|
|
29896
|
+
*
|
|
29897
|
+
*
|
|
29898
|
+
*
|
|
29899
|
+
*
|
|
29900
|
+
*
|
|
29901
|
+
* {
|
|
29902
|
+
* "type": "button",
|
|
29903
|
+
* "label": {
|
|
29904
|
+
* "value": "My Custom Control 0"
|
|
29905
|
+
* },
|
|
29906
|
+
* "key": "my-custom-control-0"
|
|
29907
|
+
* }
|
|
29908
|
+
*
|
|
29909
|
+
*
|
|
29910
|
+
*
|
|
29911
|
+
*/
|
|
29912
|
+
export interface TextControl1 {
|
|
29913
|
+
macroParameter: string;
|
|
29914
|
+
type: 'text' | 'TEXT';
|
|
29915
|
+
key: string;
|
|
29916
|
+
[k: string]: unknown;
|
|
29917
|
+
}
|
|
29924
29918
|
/**
|
|
29925
29919
|
*
|
|
29926
29920
|
*
|
|
@@ -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
|
*
|
|
@@ -51810,7 +51804,7 @@ export interface AuthProviderCustom {
|
|
|
51810
51804
|
bearerMethod: BearerMethodSchema;
|
|
51811
51805
|
clientId: string;
|
|
51812
51806
|
scopes?: string[];
|
|
51813
|
-
remotes
|
|
51807
|
+
remotes?: ModuleKeySchema[];
|
|
51814
51808
|
actions: {
|
|
51815
51809
|
authorization: AuthorizeActionDefinition;
|
|
51816
51810
|
exchange: ExchangeActionDefinition;
|