@forge/manifest 2.4.0-next.5 → 2.4.0-next.6
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 +7 -0
- package/out/schema/manifest-schema.json +290 -286
- package/out/schema/manifest.d.ts +395 -385
- package/package.json +1 -1
|
@@ -5080,10 +5080,10 @@
|
|
|
5080
5080
|
"type": "object",
|
|
5081
5081
|
"anyOf": [
|
|
5082
5082
|
{
|
|
5083
|
-
"$ref": "#/definitions/
|
|
5083
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5084
5084
|
},
|
|
5085
5085
|
{
|
|
5086
|
-
"$ref": "#/definitions/
|
|
5086
|
+
"$ref": "#/definitions/singleCondition"
|
|
5087
5087
|
}
|
|
5088
5088
|
]
|
|
5089
5089
|
},
|
|
@@ -5151,10 +5151,10 @@
|
|
|
5151
5151
|
"type": "object",
|
|
5152
5152
|
"anyOf": [
|
|
5153
5153
|
{
|
|
5154
|
-
"$ref": "#/definitions/
|
|
5154
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5155
5155
|
},
|
|
5156
5156
|
{
|
|
5157
|
-
"$ref": "#/definitions/
|
|
5157
|
+
"$ref": "#/definitions/singleCondition"
|
|
5158
5158
|
}
|
|
5159
5159
|
]
|
|
5160
5160
|
},
|
|
@@ -5206,10 +5206,10 @@
|
|
|
5206
5206
|
"type": "object",
|
|
5207
5207
|
"anyOf": [
|
|
5208
5208
|
{
|
|
5209
|
-
"$ref": "#/definitions/
|
|
5209
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5210
5210
|
},
|
|
5211
5211
|
{
|
|
5212
|
-
"$ref": "#/definitions/
|
|
5212
|
+
"$ref": "#/definitions/singleCondition"
|
|
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/singleCondition"
|
|
5332
5332
|
},
|
|
5333
5333
|
{
|
|
5334
|
-
"$ref": "#/definitions/
|
|
5334
|
+
"$ref": "#/definitions/compositeCondition"
|
|
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
|
},
|
|
@@ -5461,19 +5461,48 @@
|
|
|
5461
5461
|
"anyOf": [
|
|
5462
5462
|
{
|
|
5463
5463
|
"properties": {
|
|
5464
|
-
"
|
|
5465
|
-
"
|
|
5464
|
+
"size": {
|
|
5465
|
+
"enum": [
|
|
5466
|
+
"small",
|
|
5467
|
+
"SMALL",
|
|
5468
|
+
"medium",
|
|
5469
|
+
"MEDIUM",
|
|
5470
|
+
"large",
|
|
5471
|
+
"LARGE",
|
|
5472
|
+
"x-large",
|
|
5473
|
+
"X-LARGE",
|
|
5474
|
+
"fullscreen",
|
|
5475
|
+
"FULLSCREEN",
|
|
5476
|
+
"maximum",
|
|
5477
|
+
"MAXIMUM"
|
|
5478
|
+
],
|
|
5466
5479
|
"type": "string",
|
|
5467
|
-
"fieldDescription": "\n\
|
|
5480
|
+
"fieldDescription": "\n\nSets the size of the dialog.\n\n <p>\n This option is used instead of the 'height' and 'width' options.\n </p>\n\n"
|
|
5481
|
+
},
|
|
5482
|
+
"chrome": {
|
|
5483
|
+
"type": "boolean",
|
|
5484
|
+
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
5485
|
+
"defaultValue": "true"
|
|
5486
|
+
},
|
|
5487
|
+
"width": {
|
|
5488
|
+
"maxLength": 10,
|
|
5489
|
+
"type": "string",
|
|
5490
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
5491
|
+
},
|
|
5492
|
+
"header": {
|
|
5493
|
+
"$ref": "#/definitions/i18nProperty",
|
|
5494
|
+
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
5495
|
+
},
|
|
5496
|
+
"height": {
|
|
5497
|
+
"maxLength": 10,
|
|
5498
|
+
"type": "string",
|
|
5499
|
+
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
5468
5500
|
}
|
|
5469
5501
|
},
|
|
5470
|
-
"
|
|
5471
|
-
"key"
|
|
5472
|
-
],
|
|
5473
|
-
"shortClassName": "dialogModuleOptions",
|
|
5502
|
+
"shortClassName": "dialogOptions",
|
|
5474
5503
|
"type": "object",
|
|
5475
|
-
"title": "Dialog
|
|
5476
|
-
"description": "\n\nOptions for a web-item
|
|
5504
|
+
"title": "Dialog Options",
|
|
5505
|
+
"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"
|
|
5477
5506
|
},
|
|
5478
5507
|
{
|
|
5479
5508
|
"properties": {
|
|
@@ -5524,48 +5553,19 @@
|
|
|
5524
5553
|
},
|
|
5525
5554
|
{
|
|
5526
5555
|
"properties": {
|
|
5527
|
-
"
|
|
5528
|
-
"
|
|
5529
|
-
"small",
|
|
5530
|
-
"SMALL",
|
|
5531
|
-
"medium",
|
|
5532
|
-
"MEDIUM",
|
|
5533
|
-
"large",
|
|
5534
|
-
"LARGE",
|
|
5535
|
-
"x-large",
|
|
5536
|
-
"X-LARGE",
|
|
5537
|
-
"fullscreen",
|
|
5538
|
-
"FULLSCREEN",
|
|
5539
|
-
"maximum",
|
|
5540
|
-
"MAXIMUM"
|
|
5541
|
-
],
|
|
5542
|
-
"type": "string",
|
|
5543
|
-
"fieldDescription": "\n\nSets the size of the dialog.\n\n <p>\n This option is used instead of the 'height' and 'width' options.\n </p>\n\n"
|
|
5544
|
-
},
|
|
5545
|
-
"chrome": {
|
|
5546
|
-
"type": "boolean",
|
|
5547
|
-
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
5548
|
-
"defaultValue": "true"
|
|
5549
|
-
},
|
|
5550
|
-
"width": {
|
|
5551
|
-
"maxLength": 10,
|
|
5552
|
-
"type": "string",
|
|
5553
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
5554
|
-
},
|
|
5555
|
-
"header": {
|
|
5556
|
-
"$ref": "#/definitions/i18nProperty",
|
|
5557
|
-
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
5558
|
-
},
|
|
5559
|
-
"height": {
|
|
5560
|
-
"maxLength": 10,
|
|
5556
|
+
"key": {
|
|
5557
|
+
"maxLength": 100,
|
|
5561
5558
|
"type": "string",
|
|
5562
|
-
"fieldDescription": "\n\
|
|
5559
|
+
"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"
|
|
5563
5560
|
}
|
|
5564
5561
|
},
|
|
5565
|
-
"
|
|
5562
|
+
"required": [
|
|
5563
|
+
"key"
|
|
5564
|
+
],
|
|
5565
|
+
"shortClassName": "dialogModuleOptions",
|
|
5566
5566
|
"type": "object",
|
|
5567
|
-
"title": "Dialog Options",
|
|
5568
|
-
"description": "\n\nOptions for a
|
|
5567
|
+
"title": "Dialog Module Options",
|
|
5568
|
+
"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"
|
|
5569
5569
|
}
|
|
5570
5570
|
]
|
|
5571
5571
|
},
|
|
@@ -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": {
|
|
@@ -5629,10 +5656,10 @@
|
|
|
5629
5656
|
"type": "object",
|
|
5630
5657
|
"anyOf": [
|
|
5631
5658
|
{
|
|
5632
|
-
"$ref": "
|
|
5659
|
+
"$ref": "#"
|
|
5633
5660
|
},
|
|
5634
5661
|
{
|
|
5635
|
-
"$ref": "
|
|
5662
|
+
"$ref": "#/definitions/singleCondition"
|
|
5636
5663
|
}
|
|
5637
5664
|
]
|
|
5638
5665
|
},
|
|
@@ -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
|
},
|
|
@@ -5734,10 +5734,10 @@
|
|
|
5734
5734
|
"type": "object",
|
|
5735
5735
|
"anyOf": [
|
|
5736
5736
|
{
|
|
5737
|
-
"$ref": "#/definitions/
|
|
5737
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5738
5738
|
},
|
|
5739
5739
|
{
|
|
5740
|
-
"$ref": "#/definitions/
|
|
5740
|
+
"$ref": "#/definitions/singleCondition"
|
|
5741
5741
|
}
|
|
5742
5742
|
]
|
|
5743
5743
|
},
|
|
@@ -5885,6 +5885,33 @@
|
|
|
5885
5885
|
"items": {
|
|
5886
5886
|
"type": "object",
|
|
5887
5887
|
"anyOf": [
|
|
5888
|
+
{
|
|
5889
|
+
"properties": {
|
|
5890
|
+
"condition": {
|
|
5891
|
+
"maxLength": 100,
|
|
5892
|
+
"type": "string",
|
|
5893
|
+
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
5894
|
+
},
|
|
5895
|
+
"invert": {
|
|
5896
|
+
"type": "boolean",
|
|
5897
|
+
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
5898
|
+
"defaultValue": "false"
|
|
5899
|
+
},
|
|
5900
|
+
"params": {
|
|
5901
|
+
"additionalProperties": true,
|
|
5902
|
+
"type": "object",
|
|
5903
|
+
"fieldTitle": "Object",
|
|
5904
|
+
"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"
|
|
5905
|
+
}
|
|
5906
|
+
},
|
|
5907
|
+
"required": [
|
|
5908
|
+
"condition"
|
|
5909
|
+
],
|
|
5910
|
+
"shortClassName": "singleConditionBean",
|
|
5911
|
+
"type": "object",
|
|
5912
|
+
"title": "Single Condition",
|
|
5913
|
+
"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"
|
|
5914
|
+
},
|
|
5888
5915
|
{
|
|
5889
5916
|
"properties": {
|
|
5890
5917
|
"conditions": {
|
|
@@ -5917,33 +5944,6 @@
|
|
|
5917
5944
|
"type": "object",
|
|
5918
5945
|
"title": "Composite Condition",
|
|
5919
5946
|
"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"
|
|
5920
|
-
},
|
|
5921
|
-
{
|
|
5922
|
-
"properties": {
|
|
5923
|
-
"condition": {
|
|
5924
|
-
"maxLength": 100,
|
|
5925
|
-
"type": "string",
|
|
5926
|
-
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
5927
|
-
},
|
|
5928
|
-
"invert": {
|
|
5929
|
-
"type": "boolean",
|
|
5930
|
-
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
5931
|
-
"defaultValue": "false"
|
|
5932
|
-
},
|
|
5933
|
-
"params": {
|
|
5934
|
-
"additionalProperties": true,
|
|
5935
|
-
"type": "object",
|
|
5936
|
-
"fieldTitle": "Object",
|
|
5937
|
-
"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"
|
|
5938
|
-
}
|
|
5939
|
-
},
|
|
5940
|
-
"required": [
|
|
5941
|
-
"condition"
|
|
5942
|
-
],
|
|
5943
|
-
"shortClassName": "singleConditionBean",
|
|
5944
|
-
"type": "object",
|
|
5945
|
-
"title": "Single Condition",
|
|
5946
|
-
"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"
|
|
5947
5947
|
}
|
|
5948
5948
|
]
|
|
5949
5949
|
},
|
|
@@ -6217,62 +6217,6 @@
|
|
|
6217
6217
|
"items": {
|
|
6218
6218
|
"type": "object",
|
|
6219
6219
|
"anyOf": [
|
|
6220
|
-
{
|
|
6221
|
-
"properties": {
|
|
6222
|
-
"controls": {
|
|
6223
|
-
"items": {
|
|
6224
|
-
"properties": {
|
|
6225
|
-
"label": {
|
|
6226
|
-
"$ref": "#/definitions/i18nProperty",
|
|
6227
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6228
|
-
},
|
|
6229
|
-
"type": {
|
|
6230
|
-
"enum": [
|
|
6231
|
-
"button",
|
|
6232
|
-
"BUTTON"
|
|
6233
|
-
],
|
|
6234
|
-
"type": "string",
|
|
6235
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6236
|
-
},
|
|
6237
|
-
"key": {
|
|
6238
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6239
|
-
"maxLength": 100,
|
|
6240
|
-
"type": "string",
|
|
6241
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6242
|
-
}
|
|
6243
|
-
},
|
|
6244
|
-
"required": [
|
|
6245
|
-
"label",
|
|
6246
|
-
"type",
|
|
6247
|
-
"key"
|
|
6248
|
-
],
|
|
6249
|
-
"additionalProperties": true,
|
|
6250
|
-
"shortClassName": "buttonControlBean",
|
|
6251
|
-
"type": "object",
|
|
6252
|
-
"title": "ButtonControl",
|
|
6253
|
-
"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"
|
|
6254
|
-
},
|
|
6255
|
-
"type": "array",
|
|
6256
|
-
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
6257
|
-
},
|
|
6258
|
-
"type": {
|
|
6259
|
-
"enum": [
|
|
6260
|
-
"group",
|
|
6261
|
-
"GROUP"
|
|
6262
|
-
],
|
|
6263
|
-
"type": "string",
|
|
6264
|
-
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
6265
|
-
}
|
|
6266
|
-
},
|
|
6267
|
-
"required": [
|
|
6268
|
-
"controls",
|
|
6269
|
-
"type"
|
|
6270
|
-
],
|
|
6271
|
-
"shortClassName": "controlGroupBean",
|
|
6272
|
-
"type": "object",
|
|
6273
|
-
"title": "ControlGroup",
|
|
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
|
-
},
|
|
6276
6220
|
{
|
|
6277
6221
|
"properties": {
|
|
6278
6222
|
"label": {
|
|
@@ -6374,6 +6318,62 @@
|
|
|
6374
6318
|
"title": "ToggleGroup",
|
|
6375
6319
|
"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"
|
|
6376
6320
|
},
|
|
6321
|
+
{
|
|
6322
|
+
"properties": {
|
|
6323
|
+
"controls": {
|
|
6324
|
+
"items": {
|
|
6325
|
+
"properties": {
|
|
6326
|
+
"label": {
|
|
6327
|
+
"$ref": "#/definitions/i18nProperty",
|
|
6328
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6329
|
+
},
|
|
6330
|
+
"type": {
|
|
6331
|
+
"enum": [
|
|
6332
|
+
"button",
|
|
6333
|
+
"BUTTON"
|
|
6334
|
+
],
|
|
6335
|
+
"type": "string",
|
|
6336
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6337
|
+
},
|
|
6338
|
+
"key": {
|
|
6339
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6340
|
+
"maxLength": 100,
|
|
6341
|
+
"type": "string",
|
|
6342
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6343
|
+
}
|
|
6344
|
+
},
|
|
6345
|
+
"required": [
|
|
6346
|
+
"label",
|
|
6347
|
+
"type",
|
|
6348
|
+
"key"
|
|
6349
|
+
],
|
|
6350
|
+
"additionalProperties": true,
|
|
6351
|
+
"shortClassName": "buttonControlBean",
|
|
6352
|
+
"type": "object",
|
|
6353
|
+
"title": "ButtonControl",
|
|
6354
|
+
"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"
|
|
6355
|
+
},
|
|
6356
|
+
"type": "array",
|
|
6357
|
+
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
6358
|
+
},
|
|
6359
|
+
"type": {
|
|
6360
|
+
"enum": [
|
|
6361
|
+
"group",
|
|
6362
|
+
"GROUP"
|
|
6363
|
+
],
|
|
6364
|
+
"type": "string",
|
|
6365
|
+
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
6366
|
+
}
|
|
6367
|
+
},
|
|
6368
|
+
"required": [
|
|
6369
|
+
"controls",
|
|
6370
|
+
"type"
|
|
6371
|
+
],
|
|
6372
|
+
"shortClassName": "controlGroupBean",
|
|
6373
|
+
"type": "object",
|
|
6374
|
+
"title": "ControlGroup",
|
|
6375
|
+
"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"
|
|
6376
|
+
},
|
|
6377
6377
|
{
|
|
6378
6378
|
"properties": {
|
|
6379
6379
|
"macroParameter": {
|
|
@@ -6701,72 +6701,35 @@
|
|
|
6701
6701
|
"anyOf": [
|
|
6702
6702
|
{
|
|
6703
6703
|
"properties": {
|
|
6704
|
-
"controls": {
|
|
6705
|
-
"items": {
|
|
6706
|
-
"properties": {
|
|
6707
|
-
"macroParameterValue": {
|
|
6708
|
-
"maxLength": 10000,
|
|
6709
|
-
"type": "string",
|
|
6710
|
-
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
6711
|
-
},
|
|
6712
|
-
"label": {
|
|
6713
|
-
"$ref": "#/definitions/i18nProperty",
|
|
6714
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6715
|
-
},
|
|
6716
|
-
"type": {
|
|
6717
|
-
"enum": [
|
|
6718
|
-
"togglebutton",
|
|
6719
|
-
"TOGGLEBUTTON"
|
|
6720
|
-
],
|
|
6721
|
-
"type": "string",
|
|
6722
|
-
"fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
|
|
6723
|
-
},
|
|
6724
|
-
"key": {
|
|
6725
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6726
|
-
"maxLength": 100,
|
|
6727
|
-
"type": "string",
|
|
6728
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6729
|
-
}
|
|
6730
|
-
},
|
|
6731
|
-
"required": [
|
|
6732
|
-
"macroParameterValue",
|
|
6733
|
-
"label",
|
|
6734
|
-
"type",
|
|
6735
|
-
"key"
|
|
6736
|
-
],
|
|
6737
|
-
"additionalProperties": true,
|
|
6738
|
-
"shortClassName": "macroToggleButtonControlBean",
|
|
6739
|
-
"type": "object",
|
|
6740
|
-
"title": "ToggleButtonControl",
|
|
6741
|
-
"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"
|
|
6742
|
-
},
|
|
6743
|
-
"type": "array",
|
|
6744
|
-
"fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
|
|
6745
|
-
},
|
|
6746
6704
|
"macroParameter": {
|
|
6747
|
-
"pattern": "[-_a-z0-9\\.]+",
|
|
6748
6705
|
"maxLength": 100,
|
|
6749
6706
|
"type": "string",
|
|
6750
|
-
"fieldDescription": "\n\nThe
|
|
6707
|
+
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
6751
6708
|
},
|
|
6752
6709
|
"type": {
|
|
6753
6710
|
"enum": [
|
|
6754
|
-
"
|
|
6755
|
-
"
|
|
6711
|
+
"text",
|
|
6712
|
+
"TEXT"
|
|
6756
6713
|
],
|
|
6757
6714
|
"type": "string",
|
|
6758
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
6715
|
+
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
6716
|
+
},
|
|
6717
|
+
"key": {
|
|
6718
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6719
|
+
"maxLength": 100,
|
|
6720
|
+
"type": "string",
|
|
6721
|
+
"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"
|
|
6759
6722
|
}
|
|
6760
6723
|
},
|
|
6761
6724
|
"required": [
|
|
6762
|
-
"controls",
|
|
6763
6725
|
"macroParameter",
|
|
6764
|
-
"type"
|
|
6726
|
+
"type",
|
|
6727
|
+
"key"
|
|
6765
6728
|
],
|
|
6766
|
-
"shortClassName": "
|
|
6729
|
+
"shortClassName": "textControlBean",
|
|
6767
6730
|
"type": "object",
|
|
6768
|
-
"title": "
|
|
6769
|
-
"description": "\n\nDefines a
|
|
6731
|
+
"title": "TextControl",
|
|
6732
|
+
"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"
|
|
6770
6733
|
},
|
|
6771
6734
|
{
|
|
6772
6735
|
"properties": {
|
|
@@ -6800,38 +6763,6 @@
|
|
|
6800
6763
|
"title": "ButtonControl",
|
|
6801
6764
|
"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"
|
|
6802
6765
|
},
|
|
6803
|
-
{
|
|
6804
|
-
"properties": {
|
|
6805
|
-
"macroParameter": {
|
|
6806
|
-
"maxLength": 100,
|
|
6807
|
-
"type": "string",
|
|
6808
|
-
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
6809
|
-
},
|
|
6810
|
-
"type": {
|
|
6811
|
-
"enum": [
|
|
6812
|
-
"text",
|
|
6813
|
-
"TEXT"
|
|
6814
|
-
],
|
|
6815
|
-
"type": "string",
|
|
6816
|
-
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
6817
|
-
},
|
|
6818
|
-
"key": {
|
|
6819
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6820
|
-
"maxLength": 100,
|
|
6821
|
-
"type": "string",
|
|
6822
|
-
"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"
|
|
6823
|
-
}
|
|
6824
|
-
},
|
|
6825
|
-
"required": [
|
|
6826
|
-
"macroParameter",
|
|
6827
|
-
"type",
|
|
6828
|
-
"key"
|
|
6829
|
-
],
|
|
6830
|
-
"shortClassName": "textControlBean",
|
|
6831
|
-
"type": "object",
|
|
6832
|
-
"title": "TextControl",
|
|
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"
|
|
6834
|
-
},
|
|
6835
6766
|
{
|
|
6836
6767
|
"properties": {
|
|
6837
6768
|
"controls": {
|
|
@@ -6887,6 +6818,75 @@
|
|
|
6887
6818
|
"type": "object",
|
|
6888
6819
|
"title": "ControlGroup",
|
|
6889
6820
|
"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"
|
|
6821
|
+
},
|
|
6822
|
+
{
|
|
6823
|
+
"properties": {
|
|
6824
|
+
"controls": {
|
|
6825
|
+
"items": {
|
|
6826
|
+
"properties": {
|
|
6827
|
+
"macroParameterValue": {
|
|
6828
|
+
"maxLength": 10000,
|
|
6829
|
+
"type": "string",
|
|
6830
|
+
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
6831
|
+
},
|
|
6832
|
+
"label": {
|
|
6833
|
+
"$ref": "#/definitions/i18nProperty",
|
|
6834
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6835
|
+
},
|
|
6836
|
+
"type": {
|
|
6837
|
+
"enum": [
|
|
6838
|
+
"togglebutton",
|
|
6839
|
+
"TOGGLEBUTTON"
|
|
6840
|
+
],
|
|
6841
|
+
"type": "string",
|
|
6842
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
|
|
6843
|
+
},
|
|
6844
|
+
"key": {
|
|
6845
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6846
|
+
"maxLength": 100,
|
|
6847
|
+
"type": "string",
|
|
6848
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6849
|
+
}
|
|
6850
|
+
},
|
|
6851
|
+
"required": [
|
|
6852
|
+
"macroParameterValue",
|
|
6853
|
+
"label",
|
|
6854
|
+
"type",
|
|
6855
|
+
"key"
|
|
6856
|
+
],
|
|
6857
|
+
"additionalProperties": true,
|
|
6858
|
+
"shortClassName": "macroToggleButtonControlBean",
|
|
6859
|
+
"type": "object",
|
|
6860
|
+
"title": "ToggleButtonControl",
|
|
6861
|
+
"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"
|
|
6862
|
+
},
|
|
6863
|
+
"type": "array",
|
|
6864
|
+
"fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
|
|
6865
|
+
},
|
|
6866
|
+
"macroParameter": {
|
|
6867
|
+
"pattern": "[-_a-z0-9\\.]+",
|
|
6868
|
+
"maxLength": 100,
|
|
6869
|
+
"type": "string",
|
|
6870
|
+
"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"
|
|
6871
|
+
},
|
|
6872
|
+
"type": {
|
|
6873
|
+
"enum": [
|
|
6874
|
+
"togglegroup",
|
|
6875
|
+
"TOGGLEGROUP"
|
|
6876
|
+
],
|
|
6877
|
+
"type": "string",
|
|
6878
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglegroup'\n\n"
|
|
6879
|
+
}
|
|
6880
|
+
},
|
|
6881
|
+
"required": [
|
|
6882
|
+
"controls",
|
|
6883
|
+
"macroParameter",
|
|
6884
|
+
"type"
|
|
6885
|
+
],
|
|
6886
|
+
"shortClassName": "macroToggleGroupBean",
|
|
6887
|
+
"type": "object",
|
|
6888
|
+
"title": "ToggleGroup",
|
|
6889
|
+
"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"
|
|
6890
6890
|
}
|
|
6891
6891
|
]
|
|
6892
6892
|
},
|
|
@@ -7598,13 +7598,13 @@
|
|
|
7598
7598
|
"description": "External authentication providers",
|
|
7599
7599
|
"items": {
|
|
7600
7600
|
"oneOf": [
|
|
7601
|
-
{
|
|
7602
|
-
"$ref": "#/definitions/AuthProviderPredefined",
|
|
7603
|
-
"title": "AuthProviderPredefined"
|
|
7604
|
-
},
|
|
7605
7601
|
{
|
|
7606
7602
|
"$ref": "#/definitions/AuthProviderCustom",
|
|
7607
7603
|
"title": "AuthProviderCustom"
|
|
7604
|
+
},
|
|
7605
|
+
{
|
|
7606
|
+
"$ref": "#/definitions/AuthProviderPredefined",
|
|
7607
|
+
"title": "AuthProviderPredefined"
|
|
7608
7608
|
}
|
|
7609
7609
|
]
|
|
7610
7610
|
}
|
|
@@ -7678,21 +7678,8 @@
|
|
|
7678
7678
|
]
|
|
7679
7679
|
},
|
|
7680
7680
|
"bearerMethod": {
|
|
7681
|
-
"
|
|
7682
|
-
|
|
7683
|
-
"object"
|
|
7684
|
-
],
|
|
7685
|
-
"additionalProperties": false,
|
|
7686
|
-
"enum": [
|
|
7687
|
-
"authorization-header",
|
|
7688
|
-
"form-encoded",
|
|
7689
|
-
"uri-query"
|
|
7690
|
-
],
|
|
7691
|
-
"required": [
|
|
7692
|
-
"type"
|
|
7693
|
-
],
|
|
7694
|
-
"properties": {
|
|
7695
|
-
"type": {
|
|
7681
|
+
"oneOf": [
|
|
7682
|
+
{
|
|
7696
7683
|
"type": "string",
|
|
7697
7684
|
"enum": [
|
|
7698
7685
|
"authorization-header",
|
|
@@ -7700,17 +7687,34 @@
|
|
|
7700
7687
|
"uri-query"
|
|
7701
7688
|
]
|
|
7702
7689
|
},
|
|
7703
|
-
|
|
7704
|
-
"type": "
|
|
7705
|
-
"
|
|
7706
|
-
"
|
|
7707
|
-
|
|
7708
|
-
|
|
7709
|
-
"
|
|
7710
|
-
|
|
7711
|
-
|
|
7690
|
+
{
|
|
7691
|
+
"type": "object",
|
|
7692
|
+
"additionalProperties": false,
|
|
7693
|
+
"required": [
|
|
7694
|
+
"type"
|
|
7695
|
+
],
|
|
7696
|
+
"properties": {
|
|
7697
|
+
"type": {
|
|
7698
|
+
"type": "string",
|
|
7699
|
+
"enum": [
|
|
7700
|
+
"authorization-header",
|
|
7701
|
+
"form-encoded",
|
|
7702
|
+
"uri-query"
|
|
7703
|
+
]
|
|
7704
|
+
},
|
|
7705
|
+
"prefix": {
|
|
7706
|
+
"type": "string",
|
|
7707
|
+
"description": "Custom authorization header prefix",
|
|
7708
|
+
"maxLength": 1000
|
|
7709
|
+
},
|
|
7710
|
+
"parameter": {
|
|
7711
|
+
"type": "string",
|
|
7712
|
+
"description": "Custom Header name or Parameter name (depending on type)",
|
|
7713
|
+
"maxlength": 1000
|
|
7714
|
+
}
|
|
7715
|
+
}
|
|
7712
7716
|
}
|
|
7713
|
-
|
|
7717
|
+
]
|
|
7714
7718
|
},
|
|
7715
7719
|
"clientId": {
|
|
7716
7720
|
"type": "string",
|