@forge/manifest 3.1.1-next.1 → 3.2.0-next.5

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.
@@ -115,6 +115,15 @@ export interface App {
115
115
  runtime?: Runtime;
116
116
  licensing?: Licensing;
117
117
  connect?: Connect;
118
+ /**
119
+ * Options related to hosted storage
120
+ */
121
+ storage?: {
122
+ /**
123
+ * Labels to classify the type of data stored
124
+ */
125
+ classifications: ['ugc' | 'pii' | 'other', ...('ugc' | 'pii' | 'other')[]];
126
+ };
118
127
  }
119
128
  /**
120
129
  * Options related to the Forge Javascript runtime.
@@ -3217,7 +3226,7 @@ export interface Modules {
3217
3226
  name?: I18NProperty59;
3218
3227
  location?: string;
3219
3228
  cacheable?: boolean;
3220
- conditions?: (CompositeCondition6 | SingleCondition4)[];
3229
+ conditions?: (SingleCondition4 | CompositeCondition6)[];
3221
3230
  key: ModuleKeySchema;
3222
3231
  [k: string]: unknown;
3223
3232
  },
@@ -3235,7 +3244,7 @@ export interface Modules {
3235
3244
  name?: I18NProperty59;
3236
3245
  location?: string;
3237
3246
  cacheable?: boolean;
3238
- conditions?: (CompositeCondition6 | SingleCondition4)[];
3247
+ conditions?: (SingleCondition4 | CompositeCondition6)[];
3239
3248
  key: ModuleKeySchema;
3240
3249
  [k: string]: unknown;
3241
3250
  }[]
@@ -3756,7 +3765,7 @@ export interface I18NProperty1 {
3756
3765
  *
3757
3766
  */
3758
3767
  export interface CompositeCondition {
3759
- conditions?: (SingleCondition | ManifestSchema)[];
3768
+ conditions?: (ManifestSchema | SingleCondition)[];
3760
3769
  type?: 'and' | 'AND' | 'or' | 'OR';
3761
3770
  [k: string]: unknown;
3762
3771
  }
