@forge/manifest 2.2.0-next.2 → 2.2.0-next.3

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 CHANGED
@@ -1,5 +1,16 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 2.2.0-next.3
4
+
5
+ ### Minor Changes
6
+
7
+ - 3e56133: replace hardcoded scopes with shipyard poller artifacts
8
+
9
+ ### Patch Changes
10
+
11
+ - cc9264b: Update manifest definitions
12
+ - edaa58e: Update manifest definitions
13
+
3
14
  ## 2.2.0-next.2
4
15
 
5
16
  ### Minor Changes
@@ -5027,10 +5027,10 @@
5027
5027
  "type": "object",
5028
5028
  "anyOf": [
5029
5029
  {
5030
- "$ref": "#/definitions/singleCondition"
5030
+ "$ref": "#/definitions/compositeCondition"
5031
5031
  },
5032
5032
  {
5033
- "$ref": "#/definitions/compositeCondition"
5033
+ "$ref": "#/definitions/singleCondition"
5034
5034
  }
5035
5035
  ]
5036
5036
  },
@@ -5098,10 +5098,10 @@
5098
5098
  "type": "object",
5099
5099
  "anyOf": [
5100
5100
  {
5101
- "$ref": "#/definitions/compositeCondition"
5101
+ "$ref": "#/definitions/singleCondition"
5102
5102
  },
5103
5103
  {
5104
- "$ref": "#/definitions/singleCondition"
5104
+ "$ref": "#/definitions/compositeCondition"
5105
5105
  }
5106
5106
  ]
5107
5107
  },
@@ -5153,10 +5153,10 @@
5153
5153
  "type": "object",
5154
5154
  "anyOf": [
5155
5155
  {
5156
- "$ref": "#/definitions/compositeCondition"
5156
+ "$ref": "#/definitions/singleCondition"
5157
5157
  },
5158
5158
  {
5159
- "$ref": "#/definitions/singleCondition"
5159
+ "$ref": "#/definitions/compositeCondition"
5160
5160
  }
5161
5161
  ]
5162
5162
  },
@@ -5275,10 +5275,10 @@
5275
5275
  "type": "object",
5276
5276
  "anyOf": [
5277
5277
  {
5278
- "$ref": "#/definitions/singleCondition"
5278
+ "$ref": "#/definitions/compositeCondition"
5279
5279
  },
5280
5280
  {
5281
- "$ref": "#/definitions/compositeCondition"
5281
+ "$ref": "#/definitions/singleCondition"
5282
5282
  }
5283
5283
  ]
5284
5284
  },
@@ -5681,10 +5681,10 @@
5681
5681
  "type": "object",
5682
5682
  "anyOf": [
5683
5683
  {
5684
- "$ref": "#/definitions/singleCondition"
5684
+ "$ref": "#/definitions/compositeCondition"
5685
5685
  },
5686
5686
  {
5687
- "$ref": "#/definitions/compositeCondition"
5687
+ "$ref": "#/definitions/singleCondition"
5688
5688
  }
5689
5689
  ]
5690
5690
  },
