@forge/manifest 2.5.0-next.3 → 2.5.0-next.7

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,29 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 2.5.0-next.7
4
+
5
+ ### Patch Changes
6
+
7
+ - cc8799c: Update manifest definitions
8
+
9
+ ## 2.5.0-next.6
10
+
11
+ ### Patch Changes
12
+
13
+ - 0e82242: Update manifest definitions
14
+
15
+ ## 2.5.0-next.5
16
+
17
+ ### Patch Changes
18
+
19
+ - f5eb8e0: Update manifest definitions
20
+
21
+ ## 2.5.0-next.4
22
+
23
+ ### Patch Changes
24
+
25
+ - 4de9850: Added new product events to scope mapping for custom field: deleted/updated/trashed/restored
26
+
3
27
  ## 2.5.0-next.3
4
28
 
5
29
  ### Patch Changes
@@ -48,6 +48,30 @@
48
48
  "manage:jira-configuration"
49
49
  ]
50
50
  },
51
+ {
52
+ "productEvent": "avi:jira:updated:field",
53
+ "oAuthScopes": [
54
+ "manage:jira-configuration"
55
+ ]
56
+ },
57
+ {
58
+ "productEvent": "avi:jira:trashed:field",
59
+ "oAuthScopes": [
60
+ "manage:jira-configuration"
61
+ ]
62
+ },
63
+ {
64
+ "productEvent": "avi:jira:deleted:field",
65
+ "oAuthScopes": [
66
+ "manage:jira-configuration"
67
+ ]
68
+ },
69
+ {
70
+ "productEvent": "avi:jira:restored:field",
71
+ "oAuthScopes": [
72
+ "manage:jira-configuration"
73
+ ]
74
+ },
51
75
  {
52
76
  "productEvent": "avi:jira:created:field:context",
53
77
  "oAuthScopes": [
@@ -5427,10 +5427,10 @@
5427
5427
  "type": "object",
5428
5428
  "anyOf": [
5429
5429
  {
5430
- "$ref": "#/definitions/compositeCondition"
5430
+ "$ref": "#/definitions/singleCondition"
5431
5431
  },
5432
5432
  {
5433
- "$ref": "#/definitions/singleCondition"
5433
+ "$ref": "#/definitions/compositeCondition"
5434
5434
  }
5435
5435
  ]
5436
5436
  },
@@ -5604,10 +5604,10 @@
5604
5604
  "type": "object",
5605
5605
  "anyOf": [
5606
5606
  {
5607
- "$ref": "#/definitions/compositeCondition"
5607
+ "$ref": "#/definitions/singleCondition"
5608
5608
  },
5609
5609
  {
5610
- "$ref": "#/definitions/singleCondition"
5610
+ "$ref": "#/definitions/compositeCondition"
5611
5611
  }
5612
5612
  ]
5613
5613
  },
@@ -5735,22 +5735,6 @@
5735
5735
  "type": "object",
5736
5736
  "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",