@@ -6464,10 +6473,47 @@ export interface Icon10 {
6464
6473
  *
6465
6474
  */
6466
6475
  export interface WebItemTarget1 {
6467
- options?: DialogOptions2 | InlineDialogOptions1 | DialogModuleOptions1;
6476
+ options?: InlineDialogOptions1 | DialogOptions2 | DialogModuleOptions1;
6468
6477
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
6469
6478
  [k: string]: unknown;
6470
6479
  }
6480
+ /**
6481
+ *
6482
+ *
6483
+ * Options for an inline dialog target
6484
+ *
6485
+ * <h3>Example</h3>
6486
+ *
6487
+ *
6488
+ *
6489
+ *
6490
+ *
6491
+ * {
6492
+ * "target": {
6493
+ * "type": "inlinedialog",
6494
+ * "options": {
6495
+ * "onHover": true,
6496
+ * "offsetX": "30px",
6497
+ * "offsetY": "20px"
6498
+ * }
6499
+ * }
6500
+ * }
6501
+ *
6502
+ *
6503
+ *
6504
+ */
6505
+ export interface InlineDialogOptions1 {
6506
+ offsetX?: string;
6507
+ offsetY?: string;
6508
+ width?: string;
6509
+ onTop?: boolean;
6510
+ showDelay?: number;
6511
+ closeOthers?: boolean;
6512
+ persistent?: boolean;
6513
+ onHover?: boolean;
6514
+ isRelativeToMouse?: boolean;
6515
+ [k: string]: unknown;
6516
+ }
6471
6517
  /**
6472
6518
  *
6473
6519
  *
@@ -6569,7 +6615,7 @@ export interface I18NProperty58 {
6569
6615
  /**
6570
6616
  *
6571
6617
  *
6572
- * Options for an inline dialog target
6618
+ * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
6573
6619
  *
6574
6620
  * <h3>Example</h3>
6575
6621
  *
@@ -6579,11 +6625,9 @@ export interface I18NProperty58 {
6579
6625
  *
6580
6626
  * {
6581
6627
  * "target": {
6582
- * "type": "inlinedialog",
6628
+ * "type": "dialogmodule",
6583
6629
  * "options": {
6584
- * "onHover": true,
6585
- * "offsetX": "30px",
6586
- * "offsetY": "20px"
6630
+ * "key": "dialog-module-key"
6587
6631
  * }
6588
6632
  * }
6589
6633
  * }
@@ -6591,22 +6635,15 @@ export interface I18NProperty58 {
6591
6635
  *
6592
6636
  *
6593
6637
  */
6594
- export interface InlineDialogOptions1 {
6595
- offsetX?: string;
6596
- offsetY?: string;
6597
- width?: string;
6598
- onTop?: boolean;
6599
- showDelay?: number;
6600
- closeOthers?: boolean;
6601
- persistent?: boolean;
6602
- onHover?: boolean;
6603
- isRelativeToMouse?: boolean;
6638
+ export interface DialogModuleOptions1 {
6639
+ key: string;
6604
6640
  [k: string]: unknown;
6605
6641
  }
6606
6642
  /**
6607
6643
  *
6608
6644
  *
6609
- * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
6645
+ * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
6646
+ * and value in multiple places if you like, but identical keys must have identical values.
6610
6647
  *
6611
6648
  * <h3>Example</h3>
6612
6649
  *
@@ -6615,26 +6652,25 @@ export interface InlineDialogOptions1 {
6615
6652
  *
6616
6653
  *
6617
6654
  * {
6618
- * "target": {
6619
- * "type": "dialogmodule",
6620
- * "options": {
6621
- * "key": "dialog-module-key"
6622
- * }
6623
- * }
6655
+ * "value": "My text"
6624
6656
  * }
6625
6657
  *
6626
6658
  *
6627
6659
  *
6628
6660
  */
6629
- export interface DialogModuleOptions1 {
6630
- key: string;
6661
+ export interface I18NProperty59 {
6662
+ value: string;
6663
+ i18n?: string;
6631
6664
  [k: string]: unknown;
6632
6665
  }
6633
6666
  /**
6634
6667
  *
6635
6668
  *
6636
- * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
6637
- * and value in multiple places if you like, but identical keys must have identical values.
6669
+ * Single Conditions are either provided by the host application. See the complete documentation of
6670
+ * [Conditions](../../conditions/) for more information.
6671
+ *
6672
+ * To invert a condition, add the attribute ``invert="true"`` to the condition element.
6673
+ * This is useful where you want to show the section if a certain condition is not satisfied.
6638
6674
  *
6639
6675
  * <h3>Example</h3>
6640
6676
  *
@@ -6643,15 +6679,19 @@ export interface DialogModuleOptions1 {
6643
6679
  *
6644
6680
  *
6645
6681
  * {
6646
- * "value": "My text"
6682
+ * "condition": "user_is_logged_in",
6683
+ * "invert": false
6647
6684
  * }
6648
6685
  *
6649
6686
  *
6650
6687
  *
6651
6688
  */
6652
- export interface I18NProperty59 {
6653
- value: string;
6654
- i18n?: string;
6689
+ export interface SingleCondition4 {
6690
+ condition: string;
6691
+ invert?: boolean;
6692
+ params?: {
6693
+ [k: string]: unknown;
6694
+ };
6655
6695
  [k: string]: unknown;
6656
6696
  }
6657
6697
  /**
@@ -6691,41 +6731,10 @@ export interface I18NProperty59 {
6691
6731
  *
6692
6732
  */
6693
6733
  export interface CompositeCondition6 {
6694
- conditions?: (ManifestSchema | SingleCondition)[];
6734
+ conditions?: (SingleCondition | ManifestSchema)[];
6695
6735
  type?: 'and' | 'AND' | 'or' | 'OR';
6696
6736
  [k: string]: unknown;
6697
6737
  }
6698
- /**
6699
- *
6700
- *
6701
- * Single Conditions are either provided by the host application. See the complete documentation of
6702
- * [Conditions](../../conditions/) for more information.
6703
- *
6704
- * To invert a condition, add the attribute ``invert="true"`` to the condition element.
6705
- * This is useful where you want to show the section if a certain condition is not satisfied.
6706
- *
6707
- * <h3>Example</h3>
6708
- *
6709
- *
6710
- *
6711
- *
6712
- *
6713
- * {
6714
- * "condition": "user_is_logged_in",
6715
- * "invert": false
6716
- * }
6717
- *
6718
- *
6719
- *
6720
- */
6721
- export interface SingleCondition4 {
6722
- condition: string;
6723
- invert?: boolean;
6724
- params?: {
6725
- [k: string]: unknown;
6726
- };
6727
- [k: string]: unknown;
6728
- }
6729
6738
  /**
6730
6739
  *
6731
6740
  *
@@ -7148,7 +7157,7 @@ export interface SingleCondition5 {
7148
7157
  *
7149
7158
  */
7150
7159
  export interface CompositeCondition7 {
7151
- conditions?: (SingleCondition | ManifestSchema)[];
7160
+ conditions?: (ManifestSchema | SingleCondition)[];
7152
7161
  type?: 'and' | 'AND' | 'or' | 'OR';
7153
7162
  [k: string]: unknown;
7154
7163
  }
@@ -8571,11 +8580,39 @@ export interface I18NProperty74 {
8571
8580
  *
8572
8581
  */
8573
8582
  export interface MacroPropertyPanel {
8574
- controls?: (ControlGroup | TextControl | ButtonControl1 | ToggleGroup)[];
8583
+ controls?: (TextControl | ControlGroup | ToggleGroup | ButtonControl1)[];
8575
8584
  cacheable?: boolean;
8576
8585
  url: string;
8577
8586
  [k: string]: unknown;
8578
8587
  }
8588
+ /**
8589
+ *
8590
+ *
8591
+ * Defines a text field which may appear in control extension points such as the property panel
8592
+ *
8593
+ * <p><b>Example</b></p>
8594
+ *
8595
+ *
8596
+ *
8597
+ *
8598
+ *
8599
+ * {
8600
+ * "type": "button",
8601
+ * "label": {
8602
+ * "value": "My Custom Control 0"
8603
+ * },
8604
+ * "key": "my-custom-control-0"
8605
+ * }
8606
+ *
8607
+ *
8608
+ *
8609
+ */
8610
+ export interface TextControl {
8611
+ macroParameter: string;
8612
+ type: 'text' | 'TEXT';
8613
+ key: string;
8614
+ [k: string]: unknown;
8615
+ }
8579
8616
  /**
8580
8617
  *
8581
8618
  *
@@ -8672,7 +8709,7 @@ export interface I18NProperty75 {
8672
8709
  /**
8673
8710
  *
8674
8711
  *
8675
- * Defines a text field which may appear in control extension points such as the property panel
8712
+ * Defines a ToggleGroup which may appear in control extension points such as the property panel
8676
8713
  *
8677
8714
  * <p><b>Example</b></p>
8678
8715
  *
@@ -8680,27 +8717,44 @@ export interface I18NProperty75 {
8680
8717
  *
8681
8718
  *
8682
8719
  *
8683
- * {
8684
- * "type": "button",
8685
- * "label": {
8686
- * "value": "My Custom Control 0"
8687
- * },
8688
- * "key": "my-custom-control-0"
8689
- * }
8720
+ * [
8721
+ * {
8722
+ * "type": "togglegroup",
8723
+ * "macroParameter": "toggleGroupMacroParameter",
8724
+ * "controls": [
8725
+ * {
8726
+ * "type": "togglebutton",
8727
+ * "macroParameterValue": "macroParameterValue 0",
8728
+ * "label": {
8729
+ * "value": "My Custom Control 0"
8730
+ * },
8731
+ * "key": "my-custom-toggle-button-0"
8732
+ * },
8733
+ * {
8734
+ * "type": "togglebutton",
8735
+ * "macroParameterValue": "macroParameterValue 1",
8736
+ * "label": {
8737
+ * "value": "My Custom Control 1"
8738
+ * },
8739
+ * "key": "my-custom-toggle-button-1"
8740
+ * }
8741
+ * ]
8742
+ * }
8743
+ * ]
8690
8744
  *
8691
8745
  *
8692
8746
  *
8693
8747
  */
8694
- export interface TextControl {
8748
+ export interface ToggleGroup {
8749
+ controls: ToggleButtonControl[];
8695
8750
  macroParameter: string;
8696
- type: 'text' | 'TEXT';
8697
- key: string;
8751
+ type: 'togglegroup' | 'TOGGLEGROUP';
8698
8752
  [k: string]: unknown;
8699
8753
  }
8700
8754
  /**
8701
8755
  *
8702
8756
  *
8703
- * Defines a button which may appear in control extension points such as the property panel
8757
+ * Defines a toggle button which appears inside a ToggleGroup
8704
8758
  *
8705
8759
  * <p><b>Example</b></p>
8706
8760
  *
@@ -8709,19 +8763,21 @@ export interface TextControl {
8709
8763
  *
8710
8764
  *
8711
8765
  * {
8712
- * "type": "button",
8766
+ * "type": "togglebutton",
8767
+ * "macroParameterValue": "macroParameterValue 0",
8713
8768
  * "label": {
8714
8769
  * "value": "My Custom Control 0"
8715
8770
  * },
8716
- * "key": "my-custom-control-0"
8771
+ * "key": "my-custom-toggle-button-0"
8717
8772
  * }
8718
8773
  *
8719
8774
  *
8720
8775
  *
8721
8776
  */
8722
- export interface ButtonControl1 {
8777
+ export interface ToggleButtonControl {
8778
+ macroParameterValue: string;
8723
8779
  label: I18NProperty76;
8724
- type: 'button' | 'BUTTON';
8780
+ type: 'togglebutton' | 'TOGGLEBUTTON';
8725
8781
  key: string;
8726
8782
  [k: string]: unknown;
8727
8783
  }
@@ -8752,52 +8808,7 @@ export interface I18NProperty76 {
8752
8808
  /**
8753
8809
  *
8754
8810
  *
8755
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
8756
- *
8757
- * <p><b>Example</b></p>
8758
- *
8759
- *
8760
- *
8761
- *
8762
- *
8763
- * [
8764
- * {
8765
- * "type": "togglegroup",
8766
- * "macroParameter": "toggleGroupMacroParameter",
8767
- * "controls": [
8768
- * {
8769
- * "type": "togglebutton",
8770
- * "macroParameterValue": "macroParameterValue 0",
8771
- * "label": {
8772
- * "value": "My Custom Control 0"
8773
- * },
8774
- * "key": "my-custom-toggle-button-0"
8775
- * },
8776
- * {
8777
- * "type": "togglebutton",
8778
- * "macroParameterValue": "macroParameterValue 1",
8779
- * "label": {
8780
- * "value": "My Custom Control 1"
8781
- * },
8782
- * "key": "my-custom-toggle-button-1"
8783
- * }
8784
- * ]
8785
- * }
8786
- * ]
8787
- *
8788
- *
8789
- *
8790
- */
8791
- export interface ToggleGroup {
8792
- controls: ToggleButtonControl[];
8793
- macroParameter: string;
8794
- type: 'togglegroup' | 'TOGGLEGROUP';
8795
- [k: string]: unknown;
8796
- }
8797
- /**
8798
- *
8799
- *
8800
- * Defines a toggle button which appears inside a ToggleGroup
8811
+ * Defines a button which may appear in control extension points such as the property panel
8801
8812
  *
8802
8813
  * <p><b>Example</b></p>
8803
8814
  *
@@ -8806,21 +8817,19 @@ export interface ToggleGroup {
8806
8817
  *
8807
8818
  *
8808
8819
  * {
8809
- * "type": "togglebutton",
8810
- * "macroParameterValue": "macroParameterValue 0",
8820
+ * "type": "button",
8811
8821
  * "label": {
8812
8822
  * "value": "My Custom Control 0"
8813
8823
  * },
8814
- * "key": "my-custom-toggle-button-0"
8824
+ * "key": "my-custom-control-0"
8815
8825
  * }
8816
8826
  *
8817
8827
  *
8818
8828
  *
8819
8829
  */
8820
- export interface ToggleButtonControl {
8821
- macroParameterValue: string;
8830
+ export interface ButtonControl1 {
8822
8831
  label: I18NProperty77;
8823
- type: 'togglebutton' | 'TOGGLEBUTTON';
8832
+ type: 'button' | 'BUTTON';
8824
8833
  key: string;
8825
8834
  [k: string]: unknown;
8826
8835
  }
@@ -29770,57 +29779,184 @@ export interface Icon17 {
29770
29779
  *
29771
29780
  *
29772
29781
  */
29773
- export interface I18NProperty83 {
29782
+ export interface I18NProperty83 {
29783
+ value: string;
29784
+ i18n?: string;
29785
+ [k: string]: unknown;
29786
+ }
29787
+ /**
29788
+ *
29789
+ *
29790
+ * Defining a Macro Property panel allows you to add a hidden iframe to your macro's
29791
+ * property panel. The iframe is loaded as soon as the property panel is opened.
29792
+ *
29793
+ * In order to persist custom data using your property panel, use the Javascript
29794
+ * <a href="../../jsapi/confluence/">Confluence API</a>.
29795
+ * For example:
29796
+ *
29797
+ * AP.require(["confluence"], function (confluence) {
29798
+ * var macroParams = {
29799
+ * myParameter: value
29800
+ * };
29801
+ * confluence.saveMacro(macroParams);
29802
+ * });
29803
+ *
29804
+ * In order to retrieve the custom data again when the property panel is opened, use `confluence.getMacroData` (see
29805
+ * <a href="../../jsapi/confluence/">Confluence API</a>):
29806
+ *
29807
+ * AP.require("confluence", function (confluence) {
29808
+ * var macroData = confluence.getMacroData(function(macroParams) {
29809
+ * doSomethingWith(macroParams.myParameter);
29810
+ * });
29811
+ * });
29812
+ *
29813
+ * Dialogs may also be created. Use `dialog.create` (see
29814
+ * <a href="../../jsapi/dialog/">Dialog API</a>):
29815
+ *
29816
+ * AP.require('dialog', function(dialog) {
29817
+ * dialog.create({
29818
+ * key: 'my-module-key',
29819
+ * width: '500px',
29820
+ * height: '200px',
29821
+ * chrome: true
29822
+ * }).on("close", callbackFunc);
29823
+ * });
29824
+ *
29825
+ *
29826
+ */
29827
+ export interface MacroPropertyPanel1 {
29828
+ controls?: (TextControl1 | ToggleGroup1 | ControlGroup1 | ButtonControl3)[];
29829
+ cacheable?: boolean;
29830
+ url: string;
29831
+ [k: string]: unknown;
29832
+ }
29833
+ /**
29834
+ *
29835
+ *
29836
+ * Defines a text field which may appear in control extension points such as the property panel
29837
+ *
29838
+ * <p><b>Example</b></p>
29839
+ *
29840
+ *
29841
+ *
29842
+ *
29843
+ *
29844
+ * {
29845
+ * "type": "button",
29846
+ * "label": {
29847
+ * "value": "My Custom Control 0"
29848
+ * },
29849
+ * "key": "my-custom-control-0"
29850
+ * }
29851
+ *
29852
+ *
29853
+ *
29854
+ */
29855
+ export interface TextControl1 {
29856
+ macroParameter: string;
29857
+ type: 'text' | 'TEXT';
29858
+ key: string;
29859
+ [k: string]: unknown;
29860
+ }
29861
+ /**
29862
+ *
29863
+ *
29864
+ * Defines a ToggleGroup which may appear in control extension points such as the property panel
29865
+ *
29866
+ * <p><b>Example</b></p>
29867
+ *
29868
+ *
29869
+ *
29870
+ *
29871
+ *
29872
+ * [
29873
+ * {
29874
+ * "type": "togglegroup",
29875
+ * "macroParameter": "toggleGroupMacroParameter",
29876
+ * "controls": [
29877
+ * {
29878
+ * "type": "togglebutton",
29879
+ * "macroParameterValue": "macroParameterValue 0",
29880
+ * "label": {
29881
+ * "value": "My Custom Control 0"
29882
+ * },
29883
+ * "key": "my-custom-toggle-button-0"
29884
+ * },
29885
+ * {
29886
+ * "type": "togglebutton",
29887
+ * "macroParameterValue": "macroParameterValue 1",
29888
+ * "label": {
29889
+ * "value": "My Custom Control 1"
29890
+ * },
29891
+ * "key": "my-custom-toggle-button-1"
29892
+ * }
29893
+ * ]
29894
+ * }
29895
+ * ]
29896
+ *
29897
+ *
29898
+ *
29899
+ */
29900
+ export interface ToggleGroup1 {
29901
+ controls: ToggleButtonControl1[];
29902
+ macroParameter: string;
29903
+ type: 'togglegroup' | 'TOGGLEGROUP';
29904
+ [k: string]: unknown;
29905
+ }
29906
+ /**
29907
+ *
29908
+ *
29909
+ * Defines a toggle button which appears inside a ToggleGroup
29910
+ *
29911
+ * <p><b>Example</b></p>
29912
+ *
29913
+ *
29914
+ *
29915
+ *
29916
+ *
29917
+ * {
29918
+ * "type": "togglebutton",
29919
+ * "macroParameterValue": "macroParameterValue 0",
29920
+ * "label": {
29921
+ * "value": "My Custom Control 0"
29922
+ * },
29923
+ * "key": "my-custom-toggle-button-0"
29924
+ * }
29925
+ *
29926
+ *
29927
+ *
29928
+ */
29929
+ export interface ToggleButtonControl1 {
29930
+ macroParameterValue: string;
29931
+ label: I18NProperty84;
29932
+ type: 'togglebutton' | 'TOGGLEBUTTON';
29933
+ key: string;
29934
+ [k: string]: unknown;
29935
+ }
29936
+ /**
29937
+ *
29938
+ *
29939
+ * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
29940
+ * and value in multiple places if you like, but identical keys must have identical values.
29941
+ *
29942
+ * <h3>Example</h3>
29943
+ *
29944
+ *
29945
+ *
29946
+ *
29947
+ *
29948
+ * {
29949
+ * "value": "My text"
29950
+ * }
29951
+ *
29952
+ *
29953
+ *
29954
+ */
29955
+ export interface I18NProperty84 {
29774
29956
  value: string;
29775
29957
  i18n?: string;
29776
29958
  [k: string]: unknown;
29777
29959
  }
29778
- /**
29779
- *
29780
- *
29781
- * Defining a Macro Property panel allows you to add a hidden iframe to your macro's
29782
- * property panel. The iframe is loaded as soon as the property panel is opened.
29783
- *
29784
- * In order to persist custom data using your property panel, use the Javascript
29785
- * <a href="../../jsapi/confluence/">Confluence API</a>.
29786
- * For example:
29787
- *
29788
- * AP.require(["confluence"], function (confluence) {
29789
- * var macroParams = {
29790
- * myParameter: value
29791
- * };
29792
- * confluence.saveMacro(macroParams);
29793
- * });
29794
- *
29795
- * In order to retrieve the custom data again when the property panel is opened, use `confluence.getMacroData` (see
29796
- * <a href="../../jsapi/confluence/">Confluence API</a>):
29797
- *
29798
- * AP.require("confluence", function (confluence) {
29799
- * var macroData = confluence.getMacroData(function(macroParams) {
29800
- * doSomethingWith(macroParams.myParameter);
29801
- * });
29802
- * });
29803
- *
29804
- * Dialogs may also be created. Use `dialog.create` (see
29805
- * <a href="../../jsapi/dialog/">Dialog API</a>):
29806
- *
29807
- * AP.require('dialog', function(dialog) {
29808
- * dialog.create({
29809
- * key: 'my-module-key',
29810
- * width: '500px',
29811
- * height: '200px',
29812
- * chrome: true
29813
- * }).on("close", callbackFunc);
29814
- * });
29815
- *
29816
- *
29817
- */
29818
- export interface MacroPropertyPanel1 {
29819
- controls?: (ControlGroup1 | ButtonControl3 | ToggleGroup1 | TextControl1)[];
29820
- cacheable?: boolean;
29821
- url: string;
29822
- [k: string]: unknown;
29823
- }
29824
29960
  /**
29825
29961
  *
29826
29962
  *
@@ -29885,7 +30021,7 @@ export interface ControlGroup1 {
29885
30021
  *
29886
30022
  */
29887
30023
  export interface ButtonControl2 {
29888
- label: I18NProperty84;
30024
+ label: I18NProperty85;
29889
30025
  type: 'button' | 'BUTTON';
29890
30026
  key: string;
29891
30027
  [k: string]: unknown;
@@ -29909,7 +30045,7 @@ export interface ButtonControl2 {
29909
30045
  *
29910
30046
  *
29911
30047
  */
29912
- export interface I18NProperty84 {
30048
+ export interface I18NProperty85 {
29913
30049
  value: string;
29914
30050
  i18n?: string;
29915
30051
  [k: string]: unknown;
@@ -29937,107 +30073,8 @@ export interface I18NProperty84 {
29937
30073
  *
29938
30074
  */
29939
30075
  export interface ButtonControl3 {
29940
- label: I18NProperty85;
29941
- type: 'button' | 'BUTTON';
29942
- key: string;
29943
- [k: string]: unknown;
29944
- }
29945
- /**
29946
- *
29947
- *
29948
- * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
29949
- * and value in multiple places if you like, but identical keys must have identical values.
29950
- *
29951
- * <h3>Example</h3>
29952
- *
29953
- *
29954
- *
29955
- *
29956
- *
29957
- * {
29958
- * "value": "My text"
29959
- * }
29960
- *
29961
- *
29962
- *
29963
- */
29964
- export interface I18NProperty85 {
29965
- value: string;
29966
- i18n?: string;
29967
- [k: string]: unknown;
29968
- }
29969
- /**
29970
- *
29971
- *
29972
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
29973
- *
29974
- * <p><b>Example</b></p>
29975
- *
29976
- *
29977
- *
29978
- *
29979
- *
29980
- * [
29981
- * {
29982
- * "type": "togglegroup",
29983
- * "macroParameter": "toggleGroupMacroParameter",
29984
- * "controls": [
29985
- * {
29986
- * "type": "togglebutton",
29987
- * "macroParameterValue": "macroParameterValue 0",
29988
- * "label": {
29989
- * "value": "My Custom Control 0"
29990
- * },
29991
- * "key": "my-custom-toggle-button-0"
29992
- * },
29993
- * {
29994
- * "type": "togglebutton",
29995
- * "macroParameterValue": "macroParameterValue 1",
29996
- * "label": {
29997
- * "value": "My Custom Control 1"
29998
- * },
29999
- * "key": "my-custom-toggle-button-1"
30000
- * }
30001
- * ]
30002
- * }
30003
- * ]
30004
- *
30005
- *
30006
- *
30007
- */
30008
- export interface ToggleGroup1 {
30009
- controls: ToggleButtonControl1[];
30010
- macroParameter: string;
30011
- type: 'togglegroup' | 'TOGGLEGROUP';
30012
- [k: string]: unknown;
30013
- }
30014
- /**
30015
- *
30016
- *
30017
- * Defines a toggle button which appears inside a ToggleGroup
30018
- *
30019
- * <p><b>Example</b></p>
30020
- *
30021
- *
30022
- *
30023
- *
30024
- *
30025
- * {
30026
- * "type": "togglebutton",
30027
- * "macroParameterValue": "macroParameterValue 0",
30028
- * "label": {
30029
- * "value": "My Custom Control 0"
30030
- * },
30031
- * "key": "my-custom-toggle-button-0"
30032
- * }
30033
- *
30034
- *
30035
- *
30036
- */
30037
- export interface ToggleButtonControl1 {
30038
- macroParameterValue: string;
30039
30076
  label: I18NProperty86;
30040
- type: 'togglebutton' | 'TOGGLEBUTTON';
30077
+ type: 'button' | 'BUTTON';
30041
30078
  key: string;
30042
30079
  [k: string]: unknown;
30043
30080
  }
@@ -30065,34 +30102,6 @@ export interface I18NProperty86 {
30065
30102
  i18n?: string;
30066
30103
  [k: string]: unknown;
30067
30104
  }
30068
- /**
30069
- *
30070
- *
30071
- * Defines a text field which may appear in control extension points such as the property panel
30072
- *
30073
- * <p><b>Example</b></p>
30074
- *
30075
- *
30076
- *
30077
- *
30078
- *
30079
- * {
30080
- * "type": "button",
30081
- * "label": {
30082
- * "value": "My Custom Control 0"
30083
- * },
30084
- * "key": "my-custom-control-0"
30085
- * }
30086
- *
30087
- *
30088
- *
30089
- */
30090
- export interface TextControl1 {
30091
- macroParameter: string;
30092
- type: 'text' | 'TEXT';
30093
- key: string;
30094
- [k: string]: unknown;
30095
- }
30096
30105
  /**
30097
30106
  *
30098
30107
  *
@@ -50942,47 +50951,10 @@ export interface I18NProperty91 {
50942
50951
  *
50943
50952
  */
50944
50953
  export interface WebItemTarget2 {
50945
- options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
50954
+ options?: DialogOptions4 | InlineDialogOptions2 | DialogModuleOptions2;
50946
50955
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
50947
50956
  [k: string]: unknown;
50948
50957
  }
50949
- /**
50950
- *
50951
- *
50952
- * Options for an inline dialog target
50953
- *
50954
- * <h3>Example</h3>
50955
- *
50956
- *
50957
- *
50958
- *
50959
- *
50960
- * {
50961
- * "target": {
50962
- * "type": "inlinedialog",
50963
- * "options": {
50964
- * "onHover": true,
50965
- * "offsetX": "30px",
50966
- * "offsetY": "20px"
50967
- * }
50968
- * }
50969
- * }
50970
- *
50971
- *
50972
- *
50973
- */
50974
- export interface InlineDialogOptions2 {
50975
- offsetX?: string;
50976
- offsetY?: string;
50977
- width?: string;
50978
- onTop?: boolean;
50979
- showDelay?: number;
50980
- closeOthers?: boolean;
50981
- persistent?: boolean;
50982
- onHover?: boolean;
50983
- isRelativeToMouse?: boolean;
50984
- [k: string]: unknown;
50985
- }
50986
50958
  /**
50987
50959
  *
50988
50960
  *
@@ -51081,6 +51053,43 @@ export interface I18NProperty92 {
51081
51053
  i18n?: string;
51082
51054
  [k: string]: unknown;
51083
51055
  }
51056
+ /**
51057
+ *
51058
+ *
51059
+ * Options for an inline dialog target
51060
+ *
51061
+ * <h3>Example</h3>
51062
+ *
51063
+ *
51064
+ *
51065
+ *
51066
+ *
51067
+ * {
51068
+ * "target": {
51069
+ * "type": "inlinedialog",
51070
+ * "options": {
51071
+ * "onHover": true,
51072
+ * "offsetX": "30px",
51073
+ * "offsetY": "20px"
51074
+ * }
51075
+ * }
51076
+ * }
51077
+ *
51078
+ *
51079
+ *
51080
+ */
51081
+ export interface InlineDialogOptions2 {
51082
+ offsetX?: string;
51083
+ offsetY?: string;
51084
+ width?: string;
51085
+ onTop?: boolean;
51086
+ showDelay?: number;
51087
+ closeOthers?: boolean;
51088
+ persistent?: boolean;
51089
+ onHover?: boolean;
51090
+ isRelativeToMouse?: boolean;
51091
+ [k: string]: unknown;
51092
+ }
51084
51093
  /**
51085
51094
  *
51086
51095
  *
@@ -51916,6 +51925,19 @@ export interface RemotesSchema {
51916
51925
  */
51917
51926
  key: string;
51918
51927
  baseUrl: string;
51928
+ /**
51929
+ * The type of operations done in the remote
51930
+ */
51931
+ operations?: ['storage' | 'other', ...('storage' | 'other')[]];
51932
+ /**
51933
+ * Options related to remote storage
51934
+ */
51935
+ storage?: {
51936
+ /**
51937
+ * Labels to classify the type of data stored
51938
+ */
51939
+ classifications: ['ugc' | 'pii' | 'other', ...('ugc' | 'pii' | 'other')[]];
51940
+ };
51919
51941
  }
51920
51942
  export interface Providers {
51921
51943
  auth: Auth;