@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 CHANGED
@@ -1,5 +1,27 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 3.4.0-next.4
4
+
5
+ ### Minor Changes
6
+
7
+ - 64dd525: Make revokeToken optional in External Auth
8
+
9
+ ### Patch Changes
10
+
11
+ - 10f147f: Update manifest definitions
12
+
13
+ ## 3.3.1-next.3
14
+
15
+ ### Patch Changes
16
+
17
+ - 1a8a4bb: Update manifest definitions
18
+
19
+ ## 3.3.1-next.2
20
+
21
+ ### Patch Changes
22
+
23
+ - 8b4fede: Update manifest definitions
24
+
3
25
  ## 3.3.1-next.1
4
26
 
5
27
  ### Patch Changes
@@ -7627,10 +7627,10 @@
7627
7627
  "type": "object",
7628
7628
  "anyOf": [
7629
7629
  {
7630
- "$ref": "#/definitions/singleCondition"
7630
+ "$ref": "#/definitions/compositeCondition"
7631
7631
  },
7632
7632
  {
7633
- "$ref": "#/definitions/compositeCondition"
7633
+ "$ref": "#/definitions/singleCondition"
7634
7634
  }
7635
7635
  ]
7636
7636
  },
@@ -7749,10 +7749,10 @@
7749
7749
  "type": "object",
7750
7750
  "anyOf": [
7751
7751
  {
7752
- "$ref": "#/definitions/singleCondition"
7752
+ "$ref": "#/definitions/compositeCondition"
7753
7753
  },
7754
7754
  {
7755
- "$ref": "#/definitions/compositeCondition"
7755
+ "$ref": "#/definitions/singleCondition"
7756
7756
  }
7757
7757
  ]
7758
7758
  },
@@ -8043,6 +8043,33 @@
8043
8043
  "items": {
8044
8044
  "type": "object",
8045
8045
  "anyOf": [
8046
+ {
8047
+ "properties": {
8048
+ "condition": {
8049
+ "maxLength": 100,
8050
+ "type": "string",
8051
+ "fieldDescription": "\n\nA string indicating the name of the condition\n\n"
8052
+ },
8053
+ "invert": {
8054
+ "type": "boolean",
8055
+ "fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
8056
+ "defaultValue": "false"
8057
+ },
8058
+ "params": {
8059
+ "additionalProperties": true,
8060
+ "type": "object",
8061
+ "fieldTitle": "Object",
8062
+ "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"
8063
+ }
8064
+ },
8065
+ "required": [
8066
+ "condition"
8067
+ ],
8068
+ "shortClassName": "singleConditionBean",
8069
+ "type": "object",
8070
+ "title": "Single Condition",
8071
+ "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"
8072
+ },
8046
8073
  {
8047
8074
  "properties": {
8048
8075
  "conditions": {
@@ -8075,33 +8102,6 @@
8075
8102
  "type": "object",
8076
8103
  "title": "Composite Condition",
8077
8104
  "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"
8078
- },
8079
- {
8080
- "properties": {
8081
- "condition": {
8082
- "maxLength": 100,
8083
- "type": "string",
8084
- "fieldDescription": "\n\nA string indicating the name of the condition\n\n"
8085
- },
8086
- "invert": {
8087
- "type": "boolean",
8088
- "fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
8089
- "defaultValue": "false"
8090
- },
8091
- "params": {
8092
- "additionalProperties": true,
8093
- "type": "object",
8094
- "fieldTitle": "Object",
8095
- "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"
8096
- }
8097
- },
8098
- "required": [
8099
- "condition"
8100
- ],
8101
- "shortClassName": "singleConditionBean",
8102
- "type": "object",
8103
- "title": "Single Condition",
8104
- "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"
8105
8105
  }
8106
8106
  ]
8107
8107
  },
@@ -8340,10 +8340,10 @@
8340
8340
  "type": "object",
8341
8341
  "anyOf": [
8342
8342
  {
8343
- "$ref": "#"
8343
+ "$ref": "#/definitions/singleCondition"
8344
8344
  },
8345
8345
  {
8346
- "$ref": "#/definitions/singleCondition"
8346
+ "$ref": "#"
8347
8347
  }
8348
8348
  ]
8349
8349
  },
@@ -8643,22 +8643,17 @@
8643
8643
  "controls": {
8644
8644
  "items": {
8645
8645
  "properties": {
8646
- "macroParameterValue": {
8647
- "maxLength": 10000,
8648
- "type": "string",
8649
- "fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
8650
- },
8651
8646
  "label": {
8652
8647
  "$ref": "#/definitions/i18nProperty",
8653
8648
  "fieldDescription": "\n\nText which will appear inside the button\n\n"
8654
8649
  },
8655
8650
  "type": {
8656
8651
  "enum": [
8657
- "togglebutton",
8658
- "TOGGLEBUTTON"
8652
+ "button",
8653
+ "BUTTON"
8659
8654
  ],
8660
8655
  "type": "string",
8661
- "fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
8656
+ "fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
8662
8657
  },
8663
8658
  "key": {
8664
8659
  "pattern": "^[a-zA-Z0-9-]+$",
@@ -8668,61 +8663,58 @@
8668
8663
  }
8669
8664
  },
8670
8665
  "required": [
8671
- "macroParameterValue",
8672
8666
  "label",
8673
8667
  "type",
8674
8668
  "key"
8675
8669
  ],
8676
8670
  "additionalProperties": true,
8677
- "shortClassName": "macroToggleButtonControlBean",
8671
+ "shortClassName": "buttonControlBean",
8678
8672
  "type": "object",
8679
- "title": "ToggleButtonControl",
8680
- "description": "\n\nDefines a toggle button which appears inside a ToggleGroup\n\n <p><b>Example</b></p>\n\n\n\n\n\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\n"
8673
+ "title": "ButtonControl",
8674
+ "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"
8681
8675
  },
8682
8676
  "type": "array",
8683
- "fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
8684
- },
8685
- "macroParameter": {
8686
- "pattern": "[-_a-z0-9\\.]+",
8687
- "maxLength": 100,
8688
- "type": "string",
8689
- "fieldDescription": "\n\nThe macro parameter identifier used to store the toggle state.\n It must only contain lowercase alphanumeric characters, dashes, underscores, dots and must not contain any spaces.\n\n"
8677
+ "fieldDescription": "\n\nControls which will appear in the control group\n\n"
8690
8678
  },
8691
8679
  "type": {
8692
8680
  "enum": [
8693
- "togglegroup",
8694
- "TOGGLEGROUP"
8681
+ "group",
8682
+ "GROUP"
8695
8683
  ],
8696
8684
  "type": "string",
8697
- "fieldDescription": "\n\nThe type field must be set to 'togglegroup'\n\n"
8685
+ "fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
8698
8686
  }
8699
8687
  },
8700
8688
  "required": [
8701
8689
  "controls",
8702
- "macroParameter",
8703
8690
  "type"
8704
8691
  ],
8705
- "shortClassName": "macroToggleGroupBean",
8692
+ "shortClassName": "controlGroupBean",
8706
8693
  "type": "object",
8707
- "title": "ToggleGroup",
8708
- "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"
8694
+ "title": "ControlGroup",
8695
+ "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"
8709
8696
  },
8710
8697
  {
8711
8698
  "properties": {
8712
8699
  "controls": {
8713
8700
  "items": {
8714
8701
  "properties": {
8702
+ "macroParameterValue": {
8703
+ "maxLength": 10000,
8704
+ "type": "string",
8705
+ "fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
8706
+ },
8715
8707
  "label": {
8716
8708
  "$ref": "#/definitions/i18nProperty",
8717
8709
  "fieldDescription": "\n\nText which will appear inside the button\n\n"
8718
8710
  },
8719
8711
  "type": {
8720
8712
  "enum": [
8721
- "button",
8722
- "BUTTON"
8713
+ "togglebutton",
8714
+ "TOGGLEBUTTON"
8723
8715
  ],
8724
8716
  "type": "string",
8725
- "fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
8717
+ "fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
8726
8718
  },
8727
8719
  "key": {
8728
8720
  "pattern": "^[a-zA-Z0-9-]+$",
@@ -8732,36 +8724,44 @@
8732
8724
  }
8733
8725
  },
8734
8726
  "required": [
8727
+ "macroParameterValue",
8735
8728
  "label",
8736
8729
  "type",
8737
8730
  "key"
8738
8731
  ],
8739
8732
  "additionalProperties": true,
8740
- "shortClassName": "buttonControlBean",
8733
+ "shortClassName": "macroToggleButtonControlBean",
8741
8734
  "type": "object",
8742
- "title": "ButtonControl",
8743
- "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"
8735
+ "title": "ToggleButtonControl",
8736
+ "description": "\n\nDefines a toggle button which appears inside a ToggleGroup\n\n <p><b>Example</b></p>\n\n\n\n\n\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\n"
8744
8737
  },
8745
8738
  "type": "array",
8746
- "fieldDescription": "\n\nControls which will appear in the control group\n\n"
8739
+ "fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
8740
+ },
8741
+ "macroParameter": {
8742
+ "pattern": "[-_a-z0-9\\.]+",
8743
+ "maxLength": 100,
8744
+ "type": "string",
8745
+ "fieldDescription": "\n\nThe macro parameter identifier used to store the toggle state.\n It must only contain lowercase alphanumeric characters, dashes, underscores, dots and must not contain any spaces.\n\n"
8747
8746
  },
8748
8747
  "type": {
8749
8748
  "enum": [
8750
- "group",
8751
- "GROUP"
8749
+ "togglegroup",
8750
+ "TOGGLEGROUP"
8752
8751
  ],
8753
8752
  "type": "string",
8754
- "fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
8753
+ "fieldDescription": "\n\nThe type field must be set to 'togglegroup'\n\n"
8755
8754
  }
8756
8755
  },
8757
8756
  "required": [
8758
8757
  "controls",
8758
+ "macroParameter",
8759
8759
  "type"
8760
8760
  ],
8761
- "shortClassName": "controlGroupBean",
8761
+ "shortClassName": "macroToggleGroupBean",
8762
8762
  "type": "object",
8763
- "title": "ControlGroup",
8764
- "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"
8763
+ "title": "ToggleGroup",
8764
+ "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"
8765
8765
  },
