@forge/manifest 3.3.1-next.1 → 3.4.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 +22 -0
- package/out/schema/manifest-schema.json +161 -162
- package/out/schema/manifest.d.ts +172 -172
- package/out/scopes/shipyard-scopes.json +18 -0
- package/out/validators/providers-validator.d.ts +2 -1
- package/out/validators/providers-validator.d.ts.map +1 -1
- package/out/validators/providers-validator.js +13 -9
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -3764,7 +3764,7 @@ export interface Modules {
|
|
|
3764
3764
|
filter?: string;
|
|
3765
3765
|
excludeBody?: boolean;
|
|
3766
3766
|
event?: string;
|
|
3767
|
-
conditions?: (
|
|
3767
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3768
3768
|
propertyKeys?: string[];
|
|
3769
3769
|
url?: string;
|
|
3770
3770
|
key: ModuleKeySchema;
|
|
@@ -3774,7 +3774,7 @@ export interface Modules {
|
|
|
3774
3774
|
filter?: string;
|
|
3775
3775
|
excludeBody?: boolean;
|
|
3776
3776
|
event?: string;
|
|
3777
|
-
conditions?: (
|
|
3777
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3778
3778
|
propertyKeys?: string[];
|
|
3779
3779
|
url?: string;
|
|
3780
3780
|
key: ModuleKeySchema;
|
|
@@ -3817,7 +3817,7 @@ export interface Modules {
|
|
|
3817
3817
|
name?: I18NProperty55;
|
|
3818
3818
|
weight?: number;
|
|
3819
3819
|
location?: string;
|
|
3820
|
-
conditions?: (
|
|
3820
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3821
3821
|
params?: {
|
|
3822
3822
|
[k: string]: unknown;
|
|
3823
3823
|
};
|
|
@@ -3829,7 +3829,7 @@ export interface Modules {
|
|
|
3829
3829
|
name?: I18NProperty55;
|
|
3830
3830
|
weight?: number;
|
|
3831
3831
|
location?: string;
|
|
3832
|
-
conditions?: (
|
|
3832
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3833
3833
|
params?: {
|
|
3834
3834
|
[k: string]: unknown;
|
|
3835
3835
|
};
|
|
@@ -3882,7 +3882,7 @@ export interface Modules {
|
|
|
3882
3882
|
name?: I18NProperty59;
|
|
3883
3883
|
location?: string;
|
|
3884
3884
|
cacheable?: boolean;
|
|
3885
|
-
conditions?: (
|
|
3885
|
+
conditions?: (SingleCondition4 | CompositeCondition6)[];
|
|
3886
3886
|
key: ModuleKeySchema;
|
|
3887
3887
|
[k: string]: unknown;
|
|
3888
3888
|
},
|
|
@@ -3900,7 +3900,7 @@ export interface Modules {
|
|
|
3900
3900
|
name?: I18NProperty59;
|
|
3901
3901
|
location?: string;
|
|
3902
3902
|
cacheable?: boolean;
|
|
3903
|
-
conditions?: (
|
|
3903
|
+
conditions?: (SingleCondition4 | CompositeCondition6)[];
|
|
3904
3904
|
key: ModuleKeySchema;
|
|
3905
3905
|
[k: string]: unknown;
|
|
3906
3906
|
}[]
|
|
@@ -4186,7 +4186,7 @@ export interface Modules {
|
|
|
4186
4186
|
icon?: Icon18;
|
|
4187
4187
|
name?: I18NProperty91;
|
|
4188
4188
|
cacheable?: boolean;
|
|
4189
|
-
conditions?: (
|
|
4189
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
4190
4190
|
params?: {
|
|
4191
4191
|
[k: string]: unknown;
|
|
4192
4192
|
};
|
|
@@ -4202,7 +4202,7 @@ export interface Modules {
|
|
|
4202
4202
|
icon?: Icon18;
|
|
4203
4203
|
name?: I18NProperty91;
|
|
4204
4204
|
cacheable?: boolean;
|
|
4205
|
-
conditions?: (
|
|
4205
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
4206
4206
|
params?: {
|
|
4207
4207
|
[k: string]: unknown;
|
|
4208
4208
|
};
|
|
@@ -4421,7 +4421,7 @@ export interface I18NProperty1 {
|
|
|
4421
4421
|
*
|
|
4422
4422
|
*/
|
|
4423
4423
|
export interface CompositeCondition {
|
|
4424
|
-
conditions?: (
|
|
4424
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
4425
4425
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
4426
4426
|
[k: string]: unknown;
|
|
4427
4427
|
}
|
|
@@ -7319,6 +7319,37 @@ export interface I18NProperty59 {
|
|
|
7319
7319
|
i18n?: string;
|
|
7320
7320
|
[k: string]: unknown;
|
|
7321
7321
|
}
|
|
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
|
+
}
|
|
7322
7353
|
/**
|
|
7323
7354
|
*
|
|
7324
7355
|
*
|
|
@@ -7360,37 +7391,6 @@ export interface CompositeCondition6 {
|
|
|
7360
7391
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7361
7392
|
[k: string]: unknown;
|
|
7362
7393
|
}
|
|
7363
|
-
/**
|
|
7364
|
-
*
|
|
7365
|
-
*
|
|
7366
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7367
|
-
* [Conditions](../../conditions/) for more information.
|
|
7368
|
-
*
|
|
7369
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7370
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7371
|
-
*
|
|
7372
|
-
* <h3>Example</h3>
|
|
7373
|
-
*
|
|
7374
|
-
*
|
|
7375
|
-
*
|
|
7376
|
-
*
|
|
7377
|
-
*
|
|
7378
|
-
* {
|
|
7379
|
-
* "condition": "user_is_logged_in",
|
|
7380
|
-
* "invert": false
|
|
7381
|
-
* }
|
|
7382
|
-
*
|
|
7383
|
-
*
|
|
7384
|
-
*
|
|
7385
|
-
*/
|
|
7386
|
-
export interface SingleCondition4 {
|
|
7387
|
-
condition: string;
|
|
7388
|
-
invert?: boolean;
|
|
7389
|
-
params?: {
|
|
7390
|
-
[k: string]: unknown;
|
|
7391
|
-
};
|
|
7392
|
-
[k: string]: unknown;
|
|
7393
|
-
}
|
|
7394
7394
|
/**
|
|
7395
7395
|
*
|
|
7396
7396
|
*
|
|
@@ -7813,7 +7813,7 @@ export interface SingleCondition5 {
|
|
|
7813
7813
|
*
|
|
7814
7814
|
*/
|
|
7815
7815
|
export interface CompositeCondition7 {
|
|
7816
|
-
conditions?: (
|
|
7816
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
7817
7817
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7818
7818
|
[k: string]: unknown;
|
|
7819
7819
|
}
|
|
@@ -9236,7 +9236,7 @@ export interface I18NProperty74 {
|
|
|
9236
9236
|
*
|
|
9237
9237
|
*/
|
|
9238
9238
|
export interface MacroPropertyPanel {
|
|
9239
|
-
controls?: (
|
|
9239
|
+
controls?: (ControlGroup | ToggleGroup | TextControl | ButtonControl1)[];
|
|
9240
9240
|
cacheable?: boolean;
|
|
9241
9241
|
url: string;
|
|
9242
9242
|
[k: string]: unknown;
|
|
@@ -9244,7 +9244,7 @@ export interface MacroPropertyPanel {
|
|
|
9244
9244
|
/**
|
|
9245
9245
|
*
|
|
9246
9246
|
*
|
|
9247
|
-
* Defines a
|
|
9247
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
9248
9248
|
*
|
|
9249
9249
|
* <p><b>Example</b></p>
|
|
9250
9250
|
*
|
|
@@ -9254,24 +9254,21 @@ export interface MacroPropertyPanel {
|
|
|
9254
9254
|
*
|
|
9255
9255
|
* [
|
|
9256
9256
|
* {
|
|
9257
|
-
* "type": "
|
|
9258
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
9257
|
+
* "type": "group",
|
|
9259
9258
|
* "controls": [
|
|
9260
9259
|
* {
|
|
9261
|
-
* "type": "
|
|
9262
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
9260
|
+
* "type": "button",
|
|
9263
9261
|
* "label": {
|
|
9264
9262
|
* "value": "My Custom Control 0"
|
|
9265
9263
|
* },
|
|
9266
|
-
* "key": "my-custom-
|
|
9264
|
+
* "key": "my-custom-control-0"
|
|
9267
9265
|
* },
|
|
9268
9266
|
* {
|
|
9269
|
-
* "type": "
|
|
9270
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
9267
|
+
* "type": "button",
|
|
9271
9268
|
* "label": {
|
|
9272
9269
|
* "value": "My Custom Control 1"
|
|
9273
9270
|
* },
|
|
9274
|
-
* "key": "my-custom-
|
|
9271
|
+
* "key": "my-custom-control-1"
|
|
9275
9272
|
* }
|
|
9276
9273
|
* ]
|
|
9277
9274
|
* }
|
|
@@ -9280,16 +9277,15 @@ export interface MacroPropertyPanel {
|
|
|
9280
9277
|
*
|
|
9281
9278
|
*
|
|
9282
9279
|
*/
|
|
9283
|
-
export interface
|
|
9284
|
-
controls:
|
|
9285
|
-
|
|
9286
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
9280
|
+
export interface ControlGroup {
|
|
9281
|
+
controls: ButtonControl[];
|
|
9282
|
+
type: 'group' | 'GROUP';
|
|
9287
9283
|
[k: string]: unknown;
|
|
9288
9284
|
}
|
|
9289
9285
|
/**
|
|
9290
9286
|
*
|
|
9291
9287
|
*
|
|
9292
|
-
* Defines a
|
|
9288
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
9293
9289
|
*
|
|
9294
9290
|
* <p><b>Example</b></p>
|
|
9295
9291
|
*
|
|
@@ -9298,21 +9294,19 @@ export interface ToggleGroup {
|
|
|
9298
9294
|
*
|
|
9299
9295
|
*
|
|
9300
9296
|
* {
|
|
9301
|
-
* "type": "
|
|
9302
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
9297
|
+
* "type": "button",
|
|
9303
9298
|
* "label": {
|
|
9304
9299
|
* "value": "My Custom Control 0"
|
|
9305
9300
|
* },
|
|
9306
|
-
* "key": "my-custom-
|
|
9301
|
+
* "key": "my-custom-control-0"
|
|
9307
9302
|
* }
|
|
9308
9303
|
*
|
|
9309
9304
|
*
|
|
9310
9305
|
*
|
|
9311
9306
|
*/
|
|
9312
|
-
export interface
|
|
9313
|
-
macroParameterValue: string;
|
|
9307
|
+
export interface ButtonControl {
|
|
9314
9308
|
label: I18NProperty75;
|
|
9315
|
-
type: '
|
|
9309
|
+
type: 'button' | 'BUTTON';
|
|
9316
9310
|
key: string;
|
|
9317
9311
|
[k: string]: unknown;
|
|
9318
9312
|
}
|
|
@@ -9343,7 +9337,7 @@ export interface I18NProperty75 {
|
|
|
9343
9337
|
/**
|
|
9344
9338
|
*
|
|
9345
9339
|
*
|
|
9346
|
-
* Defines a
|
|
9340
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
9347
9341
|
*
|
|
9348
9342
|
* <p><b>Example</b></p>
|
|
9349
9343
|
*
|
|
@@ -9353,21 +9347,24 @@ export interface I18NProperty75 {
|
|
|
9353
9347
|
*
|
|
9354
9348
|
* [
|
|
9355
9349
|
* {
|
|
9356
|
-
* "type": "
|
|
9350
|
+
* "type": "togglegroup",
|
|
9351
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
9357
9352
|
* "controls": [
|
|
9358
9353
|
* {
|
|
9359
|
-
* "type": "
|
|
9354
|
+
* "type": "togglebutton",
|
|
9355
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
9360
9356
|
* "label": {
|
|
9361
9357
|
* "value": "My Custom Control 0"
|
|
9362
9358
|
* },
|
|
9363
|
-
* "key": "my-custom-
|
|
9359
|
+
* "key": "my-custom-toggle-button-0"
|
|
9364
9360
|
* },
|
|
9365
9361
|
* {
|
|
9366
|
-
* "type": "
|
|
9362
|
+
* "type": "togglebutton",
|
|
9363
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
9367
9364
|
* "label": {
|
|
9368
9365
|
* "value": "My Custom Control 1"
|
|
9369
9366
|
* },
|
|
9370
|
-
* "key": "my-custom-
|
|
9367
|
+
* "key": "my-custom-toggle-button-1"
|
|
9371
9368
|
* }
|
|
9372
9369
|
* ]
|
|
9373
9370
|
* }
|
|
@@ -9376,15 +9373,16 @@ export interface I18NProperty75 {
|
|
|
9376
9373
|
*
|
|
9377
9374
|
*
|
|
9378
9375
|
*/
|
|
9379
|
-
export interface
|
|
9380
|
-
controls:
|
|
9381
|
-
|
|
9376
|
+
export interface ToggleGroup {
|
|
9377
|
+
controls: ToggleButtonControl[];
|
|
9378
|
+
macroParameter: string;
|
|
9379
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
9382
9380
|
[k: string]: unknown;
|
|
9383
9381
|
}
|
|
9384
9382
|
/**
|
|
9385
9383
|
*
|
|
9386
9384
|
*
|
|
9387
|
-
* Defines a button which
|
|
9385
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
9388
9386
|
*
|
|
9389
9387
|
* <p><b>Example</b></p>
|
|
9390
9388
|
*
|
|
@@ -9393,19 +9391,21 @@ export interface ControlGroup {
|
|
|
9393
9391
|
*
|
|
9394
9392
|
*
|
|
9395
9393
|
* {
|
|
9396
|
-
* "type": "
|
|
9394
|
+
* "type": "togglebutton",
|
|
9395
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
9397
9396
|
* "label": {
|
|
9398
9397
|
* "value": "My Custom Control 0"
|
|
9399
9398
|
* },
|
|
9400
|
-
* "key": "my-custom-
|
|
9399
|
+
* "key": "my-custom-toggle-button-0"
|
|
9401
9400
|
* }
|
|
9402
9401
|
*
|
|
9403
9402
|
*
|
|
9404
9403
|
*
|
|
9405
9404
|
*/
|
|
9406
|
-
export interface
|
|
9405
|
+
export interface ToggleButtonControl {
|
|
9406
|
+
macroParameterValue: string;
|
|
9407
9407
|
label: I18NProperty76;
|
|
9408
|
-
type: '
|
|
9408
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
9409
9409
|
key: string;
|
|
9410
9410
|
[k: string]: unknown;
|
|
9411
9411
|
}
|
|
@@ -30481,7 +30481,7 @@ export interface I18NProperty83 {
|
|
|
30481
30481
|
*
|
|
30482
30482
|
*/
|
|
30483
30483
|
export interface MacroPropertyPanel1 {
|
|
30484
|
-
controls?: (
|
|
30484
|
+
controls?: (ToggleGroup1 | ButtonControl2 | ControlGroup1 | TextControl1)[];
|
|
30485
30485
|
cacheable?: boolean;
|
|
30486
30486
|
url: string;
|
|
30487
30487
|
[k: string]: unknown;
|
|
@@ -30489,7 +30489,7 @@ export interface MacroPropertyPanel1 {
|
|
|
30489
30489
|
/**
|
|
30490
30490
|
*
|
|
30491
30491
|
*
|
|
30492
|
-
* Defines a
|
|
30492
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
30493
30493
|
*
|
|
30494
30494
|
* <p><b>Example</b></p>
|
|
30495
30495
|
*
|
|
@@ -30497,86 +30497,92 @@ export interface MacroPropertyPanel1 {
|
|
|
30497
30497
|
*
|
|
30498
30498
|
*
|
|
30499
30499
|
*
|
|
30500
|
-
*
|
|
30501
|
-
*
|
|
30502
|
-
*
|
|
30503
|
-
* "
|
|
30504
|
-
*
|
|
30505
|
-
*
|
|
30506
|
-
*
|
|
30500
|
+
* [
|
|
30501
|
+
* {
|
|
30502
|
+
* "type": "togglegroup",
|
|
30503
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
30504
|
+
* "controls": [
|
|
30505
|
+
* {
|
|
30506
|
+
* "type": "togglebutton",
|
|
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
|
+
* ]
|
|
30507
30524
|
*
|
|
30508
30525
|
*
|
|
30509
30526
|
*
|
|
30510
30527
|
*/
|
|
30511
|
-
export interface
|
|
30512
|
-
|
|
30513
|
-
|
|
30514
|
-
|
|
30528
|
+
export interface ToggleGroup1 {
|
|
30529
|
+
controls: ToggleButtonControl1[];
|
|
30530
|
+
macroParameter: string;
|
|
30531
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
30515
30532
|
[k: string]: unknown;
|
|
30516
30533
|
}
|
|
30517
30534
|
/**
|
|
30518
30535
|
*
|
|
30519
30536
|
*
|
|
30520
|
-
*
|
|
30521
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
30537
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
30522
30538
|
*
|
|
30523
|
-
* <
|
|
30539
|
+
* <p><b>Example</b></p>
|
|
30524
30540
|
*
|
|
30525
30541
|
*
|
|
30526
30542
|
*
|
|
30527
30543
|
*
|
|
30528
30544
|
*
|
|
30529
30545
|
* {
|
|
30530
|
-
* "
|
|
30546
|
+
* "type": "togglebutton",
|
|
30547
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30548
|
+
* "label": {
|
|
30549
|
+
* "value": "My Custom Control 0"
|
|
30550
|
+
* },
|
|
30551
|
+
* "key": "my-custom-toggle-button-0"
|
|
30531
30552
|
* }
|
|
30532
30553
|
*
|
|
30533
30554
|
*
|
|
30534
30555
|
*
|
|
30535
30556
|
*/
|
|
30536
|
-
export interface
|
|
30537
|
-
|
|
30538
|
-
|
|
30557
|
+
export interface ToggleButtonControl1 {
|
|
30558
|
+
macroParameterValue: string;
|
|
30559
|
+
label: I18NProperty84;
|
|
30560
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
30561
|
+
key: string;
|
|
30539
30562
|
[k: string]: unknown;
|
|
30540
30563
|
}
|
|
30541
30564
|
/**
|
|
30542
30565
|
*
|
|
30543
30566
|
*
|
|
30544
|
-
*
|
|
30567
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
30568
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
30545
30569
|
*
|
|
30546
|
-
* <
|
|
30570
|
+
* <h3>Example</h3>
|
|
30547
30571
|
*
|
|
30548
30572
|
*
|
|
30549
30573
|
*
|
|
30550
30574
|
*
|
|
30551
30575
|
*
|
|
30552
|
-
*
|
|
30553
|
-
*
|
|
30554
|
-
*
|
|
30555
|
-
* "controls": [
|
|
30556
|
-
* {
|
|
30557
|
-
* "type": "button",
|
|
30558
|
-
* "label": {
|
|
30559
|
-
* "value": "My Custom Control 0"
|
|
30560
|
-
* },
|
|
30561
|
-
* "key": "my-custom-control-0"
|
|
30562
|
-
* },
|
|
30563
|
-
* {
|
|
30564
|
-
* "type": "button",
|
|
30565
|
-
* "label": {
|
|
30566
|
-
* "value": "My Custom Control 1"
|
|
30567
|
-
* },
|
|
30568
|
-
* "key": "my-custom-control-1"
|
|
30569
|
-
* }
|
|
30570
|
-
* ]
|
|
30571
|
-
* }
|
|
30572
|
-
* ]
|
|
30576
|
+
* {
|
|
30577
|
+
* "value": "My text"
|
|
30578
|
+
* }
|
|
30573
30579
|
*
|
|
30574
30580
|
*
|
|
30575
30581
|
*
|
|
30576
30582
|
*/
|
|
30577
|
-
export interface
|
|
30578
|
-
|
|
30579
|
-
|
|
30583
|
+
export interface I18NProperty84 {
|
|
30584
|
+
value: string;
|
|
30585
|
+
i18n?: string;
|
|
30580
30586
|
[k: string]: unknown;
|
|
30581
30587
|
}
|
|
30582
30588
|
/**
|
|
@@ -30601,7 +30607,7 @@ export interface ControlGroup1 {
|
|
|
30601
30607
|
*
|
|
30602
30608
|
*
|
|
30603
30609
|
*/
|
|
30604
|
-
export interface
|
|
30610
|
+
export interface ButtonControl2 {
|
|
30605
30611
|
label: I18NProperty85;
|
|
30606
30612
|
type: 'button' | 'BUTTON';
|
|
30607
30613
|
key: string;
|
|
@@ -30634,7 +30640,7 @@ export interface I18NProperty85 {
|
|
|
30634
30640
|
/**
|
|
30635
30641
|
*
|
|
30636
30642
|
*
|
|
30637
|
-
* Defines a
|
|
30643
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
30638
30644
|
*
|
|
30639
30645
|
* <p><b>Example</b></p>
|
|
30640
30646
|
*
|
|
@@ -30644,24 +30650,21 @@ export interface I18NProperty85 {
|
|
|
30644
30650
|
*
|
|
30645
30651
|
* [
|
|
30646
30652
|
* {
|
|
30647
|
-
* "type": "
|
|
30648
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
30653
|
+
* "type": "group",
|
|
30649
30654
|
* "controls": [
|
|
30650
30655
|
* {
|
|
30651
|
-
* "type": "
|
|
30652
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30656
|
+
* "type": "button",
|
|
30653
30657
|
* "label": {
|
|
30654
30658
|
* "value": "My Custom Control 0"
|
|
30655
30659
|
* },
|
|
30656
|
-
* "key": "my-custom-
|
|
30660
|
+
* "key": "my-custom-control-0"
|
|
30657
30661
|
* },
|
|
30658
30662
|
* {
|
|
30659
|
-
* "type": "
|
|
30660
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
30663
|
+
* "type": "button",
|
|
30661
30664
|
* "label": {
|
|
30662
30665
|
* "value": "My Custom Control 1"
|
|
30663
30666
|
* },
|
|
30664
|
-
* "key": "my-custom-
|
|
30667
|
+
* "key": "my-custom-control-1"
|
|
30665
30668
|
* }
|
|
30666
30669
|
* ]
|
|
30667
30670
|
* }
|
|
@@ -30670,16 +30673,15 @@ export interface I18NProperty85 {
|
|
|
30670
30673
|
*
|
|
30671
30674
|
*
|
|
30672
30675
|
*/
|
|
30673
|
-
export interface
|
|
30674
|
-
controls:
|
|
30675
|
-
|
|
30676
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
30676
|
+
export interface ControlGroup1 {
|
|
30677
|
+
controls: ButtonControl3[];
|
|
30678
|
+
type: 'group' | 'GROUP';
|
|
30677
30679
|
[k: string]: unknown;
|
|
30678
30680
|
}
|
|
30679
30681
|
/**
|
|
30680
30682
|
*
|
|
30681
30683
|
*
|
|
30682
|
-
* Defines a
|
|
30684
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
30683
30685
|
*
|
|
30684
30686
|
* <p><b>Example</b></p>
|
|
30685
30687
|
*
|
|
@@ -30688,21 +30690,19 @@ export interface ToggleGroup1 {
|
|
|
30688
30690
|
*
|
|
30689
30691
|
*
|
|
30690
30692
|
* {
|
|
30691
|
-
* "type": "
|
|
30692
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30693
|
+
* "type": "button",
|
|
30693
30694
|
* "label": {
|
|
30694
30695
|
* "value": "My Custom Control 0"
|
|
30695
30696
|
* },
|
|
30696
|
-
* "key": "my-custom-
|
|
30697
|
+
* "key": "my-custom-control-0"
|
|
30697
30698
|
* }
|
|
30698
30699
|
*
|
|
30699
30700
|
*
|
|
30700
30701
|
*
|
|
30701
30702
|
*/
|
|
30702
|
-
export interface
|
|
30703
|
-
macroParameterValue: string;
|
|
30703
|
+
export interface ButtonControl3 {
|
|
30704
30704
|
label: I18NProperty86;
|
|
30705
|
-
type: '
|
|
30705
|
+
type: 'button' | 'BUTTON';
|
|
30706
30706
|
key: string;
|
|
30707
30707
|
[k: string]: unknown;
|
|
30708
30708
|
}
|
|
@@ -51607,7 +51607,7 @@ export interface I18NProperty91 {
|
|
|
51607
51607
|
*
|
|
51608
51608
|
*/
|
|
51609
51609
|
export interface WebItemTarget2 {
|
|
51610
|
-
options?: InlineDialogOptions2 |
|
|
51610
|
+
options?: InlineDialogOptions2 | DialogModuleOptions2 | DialogOptions4;
|
|
51611
51611
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
51612
51612
|
[k: string]: unknown;
|
|
51613
51613
|
}
|
|
@@ -51648,6 +51648,33 @@ export interface InlineDialogOptions2 {
|
|
|
51648
51648
|
isRelativeToMouse?: boolean;
|
|
51649
51649
|
[k: string]: unknown;
|
|
51650
51650
|
}
|
|
51651
|
+
/**
|
|
51652
|
+
*
|
|
51653
|
+
*
|
|
51654
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
51655
|
+
*
|
|
51656
|
+
* <h3>Example</h3>
|
|
51657
|
+
*
|
|
51658
|
+
*
|
|
51659
|
+
*
|
|
51660
|
+
*
|
|
51661
|
+
*
|
|
51662
|
+
* {
|
|
51663
|
+
* "target": {
|
|
51664
|
+
* "type": "dialogmodule",
|
|
51665
|
+
* "options": {
|
|
51666
|
+
* "key": "dialog-module-key"
|
|
51667
|
+
* }
|
|
51668
|
+
* }
|
|
51669
|
+
* }
|
|
51670
|
+
*
|
|
51671
|
+
*
|
|
51672
|
+
*
|
|
51673
|
+
*/
|
|
51674
|
+
export interface DialogModuleOptions2 {
|
|
51675
|
+
key: string;
|
|
51676
|
+
[k: string]: unknown;
|
|
51677
|
+
}
|
|
51651
51678
|
/**
|
|
51652
51679
|
*
|
|
51653
51680
|
*
|
|
@@ -51746,33 +51773,6 @@ export interface I18NProperty92 {
|
|
|
51746
51773
|
i18n?: string;
|
|
51747
51774
|
[k: string]: unknown;
|
|
51748
51775
|
}
|
|
51749
|
-
/**
|
|
51750
|
-
*
|
|
51751
|
-
*
|
|
51752
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
51753
|
-
*
|
|
51754
|
-
* <h3>Example</h3>
|
|
51755
|
-
*
|
|
51756
|
-
*
|
|
51757
|
-
*
|
|
51758
|
-
*
|
|
51759
|
-
*
|
|
51760
|
-
* {
|
|
51761
|
-
* "target": {
|
|
51762
|
-
* "type": "dialogmodule",
|
|
51763
|
-
* "options": {
|
|
51764
|
-
* "key": "dialog-module-key"
|
|
51765
|
-
* }
|
|
51766
|
-
* }
|
|
51767
|
-
* }
|
|
51768
|
-
*
|
|
51769
|
-
*
|
|
51770
|
-
*
|
|
51771
|
-
*/
|
|
51772
|
-
export interface DialogModuleOptions2 {
|
|
51773
|
-
key: string;
|
|
51774
|
-
[k: string]: unknown;
|
|
51775
|
-
}
|
|
51776
51776
|
/**
|
|
51777
51777
|
*
|
|
51778
51778
|
*
|
|
@@ -52612,7 +52612,7 @@ export interface AuthProviderCustom {
|
|
|
52612
52612
|
actions: {
|
|
52613
52613
|
authorization: AuthorizeActionDefinition;
|
|
52614
52614
|
exchange: ExchangeActionDefinition;
|
|
52615
|
-
revokeToken
|
|
52615
|
+
revokeToken?: ActionDefinition;
|
|
52616
52616
|
retrieveProfile: DynamicProfileRetriever | StaticProfileRetriever;
|
|
52617
52617
|
};
|
|
52618
52618
|
}
|