@@ -5832,33 +5832,6 @@
5832
5832
  "items": {
5833
5833
  "type": "object",
5834
5834
  "anyOf": [
5835
- {
5836
- "properties": {
5837
- "condition": {
5838
- "maxLength": 100,
5839
- "type": "string",
5840
- "fieldDescription": "\n\nA string indicating the name of the condition\n\n"
5841
- },
5842
- "invert": {
5843
- "type": "boolean",
5844
- "fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
5845
- "defaultValue": "false"
5846
- },
5847
- "params": {
5848
- "additionalProperties": true,
5849
- "type": "object",
5850
- "fieldTitle": "Object",
5851
- "fieldDescription": "\n\nThis object represents a map of key/value pairs, where each property name and value corresponds to the parameter name and value respectively.\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"params\": {\n \"someOtherProperty\": \"someValue\",\n \"myCustomProperty\": \"myValue\"\n }\n }\n\n\n"
5852
- }
5853
- },
5854
- "required": [
5855
- "condition"
5856
- ],
5857
- "shortClassName": "singleConditionBean",
5858
- "type": "object",
5859
- "title": "Single Condition",
5860
- "description": "\n\nSingle Conditions are either provided by the host application. See the complete documentation of\n [Conditions](../../conditions/) for more information.\n\n To invert a condition, add the attribute ``invert=\"true\"`` to the condition element.\n This is useful where you want to show the section if a certain condition is not satisfied.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"condition\": \"user_is_logged_in\",\n \"invert\": false\n }\n\n\n"
5861
- },
5862
5835
  {
5863
5836
  "properties": {
5864
5837
  "conditions": {
@@ -5866,10 +5839,10 @@
5866
5839
  "type": "object",
5867
5840
  "anyOf": [
5868
5841
  {
5869
- "$ref": "#"
5842
+ "$ref": "#/definitions/singleCondition"
5870
5843
  },
5871
5844
  {
5872
- "$ref": "#/definitions/singleCondition"
5845
+ "$ref": "#"
5873
5846
  }
5874
5847
  ]
5875
5848
  },
@@ -5891,6 +5864,33 @@
5891
5864
  "type": "object",
5892
5865
  "title": "Composite Condition",
5893
5866
  "description": "\n\nComposite Conditions are composed of a collection of [Single Condition](../single-condition/) / Composite Conditions\n and a type attribute.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"conditions\": [\n {\n \"or\": [\n {\n \"condition\": \"can_attach_file_to_issue\",\n \"invert\": false\n },\n {\n \"condition\": \"is_issue_assigned_to_current_user\",\n \"invert\": false\n }\n ]\n },\n {\n \"condition\": \"user_is_logged_in\",\n \"invert\": false\n }\n ]\n }\n\n\n"
5867
+ },
5868
+ {
5869
+ "properties": {
5870
+ "condition": {
5871
+ "maxLength": 100,
5872
+ "type": "string",
5873
+ "fieldDescription": "\n\nA string indicating the name of the condition\n\n"
5874
+ },
5875
+ "invert": {
5876
+ "type": "boolean",
5877
+ "fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
5878
+ "defaultValue": "false"
5879
+ },
5880
+ "params": {
5881
+ "additionalProperties": true,
5882
+ "type": "object",
5883
+ "fieldTitle": "Object",
5884
+ "fieldDescription": "\n\nThis object represents a map of key/value pairs, where each property name and value corresponds to the parameter name and value respectively.\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"params\": {\n \"someOtherProperty\": \"someValue\",\n \"myCustomProperty\": \"myValue\"\n }\n }\n\n\n"
5885
+ }
5886
+ },
5887
+ "required": [
5888
+ "condition"
5889
+ ],
5890
+ "shortClassName": "singleConditionBean",
5891
+ "type": "object",
5892
+ "title": "Single Condition",
5893
+ "description": "\n\nSingle Conditions are either provided by the host application. See the complete documentation of\n [Conditions](../../conditions/) for more information.\n\n To invert a condition, add the attribute ``invert=\"true\"`` to the condition element.\n This is useful where you want to show the section if a certain condition is not satisfied.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"condition\": \"user_is_logged_in\",\n \"invert\": false\n }\n\n\n"
5894
5894
  }
5895
5895
  ]
5896
5896
  },
@@ -6164,6 +6164,38 @@
6164
6164
  "items": {
6165
6165
  "type": "object",
6166
6166
  "anyOf": [
6167
+ {
6168
+ "properties": {
6169
+ "macroParameter": {
6170
+ "maxLength": 100,
6171
+ "type": "string",
6172
+ "fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
6173
+ },
6174
+ "type": {
6175
+ "enum": [
6176
+ "text",
6177
+ "TEXT"
6178
+ ],
6179
+ "type": "string",
6180
+ "fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
6181
+ },
6182
+ "key": {
6183
+ "pattern": "^[a-zA-Z0-9-]+$",
6184
+ "maxLength": 100,
6185
+ "type": "string",
6186
+ "fieldDescription": "\n\nA key to identify this module.\n\n This key must be unique relative to the add on, with the exception of Confluence macros: Their keys need to be\n globally unique.\n\n Keys must only contain alphanumeric characters and dashes.\n\n The key is used to generate the url to your add-on's module. The url is generated as a combination of your add-on\n key and module key. For example, an add-on which looks like:\n\n {\n \"key\": \"my-addon\",\n \"modules\": {\n \"configurePage\": {\n \"key\": \"configure-me\",\n }\n }\n }\n\n Will have a configuration page module with a URL of `/plugins/servlet/ac/my-addon/configure-me`.\n\n"
6187
+ }
6188
+ },
6189
+ "required": [
6190
+ "macroParameter",
6191
+ "type",
6192
+ "key"
6193
+ ],
6194
+ "shortClassName": "textControlBean",
6195
+ "type": "object",
6196
+ "title": "TextControl",
6197
+ "description": "\n\nDefines a text field which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
6198
+ },
6167
6199
  {
6168
6200
  "properties": {
6169
6201
  "controls": {
@@ -6320,38 +6352,6 @@
6320
6352
  "type": "object",
6321
6353
  "title": "ToggleGroup",
6322
6354
  "description": "\n\nDefines a ToggleGroup which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n [\n {\n \"type\": \"togglegroup\",\n \"macroParameter\": \"toggleGroupMacroParameter\",\n \"controls\": [\n {\n \"type\": \"togglebutton\",\n \"macroParameterValue\": \"macroParameterValue 0\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-toggle-button-0\"\n },\n {\n \"type\": \"togglebutton\",\n \"macroParameterValue\": \"macroParameterValue 1\",\n \"label\": {\n \"value\": \"My Custom Control 1\"\n },\n \"key\": \"my-custom-toggle-button-1\"\n }\n ]\n }\n ]\n\n\n"
6323
- },
6324
- {
6325
- "properties": {
6326
- "macroParameter": {
6327
- "maxLength": 100,
6328
- "type": "string",
6329
- "fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
6330
- },
6331
- "type": {
6332
- "enum": [
6333
- "text",
6334
- "TEXT"
6335
- ],
6336
- "type": "string",
6337
- "fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
6338
- },
6339
- "key": {
6340
- "pattern": "^[a-zA-Z0-9-]+$",
6341
- "maxLength": 100,
6342
- "type": "string",
6343
- "fieldDescription": "\n\nA key to identify this module.\n\n This key must be unique relative to the add on, with the exception of Confluence macros: Their keys need to be\n globally unique.\n\n Keys must only contain alphanumeric characters and dashes.\n\n The key is used to generate the url to your add-on's module. The url is generated as a combination of your add-on\n key and module key. For example, an add-on which looks like:\n\n {\n \"key\": \"my-addon\",\n \"modules\": {\n \"configurePage\": {\n \"key\": \"configure-me\",\n }\n }\n }\n\n Will have a configuration page module with a URL of `/plugins/servlet/ac/my-addon/configure-me`.\n\n"
6344
- }
6345
- },
6346
- "required": [
6347
- "macroParameter",
6348
- "type",
6349
- "key"
6350
- ],
6351
- "shortClassName": "textControlBean",
6352
- "type": "object",
6353
- "title": "TextControl",
6354
- "description": "\n\nDefines a text field which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
6355
6355
  }
6356
6356
  ]
6357
6357
  },
@@ -6702,6 +6702,38 @@
6702
6702
  "title": "ControlGroup",
6703
6703
  "description": "\n\nDefines a ControlGroup which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n [\n {\n \"type\": \"group\",\n \"controls\": [\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n },\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 1\"\n },\n \"key\": \"my-custom-control-1\"\n }\n ]\n }\n ]\n\n\n"
6704
6704
  },
6705
+ {
6706
+ "properties": {
6707
+ "macroParameter": {
6708
+ "maxLength": 100,
6709
+ "type": "string",
6710
+ "fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
6711
+ },
6712
+ "type": {
6713
+ "enum": [
6714
+ "text",
6715
+ "TEXT"
6716
+ ],
6717
+ "type": "string",
6718
+ "fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
6719
+ },
6720
+ "key": {
6721
+ "pattern": "^[a-zA-Z0-9-]+$",
6722
+ "maxLength": 100,
6723
+ "type": "string",
6724
+ "fieldDescription": "\n\nA key to identify this module.\n\n This key must be unique relative to the add on, with the exception of Confluence macros: Their keys need to be\n globally unique.\n\n Keys must only contain alphanumeric characters and dashes.\n\n The key is used to generate the url to your add-on's module. The url is generated as a combination of your add-on\n key and module key. For example, an add-on which looks like:\n\n {\n \"key\": \"my-addon\",\n \"modules\": {\n \"configurePage\": {\n \"key\": \"configure-me\",\n }\n }\n }\n\n Will have a configuration page module with a URL of `/plugins/servlet/ac/my-addon/configure-me`.\n\n"
6725
+ }
6726
+ },
6727
+ "required": [
6728
+ "macroParameter",
6729
+ "type",
6730
+ "key"
6731
+ ],
6732
+ "shortClassName": "textControlBean",
6733
+ "type": "object",
6734
+ "title": "TextControl",
6735
+ "description": "\n\nDefines a text field which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
6736
+ },
6705
6737
  {
6706
6738
  "properties": {
6707
6739
  "controls": {
@@ -6802,38 +6834,6 @@
6802
6834
  "type": "object",
6803
6835
  "title": "ButtonControl",
6804
6836
  "description": "\n\nDefines a button which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
6805
- },
6806
- {
6807
- "properties": {
6808
- "macroParameter": {
6809
- "maxLength": 100,
6810
- "type": "string",
6811
- "fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
6812
- },
6813
- "type": {
6814
- "enum": [
6815
- "text",
6816
- "TEXT"
6817
- ],
6818
- "type": "string",
6819
- "fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
6820
- },
6821
- "key": {
6822
- "pattern": "^[a-zA-Z0-9-]+$",
6823
- "maxLength": 100,
6824
- "type": "string",
6825
- "fieldDescription": "\n\nA key to identify this module.\n\n This key must be unique relative to the add on, with the exception of Confluence macros: Their keys need to be\n globally unique.\n\n Keys must only contain alphanumeric characters and dashes.\n\n The key is used to generate the url to your add-on's module. The url is generated as a combination of your add-on\n key and module key. For example, an add-on which looks like:\n\n {\n \"key\": \"my-addon\",\n \"modules\": {\n \"configurePage\": {\n \"key\": \"configure-me\",\n }\n }\n }\n\n Will have a configuration page module with a URL of `/plugins/servlet/ac/my-addon/configure-me`.\n\n"
6826
- }
6827
- },
6828
- "required": [
6829
- "macroParameter",
6830
- "type",
6831
- "key"
6832
- ],
6833
- "shortClassName": "textControlBean",
6834
- "type": "object",
6835
- "title": "TextControl",
6836
- "description": "\n\nDefines a text field which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
6837
6837
  }
6838
6838
  ]
6839
6839
  },
@@ -7069,6 +7069,51 @@
7069
7069
  "type": "object",
7070
7070
  "fieldDescription": "\n\n<p>An object containing options which vary based on the type of web item target you are implementing.</p>\n\n <p>Currently-allowed options are:</p>\n <ul>\n <li><a href=\"../inline-dialog-options/\">Inline Dialog Options</a> when type is \"inlinedialog\", and</li>\n <li><a href=\"../dialog-options/\">Dialog Options</a> when type is \"dialog\"</li>\n <li><a href=\"../dialog-module-options/\">Dialog Module Options</a> when type is \"dialogmodule\"</li>\n </ul>\n\n",
7071
7071
  "anyOf": [
7072
+ {
7073
+ "properties": {
7074
+ "size": {
7075
+ "enum": [
7076
+ "small",
7077
+ "SMALL",
7078
+ "medium",
7079
+ "MEDIUM",
7080
+ "large",
7081
+ "LARGE",
7082
+ "x-large",
7083
+ "X-LARGE",
7084
+ "fullscreen",
7085
+ "FULLSCREEN",
7086
+ "maximum",
7087
+ "MAXIMUM"
7088
+ ],
7089
+ "type": "string",
7090
+ "fieldDescription": "\n\nSets the size of the dialog.\n\n <p>\n This option is used instead of the 'height' and 'width' options.\n </p>\n\n"
7091
+ },
7092
+ "chrome": {
7093
+ "type": "boolean",
7094
+ "fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
7095
+ "defaultValue": "true"
7096
+ },
7097
+ "width": {
7098
+ "maxLength": 10,
7099
+ "type": "string",
7100
+ "fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
7101
+ },
7102
+ "header": {
7103
+ "$ref": "#/definitions/i18nProperty",
7104
+ "fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
7105
+ },
7106
+ "height": {
7107
+ "maxLength": 10,
7108
+ "type": "string",
7109
+ "fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
7110
+ }
7111
+ },
7112
+ "shortClassName": "dialogOptions",
7113
+ "type": "object",
7114
+ "title": "Dialog Options",
7115
+ "description": "\n\nOptions for a modal dialog <a href=\"../web-item-target/\">web item target</a> or <a href=\"../dialog/\">common module</a>.\n\n <p>\n These options are a subset of those available via the <a href=\"../../jsapi/dialog/\">JavaScript API</a>.\n </p>\n\n <h2>Web Item Example</h2>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"dialog\",\n \"options\": {\n \"height\": \"100px\",\n \"width\": \"200px\"\n }\n }\n }\n\n\n\n\n <h2>Dialog Example</h2>\n\n\n\n\n\n {\n \"modules\": {\n \"dialogs\": [\n {\n \"url\": \"/my-dialog-content\",\n \"options\": {\n \"size\": \"fullscreen\",\n \"header\": {\n \"value\": \"Example Dialog\"\n }\n },\n \"key\": \"dialog-module-key\"\n }\n ]\n }\n }\n\n\n"
7116
+ },
7072
7117
  {
7073
7118
  "properties": {
7074
7119
  "offsetX": {
@@ -7116,51 +7161,6 @@
7116
7161
  "title": "Inline Dialog Options",
7117
7162
  "description": "\n\nOptions for an inline dialog target\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"inlinedialog\",\n \"options\": {\n \"onHover\": true,\n \"offsetX\": \"30px\",\n \"offsetY\": \"20px\"\n }\n }\n }\n\n\n"
7118
7163
  },
7119
- {
7120
- "properties": {
7121
- "size": {
7122
- "enum": [
7123
- "small",
7124
- "SMALL",
7125
- "medium",
7126
- "MEDIUM",
7127
- "large",
7128
- "LARGE",
7129
- "x-large",
7130
- "X-LARGE",
7131
- "fullscreen",
7132
- "FULLSCREEN",
7133
- "maximum",
7134
- "MAXIMUM"
7135
- ],
7136
- "type": "string",
7137
- "fieldDescription": "\n\nSets the size of the dialog.\n\n <p>\n This option is used instead of the 'height' and 'width' options.\n </p>\n\n"
7138
- },
7139
- "chrome": {
7140
- "type": "boolean",
7141
- "fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
7142
- "defaultValue": "true"
7143
- },
7144
- "width": {
7145
- "maxLength": 10,
7146
- "type": "string",
7147
- "fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
7148
- },
7149
- "header": {
7150
- "$ref": "#/definitions/i18nProperty",
7151
- "fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
7152
- },
7153
- "height": {
7154
- "maxLength": 10,
7155
- "type": "string",
7156
- "fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
7157
- }
7158
- },
7159
- "shortClassName": "dialogOptions",
7160
- "type": "object",
7161
- "title": "Dialog Options",
7162
- "description": "\n\nOptions for a modal dialog <a href=\"../web-item-target/\">web item target</a> or <a href=\"../dialog/\">common module</a>.\n\n <p>\n These options are a subset of those available via the <a href=\"../../jsapi/dialog/\">JavaScript API</a>.\n </p>\n\n <h2>Web Item Example</h2>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"dialog\",\n \"options\": {\n \"height\": \"100px\",\n \"width\": \"200px\"\n }\n }\n }\n\n\n\n\n <h2>Dialog Example</h2>\n\n\n\n\n\n {\n \"modules\": {\n \"dialogs\": [\n {\n \"url\": \"/my-dialog-content\",\n \"options\": {\n \"size\": \"fullscreen\",\n \"header\": {\n \"value\": \"Example Dialog\"\n }\n },\n \"key\": \"dialog-module-key\"\n }\n ]\n }\n }\n\n\n"
7163
- },
7164
7164
  {
7165
7165
  "properties": {
7166
7166
  "key": {
@@ -8362,10 +8362,10 @@
8362
8362
  "type": "object",
8363
8363
  "anyOf": [
8364
8364
  {
8365
- "$ref": "#"
8365
+ "$ref": "#/definitions/singleCondition"
8366
8366
  },
8367
8367
  {
8368
- "$ref": "#/definitions/singleCondition"
8368
+ "$ref": "#"
8369
8369
  }
8370
8370
  ]
8371
8371
  },
@@ -2317,7 +2317,7 @@ export interface Modules {
2317
2317
  fullPage?: boolean;
2318
2318
  cacheable?: boolean;
2319
2319
  location?: string;
2320
- conditions?: (SingleCondition | CompositeCondition)[];
2320
+ conditions?: (CompositeCondition | SingleCondition)[];
2321
2321
  params?: {
2322
2322
  [k: string]: unknown;
2323
2323
  };
@@ -2332,7 +2332,7 @@ export interface Modules {
2332
2332
  fullPage?: boolean;
2333
2333
  cacheable?: boolean;
2334
2334
  location?: string;
2335
- conditions?: (SingleCondition | CompositeCondition)[];
2335
+ conditions?: (CompositeCondition | SingleCondition)[];
2336
2336
  params?: {
2337
2337
  [k: string]: unknown;
2338
2338
  };
@@ -2350,7 +2350,7 @@ export interface Modules {
2350
2350
  location?: string;
2351
2351
  cacheable?: boolean;
2352
2352
  supportsNative?: boolean;
2353
- conditions?: (CompositeCondition | SingleCondition)[];
2353
+ conditions?: (SingleCondition | CompositeCondition)[];
2354
2354
  params?: {
2355
2355
  [k: string]: unknown;
2356
2356
  };
@@ -2366,7 +2366,7 @@ export interface Modules {
2366
2366
  location?: string;
2367
2367
  cacheable?: boolean;
2368
2368
  supportsNative?: boolean;
2369
- conditions?: (CompositeCondition | SingleCondition)[];
2369
+ conditions?: (SingleCondition | CompositeCondition)[];
2370
2370
  params?: {
2371
2371
  [k: string]: unknown;
2372
2372
  };
@@ -2380,7 +2380,7 @@ export interface Modules {
2380
2380
  filter?: string;
2381
2381
  excludeBody?: boolean;
2382
2382
  event?: string;
2383
- conditions?: (CompositeCondition | SingleCondition)[];
2383
+ conditions?: (SingleCondition | CompositeCondition)[];
2384
2384
  propertyKeys?: string[];
2385
2385
  url?: string;
2386
2386
  key: ModuleKeySchema;
@@ -2390,7 +2390,7 @@ export interface Modules {
2390
2390
  filter?: string;
2391
2391
  excludeBody?: boolean;
2392
2392
  event?: string;
2393
- conditions?: (CompositeCondition | SingleCondition)[];
2393
+ conditions?: (SingleCondition | CompositeCondition)[];
2394
2394
  propertyKeys?: string[];
2395
2395
  url?: string;
2396
2396
  key: ModuleKeySchema;
@@ -2433,7 +2433,7 @@ export interface Modules {
2433
2433
  name?: I18NProperty55;
2434
2434
  weight?: number;
2435
2435
  location?: string;
2436
- conditions?: (SingleCondition | CompositeCondition)[];
2436
+ conditions?: (CompositeCondition | SingleCondition)[];
2437
2437
  params?: {
2438
2438
  [k: string]: unknown;
2439
2439
  };
@@ -2445,7 +2445,7 @@ export interface Modules {
2445
2445
  name?: I18NProperty55;
2446
2446
  weight?: number;
2447
2447
  location?: string;
2448
- conditions?: (SingleCondition | CompositeCondition)[];
2448
+ conditions?: (CompositeCondition | SingleCondition)[];
2449
2449
  params?: {
2450
2450
  [k: string]: unknown;
2451
2451
  };
@@ -2529,7 +2529,7 @@ export interface Modules {
2529
2529
  fullPage?: boolean;
2530
2530
  cacheable?: boolean;
2531
2531
  location?: string;
2532
- conditions?: (SingleCondition | CompositeCondition)[];
2532
+ conditions?: (CompositeCondition | SingleCondition)[];
2533
2533
  params?: {
2534
2534
  [k: string]: unknown;
2535
2535
  };
@@ -2544,7 +2544,7 @@ export interface Modules {
2544
2544
  fullPage?: boolean;
2545
2545
  cacheable?: boolean;
2546
2546
  location?: string;
2547
- conditions?: (SingleCondition | CompositeCondition)[];
2547
+ conditions?: (CompositeCondition | SingleCondition)[];
2548
2548
  params?: {
2549
2549
  [k: string]: unknown;
2550
2550
  };
@@ -2594,7 +2594,7 @@ export interface Modules {
2594
2594
  name?: I18NProperty63;
2595
2595
  weight?: number;
2596
2596
  location?: string;
2597
- conditions?: (SingleCondition5 | CompositeCondition7)[];
2597
+ conditions?: (CompositeCondition7 | SingleCondition5)[];
2598
2598
  params?: {
2599
2599
  [k: string]: unknown;
2600
2600
  };
@@ -2606,7 +2606,7 @@ export interface Modules {
2606
2606
  name?: I18NProperty63;
2607
2607
  weight?: number;
2608
2608
  location?: string;
2609
- conditions?: (SingleCondition5 | CompositeCondition7)[];
2609
+ conditions?: (CompositeCondition7 | SingleCondition5)[];
2610
2610
  params?: {
2611
2611
  [k: string]: unknown;
2612
2612
  };
@@ -3066,7 +3066,7 @@ export interface SingleCondition {
3066
3066
  *
3067
3067
  */
3068
3068
  export interface CompositeCondition {
3069
- conditions?: (ManifestSchema | SingleCondition)[];
3069
+ conditions?: (SingleCondition | ManifestSchema)[];
3070
3070
  type?: 'and' | 'AND' | 'or' | 'OR';
3071
3071
  [k: string]: unknown;
3072
3072
  }
@@ -6359,37 +6359,6 @@ export interface I18NProperty63 {
6359
6359
  i18n?: string;
6360
6360
  [k: string]: unknown;
6361
6361
  }
6362
- /**
6363
- *
6364
- *
6365
- * Single Conditions are either provided by the host application. See the complete documentation of
6366
- * [Conditions](../../conditions/) for more information.
6367
- *
6368
- * To invert a condition, add the attribute ``invert="true"`` to the condition element.
6369
- * This is useful where you want to show the section if a certain condition is not satisfied.
6370
- *
6371
- * <h3>Example</h3>
6372
- *
6373
- *
6374
- *
6375
- *
6376
- *
6377
- * {
6378
- * "condition": "user_is_logged_in",
6379
- * "invert": false
6380
- * }
6381
- *
6382
- *
6383
- *
6384
- */
6385
- export interface SingleCondition5 {
6386
- condition: string;
6387
- invert?: boolean;
6388
- params?: {
6389
- [k: string]: unknown;
6390
- };
6391
- [k: string]: unknown;
6392
- }
6393
6362
  /**
6394
6363
  *
6395
6364
  *
@@ -6427,10 +6396,41 @@ export interface SingleCondition5 {
6427
6396
  *
6428
6397
  */
6429
6398
  export interface CompositeCondition7 {
6430
- conditions?: (ManifestSchema | SingleCondition)[];
6399
+ conditions?: (SingleCondition | ManifestSchema)[];
6431
6400
  type?: 'and' | 'AND' | 'or' | 'OR';
6432
6401
  [k: string]: unknown;
6433
6402
  }
6403
+ /**
6404
+ *
6405
+ *
6406
+ * Single Conditions are either provided by the host application. See the complete documentation of
6407
+ * [Conditions](../../conditions/) for more information.
6408
+ *
6409
+ * To invert a condition, add the attribute ``invert="true"`` to the condition element.
6410
+ * This is useful where you want to show the section if a certain condition is not satisfied.
6411
+ *
6412
+ * <h3>Example</h3>
6413
+ *
6414
+ *
6415
+ *
6416
+ *
6417
+ *
6418
+ * {
6419
+ * "condition": "user_is_logged_in",
6420
+ * "invert": false
6421
+ * }
6422
+ *
6423
+ *
6424
+ *
6425
+ */
6426
+ export interface SingleCondition5 {
6427
+ condition: string;
6428
+ invert?: boolean;
6429
+ params?: {
6430
+ [k: string]: unknown;
6431
+ };
6432
+ [k: string]: unknown;
6433
+ }
6434
6434
  /**
6435
6435
  *
6436
6436
  *
@@ -7850,11 +7850,39 @@ export interface I18NProperty74 {
7850
7850
  *
7851
7851
  */
7852
7852
  export interface MacroPropertyPanel {
7853
- controls?: (ControlGroup | ButtonControl1 | ToggleGroup | TextControl)[];
7853
+ controls?: (TextControl | ControlGroup | ButtonControl1 | ToggleGroup)[];
7854
7854
  cacheable?: boolean;
7855
7855
  url: string;
7856
7856
  [k: string]: unknown;
7857
7857
  }
7858
+ /**
7859
+ *
7860
+ *
7861
+ * Defines a text field which may appear in control extension points such as the property panel
7862
+ *
7863
+ * <p><b>Example</b></p>
7864
+ *
7865
+ *
7866
+ *
7867
+ *
7868
+ *
7869
+ * {
7870
+ * "type": "button",
7871
+ * "label": {
7872
+ * "value": "My Custom Control 0"
7873
+ * },
7874
+ * "key": "my-custom-control-0"
7875
+ * }
7876
+ *
7877
+ *
7878
+ *
7879
+ */
7880
+ export interface TextControl {
7881
+ macroParameter: string;
7882
+ type: 'text' | 'TEXT';
7883
+ key: string;
7884
+ [k: string]: unknown;
7885
+ }
7858
7886
  /**
7859
7887
  *
7860
7888
  *
@@ -8099,34 +8127,6 @@ export interface I18NProperty77 {
8099
8127
  i18n?: string;
8100
8128
  [k: string]: unknown;
8101
8129
  }
8102
- /**
8103
- *
8104
- *
8105
- * Defines a text field which may appear in control extension points such as the property panel
8106
- *
8107
- * <p><b>Example</b></p>
8108
- *
8109
- *
8110
- *
8111
- *
8112
- *
8113
- * {
8114
- * "type": "button",
8115
- * "label": {
8116
- * "value": "My Custom Control 0"
8117
- * },
8118
- * "key": "my-custom-control-0"
8119
- * }
8120
- *
8121
- *
8122
- *
8123
- */
8124
- export interface TextControl {
8125
- macroParameter: string;
8126
- type: 'text' | 'TEXT';
8127
- key: string;
8128
- [k: string]: unknown;
8129
- }
8130
8130
  /**
8131
8131
  *
8132
8132
  *
@@ -29095,7 +29095,7 @@ export interface I18NProperty83 {
29095
29095
  *
29096
29096
  */
29097
29097
  export interface MacroPropertyPanel1 {
29098
- controls?: (ControlGroup1 | ToggleGroup1 | ButtonControl3 | TextControl1)[];
29098
+ controls?: (ControlGroup1 | TextControl1 | ToggleGroup1 | ButtonControl3)[];
29099
29099
  cacheable?: boolean;
29100
29100
  url: string;
29101
29101
  [k: string]: unknown;
@@ -29193,6 +29193,34 @@ export interface I18NProperty84 {
29193
29193
  i18n?: string;
29194
29194
  [k: string]: unknown;
29195
29195
  }
29196
+ /**
29197
+ *
29198
+ *
29199
+ * Defines a text field which may appear in control extension points such as the property panel
29200
+ *
29201
+ * <p><b>Example</b></p>
29202
+ *
29203
+ *
29204
+ *
29205
+ *
29206
+ *
29207
+ * {
29208
+ * "type": "button",
29209
+ * "label": {
29210
+ * "value": "My Custom Control 0"
29211
+ * },
29212
+ * "key": "my-custom-control-0"
29213
+ * }
29214
+ *
29215
+ *
29216
+ *
29217
+ */
29218
+ export interface TextControl1 {
29219
+ macroParameter: string;
29220
+ type: 'text' | 'TEXT';
29221
+ key: string;
29222
+ [k: string]: unknown;
29223
+ }
29196
29224
  /**
29197
29225
  *
29198
29226
  *
@@ -29344,34 +29372,6 @@ export interface I18NProperty86 {
29344
29372
  i18n?: string;
29345
29373
  [k: string]: unknown;
29346
29374
  }
29347
- /**
29348
- *
29349
- *
29350
- * Defines a text field which may appear in control extension points such as the property panel
29351
- *
29352
- * <p><b>Example</b></p>
29353
- *
29354
- *
29355
- *
29356
- *
29357
- *
29358
- * {
29359
- * "type": "button",
29360
- * "label": {
29361
- * "value": "My Custom Control 0"
29362
- * },
29363
- * "key": "my-custom-control-0"
29364
- * }
29365
- *
29366
- *
29367
- *
29368
- */
29369
- export interface TextControl1 {
29370
- macroParameter: string;
29371
- type: 'text' | 'TEXT';
29372
- key: string;
29373
- [k: string]: unknown;
29374
- }
29375
29375
  /**
29376
29376
  *
29377
29377
  *
@@ -50221,47 +50221,10 @@ export interface I18NProperty91 {
50221
50221
  *
50222
50222
  */
50223
50223
  export interface WebItemTarget2 {
50224
- options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
50224
+ options?: DialogOptions4 | InlineDialogOptions2 | DialogModuleOptions2;
50225
50225
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
50226
50226
  [k: string]: unknown;
50227
50227
  }
50228
- /**
50229
- *
50230
- *
50231
- * Options for an inline dialog target
50232
- *
50233
- * <h3>Example</h3>
50234
- *
50235
- *
50236
- *
50237
- *
50238
- *
50239
- * {
50240
- * "target": {
50241
- * "type": "inlinedialog",
50242
- * "options": {
50243
- * "onHover": true,
50244
- * "offsetX": "30px",
50245
- * "offsetY": "20px"
50246
- * }
50247
- * }
50248
- * }
50249
- *
50250
- *
50251
- *
50252
- */
50253
- export interface InlineDialogOptions2 {
50254
- offsetX?: string;
50255
- offsetY?: string;
50256
- width?: string;
50257
- onTop?: boolean;
50258
- showDelay?: number;
50259
- closeOthers?: boolean;
50260
- persistent?: boolean;
50261
- onHover?: boolean;
50262
- isRelativeToMouse?: boolean;
50263
- [k: string]: unknown;
50264
- }
50265
50228
  /**
50266
50229
  *
50267
50230
  *
@@ -50360,6 +50323,43 @@ export interface I18NProperty92 {
50360
50323
  i18n?: string;
50361
50324
  [k: string]: unknown;
50362
50325
  }
50326
+ /**
50327
+ *
50328
+ *
50329
+ * Options for an inline dialog target
50330
+ *
50331
+ * <h3>Example</h3>
50332
+ *
50333
+ *
50334
+ *
50335
+ *
50336
+ *
50337
+ * {
50338
+ * "target": {
50339
+ * "type": "inlinedialog",
50340
+ * "options": {
50341
+ * "onHover": true,
50342
+ * "offsetX": "30px",
50343
+ * "offsetY": "20px"
50344
+ * }
50345
+ * }
50346
+ * }
50347
+ *
50348
+ *
50349
+ *
50350
+ */
50351
+ export interface InlineDialogOptions2 {
50352
+ offsetX?: string;
50353
+ offsetY?: string;
50354
+ width?: string;
50355
+ onTop?: boolean;
50356
+ showDelay?: number;
50357
+ closeOthers?: boolean;
50358
+ persistent?: boolean;
50359
+ onHover?: boolean;
50360
+ isRelativeToMouse?: boolean;
50361
+ [k: string]: unknown;
50362
+ }
50363
50363
  /**
50364
50364
  *
50365
50365
  *