8766
8766
  {
8767
8767
  "properties": {
@@ -9120,6 +9120,75 @@
9120
9120
  "items": {
9121
9121
  "type": "object",
9122
9122
  "anyOf": [
9123
+ {
9124
+ "properties": {
9125
+ "controls": {
9126
+ "items": {
9127
+ "properties": {
9128
+ "macroParameterValue": {
9129
+ "maxLength": 10000,
9130
+ "type": "string",
9131
+ "fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
9132
+ },
9133
+ "label": {
9134
+ "$ref": "#/definitions/i18nProperty",
9135
+ "fieldDescription": "\n\nText which will appear inside the button\n\n"
9136
+ },
9137
+ "type": {
9138
+ "enum": [
9139
+ "togglebutton",
9140
+ "TOGGLEBUTTON"
9141
+ ],
9142
+ "type": "string",
9143
+ "fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
9144
+ },
9145
+ "key": {
9146
+ "pattern": "^[a-zA-Z0-9-]+$",
9147
+ "maxLength": 100,
9148
+ "type": "string",
9149
+ "fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
9150
+ }
9151
+ },
9152
+ "required": [
9153
+ "macroParameterValue",
9154
+ "label",
9155
+ "type",
9156
+ "key"
9157
+ ],
9158
+ "additionalProperties": true,
9159
+ "shortClassName": "macroToggleButtonControlBean",
9160
+ "type": "object",
9161
+ "title": "ToggleButtonControl",
9162
+ "description": "\n\nDefines a toggle button which appears inside a ToggleGroup\n\n <p><b>Example</b></p>\n\n\n\n\n\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\n"
9163
+ },
9164
+ "type": "array",
9165
+ "fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
9166
+ },
9167
+ "macroParameter": {
9168
+ "pattern": "[-_a-z0-9\\.]+",
9169
+ "maxLength": 100,
9170
+ "type": "string",
9171
+ "fieldDescription": "\n\nThe macro parameter identifier used to store the toggle state.\n It must only contain lowercase alphanumeric characters, dashes, underscores, dots and must not contain any spaces.\n\n"
9172
+ },
9173
+ "type": {
9174
+ "enum": [
9175
+ "togglegroup",
9176
+ "TOGGLEGROUP"
9177
+ ],
9178
+ "type": "string",
9179
+ "fieldDescription": "\n\nThe type field must be set to 'togglegroup'\n\n"
9180
+ }
9181
+ },
9182
+ "required": [
9183
+ "controls",
9184
+ "macroParameter",
9185
+ "type"
9186
+ ],
9187
+ "shortClassName": "macroToggleGroupBean",
9188
+ "type": "object",
9189
+ "title": "ToggleGroup",
9190
+ "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"
9191
+ },
9123
9192
  {
9124
9193
  "properties": {
9125
9194
  "label": {
@@ -9208,75 +9277,6 @@
9208
9277
  "title": "ControlGroup",
9209
9278
  "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"
9210
9279
  },
9211
- {
9212
- "properties": {
9213
- "controls": {
9214
- "items": {
9215
- "properties": {
9216
- "macroParameterValue": {
9217
- "maxLength": 10000,
9218
- "type": "string",
9219
- "fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
9220
- },
9221
- "label": {
9222
- "$ref": "#/definitions/i18nProperty",
9223
- "fieldDescription": "\n\nText which will appear inside the button\n\n"
9224
- },
9225
- "type": {
9226
- "enum": [
9227
- "togglebutton",
9228
- "TOGGLEBUTTON"
9229
- ],
9230
- "type": "string",
9231
- "fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
9232
- },
9233
- "key": {
9234
- "pattern": "^[a-zA-Z0-9-]+$",
9235
- "maxLength": 100,
9236
- "type": "string",
9237
- "fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
9238
- }
9239
- },
9240
- "required": [
9241
- "macroParameterValue",
9242
- "label",
9243
- "type",
9244
- "key"
9245
- ],
9246
- "additionalProperties": true,
9247
- "shortClassName": "macroToggleButtonControlBean",
9248
- "type": "object",
9249
- "title": "ToggleButtonControl",
9250
- "description": "\n\nDefines a toggle button which appears inside a ToggleGroup\n\n <p><b>Example</b></p>\n\n\n\n\n\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\n"
9251
- },
9252
- "type": "array",
9253
- "fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
9254
- },
9255
- "macroParameter": {
9256
- "pattern": "[-_a-z0-9\\.]+",
9257
- "maxLength": 100,
9258
- "type": "string",
9259
- "fieldDescription": "\n\nThe macro parameter identifier used to store the toggle state.\n It must only contain lowercase alphanumeric characters, dashes, underscores, dots and must not contain any spaces.\n\n"
9260
- },
9261
- "type": {
9262
- "enum": [
9263
- "togglegroup",
9264
- "TOGGLEGROUP"
9265
- ],
9266
- "type": "string",
9267
- "fieldDescription": "\n\nThe type field must be set to 'togglegroup'\n\n"
9268
- }
9269
- },
9270
- "required": [
9271
- "controls",
9272
- "macroParameter",
9273
- "type"
9274
- ],
9275
- "shortClassName": "macroToggleGroupBean",
9276
- "type": "object",
9277
- "title": "ToggleGroup",
9278
- "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"
9279
- },
9280
9280
  {
9281
9281
  "properties": {
9282
9282
  "macroParameter": {
@@ -9510,10 +9510,10 @@
9510
9510
  "type": "object",
9511
9511
  "anyOf": [
9512
9512
  {
9513
- "$ref": "#/definitions/singleCondition"
9513
+ "$ref": "#/definitions/compositeCondition"
9514
9514
  },
9515
9515
  {
9516
- "$ref": "#/definitions/compositeCondition"
9516
+ "$ref": "#/definitions/singleCondition"
9517
9517
  }
9518
9518
  ]
9519
9519
  },
@@ -9590,6 +9590,22 @@
9590
9590
  "title": "Inline Dialog Options",
9591
9591
  "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"
9592
9592
  },
9593
+ {
9594
+ "properties": {
9595
+ "key": {
9596
+ "maxLength": 100,
9597
+ "type": "string",
9598
+ "fieldDescription": "\n\n<p>The key of a <a href=\"../dialog/\">Dialog</a> module declared in this Connect add-on.</p>\n\n <p>\n The dialog module will include the <a href=\"../dialog-options/\">Dialog Options</a>\n that would otherwise need to be specified directly in this options object.\n </p>\n\n"
9599
+ }
9600
+ },
9601
+ "required": [
9602
+ "key"
9603
+ ],
9604
+ "shortClassName": "dialogModuleOptions",
9605
+ "type": "object",
9606
+ "title": "Dialog Module Options",
9607
+ "description": "\n\nOptions for a web-item targeting a common <a href=\"../dialog/\">dialog module</a>.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"dialogmodule\",\n \"options\": {\n \"key\": \"dialog-module-key\"\n }\n }\n }\n\n\n"
9608
+ },
9593
9609
  {
9594
9610
  "properties": {
9595
9611
  "size": {
@@ -9634,22 +9650,6 @@
9634
9650
  "type": "object",
9635
9651
  "title": "Dialog Options",
9636
9652
  "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"
9637
- },
9638
- {
9639
- "properties": {
9640
- "key": {
9641
- "maxLength": 100,
9642
- "type": "string",
9643
- "fieldDescription": "\n\n<p>The key of a <a href=\"../dialog/\">Dialog</a> module declared in this Connect add-on.</p>\n\n <p>\n The dialog module will include the <a href=\"../dialog-options/\">Dialog Options</a>\n that would otherwise need to be specified directly in this options object.\n </p>\n\n"
9644
- }
9645
- },
9646
- "required": [
9647
- "key"
9648
- ],
9649
- "shortClassName": "dialogModuleOptions",
9650
- "type": "object",
9651
- "title": "Dialog Module Options",
9652
- "description": "\n\nOptions for a web-item targeting a common <a href=\"../dialog/\">dialog module</a>.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"dialogmodule\",\n \"options\": {\n \"key\": \"dialog-module-key\"\n }\n }\n }\n\n\n"
9653
9653
  }
9654
9654
  ]
9655
9655
  },
@@ -10233,7 +10233,6 @@
10233
10233
  "required": [
10234
10234
  "authorization",
10235
10235
  "exchange",
10236
- "revokeToken",
10237
10236
  "retrieveProfile"
10238
10237
  ],
10239
10238
  "additionalProperties": false,
@@ -10982,10 +10981,10 @@
10982
10981
  "type": "object",
10983
10982
  "anyOf": [
10984
10983
  {
10985
- "$ref": "#"
10984
+ "$ref": "#/definitions/singleCondition"
10986
10985
  },
10987
10986
  {
10988
- "$ref": "#/definitions/singleCondition"
10987
+ "$ref": "#"
10989
10988
  }
10990
10989
  ]
10991
10990
  },