@forge/manifest 2.3.0-next.2 → 2.3.1-next.1
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 +37 -0
- package/out/schema/manifest-schema.json +152 -139
- package/out/schema/manifest.d.ts +162 -152
- package/out/scopes/shipyard-scopes.json +7 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 2.3.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b91d511: Update manifest definitions
|
|
8
|
+
- Updated dependencies [4608ccd]
|
|
9
|
+
- @forge/util@1.0.1-next.0
|
|
10
|
+
|
|
11
|
+
## 2.3.1-next.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 82167f3: Update manifest definitions
|
|
16
|
+
|
|
17
|
+
## 2.3.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- f3c0748: Updated bearereMethod to allow for custom Objects. Updated Exchange action to allow for custom header names
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- bd2be7f: Update manifest definitions
|
|
26
|
+
- 46240f3: Update manifest definitions
|
|
27
|
+
- 18c799a: Update manifest definitions
|
|
28
|
+
- 5ed2e3a: Update manifest definitions
|
|
29
|
+
- 7cfcd6c: Update manifest definitions
|
|
30
|
+
- f0d3871: Update manifest definitions
|
|
31
|
+
- 9b09fef: Update manifest definitions
|
|
32
|
+
|
|
33
|
+
## 2.3.0-next.3
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- 46240f3: Update manifest definitions
|
|
38
|
+
- 5ed2e3a: Update manifest definitions
|
|
39
|
+
|
|
3
40
|
## 2.3.0-next.2
|
|
4
41
|
|
|
5
42
|
### Minor Changes
|
|
@@ -5206,10 +5206,10 @@
|
|
|
5206
5206
|
"type": "object",
|
|
5207
5207
|
"anyOf": [
|
|
5208
5208
|
{
|
|
5209
|
-
"$ref": "#/definitions/
|
|
5209
|
+
"$ref": "#/definitions/singleCondition"
|
|
5210
5210
|
},
|
|
5211
5211
|
{
|
|
5212
|
-
"$ref": "#/definitions/
|
|
5212
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5213
5213
|
}
|
|
5214
5214
|
]
|
|
5215
5215
|
},
|
|
@@ -5270,10 +5270,10 @@
|
|
|
5270
5270
|
"type": "object",
|
|
5271
5271
|
"anyOf": [
|
|
5272
5272
|
{
|
|
5273
|
-
"$ref": "#/definitions/
|
|
5273
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5274
5274
|
},
|
|
5275
5275
|
{
|
|
5276
|
-
"$ref": "#/definitions/
|
|
5276
|
+
"$ref": "#/definitions/singleCondition"
|
|
5277
5277
|
}
|
|
5278
5278
|
]
|
|
5279
5279
|
},
|
|
@@ -5328,10 +5328,10 @@
|
|
|
5328
5328
|
"type": "object",
|
|
5329
5329
|
"anyOf": [
|
|
5330
5330
|
{
|
|
5331
|
-
"$ref": "#/definitions/
|
|
5331
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5332
5332
|
},
|
|
5333
5333
|
{
|
|
5334
|
-
"$ref": "#/definitions/
|
|
5334
|
+
"$ref": "#/definitions/singleCondition"
|
|
5335
5335
|
}
|
|
5336
5336
|
]
|
|
5337
5337
|
},
|
|
@@ -5386,10 +5386,10 @@
|
|
|
5386
5386
|
"type": "object",
|
|
5387
5387
|
"anyOf": [
|
|
5388
5388
|
{
|
|
5389
|
-
"$ref": "#/definitions/
|
|
5389
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5390
5390
|
},
|
|
5391
5391
|
{
|
|
5392
|
-
"$ref": "#/definitions/
|
|
5392
|
+
"$ref": "#/definitions/singleCondition"
|
|
5393
5393
|
}
|
|
5394
5394
|
]
|
|
5395
5395
|
},
|
|
@@ -5622,6 +5622,33 @@
|
|
|
5622
5622
|
"items": {
|
|
5623
5623
|
"type": "object",
|
|
5624
5624
|
"anyOf": [
|
|
5625
|
+
{
|
|
5626
|
+
"properties": {
|
|
5627
|
+
"condition": {
|
|
5628
|
+
"maxLength": 100,
|
|
5629
|
+
"type": "string",
|
|
5630
|
+
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
5631
|
+
},
|
|
5632
|
+
"invert": {
|
|
5633
|
+
"type": "boolean",
|
|
5634
|
+
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
5635
|
+
"defaultValue": "false"
|
|
5636
|
+
},
|
|
5637
|
+
"params": {
|
|
5638
|
+
"additionalProperties": true,
|
|
5639
|
+
"type": "object",
|
|
5640
|
+
"fieldTitle": "Object",
|
|
5641
|
+
"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"
|
|
5642
|
+
}
|
|
5643
|
+
},
|
|
5644
|
+
"required": [
|
|
5645
|
+
"condition"
|
|
5646
|
+
],
|
|
5647
|
+
"shortClassName": "singleConditionBean",
|
|
5648
|
+
"type": "object",
|
|
5649
|
+
"title": "Single Condition",
|
|
5650
|
+
"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"
|
|
5651
|
+
},
|
|
5625
5652
|
{
|
|
5626
5653
|
"properties": {
|
|
5627
5654
|
"conditions": {
|
|
@@ -5654,33 +5681,6 @@
|
|
|
5654
5681
|
"type": "object",
|
|
5655
5682
|
"title": "Composite Condition",
|
|
5656
5683
|
"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"
|
|
5657
|
-
},
|
|
5658
|
-
{
|
|
5659
|
-
"properties": {
|
|
5660
|
-
"condition": {
|
|
5661
|
-
"maxLength": 100,
|
|
5662
|
-
"type": "string",
|
|
5663
|
-
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
5664
|
-
},
|
|
5665
|
-
"invert": {
|
|
5666
|
-
"type": "boolean",
|
|
5667
|
-
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
5668
|
-
"defaultValue": "false"
|
|
5669
|
-
},
|
|
5670
|
-
"params": {
|
|
5671
|
-
"additionalProperties": true,
|
|
5672
|
-
"type": "object",
|
|
5673
|
-
"fieldTitle": "Object",
|
|
5674
|
-
"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"
|
|
5675
|
-
}
|
|
5676
|
-
},
|
|
5677
|
-
"required": [
|
|
5678
|
-
"condition"
|
|
5679
|
-
],
|
|
5680
|
-
"shortClassName": "singleConditionBean",
|
|
5681
|
-
"type": "object",
|
|
5682
|
-
"title": "Single Condition",
|
|
5683
|
-
"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"
|
|
5684
5684
|
}
|
|
5685
5685
|
]
|
|
5686
5686
|
},
|
|
@@ -5892,10 +5892,10 @@
|
|
|
5892
5892
|
"type": "object",
|
|
5893
5893
|
"anyOf": [
|
|
5894
5894
|
{
|
|
5895
|
-
"$ref": "
|
|
5895
|
+
"$ref": "#"
|
|
5896
5896
|
},
|
|
5897
5897
|
{
|
|
5898
|
-
"$ref": "
|
|
5898
|
+
"$ref": "#/definitions/singleCondition"
|
|
5899
5899
|
}
|
|
5900
5900
|
]
|
|
5901
5901
|
},
|
|
@@ -6273,6 +6273,70 @@
|
|
|
6273
6273
|
"title": "ControlGroup",
|
|
6274
6274
|
"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"
|
|
6275
6275
|
},
|
|
6276
|
+
{
|
|
6277
|
+
"properties": {
|
|
6278
|
+
"macroParameter": {
|
|
6279
|
+
"maxLength": 100,
|
|
6280
|
+
"type": "string",
|
|
6281
|
+
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
6282
|
+
},
|
|
6283
|
+
"type": {
|
|
6284
|
+
"enum": [
|
|
6285
|
+
"text",
|
|
6286
|
+
"TEXT"
|
|
6287
|
+
],
|
|
6288
|
+
"type": "string",
|
|
6289
|
+
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
6290
|
+
},
|
|
6291
|
+
"key": {
|
|
6292
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6293
|
+
"maxLength": 100,
|
|
6294
|
+
"type": "string",
|
|
6295
|
+
"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"
|
|
6296
|
+
}
|
|
6297
|
+
},
|
|
6298
|
+
"required": [
|
|
6299
|
+
"macroParameter",
|
|
6300
|
+
"type",
|
|
6301
|
+
"key"
|
|
6302
|
+
],
|
|
6303
|
+
"shortClassName": "textControlBean",
|
|
6304
|
+
"type": "object",
|
|
6305
|
+
"title": "TextControl",
|
|
6306
|
+
"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"
|
|
6307
|
+
},
|
|
6308
|
+
{
|
|
6309
|
+
"properties": {
|
|
6310
|
+
"label": {
|
|
6311
|
+
"$ref": "#/definitions/i18nProperty",
|
|
6312
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6313
|
+
},
|
|
6314
|
+
"type": {
|
|
6315
|
+
"enum": [
|
|
6316
|
+
"button",
|
|
6317
|
+
"BUTTON"
|
|
6318
|
+
],
|
|
6319
|
+
"type": "string",
|
|
6320
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6321
|
+
},
|
|
6322
|
+
"key": {
|
|
6323
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6324
|
+
"maxLength": 100,
|
|
6325
|
+
"type": "string",
|
|
6326
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6327
|
+
}
|
|
6328
|
+
},
|
|
6329
|
+
"required": [
|
|
6330
|
+
"label",
|
|
6331
|
+
"type",
|
|
6332
|
+
"key"
|
|
6333
|
+
],
|
|
6334
|
+
"additionalProperties": true,
|
|
6335
|
+
"shortClassName": "buttonControlBean",
|
|
6336
|
+
"type": "object",
|
|
6337
|
+
"title": "ButtonControl",
|
|
6338
|
+
"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"
|
|
6339
|
+
},
|
|
6276
6340
|
{
|
|
6277
6341
|
"properties": {
|
|
6278
6342
|
"controls": {
|
|
@@ -6341,70 +6405,6 @@
|
|
|
6341
6405
|
"type": "object",
|
|
6342
6406
|
"title": "ToggleGroup",
|
|
6343
6407
|
"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"
|
|
6344
|
-
},
|
|
6345
|
-
{
|
|
6346
|
-
"properties": {
|
|
6347
|
-
"macroParameter": {
|
|
6348
|
-
"maxLength": 100,
|
|
6349
|
-
"type": "string",
|
|
6350
|
-
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
6351
|
-
},
|
|
6352
|
-
"type": {
|
|
6353
|
-
"enum": [
|
|
6354
|
-
"text",
|
|
6355
|
-
"TEXT"
|
|
6356
|
-
],
|
|
6357
|
-
"type": "string",
|
|
6358
|
-
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
6359
|
-
},
|
|
6360
|
-
"key": {
|
|
6361
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6362
|
-
"maxLength": 100,
|
|
6363
|
-
"type": "string",
|
|
6364
|
-
"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"
|
|
6365
|
-
}
|
|
6366
|
-
},
|
|
6367
|
-
"required": [
|
|
6368
|
-
"macroParameter",
|
|
6369
|
-
"type",
|
|
6370
|
-
"key"
|
|
6371
|
-
],
|
|
6372
|
-
"shortClassName": "textControlBean",
|
|
6373
|
-
"type": "object",
|
|
6374
|
-
"title": "TextControl",
|
|
6375
|
-
"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"
|
|
6376
|
-
},
|
|
6377
|
-
{
|
|
6378
|
-
"properties": {
|
|
6379
|
-
"label": {
|
|
6380
|
-
"$ref": "#/definitions/i18nProperty",
|
|
6381
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6382
|
-
},
|
|
6383
|
-
"type": {
|
|
6384
|
-
"enum": [
|
|
6385
|
-
"button",
|
|
6386
|
-
"BUTTON"
|
|
6387
|
-
],
|
|
6388
|
-
"type": "string",
|
|
6389
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6390
|
-
},
|
|
6391
|
-
"key": {
|
|
6392
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6393
|
-
"maxLength": 100,
|
|
6394
|
-
"type": "string",
|
|
6395
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6396
|
-
}
|
|
6397
|
-
},
|
|
6398
|
-
"required": [
|
|
6399
|
-
"label",
|
|
6400
|
-
"type",
|
|
6401
|
-
"key"
|
|
6402
|
-
],
|
|
6403
|
-
"additionalProperties": true,
|
|
6404
|
-
"shortClassName": "buttonControlBean",
|
|
6405
|
-
"type": "object",
|
|
6406
|
-
"title": "ButtonControl",
|
|
6407
|
-
"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"
|
|
6408
6408
|
}
|
|
6409
6409
|
]
|
|
6410
6410
|
},
|
|
@@ -6699,6 +6699,38 @@
|
|
|
6699
6699
|
"items": {
|
|
6700
6700
|
"type": "object",
|
|
6701
6701
|
"anyOf": [
|
|
6702
|
+
{
|
|
6703
|
+
"properties": {
|
|
6704
|
+
"label": {
|
|
6705
|
+
"$ref": "#/definitions/i18nProperty",
|
|
6706
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6707
|
+
},
|
|
6708
|
+
"type": {
|
|
6709
|
+
"enum": [
|
|
6710
|
+
"button",
|
|
6711
|
+
"BUTTON"
|
|
6712
|
+
],
|
|
6713
|
+
"type": "string",
|
|
6714
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6715
|
+
},
|
|
6716
|
+
"key": {
|
|
6717
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6718
|
+
"maxLength": 100,
|
|
6719
|
+
"type": "string",
|
|
6720
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6721
|
+
}
|
|
6722
|
+
},
|
|
6723
|
+
"required": [
|
|
6724
|
+
"label",
|
|
6725
|
+
"type",
|
|
6726
|
+
"key"
|
|
6727
|
+
],
|
|
6728
|
+
"additionalProperties": true,
|
|
6729
|
+
"shortClassName": "buttonControlBean",
|
|
6730
|
+
"type": "object",
|
|
6731
|
+
"title": "ButtonControl",
|
|
6732
|
+
"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"
|
|
6733
|
+
},
|
|
6702
6734
|
{
|
|
6703
6735
|
"properties": {
|
|
6704
6736
|
"controls": {
|
|
@@ -6800,38 +6832,6 @@
|
|
|
6800
6832
|
"title": "TextControl",
|
|
6801
6833
|
"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"
|
|
6802
6834
|
},
|
|
6803
|
-
{
|
|
6804
|
-
"properties": {
|
|
6805
|
-
"label": {
|
|
6806
|
-
"$ref": "#/definitions/i18nProperty",
|
|
6807
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6808
|
-
},
|
|
6809
|
-
"type": {
|
|
6810
|
-
"enum": [
|
|
6811
|
-
"button",
|
|
6812
|
-
"BUTTON"
|
|
6813
|
-
],
|
|
6814
|
-
"type": "string",
|
|
6815
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6816
|
-
},
|
|
6817
|
-
"key": {
|
|
6818
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6819
|
-
"maxLength": 100,
|
|
6820
|
-
"type": "string",
|
|
6821
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6822
|
-
}
|
|
6823
|
-
},
|
|
6824
|
-
"required": [
|
|
6825
|
-
"label",
|
|
6826
|
-
"type",
|
|
6827
|
-
"key"
|
|
6828
|
-
],
|
|
6829
|
-
"additionalProperties": true,
|
|
6830
|
-
"shortClassName": "buttonControlBean",
|
|
6831
|
-
"type": "object",
|
|
6832
|
-
"title": "ButtonControl",
|
|
6833
|
-
"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"
|
|
6834
|
-
},
|
|
6835
6835
|
{
|
|
6836
6836
|
"properties": {
|
|
6837
6837
|
"controls": {
|
|
@@ -7089,10 +7089,10 @@
|
|
|
7089
7089
|
"type": "object",
|
|
7090
7090
|
"anyOf": [
|
|
7091
7091
|
{
|
|
7092
|
-
"$ref": "#/definitions/
|
|
7092
|
+
"$ref": "#/definitions/singleCondition"
|
|
7093
7093
|
},
|
|
7094
7094
|
{
|
|
7095
|
-
"$ref": "#/definitions/
|
|
7095
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7096
7096
|
}
|
|
7097
7097
|
]
|
|
7098
7098
|
},
|
|
@@ -7678,7 +7678,10 @@
|
|
|
7678
7678
|
]
|
|
7679
7679
|
},
|
|
7680
7680
|
"bearerMethod": {
|
|
7681
|
-
"type": [
|
|
7681
|
+
"type": [
|
|
7682
|
+
"string",
|
|
7683
|
+
"object"
|
|
7684
|
+
],
|
|
7682
7685
|
"additionalProperties": false,
|
|
7683
7686
|
"enum": [
|
|
7684
7687
|
"authorization-header",
|
|
@@ -7897,6 +7900,16 @@
|
|
|
7897
7900
|
"path": {
|
|
7898
7901
|
"type": "string",
|
|
7899
7902
|
"maxLength": 1000
|
|
7903
|
+
},
|
|
7904
|
+
"queryParameters": {
|
|
7905
|
+
"type": "object",
|
|
7906
|
+
"description": "Additional GET parameters sent to the API",
|
|
7907
|
+
"additionalProperties": false,
|
|
7908
|
+
"patternProperties": {
|
|
7909
|
+
"^[a-zA-Z0-9_-]+$": {
|
|
7910
|
+
"type": "string"
|
|
7911
|
+
}
|
|
7912
|
+
}
|
|
7900
7913
|
}
|
|
7901
7914
|
}
|
|
7902
7915
|
},
|
|
@@ -8423,7 +8436,7 @@
|
|
|
8423
8436
|
"value": {
|
|
8424
8437
|
"maxLength": 1500,
|
|
8425
8438
|
"type": "string",
|
|
8426
|
-
"fieldDescription": "\n\nThe human-readable default value. This will be used if no translation exists.\n\n"
|
|
8439
|
+
"fieldDescription": "\n\nThe human-readable default value. This will be used if no translation exists.\n Only the following HTML tags are supported: `b`, `i`, `strong`, `em`, and `code`.\n\n"
|
|
8427
8440
|
},
|
|
8428
8441
|
"i18n": {
|
|
8429
8442
|
"maxLength": 300,
|
|
@@ -8497,10 +8510,10 @@
|
|
|
8497
8510
|
"type": "object",
|
|
8498
8511
|
"anyOf": [
|
|
8499
8512
|
{
|
|
8500
|
-
"$ref": "
|
|
8513
|
+
"$ref": "#"
|
|
8501
8514
|
},
|
|
8502
8515
|
{
|
|
8503
|
-
"$ref": "
|
|
8516
|
+
"$ref": "#/definitions/singleCondition"
|
|
8504
8517
|
}
|
|
8505
8518
|
]
|
|
8506
8519
|
},
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -2406,7 +2406,7 @@ export interface Modules {
|
|
|
2406
2406
|
filter?: string;
|
|
2407
2407
|
excludeBody?: boolean;
|
|
2408
2408
|
event?: string;
|
|
2409
|
-
conditions?: (
|
|
2409
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2410
2410
|
propertyKeys?: string[];
|
|
2411
2411
|
url?: string;
|
|
2412
2412
|
key: ModuleKeySchema;
|
|
@@ -2416,7 +2416,7 @@ export interface Modules {
|
|
|
2416
2416
|
filter?: string;
|
|
2417
2417
|
excludeBody?: boolean;
|
|
2418
2418
|
event?: string;
|
|
2419
|
-
conditions?: (
|
|
2419
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2420
2420
|
propertyKeys?: string[];
|
|
2421
2421
|
url?: string;
|
|
2422
2422
|
key: ModuleKeySchema;
|
|
@@ -2430,7 +2430,7 @@ export interface Modules {
|
|
|
2430
2430
|
weight?: number;
|
|
2431
2431
|
cacheable?: boolean;
|
|
2432
2432
|
location?: string;
|
|
2433
|
-
conditions?: (
|
|
2433
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2434
2434
|
params?: {
|
|
2435
2435
|
[k: string]: unknown;
|
|
2436
2436
|
};
|
|
@@ -2444,7 +2444,7 @@ export interface Modules {
|
|
|
2444
2444
|
weight?: number;
|
|
2445
2445
|
cacheable?: boolean;
|
|
2446
2446
|
location?: string;
|
|
2447
|
-
conditions?: (
|
|
2447
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2448
2448
|
params?: {
|
|
2449
2449
|
[k: string]: unknown;
|
|
2450
2450
|
};
|
|
@@ -2459,7 +2459,7 @@ export interface Modules {
|
|
|
2459
2459
|
name?: I18NProperty55;
|
|
2460
2460
|
weight?: number;
|
|
2461
2461
|
location?: string;
|
|
2462
|
-
conditions?: (
|
|
2462
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2463
2463
|
params?: {
|
|
2464
2464
|
[k: string]: unknown;
|
|
2465
2465
|
};
|
|
@@ -2471,7 +2471,7 @@ export interface Modules {
|
|
|
2471
2471
|
name?: I18NProperty55;
|
|
2472
2472
|
weight?: number;
|
|
2473
2473
|
location?: string;
|
|
2474
|
-
conditions?: (
|
|
2474
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2475
2475
|
params?: {
|
|
2476
2476
|
[k: string]: unknown;
|
|
2477
2477
|
};
|
|
@@ -2486,7 +2486,7 @@ export interface Modules {
|
|
|
2486
2486
|
weight?: number;
|
|
2487
2487
|
cacheable?: boolean;
|
|
2488
2488
|
location?: string;
|
|
2489
|
-
conditions?: (
|
|
2489
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2490
2490
|
params?: {
|
|
2491
2491
|
[k: string]: unknown;
|
|
2492
2492
|
};
|
|
@@ -2500,7 +2500,7 @@ export interface Modules {
|
|
|
2500
2500
|
weight?: number;
|
|
2501
2501
|
cacheable?: boolean;
|
|
2502
2502
|
location?: string;
|
|
2503
|
-
conditions?: (
|
|
2503
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2504
2504
|
params?: {
|
|
2505
2505
|
[k: string]: unknown;
|
|
2506
2506
|
};
|
|
@@ -2524,7 +2524,7 @@ export interface Modules {
|
|
|
2524
2524
|
name?: I18NProperty59;
|
|
2525
2525
|
location?: string;
|
|
2526
2526
|
cacheable?: boolean;
|
|
2527
|
-
conditions?: (
|
|
2527
|
+
conditions?: (SingleCondition4 | CompositeCondition6)[];
|
|
2528
2528
|
key: ModuleKeySchema;
|
|
2529
2529
|
[k: string]: unknown;
|
|
2530
2530
|
},
|
|
@@ -2542,7 +2542,7 @@ export interface Modules {
|
|
|
2542
2542
|
name?: I18NProperty59;
|
|
2543
2543
|
location?: string;
|
|
2544
2544
|
cacheable?: boolean;
|
|
2545
|
-
conditions?: (
|
|
2545
|
+
conditions?: (SingleCondition4 | CompositeCondition6)[];
|
|
2546
2546
|
key: ModuleKeySchema;
|
|
2547
2547
|
[k: string]: unknown;
|
|
2548
2548
|
}[]
|
|
@@ -2828,7 +2828,7 @@ export interface Modules {
|
|
|
2828
2828
|
icon?: Icon18;
|
|
2829
2829
|
name?: I18NProperty91;
|
|
2830
2830
|
cacheable?: boolean;
|
|
2831
|
-
conditions?: (
|
|
2831
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2832
2832
|
params?: {
|
|
2833
2833
|
[k: string]: unknown;
|
|
2834
2834
|
};
|
|
@@ -2844,7 +2844,7 @@ export interface Modules {
|
|
|
2844
2844
|
icon?: Icon18;
|
|
2845
2845
|
name?: I18NProperty91;
|
|
2846
2846
|
cacheable?: boolean;
|
|
2847
|
-
conditions?: (
|
|
2847
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2848
2848
|
params?: {
|
|
2849
2849
|
[k: string]: unknown;
|
|
2850
2850
|
};
|
|
@@ -3092,7 +3092,7 @@ export interface SingleCondition {
|
|
|
3092
3092
|
*
|
|
3093
3093
|
*/
|
|
3094
3094
|
export interface CompositeCondition {
|
|
3095
|
-
conditions?: (
|
|
3095
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
3096
3096
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
3097
3097
|
[k: string]: unknown;
|
|
3098
3098
|
}
|
|
@@ -5959,6 +5959,37 @@ export interface I18NProperty59 {
|
|
|
5959
5959
|
i18n?: string;
|
|
5960
5960
|
[k: string]: unknown;
|
|
5961
5961
|
}
|
|
5962
|
+
/**
|
|
5963
|
+
*
|
|
5964
|
+
*
|
|
5965
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
5966
|
+
* [Conditions](../../conditions/) for more information.
|
|
5967
|
+
*
|
|
5968
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
5969
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
5970
|
+
*
|
|
5971
|
+
* <h3>Example</h3>
|
|
5972
|
+
*
|
|
5973
|
+
*
|
|
5974
|
+
*
|
|
5975
|
+
*
|
|
5976
|
+
*
|
|
5977
|
+
* {
|
|
5978
|
+
* "condition": "user_is_logged_in",
|
|
5979
|
+
* "invert": false
|
|
5980
|
+
* }
|
|
5981
|
+
*
|
|
5982
|
+
*
|
|
5983
|
+
*
|
|
5984
|
+
*/
|
|
5985
|
+
export interface SingleCondition4 {
|
|
5986
|
+
condition: string;
|
|
5987
|
+
invert?: boolean;
|
|
5988
|
+
params?: {
|
|
5989
|
+
[k: string]: unknown;
|
|
5990
|
+
};
|
|
5991
|
+
[k: string]: unknown;
|
|
5992
|
+
}
|
|
5962
5993
|
/**
|
|
5963
5994
|
*
|
|
5964
5995
|
*
|
|
@@ -6000,37 +6031,6 @@ export interface CompositeCondition6 {
|
|
|
6000
6031
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6001
6032
|
[k: string]: unknown;
|
|
6002
6033
|
}
|
|
6003
|
-
/**
|
|
6004
|
-
*
|
|
6005
|
-
*
|
|
6006
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6007
|
-
* [Conditions](../../conditions/) for more information.
|
|
6008
|
-
*
|
|
6009
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6010
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6011
|
-
*
|
|
6012
|
-
* <h3>Example</h3>
|
|
6013
|
-
*
|
|
6014
|
-
*
|
|
6015
|
-
*
|
|
6016
|
-
*
|
|
6017
|
-
*
|
|
6018
|
-
* {
|
|
6019
|
-
* "condition": "user_is_logged_in",
|
|
6020
|
-
* "invert": false
|
|
6021
|
-
* }
|
|
6022
|
-
*
|
|
6023
|
-
*
|
|
6024
|
-
*
|
|
6025
|
-
*/
|
|
6026
|
-
export interface SingleCondition4 {
|
|
6027
|
-
condition: string;
|
|
6028
|
-
invert?: boolean;
|
|
6029
|
-
params?: {
|
|
6030
|
-
[k: string]: unknown;
|
|
6031
|
-
};
|
|
6032
|
-
[k: string]: unknown;
|
|
6033
|
-
}
|
|
6034
6034
|
/**
|
|
6035
6035
|
*
|
|
6036
6036
|
*
|
|
@@ -6422,7 +6422,7 @@ export interface I18NProperty63 {
|
|
|
6422
6422
|
*
|
|
6423
6423
|
*/
|
|
6424
6424
|
export interface CompositeCondition7 {
|
|
6425
|
-
conditions?: (
|
|
6425
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
6426
6426
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6427
6427
|
[k: string]: unknown;
|
|
6428
6428
|
}
|
|
@@ -7876,7 +7876,7 @@ export interface I18NProperty74 {
|
|
|
7876
7876
|
*
|
|
7877
7877
|
*/
|
|
7878
7878
|
export interface MacroPropertyPanel {
|
|
7879
|
-
controls?: (ControlGroup |
|
|
7879
|
+
controls?: (ControlGroup | TextControl | ButtonControl1 | ToggleGroup)[];
|
|
7880
7880
|
cacheable?: boolean;
|
|
7881
7881
|
url: string;
|
|
7882
7882
|
[k: string]: unknown;
|
|
@@ -7977,7 +7977,7 @@ export interface I18NProperty75 {
|
|
|
7977
7977
|
/**
|
|
7978
7978
|
*
|
|
7979
7979
|
*
|
|
7980
|
-
* Defines a
|
|
7980
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
7981
7981
|
*
|
|
7982
7982
|
* <p><b>Example</b></p>
|
|
7983
7983
|
*
|
|
@@ -7985,44 +7985,27 @@ export interface I18NProperty75 {
|
|
|
7985
7985
|
*
|
|
7986
7986
|
*
|
|
7987
7987
|
*
|
|
7988
|
-
*
|
|
7989
|
-
*
|
|
7990
|
-
*
|
|
7991
|
-
* "
|
|
7992
|
-
*
|
|
7993
|
-
*
|
|
7994
|
-
*
|
|
7995
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
7996
|
-
* "label": {
|
|
7997
|
-
* "value": "My Custom Control 0"
|
|
7998
|
-
* },
|
|
7999
|
-
* "key": "my-custom-toggle-button-0"
|
|
8000
|
-
* },
|
|
8001
|
-
* {
|
|
8002
|
-
* "type": "togglebutton",
|
|
8003
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
8004
|
-
* "label": {
|
|
8005
|
-
* "value": "My Custom Control 1"
|
|
8006
|
-
* },
|
|
8007
|
-
* "key": "my-custom-toggle-button-1"
|
|
8008
|
-
* }
|
|
8009
|
-
* ]
|
|
8010
|
-
* }
|
|
8011
|
-
* ]
|
|
7988
|
+
* {
|
|
7989
|
+
* "type": "button",
|
|
7990
|
+
* "label": {
|
|
7991
|
+
* "value": "My Custom Control 0"
|
|
7992
|
+
* },
|
|
7993
|
+
* "key": "my-custom-control-0"
|
|
7994
|
+
* }
|
|
8012
7995
|
*
|
|
8013
7996
|
*
|
|
8014
7997
|
*
|
|
8015
7998
|
*/
|
|
8016
|
-
export interface
|
|
8017
|
-
controls: ToggleButtonControl[];
|
|
7999
|
+
export interface TextControl {
|
|
8018
8000
|
macroParameter: string;
|
|
8019
|
-
type: '
|
|
8001
|
+
type: 'text' | 'TEXT';
|
|
8002
|
+
key: string;
|
|
8020
8003
|
[k: string]: unknown;
|
|
8021
8004
|
}
|
|
8022
8005
|
/**
|
|
8023
8006
|
*
|
|
8024
8007
|
*
|
|
8025
|
-
* Defines a
|
|
8008
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
8026
8009
|
*
|
|
8027
8010
|
* <p><b>Example</b></p>
|
|
8028
8011
|
*
|
|
@@ -8031,21 +8014,19 @@ export interface ToggleGroup {
|
|
|
8031
8014
|
*
|
|
8032
8015
|
*
|
|
8033
8016
|
* {
|
|
8034
|
-
* "type": "
|
|
8035
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
8017
|
+
* "type": "button",
|
|
8036
8018
|
* "label": {
|
|
8037
8019
|
* "value": "My Custom Control 0"
|
|
8038
8020
|
* },
|
|
8039
|
-
* "key": "my-custom-
|
|
8021
|
+
* "key": "my-custom-control-0"
|
|
8040
8022
|
* }
|
|
8041
8023
|
*
|
|
8042
8024
|
*
|
|
8043
8025
|
*
|
|
8044
8026
|
*/
|
|
8045
|
-
export interface
|
|
8046
|
-
macroParameterValue: string;
|
|
8027
|
+
export interface ButtonControl1 {
|
|
8047
8028
|
label: I18NProperty76;
|
|
8048
|
-
type: '
|
|
8029
|
+
type: 'button' | 'BUTTON';
|
|
8049
8030
|
key: string;
|
|
8050
8031
|
[k: string]: unknown;
|
|
8051
8032
|
}
|
|
@@ -8076,7 +8057,7 @@ export interface I18NProperty76 {
|
|
|
8076
8057
|
/**
|
|
8077
8058
|
*
|
|
8078
8059
|
*
|
|
8079
|
-
* Defines a
|
|
8060
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
8080
8061
|
*
|
|
8081
8062
|
* <p><b>Example</b></p>
|
|
8082
8063
|
*
|
|
@@ -8084,27 +8065,44 @@ export interface I18NProperty76 {
|
|
|
8084
8065
|
*
|
|
8085
8066
|
*
|
|
8086
8067
|
*
|
|
8087
|
-
*
|
|
8088
|
-
*
|
|
8089
|
-
*
|
|
8090
|
-
* "
|
|
8091
|
-
*
|
|
8092
|
-
*
|
|
8093
|
-
*
|
|
8068
|
+
* [
|
|
8069
|
+
* {
|
|
8070
|
+
* "type": "togglegroup",
|
|
8071
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
8072
|
+
* "controls": [
|
|
8073
|
+
* {
|
|
8074
|
+
* "type": "togglebutton",
|
|
8075
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8076
|
+
* "label": {
|
|
8077
|
+
* "value": "My Custom Control 0"
|
|
8078
|
+
* },
|
|
8079
|
+
* "key": "my-custom-toggle-button-0"
|
|
8080
|
+
* },
|
|
8081
|
+
* {
|
|
8082
|
+
* "type": "togglebutton",
|
|
8083
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
8084
|
+
* "label": {
|
|
8085
|
+
* "value": "My Custom Control 1"
|
|
8086
|
+
* },
|
|
8087
|
+
* "key": "my-custom-toggle-button-1"
|
|
8088
|
+
* }
|
|
8089
|
+
* ]
|
|
8090
|
+
* }
|
|
8091
|
+
* ]
|
|
8094
8092
|
*
|
|
8095
8093
|
*
|
|
8096
8094
|
*
|
|
8097
8095
|
*/
|
|
8098
|
-
export interface
|
|
8096
|
+
export interface ToggleGroup {
|
|
8097
|
+
controls: ToggleButtonControl[];
|
|
8099
8098
|
macroParameter: string;
|
|
8100
|
-
type: '
|
|
8101
|
-
key: string;
|
|
8099
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
8102
8100
|
[k: string]: unknown;
|
|
8103
8101
|
}
|
|
8104
8102
|
/**
|
|
8105
8103
|
*
|
|
8106
8104
|
*
|
|
8107
|
-
* Defines a button which
|
|
8105
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
8108
8106
|
*
|
|
8109
8107
|
* <p><b>Example</b></p>
|
|
8110
8108
|
*
|
|
@@ -8113,19 +8111,21 @@ export interface TextControl {
|
|
|
8113
8111
|
*
|
|
8114
8112
|
*
|
|
8115
8113
|
* {
|
|
8116
|
-
* "type": "
|
|
8114
|
+
* "type": "togglebutton",
|
|
8115
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8117
8116
|
* "label": {
|
|
8118
8117
|
* "value": "My Custom Control 0"
|
|
8119
8118
|
* },
|
|
8120
|
-
* "key": "my-custom-
|
|
8119
|
+
* "key": "my-custom-toggle-button-0"
|
|
8121
8120
|
* }
|
|
8122
8121
|
*
|
|
8123
8122
|
*
|
|
8124
8123
|
*
|
|
8125
8124
|
*/
|
|
8126
|
-
export interface
|
|
8125
|
+
export interface ToggleButtonControl {
|
|
8126
|
+
macroParameterValue: string;
|
|
8127
8127
|
label: I18NProperty77;
|
|
8128
|
-
type: '
|
|
8128
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
8129
8129
|
key: string;
|
|
8130
8130
|
[k: string]: unknown;
|
|
8131
8131
|
}
|
|
@@ -29121,11 +29121,63 @@ export interface I18NProperty83 {
|
|
|
29121
29121
|
*
|
|
29122
29122
|
*/
|
|
29123
29123
|
export interface MacroPropertyPanel1 {
|
|
29124
|
-
controls?: (
|
|
29124
|
+
controls?: (ButtonControl2 | ToggleGroup1 | TextControl1 | ControlGroup1)[];
|
|
29125
29125
|
cacheable?: boolean;
|
|
29126
29126
|
url: string;
|
|
29127
29127
|
[k: string]: unknown;
|
|
29128
29128
|
}
|
|
29129
|
+
/**
|
|
29130
|
+
*
|
|
29131
|
+
*
|
|
29132
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
29133
|
+
*
|
|
29134
|
+
* <p><b>Example</b></p>
|
|
29135
|
+
*
|
|
29136
|
+
*
|
|
29137
|
+
*
|
|
29138
|
+
*
|
|
29139
|
+
*
|
|
29140
|
+
* {
|
|
29141
|
+
* "type": "button",
|
|
29142
|
+
* "label": {
|
|
29143
|
+
* "value": "My Custom Control 0"
|
|
29144
|
+
* },
|
|
29145
|
+
* "key": "my-custom-control-0"
|
|
29146
|
+
* }
|
|
29147
|
+
*
|
|
29148
|
+
*
|
|
29149
|
+
*
|
|
29150
|
+
*/
|
|
29151
|
+
export interface ButtonControl2 {
|
|
29152
|
+
label: I18NProperty84;
|
|
29153
|
+
type: 'button' | 'BUTTON';
|
|
29154
|
+
key: string;
|
|
29155
|
+
[k: string]: unknown;
|
|
29156
|
+
}
|
|
29157
|
+
/**
|
|
29158
|
+
*
|
|
29159
|
+
*
|
|
29160
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
29161
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
29162
|
+
*
|
|
29163
|
+
* <h3>Example</h3>
|
|
29164
|
+
*
|
|
29165
|
+
*
|
|
29166
|
+
*
|
|
29167
|
+
*
|
|
29168
|
+
*
|
|
29169
|
+
* {
|
|
29170
|
+
* "value": "My text"
|
|
29171
|
+
* }
|
|
29172
|
+
*
|
|
29173
|
+
*
|
|
29174
|
+
*
|
|
29175
|
+
*/
|
|
29176
|
+
export interface I18NProperty84 {
|
|
29177
|
+
value: string;
|
|
29178
|
+
i18n?: string;
|
|
29179
|
+
[k: string]: unknown;
|
|
29180
|
+
}
|
|
29129
29181
|
/**
|
|
29130
29182
|
*
|
|
29131
29183
|
*
|
|
@@ -29196,7 +29248,7 @@ export interface ToggleGroup1 {
|
|
|
29196
29248
|
*/
|
|
29197
29249
|
export interface ToggleButtonControl1 {
|
|
29198
29250
|
macroParameterValue: string;
|
|
29199
|
-
label:
|
|
29251
|
+
label: I18NProperty85;
|
|
29200
29252
|
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
29201
29253
|
key: string;
|
|
29202
29254
|
[k: string]: unknown;
|
|
@@ -29220,7 +29272,7 @@ export interface ToggleButtonControl1 {
|
|
|
29220
29272
|
*
|
|
29221
29273
|
*
|
|
29222
29274
|
*/
|
|
29223
|
-
export interface
|
|
29275
|
+
export interface I18NProperty85 {
|
|
29224
29276
|
value: string;
|
|
29225
29277
|
i18n?: string;
|
|
29226
29278
|
[k: string]: unknown;
|
|
@@ -29253,58 +29305,6 @@ export interface TextControl1 {
|
|
|
29253
29305
|
key: string;
|
|
29254
29306
|
[k: string]: unknown;
|
|
29255
29307
|
}
|
|
29256
|
-
/**
|
|
29257
|
-
*
|
|
29258
|
-
*
|
|
29259
|
-
* Defines a button which may appear in control extension points such as the property panel
|
|
29260
|
-
*
|
|
29261
|
-
* <p><b>Example</b></p>
|
|
29262
|
-
*
|
|
29263
|
-
*
|
|
29264
|
-
*
|
|
29265
|
-
*
|
|
29266
|
-
*
|
|
29267
|
-
* {
|
|
29268
|
-
* "type": "button",
|
|
29269
|
-
* "label": {
|
|
29270
|
-
* "value": "My Custom Control 0"
|
|
29271
|
-
* },
|
|
29272
|
-
* "key": "my-custom-control-0"
|
|
29273
|
-
* }
|
|
29274
|
-
*
|
|
29275
|
-
*
|
|
29276
|
-
*
|
|
29277
|
-
*/
|
|
29278
|
-
export interface ButtonControl2 {
|
|
29279
|
-
label: I18NProperty85;
|
|
29280
|
-
type: 'button' | 'BUTTON';
|
|
29281
|
-
key: string;
|
|
29282
|
-
[k: string]: unknown;
|
|
29283
|
-
}
|
|
29284
|
-
/**
|
|
29285
|
-
*
|
|
29286
|
-
*
|
|
29287
|
-
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
29288
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
29289
|
-
*
|
|
29290
|
-
* <h3>Example</h3>
|
|
29291
|
-
*
|
|
29292
|
-
*
|
|
29293
|
-
*
|
|
29294
|
-
*
|
|
29295
|
-
*
|
|
29296
|
-
* {
|
|
29297
|
-
* "value": "My text"
|
|
29298
|
-
* }
|
|
29299
|
-
*
|
|
29300
|
-
*
|
|
29301
|
-
*
|
|
29302
|
-
*/
|
|
29303
|
-
export interface I18NProperty85 {
|
|
29304
|
-
value: string;
|
|
29305
|
-
i18n?: string;
|
|
29306
|
-
[k: string]: unknown;
|
|
29307
|
-
}
|
|
29308
29308
|
/**
|
|
29309
29309
|
*
|
|
29310
29310
|
*
|
|
@@ -51284,6 +51284,16 @@ export interface ExchangeActionDefinition {
|
|
|
51284
51284
|
export interface ActionDefinition {
|
|
51285
51285
|
remote: ModuleKeySchema;
|
|
51286
51286
|
path: string;
|
|
51287
|
+
/**
|
|
51288
|
+
* Additional GET parameters sent to the API
|
|
51289
|
+
*/
|
|
51290
|
+
queryParameters?: {
|
|
51291
|
+
/**
|
|
51292
|
+
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
51293
|
+
* via the `patternProperty` "^[a-zA-Z0-9_-]+$".
|
|
51294
|
+
*/
|
|
51295
|
+
[k: string]: string;
|
|
51296
|
+
};
|
|
51287
51297
|
}
|
|
51288
51298
|
/**
|
|
51289
51299
|
* Use a Forge function to map the fields to profile information
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
[
|
|
2
|
+
"access-email-addresses:connect-confluence",
|
|
2
3
|
"access-email-addresses:connect-jira",
|
|
4
|
+
"act-as-user:connect-confluence",
|
|
3
5
|
"act-as-user:connect-jira",
|
|
6
|
+
"admin:connect-confluence",
|
|
4
7
|
"admin:connect-jira",
|
|
8
|
+
"delete:connect-confluence",
|
|
5
9
|
"delete:connect-jira",
|
|
6
10
|
"delete:content:confluence",
|
|
7
11
|
"delete:space:confluence",
|
|
@@ -30,6 +34,7 @@
|
|
|
30
34
|
"read:confluence-props",
|
|
31
35
|
"read:confluence-space.summary",
|
|
32
36
|
"read:confluence-user",
|
|
37
|
+
"read:connect-confluence",
|
|
33
38
|
"read:connect-jira",
|
|
34
39
|
"read:content.attachment:confluence",
|
|
35
40
|
"read:content.comment:confluence",
|
|
@@ -135,6 +140,7 @@
|
|
|
135
140
|
"search:jira",
|
|
136
141
|
"search:user:jira",
|
|
137
142
|
"send:notification:jira",
|
|
143
|
+
"space-admin:connect-confluence",
|
|
138
144
|
"storage:app",
|
|
139
145
|
"write:attachment:confluence",
|
|
140
146
|
"write:audit-log:confluence",
|
|
@@ -149,6 +155,7 @@
|
|
|
149
155
|
"write:confluence-groups",
|
|
150
156
|
"write:confluence-props",
|
|
151
157
|
"write:confluence-space",
|
|
158
|
+
"write:connect-confluence",
|
|
152
159
|
"write:connect-jira",
|
|
153
160
|
"write:content.inlinetask:confluence",
|
|
154
161
|
"write:content.label:confluence",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/manifest",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1-next.1",
|
|
4
4
|
"description": "Definitions and validations of the Forge manifest",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"author": "Atlassian",
|
|
24
24
|
"license": "UNLICENSED",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@forge/util": "1.0.0",
|
|
26
|
+
"@forge/util": "1.0.1-next.0",
|
|
27
27
|
"ajv": "^6.12.5",
|
|
28
28
|
"js-yaml": "^3.13.1",
|
|
29
29
|
"json-schema-to-typescript": "^9.1.1",
|