@forge/manifest 2.5.0-next.2 → 2.5.0-next.6

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.
@@ -2473,7 +2473,7 @@ export interface Modules {
2473
2473
  fullPage?: boolean;
2474
2474
  cacheable?: boolean;
2475
2475
  location?: string;
2476
- conditions?: (SingleCondition | CompositeCondition)[];
2476
+ conditions?: (CompositeCondition | SingleCondition)[];
2477
2477
  params?: {
2478
2478
  [k: string]: unknown;
2479
2479
  };
@@ -2488,7 +2488,7 @@ export interface Modules {
2488
2488
  fullPage?: boolean;
2489
2489
  cacheable?: boolean;
2490
2490
  location?: string;
2491
- conditions?: (SingleCondition | CompositeCondition)[];
2491
+ conditions?: (CompositeCondition | SingleCondition)[];
2492
2492
  params?: {
2493
2493
  [k: string]: unknown;
2494
2494
  };
@@ -2506,7 +2506,7 @@ export interface Modules {
2506
2506
  location?: string;
2507
2507
  cacheable?: boolean;
2508
2508
  supportsNative?: boolean;
2509
- conditions?: (SingleCondition | CompositeCondition)[];
2509
+ conditions?: (CompositeCondition | SingleCondition)[];
2510
2510
  params?: {
2511
2511
  [k: string]: unknown;
2512
2512
  };
@@ -2522,7 +2522,7 @@ export interface Modules {
2522
2522
  location?: string;
2523
2523
  cacheable?: boolean;
2524
2524
  supportsNative?: boolean;
2525
- conditions?: (SingleCondition | CompositeCondition)[];
2525
+ conditions?: (CompositeCondition | SingleCondition)[];
2526
2526
  params?: {
2527
2527
  [k: string]: unknown;
2528
2528
  };
@@ -2536,7 +2536,7 @@ export interface Modules {
2536
2536
  filter?: string;
2537
2537
  excludeBody?: boolean;
2538
2538
  event?: string;
2539
- conditions?: (CompositeCondition | SingleCondition)[];
2539
+ conditions?: (SingleCondition | CompositeCondition)[];
2540
2540
  propertyKeys?: string[];
2541
2541
  url?: string;
2542
2542
  key: ModuleKeySchema;
@@ -2546,7 +2546,7 @@ export interface Modules {
2546
2546
  filter?: string;
2547
2547
  excludeBody?: boolean;
2548
2548
  event?: string;
2549
- conditions?: (CompositeCondition | SingleCondition)[];
2549
+ conditions?: (SingleCondition | CompositeCondition)[];
2550
2550
  propertyKeys?: string[];
2551
2551
  url?: string;
2552
2552
  key: ModuleKeySchema;
@@ -2560,7 +2560,7 @@ export interface Modules {
2560
2560
  weight?: number;
2561
2561
  cacheable?: boolean;
2562
2562
  location?: string;
2563
- conditions?: (CompositeCondition | SingleCondition)[];
2563
+ conditions?: (SingleCondition | CompositeCondition)[];
2564
2564
  params?: {
2565
2565
  [k: string]: unknown;
2566
2566
  };
@@ -2574,7 +2574,7 @@ export interface Modules {
2574
2574
  weight?: number;
2575
2575
  cacheable?: boolean;
2576
2576
  location?: string;
2577
- conditions?: (CompositeCondition | SingleCondition)[];
2577
+ conditions?: (SingleCondition | CompositeCondition)[];
2578
2578
  params?: {
2579
2579
  [k: string]: unknown;
2580
2580
  };
@@ -2616,7 +2616,7 @@ export interface Modules {
2616
2616
  weight?: number;
2617
2617
  cacheable?: boolean;
2618
2618
  location?: string;
2619
- conditions?: (CompositeCondition | SingleCondition)[];
2619
+ conditions?: (SingleCondition | CompositeCondition)[];
2620
2620
  params?: {
2621
2621
  [k: string]: unknown;
2622
2622
  };
@@ -2630,7 +2630,7 @@ export interface Modules {
2630
2630
  weight?: number;
2631
2631
  cacheable?: boolean;
2632
2632
  location?: string;
2633
- conditions?: (CompositeCondition | SingleCondition)[];
2633
+ conditions?: (SingleCondition | CompositeCondition)[];
2634
2634
  params?: {
2635
2635
  [k: string]: unknown;
2636
2636
  };
@@ -2685,7 +2685,7 @@ export interface Modules {
2685
2685
  fullPage?: boolean;
2686
2686
  cacheable?: boolean;
2687
2687
  location?: string;
2688
- conditions?: (SingleCondition | CompositeCondition)[];
2688
+ conditions?: (CompositeCondition | SingleCondition)[];
2689
2689
  params?: {
2690
2690
  [k: string]: unknown;
2691
2691
  };
@@ -2700,7 +2700,7 @@ export interface Modules {
2700
2700
  fullPage?: boolean;
2701
2701
  cacheable?: boolean;
2702
2702
  location?: string;
2703
- conditions?: (SingleCondition | CompositeCondition)[];
2703
+ conditions?: (CompositeCondition | SingleCondition)[];
2704
2704
  params?: {
2705
2705
  [k: string]: unknown;
2706
2706
  };
@@ -3222,7 +3222,7 @@ export interface SingleCondition {
3222
3222
  *
3223
3223
  */
3224
3224
  export interface CompositeCondition {
3225
- conditions?: (ManifestSchema | SingleCondition)[];
3225
+ conditions?: (SingleCondition | ManifestSchema)[];
3226
3226
  type?: 'and' | 'AND' | 'or' | 'OR';
3227
3227
  [k: string]: unknown;
3228
3228
  }
@@ -5899,7 +5899,7 @@ export interface Icon10 {
5899
5899
  *
5900
5900
  */
5901
5901
  export interface WebItemTarget1 {
5902
- options?: InlineDialogOptions1 | DialogOptions2 | DialogModuleOptions1;
5902
+ options?: InlineDialogOptions1 | DialogModuleOptions1 | DialogOptions2;
5903
5903
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
5904
5904
  [k: string]: unknown;
5905
5905
  }
@@ -5940,6 +5940,33 @@ export interface InlineDialogOptions1 {
5940
5940
  isRelativeToMouse?: boolean;
5941
5941
  [k: string]: unknown;
5942
5942
  }
5943
+ /**
5944
+ *
5945
+ *
5946
+ * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
5947
+ *
5948
+ * <h3>Example</h3>
5949
+ *
5950
+ *
5951
+ *
5952
+ *
5953
+ *
5954
+ * {
5955
+ * "target": {
5956
+ * "type": "dialogmodule",
5957
+ * "options": {
5958
+ * "key": "dialog-module-key"
5959
+ * }
5960
+ * }
5961
+ * }
5962
+ *
5963
+ *
5964
+ *
5965
+ */
5966
+ export interface DialogModuleOptions1 {
5967
+ key: string;
5968
+ [k: string]: unknown;
5969
+ }
5943
5970
  /**
5944
5971
  *
5945
5972
  *
@@ -6038,33 +6065,6 @@ export interface I18NProperty58 {
6038
6065
  i18n?: string;
6039
6066
  [k: string]: unknown;
6040
6067
  }
6041
- /**
6042
- *
6043
- *
6044
- * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
6045
- *
6046
- * <h3>Example</h3>
6047
- *
6048
- *
6049
- *
6050
- *
6051
- *
6052
- * {
6053
- * "target": {
6054
- * "type": "dialogmodule",
6055
- * "options": {
6056
- * "key": "dialog-module-key"
6057
- * }
6058
- * }
6059
- * }
6060
- *
6061
- *
6062
- *
6063
- */
6064
- export interface DialogModuleOptions1 {
6065
- key: string;
6066
- [k: string]: unknown;
6067
- }
6068
6068
  /**
6069
6069
  *
6070
6070
  *
@@ -6157,7 +6157,7 @@ export interface SingleCondition4 {
6157
6157
  *
6158
6158
  */
6159
6159
  export interface CompositeCondition6 {
6160
- conditions?: (ManifestSchema | SingleCondition)[];
6160
+ conditions?: (SingleCondition | ManifestSchema)[];
6161
6161
  type?: 'and' | 'AND' | 'or' | 'OR';
6162
6162
  [k: string]: unknown;
6163
6163
  }
@@ -6583,7 +6583,7 @@ export interface SingleCondition5 {
6583
6583
  *
6584
6584
  */
6585
6585
  export interface CompositeCondition7 {
6586
- conditions?: (ManifestSchema | SingleCondition)[];
6586
+ conditions?: (SingleCondition | ManifestSchema)[];
6587
6587
  type?: 'and' | 'AND' | 'or' | 'OR';
6588
6588
  [k: string]: unknown;
6589
6589
  }
@@ -8006,7 +8006,7 @@ export interface I18NProperty74 {
8006
8006
  *
8007
8007
  */
8008
8008
  export interface MacroPropertyPanel {
8009
- controls?: (TextControl | ControlGroup | ToggleGroup | ButtonControl1)[];
8009
+ controls?: (ButtonControl | ControlGroup | ToggleGroup | TextControl)[];
8010
8010
  cacheable?: boolean;
8011
8011
  url: string;
8012
8012
  [k: string]: unknown;
@@ -8014,7 +8014,7 @@ export interface MacroPropertyPanel {
8014
8014
  /**
8015
8015
  *
8016
8016
  *
8017
- * Defines a text field which may appear in control extension points such as the property panel
8017
+ * Defines a button which may appear in control extension points such as the property panel
8018
8018
  *
8019
8019
  * <p><b>Example</b></p>
8020
8020
  *
@@ -8033,12 +8033,36 @@ export interface MacroPropertyPanel {
8033
8033
  *
8034
8034
  *
8035
8035
  */
8036
- export interface TextControl {
8037
- macroParameter: string;
8038
- type: 'text' | 'TEXT';
8036
+ export interface ButtonControl {
8037
+ label: I18NProperty75;
8038
+ type: 'button' | 'BUTTON';
8039
8039
  key: string;
8040
8040
  [k: string]: unknown;
8041
8041
  }
8042
+ /**
8043
+ *
8044
+ *
8045
+ * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
8046
+ * and value in multiple places if you like, but identical keys must have identical values.
8047
+ *
8048
+ * <h3>Example</h3>
8049
+ *
8050
+ *
8051
+ *
8052
+ *
8053
+ *
8054
+ * {
8055
+ * "value": "My text"
8056
+ * }
8057
+ *
8058
+ *
8059
+ *
8060
+ */
8061
+ export interface I18NProperty75 {
8062
+ value: string;
8063
+ i18n?: string;
8064
+ [k: string]: unknown;
8065
+ }
8042
8066
  /**
8043
8067
  *
8044
8068
  *
@@ -8076,7 +8100,7 @@ export interface TextControl {
8076
8100
  *
8077
8101
  */
8078
8102
  export interface ControlGroup {
8079
- controls: ButtonControl[];
8103
+ controls: ButtonControl1[];
8080
8104
  type: 'group' | 'GROUP';
8081
8105
  [k: string]: unknown;
8082
8106
  }
@@ -8102,8 +8126,8 @@ export interface ControlGroup {
8102
8126
  *
8103
8127
  *
8104
8128
  */
8105
- export interface ButtonControl {
8106
- label: I18NProperty75;
8129
+ export interface ButtonControl1 {
8130
+ label: I18NProperty76;
8107
8131
  type: 'button' | 'BUTTON';
8108
8132
  key: string;
8109
8133
  [k: string]: unknown;
@@ -8127,7 +8151,7 @@ export interface ButtonControl {
8127
8151
  *
8128
8152
  *
8129
8153
  */
8130
- export interface I18NProperty75 {
8154
+ export interface I18NProperty76 {
8131
8155
  value: string;
8132
8156
  i18n?: string;
8133
8157
  [k: string]: unknown;
@@ -8202,7 +8226,7 @@ export interface ToggleGroup {
8202
8226
  */
8203
8227
  export interface ToggleButtonControl {
8204
8228
  macroParameterValue: string;
8205
- label: I18NProperty76;
8229
+ label: I18NProperty77;
8206
8230
  type: 'togglebutton' | 'TOGGLEBUTTON';
8207
8231
  key: string;
8208
8232
  [k: string]: unknown;
@@ -8226,7 +8250,7 @@ export interface ToggleButtonControl {
8226
8250
  *
8227
8251
  *
8228
8252
  */
8229
- export interface I18NProperty76 {
8253
+ export interface I18NProperty77 {
8230
8254
  value: string;
8231
8255
  i18n?: string;
8232
8256
  [k: string]: unknown;
@@ -8234,7 +8258,7 @@ export interface I18NProperty76 {
8234
8258
  /**
8235
8259
  *
8236
8260
  *
8237
- * Defines a button which may appear in control extension points such as the property panel
8261
+ * Defines a text field which may appear in control extension points such as the property panel
8238
8262
  *
8239
8263
  * <p><b>Example</b></p>
8240
8264
  *
@@ -8253,36 +8277,12 @@ export interface I18NProperty76 {
8253
8277
  *
8254
8278
  *
8255
8279
  */
8256
- export interface ButtonControl1 {
8257
- label: I18NProperty77;
8258
- type: 'button' | 'BUTTON';
8280
+ export interface TextControl {
8281
+ macroParameter: string;
8282
+ type: 'text' | 'TEXT';
8259
8283
  key: string;
8260
8284
  [k: string]: unknown;
8261
8285
  }
8262
- /**
8263
- *
8264
- *
8265
- * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
8266
- * and value in multiple places if you like, but identical keys must have identical values.
8267
- *
8268
- * <h3>Example</h3>
8269
- *
8270
- *
8271
- *
8272
- *
8273
- *
8274
- * {
8275
- * "value": "My text"
8276
- * }
8277
- *
8278
- *
8279
- *
8280
- */
8281
- export interface I18NProperty77 {
8282
- value: string;
8283
- i18n?: string;
8284
- [k: string]: unknown;
8285
- }
8286
8286
  /**
8287
8287
  *
8288
8288
  *
@@ -29251,7 +29251,7 @@ export interface I18NProperty83 {
29251
29251
  *
29252
29252
  */
29253
29253
  export interface MacroPropertyPanel1 {
29254
- controls?: (ToggleGroup1 | TextControl1 | ButtonControl2 | ControlGroup1)[];
29254
+ controls?: (ButtonControl2 | ControlGroup1 | TextControl1 | ToggleGroup1)[];
29255
29255
  cacheable?: boolean;
29256
29256
  url: string;
29257
29257
  [k: string]: unknown;
@@ -29259,52 +29259,7 @@ export interface MacroPropertyPanel1 {
29259
29259
  /**
29260
29260
  *
29261
29261
  *
29262
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
29263
- *
29264
- * <p><b>Example</b></p>
29265
- *
29266
- *
29267
- *
29268
- *
29269
- *
29270
- * [
29271
- * {
29272
- * "type": "togglegroup",
29273
- * "macroParameter": "toggleGroupMacroParameter",
29274
- * "controls": [
29275
- * {
29276
- * "type": "togglebutton",
29277
- * "macroParameterValue": "macroParameterValue 0",
29278
- * "label": {
29279
- * "value": "My Custom Control 0"
29280
- * },
29281
- * "key": "my-custom-toggle-button-0"
29282
- * },
29283
- * {
29284
- * "type": "togglebutton",
29285
- * "macroParameterValue": "macroParameterValue 1",
29286
- * "label": {
29287
- * "value": "My Custom Control 1"
29288
- * },
29289
- * "key": "my-custom-toggle-button-1"
29290
- * }
29291
- * ]
29292
- * }
29293
- * ]
29294
- *
29295
- *
29296
- *
29297
- */
29298
- export interface ToggleGroup1 {
29299
- controls: ToggleButtonControl1[];
29300
- macroParameter: string;
29301
- type: 'togglegroup' | 'TOGGLEGROUP';
29302
- [k: string]: unknown;
29303
- }
29304
- /**
29305
- *
29306
- *
29307
- * Defines a toggle button which appears inside a ToggleGroup
29262
+ * Defines a button which may appear in control extension points such as the property panel
29308
29263
  *
29309
29264
  * <p><b>Example</b></p>
29310
29265
  *
@@ -29313,21 +29268,19 @@ export interface ToggleGroup1 {
29313
29268
  *
29314
29269
  *
29315
29270
  * {
29316
- * "type": "togglebutton",
29317
- * "macroParameterValue": "macroParameterValue 0",
29271
+ * "type": "button",
29318
29272
  * "label": {
29319
29273
  * "value": "My Custom Control 0"
29320
29274
  * },
29321
- * "key": "my-custom-toggle-button-0"
29275
+ * "key": "my-custom-control-0"
29322
29276
  * }
29323
29277
  *
29324
29278
  *
29325
29279
  *
29326
29280
  */
29327
- export interface ToggleButtonControl1 {
29328
- macroParameterValue: string;
29281
+ export interface ButtonControl2 {
29329
29282
  label: I18NProperty84;
29330
- type: 'togglebutton' | 'TOGGLEBUTTON';
29283
+ type: 'button' | 'BUTTON';
29331
29284
  key: string;
29332
29285
  [k: string]: unknown;
29333
29286
  }
@@ -29358,7 +29311,7 @@ export interface I18NProperty84 {
29358
29311
  /**
29359
29312
  *
29360
29313
  *
29361
- * Defines a text field which may appear in control extension points such as the property panel
29314
+ * Defines a ControlGroup which may appear in control extension points such as the property panel
29362
29315
  *
29363
29316
  * <p><b>Example</b></p>
29364
29317
  *
@@ -29366,21 +29319,34 @@ export interface I18NProperty84 {
29366
29319
  *
29367
29320
  *
29368
29321
  *
29369
- * {
29370
- * "type": "button",
29371
- * "label": {
29372
- * "value": "My Custom Control 0"
29373
- * },
29374
- * "key": "my-custom-control-0"
29375
- * }
29322
+ * [
29323
+ * {
29324
+ * "type": "group",
29325
+ * "controls": [
29326
+ * {
29327
+ * "type": "button",
29328
+ * "label": {
29329
+ * "value": "My Custom Control 0"
29330
+ * },
29331
+ * "key": "my-custom-control-0"
29332
+ * },
29333
+ * {
29334
+ * "type": "button",
29335
+ * "label": {
29336
+ * "value": "My Custom Control 1"
29337
+ * },
29338
+ * "key": "my-custom-control-1"
29339
+ * }
29340
+ * ]
29341
+ * }
29342
+ * ]
29376
29343
  *
29377
29344
  *
29378
29345
  *
29379
29346
  */
29380
- export interface TextControl1 {
29381
- macroParameter: string;
29382
- type: 'text' | 'TEXT';
29383
- key: string;
29347
+ export interface ControlGroup1 {
29348
+ controls: ButtonControl3[];
29349
+ type: 'group' | 'GROUP';
29384
29350
  [k: string]: unknown;
29385
29351
  }
29386
29352
  /**
@@ -29405,7 +29371,7 @@ export interface TextControl1 {
29405
29371
  *
29406
29372
  *
29407
29373
  */
29408
- export interface ButtonControl2 {
29374
+ export interface ButtonControl3 {
29409
29375
  label: I18NProperty85;
29410
29376
  type: 'button' | 'BUTTON';
29411
29377
  key: string;
@@ -29438,7 +29404,35 @@ export interface I18NProperty85 {
29438
29404
  /**
29439
29405
  *
29440
29406
  *
29441
- * Defines a ControlGroup which may appear in control extension points such as the property panel
29407
+ * Defines a text field which may appear in control extension points such as the property panel
29408
+ *
29409
+ * <p><b>Example</b></p>
29410
+ *
29411
+ *
29412
+ *
29413
+ *
29414
+ *
29415
+ * {
29416
+ * "type": "button",
29417
+ * "label": {
29418
+ * "value": "My Custom Control 0"
29419
+ * },
29420
+ * "key": "my-custom-control-0"
29421
+ * }
29422
+ *
29423
+ *
29424
+ *
29425
+ */
29426
+ export interface TextControl1 {
29427
+ macroParameter: string;
29428
+ type: 'text' | 'TEXT';
29429
+ key: string;
29430
+ [k: string]: unknown;
29431
+ }
29432
+ /**
29433
+ *
29434
+ *
29435
+ * Defines a ToggleGroup which may appear in control extension points such as the property panel
29442
29436
  *
29443
29437
  * <p><b>Example</b></p>
29444
29438
  *
@@ -29448,21 +29442,24 @@ export interface I18NProperty85 {
29448
29442
  *
29449
29443
  * [
29450
29444
  * {
29451
- * "type": "group",
29445
+ * "type": "togglegroup",
29446
+ * "macroParameter": "toggleGroupMacroParameter",
29452
29447
  * "controls": [
29453
29448
  * {
29454
- * "type": "button",
29449
+ * "type": "togglebutton",
29450
+ * "macroParameterValue": "macroParameterValue 0",
29455
29451
  * "label": {
29456
29452
  * "value": "My Custom Control 0"
29457
29453
  * },
29458
- * "key": "my-custom-control-0"
29454
+ * "key": "my-custom-toggle-button-0"
29459
29455
  * },
29460
29456
  * {
29461
- * "type": "button",
29457
+ * "type": "togglebutton",
29458
+ * "macroParameterValue": "macroParameterValue 1",
29462
29459
  * "label": {
29463
29460
  * "value": "My Custom Control 1"
29464
29461
  * },
29465
- * "key": "my-custom-control-1"
29462
+ * "key": "my-custom-toggle-button-1"
29466
29463
  * }
29467
29464
  * ]
29468
29465
  * }
@@ -29471,15 +29468,16 @@ export interface I18NProperty85 {
29471
29468
  *
29472
29469
  *
29473
29470
  */
29474
- export interface ControlGroup1 {
29475
- controls: ButtonControl3[];
29476
- type: 'group' | 'GROUP';
29471
+ export interface ToggleGroup1 {
29472
+ controls: ToggleButtonControl1[];
29473
+ macroParameter: string;
29474
+ type: 'togglegroup' | 'TOGGLEGROUP';
29477
29475
  [k: string]: unknown;
29478
29476
  }
29479
29477
  /**
29480
29478
  *
29481
29479
  *
29482
- * Defines a button which may appear in control extension points such as the property panel
29480
+ * Defines a toggle button which appears inside a ToggleGroup
29483
29481
  *
29484
29482
  * <p><b>Example</b></p>
29485
29483
  *
@@ -29488,19 +29486,21 @@ export interface ControlGroup1 {
29488
29486
  *
29489
29487
  *
29490
29488
  * {
29491
- * "type": "button",
29489
+ * "type": "togglebutton",
29490
+ * "macroParameterValue": "macroParameterValue 0",
29492
29491
  * "label": {
29493
29492
  * "value": "My Custom Control 0"
29494
29493
  * },
29495
- * "key": "my-custom-control-0"
29494
+ * "key": "my-custom-toggle-button-0"
29496
29495
  * }
29497
29496
  *
29498
29497
  *
29499
29498
  *
29500
29499
  */
29501
- export interface ButtonControl3 {
29500
+ export interface ToggleButtonControl1 {
29501
+ macroParameterValue: string;
29502
29502
  label: I18NProperty86;
29503
- type: 'button' | 'BUTTON';
29503
+ type: 'togglebutton' | 'TOGGLEBUTTON';
29504
29504
  key: string;
29505
29505
  [k: string]: unknown;
29506
29506
  }
@@ -50377,7 +50377,7 @@ export interface I18NProperty91 {
50377
50377
  *
50378
50378
  */
50379
50379
  export interface WebItemTarget2 {
50380
- options?: InlineDialogOptions2 | DialogModuleOptions2 | DialogOptions4;
50380
+ options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
50381
50381
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
50382
50382
  [k: string]: unknown;
50383
50383
  }
@@ -50418,33 +50418,6 @@ export interface InlineDialogOptions2 {
50418
50418
  isRelativeToMouse?: boolean;
50419
50419
  [k: string]: unknown;
50420
50420
  }
50421
- /**
50422
- *
50423
- *
50424
- * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
50425
- *
50426
- * <h3>Example</h3>
50427
- *
50428
- *
50429
- *
50430
- *
50431
- *
50432
- * {
50433
- * "target": {
50434
- * "type": "dialogmodule",
50435
- * "options": {
50436
- * "key": "dialog-module-key"
50437
- * }
50438
- * }
50439
- * }
50440
- *
50441
- *
50442
- *
50443
- */
50444
- export interface DialogModuleOptions2 {
50445
- key: string;
50446
- [k: string]: unknown;
50447
- }
50448
50421
  /**
50449
50422
  *
50450
50423
  *
@@ -50543,6 +50516,33 @@ export interface I18NProperty92 {
50543
50516
  i18n?: string;
50544
50517
  [k: string]: unknown;
50545
50518
  }
50519
+ /**
50520
+ *
50521
+ *
50522
+ * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
50523
+ *
50524
+ * <h3>Example</h3>
50525
+ *
50526
+ *
50527
+ *
50528
+ *
50529
+ *
50530
+ * {
50531
+ * "target": {
50532
+ * "type": "dialogmodule",
50533
+ * "options": {
50534
+ * "key": "dialog-module-key"
50535
+ * }
50536
+ * }
50537
+ * }
50538
+ *
50539
+ *
50540
+ *
50541
+ */
50542
+ export interface DialogModuleOptions2 {
50543
+ key: string;
50544
+ [k: string]: unknown;
50545
+ }
50546
50546
  /**
50547
50547
  *
50548
50548
  *