5737
5737
  "anyOf": [
5738
- {
5739
- "properties": {
5740
- "key": {
5741
- "maxLength": 100,
5742
- "type": "string",
5743
- "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"
5744
- }
5745
- },
5746
- "required": [
5747
- "key"
5748
- ],
5749
- "shortClassName": "dialogModuleOptions",
5750
- "type": "object",
5751
- "title": "Dialog Module Options",
5752
- "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"
5753
- },
5754
5738
  {
5755
5739
  "properties": {
5756
5740
  "size": {
@@ -5796,6 +5780,22 @@
5796
5780
  "title": "Dialog Options",
5797
5781
  "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"
5798
5782
  },
5783
+ {
5784
+ "properties": {
5785
+ "key": {
5786
+ "maxLength": 100,
5787
+ "type": "string",
5788
+ "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"
5789
+ }
5790
+ },
5791
+ "required": [
5792
+ "key"
5793
+ ],
5794
+ "shortClassName": "dialogModuleOptions",
5795
+ "type": "object",
5796
+ "title": "Dialog Module Options",
5797
+ "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"
5798
+ },
5799
5799
  {
5800
5800
  "properties": {
5801
5801
  "offsetX": {
@@ -5932,10 +5932,10 @@
5932
5932
  "type": "object",
5933
5933
  "anyOf": [
5934
5934
  {
5935
- "$ref": "#/definitions/singleCondition"
5935
+ "$ref": "#"
5936
5936
  },
5937
5937
  {
5938
- "$ref": "#"
5938
+ "$ref": "#/definitions/singleCondition"
5939
5939
  }
5940
5940
  ]
5941
5941
  },
@@ -6581,38 +6581,6 @@
6581
6581
  "title": "ButtonControl",
6582
6582
  "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"
6583
6583
  },
6584
- {
6585
- "properties": {
6586
- "macroParameter": {
6587
- "maxLength": 100,
6588
- "type": "string",
6589
- "fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
6590
- },
6591
- "type": {
6592
- "enum": [
6593
- "text",
6594
- "TEXT"
6595
- ],
6596
- "type": "string",
6597
- "fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
6598
- },
6599
- "key": {
6600
- "pattern": "^[a-zA-Z0-9-]+$",
6601
- "maxLength": 100,
6602
- "type": "string",
6603
- "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"
6604
- }
6605
- },
6606
- "required": [
6607
- "macroParameter",
6608
- "type",
6609
- "key"
6610
- ],
6611
- "shortClassName": "textControlBean",
6612
- "type": "object",
6613
- "title": "TextControl",
6614
- "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"
6615
- },
6616
6584
  {
6617
6585
  "properties": {
6618
6586
  "controls": {
@@ -6681,6 +6649,38 @@
6681
6649
  "type": "object",
6682
6650
  "title": "ToggleGroup",
6683
6651
  "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"
6652
+ },
6653
+ {
6654
+ "properties": {
6655
+ "macroParameter": {
6656
+ "maxLength": 100,
6657
+ "type": "string",
6658
+ "fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
6659
+ },
6660
+ "type": {
6661
+ "enum": [
6662
+ "text",
6663
+ "TEXT"
6664
+ ],
6665
+ "type": "string",
6666
+ "fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
6667
+ },
6668
+ "key": {
6669
+ "pattern": "^[a-zA-Z0-9-]+$",
6670
+ "maxLength": 100,
6671
+ "type": "string",
6672
+ "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"
6673
+ }
6674
+ },
6675
+ "required": [
6676
+ "macroParameter",
6677
+ "type",
6678
+ "key"
6679
+ ],
6680
+ "shortClassName": "textControlBean",
6681
+ "type": "object",
6682
+ "title": "TextControl",
6683
+ "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"
6684
6684
  }
6685
6685
  ]
6686
6686
  },
@@ -6975,6 +6975,38 @@
6975
6975
  "items": {
6976
6976
  "type": "object",
6977
6977
  "anyOf": [
6978
+ {
6979
+ "properties": {
6980
+ "macroParameter": {
6981
+ "maxLength": 100,
6982
+ "type": "string",
6983
+ "fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
6984
+ },
6985
+ "type": {
6986
+ "enum": [
6987
+ "text",
6988
+ "TEXT"
6989
+ ],
6990
+ "type": "string",
6991
+ "fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
6992
+ },
6993
+ "key": {
6994
+ "pattern": "^[a-zA-Z0-9-]+$",
6995
+ "maxLength": 100,
6996
+ "type": "string",
6997
+ "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"
6998
+ }
6999
+ },
7000
+ "required": [
7001
+ "macroParameter",
7002
+ "type",
7003
+ "key"
7004
+ ],
7005
+ "shortClassName": "textControlBean",
7006
+ "type": "object",
7007
+ "title": "TextControl",
7008
+ "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"
7009
+ },
6978
7010
  {
6979
7011
  "properties": {
6980
7012
  "label": {
@@ -7012,22 +7044,17 @@
7012
7044
  "controls": {
7013
7045
  "items": {
7014
7046
  "properties": {
7015
- "macroParameterValue": {
7016
- "maxLength": 10000,
7017
- "type": "string",
7018
- "fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
7019
- },
7020
7047
  "label": {
7021
7048
  "$ref": "#/definitions/i18nProperty",
7022
7049
  "fieldDescription": "\n\nText which will appear inside the button\n\n"
7023
7050
  },
7024
7051
  "type": {
7025
7052
  "enum": [
7026
- "togglebutton",
7027
- "TOGGLEBUTTON"
7053
+ "button",
7054
+ "BUTTON"
7028
7055
  ],
7029
7056
  "type": "string",
7030
- "fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
7057
+ "fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
7031
7058
  },
7032
7059
  "key": {
7033
7060
  "pattern": "^[a-zA-Z0-9-]+$",
@@ -7037,93 +7064,58 @@
7037
7064
  }
7038
7065
  },
7039
7066
  "required": [
7040
- "macroParameterValue",
7041
7067
  "label",
7042
7068
  "type",
7043
7069
  "key"
7044
7070
  ],
7045
7071
  "additionalProperties": true,
7046
- "shortClassName": "macroToggleButtonControlBean",
7072
+ "shortClassName": "buttonControlBean",
7047
7073
  "type": "object",
7048
- "title": "ToggleButtonControl",
7049
- "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"
7074
+ "title": "ButtonControl",
7075
+ "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"
7050
7076
  },
7051
7077
  "type": "array",
7052
- "fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
7053
- },
7054
- "macroParameter": {
7055
- "pattern": "[-_a-z0-9\\.]+",
7056
- "maxLength": 100,
7057
- "type": "string",
7058
- "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"
7078
+ "fieldDescription": "\n\nControls which will appear in the control group\n\n"
7059
7079
  },
7060
7080
  "type": {
7061
7081
  "enum": [
7062
- "togglegroup",
7063
- "TOGGLEGROUP"
7082
+ "group",
7083
+ "GROUP"
7064
7084
  ],
7065
7085
  "type": "string",
7066
- "fieldDescription": "\n\nThe type field must be set to 'togglegroup'\n\n"
7086
+ "fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
7067
7087
  }
7068
7088
  },
7069
7089
  "required": [
7070
7090
  "controls",
7071
- "macroParameter",
7072
7091
  "type"
7073
7092
  ],
7074
- "shortClassName": "macroToggleGroupBean",
7075
- "type": "object",
7076
- "title": "ToggleGroup",
7077
- "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"
7078
- },
7079
- {
7080
- "properties": {
7081
- "macroParameter": {
7082
- "maxLength": 100,
7083
- "type": "string",
7084
- "fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
7085
- },
7086
- "type": {
7087
- "enum": [
7088
- "text",
7089
- "TEXT"
7090
- ],
7091
- "type": "string",
7092
- "fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
7093
- },
7094
- "key": {
7095
- "pattern": "^[a-zA-Z0-9-]+$",
7096
- "maxLength": 100,
7097
- "type": "string",
7098
- "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"
7099
- }
7100
- },
7101
- "required": [
7102
- "macroParameter",
7103
- "type",
7104
- "key"
7105
- ],
7106
- "shortClassName": "textControlBean",
7093
+ "shortClassName": "controlGroupBean",
7107
7094
  "type": "object",
7108
- "title": "TextControl",
7109
- "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"
7095
+ "title": "ControlGroup",
7096
+ "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"
7110
7097
  },
7111
7098
  {
7112
7099
  "properties": {
7113
7100
  "controls": {
7114
7101
  "items": {
7115
7102
  "properties": {
7103
+ "macroParameterValue": {
7104
+ "maxLength": 10000,
7105
+ "type": "string",
7106
+ "fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
7107
+ },
7116
7108
  "label": {
7117
7109
  "$ref": "#/definitions/i18nProperty",
7118
7110
  "fieldDescription": "\n\nText which will appear inside the button\n\n"
7119
7111
  },
7120
7112
  "type": {
7121
7113
  "enum": [
7122
- "button",
7123
- "BUTTON"
7114
+ "togglebutton",
7115
+ "TOGGLEBUTTON"
7124
7116
  ],
7125
7117
  "type": "string",
7126
- "fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
7118
+ "fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
7127
7119
  },
7128
7120
  "key": {
7129
7121
  "pattern": "^[a-zA-Z0-9-]+$",
@@ -7133,36 +7125,44 @@
7133
7125
  }
7134
7126
  },
7135
7127
  "required": [
7128
+ "macroParameterValue",
7136
7129
  "label",
7137
7130
  "type",
7138
7131
  "key"
7139
7132
  ],
7140
7133
  "additionalProperties": true,
7141
- "shortClassName": "buttonControlBean",
7134
+ "shortClassName": "macroToggleButtonControlBean",
7142
7135
  "type": "object",
7143
- "title": "ButtonControl",
7144
- "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"
7136
+ "title": "ToggleButtonControl",
7137
+ "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"
7145
7138
  },
7146
7139
  "type": "array",
7147
- "fieldDescription": "\n\nControls which will appear in the control group\n\n"
7140
+ "fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
7141
+ },
7142
+ "macroParameter": {
7143
+ "pattern": "[-_a-z0-9\\.]+",
7144
+ "maxLength": 100,
7145
+ "type": "string",
7146
+ "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"
7148
7147
  },
7149
7148
  "type": {
7150
7149
  "enum": [
7151
- "group",
7152
- "GROUP"
7150
+ "togglegroup",
7151
+ "TOGGLEGROUP"
7153
7152
  ],
7154
7153
  "type": "string",
7155
- "fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
7154
+ "fieldDescription": "\n\nThe type field must be set to 'togglegroup'\n\n"
7156
7155
  }
7157
7156
  },
7158
7157
  "required": [
7159
7158
  "controls",
7159
+ "macroParameter",
7160
7160
  "type"
7161
7161
  ],
7162
- "shortClassName": "controlGroupBean",
7162
+ "shortClassName": "macroToggleGroupBean",
7163
7163
  "type": "object",
7164
- "title": "ControlGroup",
7165
- "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"
7164
+ "title": "ToggleGroup",
7165
+ "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"
7166
7166
  }
7167
7167
  ]
7168
7168
  },
@@ -7365,10 +7365,10 @@
7365
7365
  "type": "object",
7366
7366
  "anyOf": [
7367
7367
  {
7368
- "$ref": "#/definitions/singleCondition"
7368
+ "$ref": "#/definitions/compositeCondition"
7369
7369
  },
7370
7370
  {
7371
- "$ref": "#/definitions/compositeCondition"
7371
+ "$ref": "#/definitions/singleCondition"
7372
7372
  }
7373
7373
  ]
7374
7374
  },
@@ -7443,6 +7443,22 @@
7443
7443
  "title": "Dialog Options",
7444
7444
  "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"
7445
7445
  },
7446
+ {
7447
+ "properties": {
7448
+ "key": {
7449
+ "maxLength": 100,
7450
+ "type": "string",
7451
+ "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"
7452
+ }
7453
+ },
7454
+ "required": [
7455
+ "key"
7456
+ ],
7457
+ "shortClassName": "dialogModuleOptions",
7458
+ "type": "object",
7459
+ "title": "Dialog Module Options",
7460
+ "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"
7461
+ },
7446
7462
  {
7447
7463
  "properties": {
7448
7464
  "offsetX": {
@@ -7489,22 +7505,6 @@
7489
7505
  "type": "object",
7490
7506
  "title": "Inline Dialog Options",
7491
7507
  "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"
7492
- },
7493
- {
7494
- "properties": {
7495
- "key": {
7496
- "maxLength": 100,
7497
- "type": "string",
7498
- "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"
7499
- }
7500
- },
7501
- "required": [
7502
- "key"
7503
- ],
7504
- "shortClassName": "dialogModuleOptions",
7505
- "type": "object",
7506
- "title": "Dialog Module Options",
7507
- "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"
7508
7508
  }
7509
7509
  ]
7510
7510
  },
@@ -2506,7 +2506,7 @@ export interface Modules {
2506
2506
  location?: string;
2507
2507
  cacheable?: boolean;
2508
2508
  supportsNative?: boolean;
2509
- conditions?: (CompositeCondition | SingleCondition)[];
2509
+ conditions?: (SingleCondition | CompositeCondition)[];
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?: (CompositeCondition | SingleCondition)[];
2525
+ conditions?: (SingleCondition | CompositeCondition)[];
2526
2526
  params?: {
2527
2527
  [k: string]: unknown;
2528
2528
  };
@@ -2589,7 +2589,7 @@ export interface Modules {
2589
2589
  name?: I18NProperty55;
2590
2590
  weight?: number;
2591
2591
  location?: string;
2592
- conditions?: (CompositeCondition | SingleCondition)[];
2592
+ conditions?: (SingleCondition | CompositeCondition)[];
2593
2593
  params?: {
2594
2594
  [k: string]: unknown;
2595
2595
  };
@@ -2601,7 +2601,7 @@ export interface Modules {
2601
2601
  name?: I18NProperty55;
2602
2602
  weight?: number;
2603
2603
  location?: string;
2604
- conditions?: (CompositeCondition | SingleCondition)[];
2604
+ conditions?: (SingleCondition | CompositeCondition)[];
2605
2605
  params?: {
2606
2606
  [k: string]: unknown;
2607
2607
  };
@@ -2958,7 +2958,7 @@ export interface Modules {
2958
2958
  icon?: Icon18;
2959
2959
  name?: I18NProperty91;
2960
2960
  cacheable?: boolean;
2961
- conditions?: (SingleCondition | CompositeCondition)[];
2961
+ conditions?: (CompositeCondition | SingleCondition)[];
2962
2962
  params?: {
2963
2963
  [k: string]: unknown;
2964
2964
  };
@@ -2974,7 +2974,7 @@ export interface Modules {
2974
2974
  icon?: Icon18;
2975
2975
  name?: I18NProperty91;
2976
2976
  cacheable?: boolean;
2977
- conditions?: (SingleCondition | CompositeCondition)[];
2977
+ conditions?: (CompositeCondition | SingleCondition)[];
2978
2978
  params?: {
2979
2979
  [k: string]: unknown;
2980
2980
  };
@@ -5899,37 +5899,10 @@ export interface Icon10 {
5899
5899
  *
5900
5900
  */
5901
5901
  export interface WebItemTarget1 {
5902
- options?: DialogModuleOptions1 | DialogOptions2 | InlineDialogOptions1;
5902
+ options?: DialogOptions2 | DialogModuleOptions1 | InlineDialogOptions1;
5903
5903
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
5904
5904
  [k: string]: unknown;
5905
5905
  }
5906
- /**
5907
- *
5908
- *
5909
- * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
5910
- *
5911
- * <h3>Example</h3>
5912
- *
5913
- *
5914
- *
5915
- *
5916
- *
5917
- * {
5918
- * "target": {
5919
- * "type": "dialogmodule",
5920
- * "options": {
5921
- * "key": "dialog-module-key"
5922
- * }
5923
- * }
5924
- * }
5925
- *
5926
- *
5927
- *
5928
- */
5929
- export interface DialogModuleOptions1 {
5930
- key: string;
5931
- [k: string]: unknown;
5932
- }
5933
5906
  /**
5934
5907
  *
5935
5908
  *
@@ -6028,6 +6001,33 @@ export interface I18NProperty58 {
6028
6001
  i18n?: string;
6029
6002
  [k: string]: unknown;
6030
6003
  }
6004
+ /**
6005
+ *
6006
+ *
6007
+ * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
6008
+ *
6009
+ * <h3>Example</h3>
6010
+ *
6011
+ *
6012
+ *
6013
+ *
6014
+ *
6015
+ * {
6016
+ * "target": {
6017
+ * "type": "dialogmodule",
6018
+ * "options": {
6019
+ * "key": "dialog-module-key"
6020
+ * }
6021
+ * }
6022
+ * }
6023
+ *
6024
+ *
6025
+ *
6026
+ */
6027
+ export interface DialogModuleOptions1 {
6028
+ key: string;
6029
+ [k: string]: unknown;
6030
+ }
6031
6031
  /**
6032
6032
  *
6033
6033
  *
@@ -6157,7 +6157,7 @@ export interface SingleCondition4 {
6157
6157
  *
6158
6158
  */
6159
6159
  export interface CompositeCondition6 {
6160
- conditions?: (SingleCondition | ManifestSchema)[];
6160
+ conditions?: (ManifestSchema | SingleCondition)[];
6161
6161
  type?: 'and' | 'AND' | 'or' | 'OR';
6162
6162
  [k: string]: unknown;
6163
6163
  }
@@ -8006,7 +8006,7 @@ export interface I18NProperty74 {
8006
8006
  *
8007
8007
  */
8008
8008
  export interface MacroPropertyPanel {
8009
- controls?: (ControlGroup | ButtonControl1 | TextControl | ToggleGroup)[];
8009
+ controls?: (ControlGroup | ButtonControl1 | ToggleGroup | TextControl)[];
8010
8010
  cacheable?: boolean;
8011
8011
  url: string;
8012
8012
  [k: string]: unknown;
@@ -8156,34 +8156,6 @@ export interface I18NProperty76 {
8156
8156
  i18n?: string;
8157
8157
  [k: string]: unknown;
8158
8158
  }
8159
- /**
8160
- *
8161
- *
8162
- * Defines a text field which may appear in control extension points such as the property panel
8163
- *
8164
- * <p><b>Example</b></p>
8165
- *
8166
- *
8167
- *
8168
- *
8169
- *
8170
- * {
8171
- * "type": "button",
8172
- * "label": {
8173
- * "value": "My Custom Control 0"
8174
- * },
8175
- * "key": "my-custom-control-0"
8176
- * }
8177
- *
8178
- *
8179
- *
8180
- */
8181
- export interface TextControl {
8182
- macroParameter: string;
8183
- type: 'text' | 'TEXT';
8184
- key: string;
8185
- [k: string]: unknown;
8186
- }
8187
8159
  /**
8188
8160
  *
8189
8161
  *
@@ -8283,6 +8255,34 @@ export interface I18NProperty77 {
8283
8255
  i18n?: string;
8284
8256
  [k: string]: unknown;
8285
8257
  }
8258
+ /**
8259
+ *
8260
+ *
8261
+ * Defines a text field which may appear in control extension points such as the property panel
8262
+ *
8263
+ * <p><b>Example</b></p>
8264
+ *
8265
+ *
8266
+ *
8267
+ *
8268
+ *
8269
+ * {
8270
+ * "type": "button",
8271
+ * "label": {
8272
+ * "value": "My Custom Control 0"
8273
+ * },
8274
+ * "key": "my-custom-control-0"
8275
+ * }
8276
+ *
8277
+ *
8278
+ *
8279
+ */
8280
+ export interface TextControl {
8281
+ macroParameter: string;
8282
+ type: 'text' | 'TEXT';
8283
+ key: string;
8284
+ [k: string]: unknown;
8285
+ }
8286
8286
  /**
8287
8287
  *
8288
8288
  *
@@ -29251,11 +29251,39 @@ export interface I18NProperty83 {
29251
29251
  *
29252
29252
  */
29253
29253
  export interface MacroPropertyPanel1 {
29254
- controls?: (ButtonControl2 | ToggleGroup1 | TextControl1 | ControlGroup1)[];
29254
+ controls?: (TextControl1 | ButtonControl2 | ControlGroup1 | ToggleGroup1)[];
29255
29255
  cacheable?: boolean;
29256
29256
  url: string;
29257
29257
  [k: string]: unknown;
29258
29258
  }
29259
+ /**
29260
+ *
29261
+ *
29262
+ * Defines a text field 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
+ * "type": "button",
29272
+ * "label": {
29273
+ * "value": "My Custom Control 0"
29274
+ * },
29275
+ * "key": "my-custom-control-0"
29276
+ * }
29277
+ *
29278
+ *
29279
+ *
29280
+ */
29281
+ export interface TextControl1 {
29282
+ macroParameter: string;
29283
+ type: 'text' | 'TEXT';
29284
+ key: string;
29285
+ [k: string]: unknown;
29286
+ }
29259
29287
  /**
29260
29288
  *
29261
29289
  *
@@ -29311,7 +29339,7 @@ export interface I18NProperty84 {
29311
29339
  /**
29312
29340
  *
29313
29341
  *
29314
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
29342
+ * Defines a ControlGroup which may appear in control extension points such as the property panel
29315
29343
  *
29316
29344
  * <p><b>Example</b></p>
29317
29345
  *
@@ -29321,24 +29349,21 @@ export interface I18NProperty84 {
29321
29349
  *
29322
29350
  * [
29323
29351
  * {
29324
- * "type": "togglegroup",
29325
- * "macroParameter": "toggleGroupMacroParameter",
29352
+ * "type": "group",
29326
29353
  * "controls": [
29327
29354
  * {
29328
- * "type": "togglebutton",
29329
- * "macroParameterValue": "macroParameterValue 0",
29355
+ * "type": "button",
29330
29356
  * "label": {
29331
29357
  * "value": "My Custom Control 0"
29332
29358
  * },
29333
- * "key": "my-custom-toggle-button-0"
29359
+ * "key": "my-custom-control-0"
29334
29360
  * },
29335
29361
  * {
29336
- * "type": "togglebutton",
29337
- * "macroParameterValue": "macroParameterValue 1",
29362
+ * "type": "button",
29338
29363
  * "label": {
29339
29364
  * "value": "My Custom Control 1"
29340
29365
  * },
29341
- * "key": "my-custom-toggle-button-1"
29366
+ * "key": "my-custom-control-1"
29342
29367
  * }
29343
29368
  * ]
29344
29369
  * }
@@ -29347,16 +29372,15 @@ export interface I18NProperty84 {
29347
29372
  *
29348
29373
  *
29349
29374
  */
29350
- export interface ToggleGroup1 {
29351
- controls: ToggleButtonControl1[];
29352
- macroParameter: string;
29353
- type: 'togglegroup' | 'TOGGLEGROUP';
29375
+ export interface ControlGroup1 {
29376
+ controls: ButtonControl3[];
29377
+ type: 'group' | 'GROUP';
29354
29378
  [k: string]: unknown;
29355
29379
  }
29356
29380
  /**
29357
29381
  *
29358
29382
  *
29359
- * Defines a toggle button which appears inside a ToggleGroup
29383
+ * Defines a button which may appear in control extension points such as the property panel
29360
29384
  *
29361
29385
  * <p><b>Example</b></p>
29362
29386
  *
@@ -29365,21 +29389,19 @@ export interface ToggleGroup1 {
29365
29389
  *
29366
29390
  *
29367
29391
  * {
29368
- * "type": "togglebutton",
29369
- * "macroParameterValue": "macroParameterValue 0",
29392
+ * "type": "button",
29370
29393
  * "label": {
29371
29394
  * "value": "My Custom Control 0"
29372
29395
  * },
29373
- * "key": "my-custom-toggle-button-0"
29396
+ * "key": "my-custom-control-0"
29374
29397
  * }
29375
29398
  *
29376
29399
  *
29377
29400
  *
29378
29401
  */
29379
- export interface ToggleButtonControl1 {
29380
- macroParameterValue: string;
29402
+ export interface ButtonControl3 {
29381
29403
  label: I18NProperty85;
29382
- type: 'togglebutton' | 'TOGGLEBUTTON';
29404
+ type: 'button' | 'BUTTON';
29383
29405
  key: string;
29384
29406
  [k: string]: unknown;
29385
29407
  }
@@ -29410,35 +29432,7 @@ export interface I18NProperty85 {
29410
29432
  /**
29411
29433
  *
29412
29434
  *
29413
- * Defines a text field which may appear in control extension points such as the property panel
29414
- *
29415
- * <p><b>Example</b></p>
29416
- *
29417
- *
29418
- *
29419
- *
29420
- *
29421
- * {
29422
- * "type": "button",
29423
- * "label": {
29424
- * "value": "My Custom Control 0"
29425
- * },
29426
- * "key": "my-custom-control-0"
29427
- * }
29428
- *
29429
- *
29430
- *
29431
- */
29432
- export interface TextControl1 {
29433
- macroParameter: string;
29434
- type: 'text' | 'TEXT';
29435
- key: string;
29436
- [k: string]: unknown;
29437
- }
29438
- /**
29439
- *
29440
- *
29441
- * Defines a ControlGroup which may appear in control extension points such as the property panel
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 TextControl1 {
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 TextControl1 {
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?: DialogOptions4 | InlineDialogOptions2 | DialogModuleOptions2;
50380
+ options?: DialogOptions4 | DialogModuleOptions2 | InlineDialogOptions2;
50381
50381
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
50382
50382
  [k: string]: unknown;
50383
50383
  }
@@ -50482,7 +50482,7 @@ export interface I18NProperty92 {
50482
50482
  /**
50483
50483
  *
50484
50484
  *
50485
- * Options for an inline dialog target
50485
+ * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
50486
50486
  *
50487
50487
  * <h3>Example</h3>
50488
50488
  *
@@ -50492,11 +50492,9 @@ export interface I18NProperty92 {
50492
50492
  *
50493
50493
  * {
50494
50494
  * "target": {
50495
- * "type": "inlinedialog",
50495
+ * "type": "dialogmodule",
50496
50496
  * "options": {
50497
- * "onHover": true,
50498
- * "offsetX": "30px",
50499
- * "offsetY": "20px"
50497
+ * "key": "dialog-module-key"
50500
50498
  * }
50501
50499
  * }
50502
50500
  * }
@@ -50504,22 +50502,14 @@ export interface I18NProperty92 {
50504
50502
  *
50505
50503
  *
50506
50504
  */
50507
- export interface InlineDialogOptions2 {
50508
- offsetX?: string;
50509
- offsetY?: string;
50510
- width?: string;
50511
- onTop?: boolean;
50512
- showDelay?: number;
50513
- closeOthers?: boolean;
50514
- persistent?: boolean;
50515
- onHover?: boolean;
50516
- isRelativeToMouse?: boolean;
50505
+ export interface DialogModuleOptions2 {
50506
+ key: string;
50517
50507
  [k: string]: unknown;
50518
50508
  }
50519
50509
  /**
50520
50510
  *
50521
50511
  *
50522
- * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
50512
+ * Options for an inline dialog target
50523
50513
  *
50524
50514
  * <h3>Example</h3>
50525
50515
  *
@@ -50529,9 +50519,11 @@ export interface InlineDialogOptions2 {
50529
50519
  *
50530
50520
  * {
50531
50521
  * "target": {
50532
- * "type": "dialogmodule",
50522
+ * "type": "inlinedialog",
50533
50523
  * "options": {
50534
- * "key": "dialog-module-key"
50524
+ * "onHover": true,
50525
+ * "offsetX": "30px",
50526
+ * "offsetY": "20px"
50535
50527
  * }
50536
50528
  * }
50537
50529
  * }
@@ -50539,8 +50531,16 @@ export interface InlineDialogOptions2 {
50539
50531
  *
50540
50532
  *
50541
50533
  */
50542
- export interface DialogModuleOptions2 {
50543
- key: string;
50534
+ export interface InlineDialogOptions2 {
50535
+ offsetX?: string;
50536
+ offsetY?: string;
50537
+ width?: string;
50538
+ onTop?: boolean;
50539
+ showDelay?: number;
50540
+ closeOthers?: boolean;
50541
+ persistent?: boolean;
50542
+ onHover?: boolean;
50543
+ isRelativeToMouse?: boolean;
50544
50544
  [k: string]: unknown;
50545
50545
  }
50546
50546
  /**
@@ -5,15 +5,23 @@
5
5
  "act-as-user:connect-jira",
6
6
  "admin:connect-confluence",
7
7
  "admin:connect-jira",
8
+ "delete:attachment:confluence",
9
+ "delete:blogpost:confluence",
10
+ "delete:board-scope.admin:jira-software",
11
+ "delete:comment:confluence",
8
12
  "delete:connect-confluence",
9
13
  "delete:connect-jira",
10
14
  "delete:content:confluence",
15
+ "delete:custom-content:confluence",
16
+ "delete:page:confluence",
11
17
  "delete:space:confluence",
18
+ "delete:sprint:jira-software",
12
19
  "manage:confluence-configuration",
13
20
  "manage:jira-configuration",
14
21
  "manage:jira-data-provider",
15
22
  "manage:jira-project",
16
23
  "manage:jira-webhook",
24
+ "manage:servicedesk-customer",
17
25
  "project-admin:connect-jira",
18
26
  "read:account",
19
27
  "read:analytics.content:confluence",
@@ -21,9 +29,11 @@
21
29
  "read:audit-log:confluence",
22
30
  "read:audit-log:jira",
23
31
  "read:avatar:jira",
32
+ "read:blogpost:confluence",
24
33
  "read:board-scope.admin:jira-software",
25
34
  "read:board-scope:jira-software",
26
35
  "read:build:jira-software",
36
+ "read:comment:confluence",
27
37
  "read:component:compass",
28
38
  "read:configuration:confluence",
29
39
  "read:configuration:jira",
@@ -36,16 +46,13 @@
36
46
  "read:confluence-user",
37
47
  "read:connect-confluence",
38
48
  "read:connect-jira",
39
- "read:content.comment:confluence",
40
- "read:content.inlinetask:confluence",
41
- "read:content.label:confluence",
49
+ "read:content-details:confluence",
50
+ "read:content.metadata:confluence",
42
51
  "read:content.permission:confluence",
43
52
  "read:content.property:confluence",
44
53
  "read:content.restriction:confluence",
45
- "read:content.summary:confluence",
46
- "read:content.template:confluence",
47
- "read:content.watcher:confluence",
48
54
  "read:content:confluence",
55
+ "read:custom-content:confluence",
49
56
  "read:customer:jira-service-management",
50
57
  "read:dashboard.property:jira",
51
58
  "read:dashboard:jira",
@@ -59,6 +66,7 @@
59
66
  "read:group:confluence",
60
67
  "read:group:jira",
61
68
  "read:information:jira",
69
+ "read:inlinetask:confluence",
62
70
  "read:instance:jira",
63
71
  "read:issue-link-type:jira",
64
72
  "read:issue-security-scheme:jira",
@@ -82,12 +90,14 @@
82
90
  "read:jira-user",
83
91
  "read:jira-work",
84
92
  "read:knowledgebase:jira-service-management",
93
+ "read:label:confluence",
85
94
  "read:label:jira",
86
95
  "read:me",
87
96
  "read:notification-scheme:jira",
88
97
  "read:organization.property:jira-service-management",
89
98
  "read:organization.user:jira-service-management",
90
99
  "read:organization:jira-service-management",
100
+ "read:page:confluence",
91
101
  "read:permissions:jira",
92
102
  "read:priority:jira",
93
103
  "read:project-category:jira",
@@ -115,21 +125,26 @@
115
125
  "read:role:jira",
116
126
  "read:scorecard:compass",
117
127
  "read:screen:jira",
128
+ "read:servicedesk-request",
118
129
  "read:servicedesk.customer:jira-service-management",
119
130
  "read:servicedesk.organization:jira-service-management",
120
131
  "read:servicedesk.property:jira-service-management",
121
132
  "read:servicedesk:jira-service-management",
133
+ "read:servicemanagement-insight-objects",
122
134
  "read:source-code:jira-software",
135
+ "read:space-details:confluence",
123
136
  "read:space.permission:confluence",
124
137
  "read:space.property:confluence",
125
138
  "read:space.setting:confluence",
126
139
  "read:space:confluence",
127
140
  "read:sprint:jira-software",
128
141
  "read:status:jira",
142
+ "read:template:confluence",
129
143
  "read:user-group:jira",
130
144
  "read:user.property:jira",
131
145
  "read:user:confluence",
132
146
  "read:user:jira",
147
+ "read:watcher:confluence",
133
148
  "read:webhook:jira",
134
149
  "read:workflow.property:jira",
135
150
  "read:workflow:jira",
@@ -145,9 +160,11 @@
145
160
  "write:attachment:confluence",
146
161
  "write:audit-log:confluence",
147
162
  "write:avatar:jira",
163
+ "write:blogpost:confluence",
148
164
  "write:board-scope.admin:jira-software",
149
165
  "write:board-scope:jira-software",
150
166
  "write:build:jira-software",
167
+ "write:comment:confluence",
151
168
  "write:component:compass",
152
169
  "write:configuration:confluence",
153
170
  "write:confluence-content",
@@ -157,13 +174,10 @@
157
174
  "write:confluence-space",
158
175
  "write:connect-confluence",
159
176
  "write:connect-jira",
160
- "write:content.inlinetask:confluence",
161
- "write:content.label:confluence",
162
177
  "write:content.property:confluence",
163
178
  "write:content.restriction:confluence",
164
- "write:content.template:confluence",
165
- "write:content.watcher:confluence",
166
179
  "write:content:confluence",
180
+ "write:custom-content:confluence",
167
181
  "write:customer:jira-service-management",
168
182
  "write:dashboard.property:jira",
169
183
  "write:dashboard:jira",
@@ -176,6 +190,7 @@
176
190
  "write:filter:jira",
177
191
  "write:group:confluence",
178
192
  "write:group:jira",
193
+ "write:inlinetask:confluence",
179
194
  "write:issue-link-type:jira",
180
195
  "write:issue-type-scheme:jira",
181
196
  "write:issue-type-screen-scheme:jira",
@@ -195,9 +210,11 @@
195
210
  "write:issue:jira",
196
211
  "write:issue:jira-software",
197
212
  "write:jira-work",
213
+ "write:label:confluence",
198
214
  "write:organization.property:jira-service-management",
199
215
  "write:organization.user:jira-service-management",
200
216
  "write:organization:jira-service-management",
217
+ "write:page:confluence",
201
218
  "write:permissions:jira",
202
219
  "write:project-category:jira",
203
220
  "write:project.components:jira",
@@ -220,6 +237,7 @@
220
237
  "write:role:jira",
221
238
  "write:scorecard:compass",
222
239
  "write:screen:jira",
240
+ "write:servicedesk-request",
223
241
  "write:servicedesk.customer:jira-service-management",
224
242
  "write:servicedesk.organization:jira-service-management",
225
243
  "write:servicedesk.property:jira-service-management",
@@ -230,9 +248,11 @@
230
248
  "write:space.setting:confluence",
231
249
  "write:space:confluence",
232
250
  "write:sprint:jira-software",
251
+ "write:template:confluence",
233
252
  "write:user-group:jira",
234
253
  "write:user.property:jira",
235
254
  "write:user:jira",
255
+ "write:watcher:confluence",
236
256
  "write:webhook:jira",
237
257
  "write:workflow.property:jira",
238
258
  "write:workflow:jira"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "2.5.0-next.3",
3
+ "version": "2.5.0-next.7",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {