@forge/manifest 5.5.3-next.4-experimental-cf84ac7 → 5.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -2
- package/out/schema/manifest-schema.json +1911 -48
- package/out/schema/manifest.d.ts +1606 -549
- package/package.json +2 -2
|
@@ -466,6 +466,7 @@
|
|
|
466
466
|
"interval": {
|
|
467
467
|
"description": "The interval at which to trigger function invocation.",
|
|
468
468
|
"enum": [
|
|
469
|
+
"fiveMinute",
|
|
469
470
|
"hour",
|
|
470
471
|
"day",
|
|
471
472
|
"week"
|
|
@@ -504,6 +505,7 @@
|
|
|
504
505
|
"interval": {
|
|
505
506
|
"escription": "The interval at which to trigger function invocation.",
|
|
506
507
|
"enum": [
|
|
508
|
+
"fiveMinute",
|
|
507
509
|
"hour",
|
|
508
510
|
"day",
|
|
509
511
|
"week"
|
|
@@ -10074,46 +10076,94 @@
|
|
|
10074
10076
|
"bitbucket:mergeCheck": {
|
|
10075
10077
|
"type": "array",
|
|
10076
10078
|
"items": {
|
|
10077
|
-
"
|
|
10078
|
-
|
|
10079
|
-
|
|
10080
|
-
"
|
|
10081
|
-
|
|
10082
|
-
|
|
10083
|
-
|
|
10084
|
-
|
|
10085
|
-
|
|
10086
|
-
|
|
10087
|
-
|
|
10088
|
-
|
|
10089
|
-
|
|
10090
|
-
|
|
10091
|
-
|
|
10092
|
-
|
|
10079
|
+
"oneOf": [
|
|
10080
|
+
{
|
|
10081
|
+
"type": "object",
|
|
10082
|
+
"properties": {
|
|
10083
|
+
"name": {
|
|
10084
|
+
"type": "string"
|
|
10085
|
+
},
|
|
10086
|
+
"description": {
|
|
10087
|
+
"type": "string"
|
|
10088
|
+
},
|
|
10089
|
+
"triggers": {
|
|
10090
|
+
"type": "array",
|
|
10091
|
+
"minItems": 1,
|
|
10092
|
+
"items": {
|
|
10093
|
+
"type": "string",
|
|
10094
|
+
"enum": [
|
|
10095
|
+
"on-merge",
|
|
10096
|
+
"on-code-pushed",
|
|
10097
|
+
"on-reviewer-status-changed"
|
|
10098
|
+
]
|
|
10099
|
+
}
|
|
10100
|
+
},
|
|
10101
|
+
"function": {
|
|
10102
|
+
"type": "string",
|
|
10103
|
+
"minLength": 1,
|
|
10104
|
+
"maxLength": 255,
|
|
10105
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
10106
|
+
},
|
|
10107
|
+
"key": {
|
|
10108
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
10109
|
+
}
|
|
10110
|
+
},
|
|
10111
|
+
"required": [
|
|
10112
|
+
"name",
|
|
10113
|
+
"triggers",
|
|
10114
|
+
"function",
|
|
10115
|
+
"key"
|
|
10116
|
+
],
|
|
10117
|
+
"not": {
|
|
10118
|
+
"required": [
|
|
10119
|
+
"unlicensedAccess"
|
|
10093
10120
|
]
|
|
10094
10121
|
}
|
|
10095
10122
|
},
|
|
10096
|
-
|
|
10097
|
-
"type": "
|
|
10098
|
-
"
|
|
10099
|
-
|
|
10100
|
-
|
|
10101
|
-
|
|
10102
|
-
|
|
10103
|
-
|
|
10123
|
+
{
|
|
10124
|
+
"type": "object",
|
|
10125
|
+
"properties": {
|
|
10126
|
+
"name": {
|
|
10127
|
+
"type": "string"
|
|
10128
|
+
},
|
|
10129
|
+
"description": {
|
|
10130
|
+
"type": "string"
|
|
10131
|
+
},
|
|
10132
|
+
"triggers": {
|
|
10133
|
+
"type": "array",
|
|
10134
|
+
"minItems": 1,
|
|
10135
|
+
"items": {
|
|
10136
|
+
"type": "string",
|
|
10137
|
+
"enum": [
|
|
10138
|
+
"on-merge",
|
|
10139
|
+
"on-code-pushed",
|
|
10140
|
+
"on-reviewer-status-changed"
|
|
10141
|
+
]
|
|
10142
|
+
}
|
|
10143
|
+
},
|
|
10144
|
+
"endpoint": {
|
|
10145
|
+
"type": "string",
|
|
10146
|
+
"minLength": 1,
|
|
10147
|
+
"maxLength": 255,
|
|
10148
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
10149
|
+
},
|
|
10150
|
+
"key": {
|
|
10151
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
10152
|
+
}
|
|
10153
|
+
},
|
|
10154
|
+
"required": [
|
|
10155
|
+
"name",
|
|
10156
|
+
"triggers",
|
|
10157
|
+
"endpoint",
|
|
10158
|
+
"key"
|
|
10159
|
+
],
|
|
10160
|
+
"not": {
|
|
10161
|
+
"required": [
|
|
10162
|
+
"unlicensedAccess"
|
|
10163
|
+
]
|
|
10164
|
+
}
|
|
10104
10165
|
}
|
|
10105
|
-
|
|
10106
|
-
"required": [
|
|
10107
|
-
"name",
|
|
10108
|
-
"triggers",
|
|
10109
|
-
"function",
|
|
10110
|
-
"key"
|
|
10111
|
-
],
|
|
10112
|
-
"not": {
|
|
10113
|
-
"required": [
|
|
10114
|
-
"unlicensedAccess"
|
|
10115
|
-
]
|
|
10116
|
-
}
|
|
10166
|
+
]
|
|
10117
10167
|
},
|
|
10118
10168
|
"minItems": 1
|
|
10119
10169
|
},
|
|
@@ -10168,6 +10218,9 @@
|
|
|
10168
10218
|
}
|
|
10169
10219
|
},
|
|
10170
10220
|
"required": [
|
|
10221
|
+
"shortcut",
|
|
10222
|
+
"name",
|
|
10223
|
+
"target",
|
|
10171
10224
|
"key"
|
|
10172
10225
|
],
|
|
10173
10226
|
"not": {
|
|
@@ -10241,6 +10294,8 @@
|
|
|
10241
10294
|
}
|
|
10242
10295
|
},
|
|
10243
10296
|
"required": [
|
|
10297
|
+
"name",
|
|
10298
|
+
"url",
|
|
10244
10299
|
"key"
|
|
10245
10300
|
],
|
|
10246
10301
|
"not": {
|
|
@@ -10317,6 +10372,9 @@
|
|
|
10317
10372
|
}
|
|
10318
10373
|
},
|
|
10319
10374
|
"required": [
|
|
10375
|
+
"name",
|
|
10376
|
+
"location",
|
|
10377
|
+
"url",
|
|
10320
10378
|
"key"
|
|
10321
10379
|
],
|
|
10322
10380
|
"not": {
|
|
@@ -10377,6 +10435,8 @@
|
|
|
10377
10435
|
}
|
|
10378
10436
|
},
|
|
10379
10437
|
"required": [
|
|
10438
|
+
"event",
|
|
10439
|
+
"url",
|
|
10380
10440
|
"key"
|
|
10381
10441
|
],
|
|
10382
10442
|
"not": {
|
|
@@ -10445,6 +10505,8 @@
|
|
|
10445
10505
|
}
|
|
10446
10506
|
},
|
|
10447
10507
|
"required": [
|
|
10508
|
+
"name",
|
|
10509
|
+
"url",
|
|
10448
10510
|
"key"
|
|
10449
10511
|
],
|
|
10450
10512
|
"not": {
|
|
@@ -10503,6 +10565,8 @@
|
|
|
10503
10565
|
}
|
|
10504
10566
|
},
|
|
10505
10567
|
"required": [
|
|
10568
|
+
"name",
|
|
10569
|
+
"location",
|
|
10506
10570
|
"key"
|
|
10507
10571
|
],
|
|
10508
10572
|
"not": {
|
|
@@ -10571,6 +10635,8 @@
|
|
|
10571
10635
|
}
|
|
10572
10636
|
},
|
|
10573
10637
|
"required": [
|
|
10638
|
+
"name",
|
|
10639
|
+
"url",
|
|
10574
10640
|
"key"
|
|
10575
10641
|
],
|
|
10576
10642
|
"not": {
|
|
@@ -10886,6 +10952,8 @@
|
|
|
10886
10952
|
}
|
|
10887
10953
|
},
|
|
10888
10954
|
"required": [
|
|
10955
|
+
"name",
|
|
10956
|
+
"location",
|
|
10889
10957
|
"key"
|
|
10890
10958
|
],
|
|
10891
10959
|
"not": {
|
|
@@ -10959,6 +11027,8 @@
|
|
|
10959
11027
|
}
|
|
10960
11028
|
},
|
|
10961
11029
|
"required": [
|
|
11030
|
+
"name",
|
|
11031
|
+
"url",
|
|
10962
11032
|
"key"
|
|
10963
11033
|
],
|
|
10964
11034
|
"not": {
|
|
@@ -10991,6 +11061,7 @@
|
|
|
10991
11061
|
}
|
|
10992
11062
|
},
|
|
10993
11063
|
"required": [
|
|
11064
|
+
"url",
|
|
10994
11065
|
"key"
|
|
10995
11066
|
],
|
|
10996
11067
|
"not": {
|
|
@@ -11087,6 +11158,7 @@
|
|
|
11087
11158
|
}
|
|
11088
11159
|
},
|
|
11089
11160
|
"required": [
|
|
11161
|
+
"name",
|
|
11090
11162
|
"key"
|
|
11091
11163
|
],
|
|
11092
11164
|
"not": {
|
|
@@ -11126,6 +11198,8 @@
|
|
|
11126
11198
|
}
|
|
11127
11199
|
},
|
|
11128
11200
|
"required": [
|
|
11201
|
+
"homeUrl",
|
|
11202
|
+
"name",
|
|
11129
11203
|
"key"
|
|
11130
11204
|
],
|
|
11131
11205
|
"not": {
|
|
@@ -11189,6 +11263,8 @@
|
|
|
11189
11263
|
}
|
|
11190
11264
|
},
|
|
11191
11265
|
"required": [
|
|
11266
|
+
"name",
|
|
11267
|
+
"description",
|
|
11192
11268
|
"key"
|
|
11193
11269
|
],
|
|
11194
11270
|
"not": {
|
|
@@ -11242,6 +11318,8 @@
|
|
|
11242
11318
|
}
|
|
11243
11319
|
},
|
|
11244
11320
|
"required": [
|
|
11321
|
+
"name",
|
|
11322
|
+
"url",
|
|
11245
11323
|
"key"
|
|
11246
11324
|
],
|
|
11247
11325
|
"not": {
|
|
@@ -11298,6 +11376,8 @@
|
|
|
11298
11376
|
}
|
|
11299
11377
|
},
|
|
11300
11378
|
"required": [
|
|
11379
|
+
"name",
|
|
11380
|
+
"url",
|
|
11301
11381
|
"key"
|
|
11302
11382
|
],
|
|
11303
11383
|
"not": {
|
|
@@ -11401,6 +11481,10 @@
|
|
|
11401
11481
|
}
|
|
11402
11482
|
},
|
|
11403
11483
|
"required": [
|
|
11484
|
+
"icon",
|
|
11485
|
+
"name",
|
|
11486
|
+
"content",
|
|
11487
|
+
"target",
|
|
11404
11488
|
"key"
|
|
11405
11489
|
],
|
|
11406
11490
|
"not": {
|
|
@@ -11538,6 +11622,8 @@
|
|
|
11538
11622
|
}
|
|
11539
11623
|
},
|
|
11540
11624
|
"required": [
|
|
11625
|
+
"name",
|
|
11626
|
+
"url",
|
|
11541
11627
|
"key"
|
|
11542
11628
|
],
|
|
11543
11629
|
"not": {
|
|
@@ -11580,6 +11666,8 @@
|
|
|
11580
11666
|
}
|
|
11581
11667
|
},
|
|
11582
11668
|
"required": [
|
|
11669
|
+
"homeUrl",
|
|
11670
|
+
"name",
|
|
11583
11671
|
"key"
|
|
11584
11672
|
],
|
|
11585
11673
|
"not": {
|
|
@@ -11633,6 +11721,8 @@
|
|
|
11633
11721
|
}
|
|
11634
11722
|
},
|
|
11635
11723
|
"required": [
|
|
11724
|
+
"expression",
|
|
11725
|
+
"name",
|
|
11636
11726
|
"key"
|
|
11637
11727
|
],
|
|
11638
11728
|
"not": {
|
|
@@ -11690,6 +11780,8 @@
|
|
|
11690
11780
|
}
|
|
11691
11781
|
},
|
|
11692
11782
|
"required": [
|
|
11783
|
+
"name",
|
|
11784
|
+
"url",
|
|
11693
11785
|
"key"
|
|
11694
11786
|
],
|
|
11695
11787
|
"not": {
|
|
@@ -11785,6 +11877,9 @@
|
|
|
11785
11877
|
}
|
|
11786
11878
|
},
|
|
11787
11879
|
"required": [
|
|
11880
|
+
"expression",
|
|
11881
|
+
"errorMessage",
|
|
11882
|
+
"name",
|
|
11788
11883
|
"key"
|
|
11789
11884
|
],
|
|
11790
11885
|
"not": {
|
|
@@ -11860,6 +11955,126 @@
|
|
|
11860
11955
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
11861
11956
|
}
|
|
11862
11957
|
},
|
|
11958
|
+
"required": [
|
|
11959
|
+
"homeUrl",
|
|
11960
|
+
"name",
|
|
11961
|
+
"key"
|
|
11962
|
+
],
|
|
11963
|
+
"not": {
|
|
11964
|
+
"required": [
|
|
11965
|
+
"unlicensedAccess"
|
|
11966
|
+
]
|
|
11967
|
+
}
|
|
11968
|
+
},
|
|
11969
|
+
"minItems": 1
|
|
11970
|
+
},
|
|
11971
|
+
"connect-jira:jiraSecurityInfoProvider": {
|
|
11972
|
+
"type": "array",
|
|
11973
|
+
"items": {
|
|
11974
|
+
"properties": {
|
|
11975
|
+
"name": {
|
|
11976
|
+
"$ref": "#/definitions/i18nProperty",
|
|
11977
|
+
"fieldDescription": "\n\nA human readable name.\n\n"
|
|
11978
|
+
},
|
|
11979
|
+
"homeUrl": {
|
|
11980
|
+
"type": "string",
|
|
11981
|
+
"fieldDescription": "\n\nURL to the provider's homepage.\n\n"
|
|
11982
|
+
},
|
|
11983
|
+
"logoUrl": {
|
|
11984
|
+
"type": "string",
|
|
11985
|
+
"fieldDescription": "\n\nOptional URL to the provider's logo, which will be displayed in the UI.\n\n"
|
|
11986
|
+
},
|
|
11987
|
+
"documentationUrl": {
|
|
11988
|
+
"type": "string",
|
|
11989
|
+
"fieldDescription": "\n\nOptional URL to documentation about the provider's Jira integration.\n\n"
|
|
11990
|
+
},
|
|
11991
|
+
"actions": {
|
|
11992
|
+
"properties": {
|
|
11993
|
+
"fetchWorkspaces": {
|
|
11994
|
+
"properties": {
|
|
11995
|
+
"templateUrl": {
|
|
11996
|
+
"format": "uri",
|
|
11997
|
+
"type": "string",
|
|
11998
|
+
"fieldDescription": "\n\n"
|
|
11999
|
+
}
|
|
12000
|
+
},
|
|
12001
|
+
"required": [
|
|
12002
|
+
"templateUrl"
|
|
12003
|
+
],
|
|
12004
|
+
"shortClassName": "securityInfoProviderActionBean",
|
|
12005
|
+
"type": "object",
|
|
12006
|
+
"fieldDescription": "\n\nAction for fetching security workspaces by IDs.\n\n"
|
|
12007
|
+
},
|
|
12008
|
+
"fetchContainers": {
|
|
12009
|
+
"properties": {
|
|
12010
|
+
"templateUrl": {
|
|
12011
|
+
"format": "uri",
|
|
12012
|
+
"type": "string",
|
|
12013
|
+
"fieldDescription": "\n\n"
|
|
12014
|
+
}
|
|
12015
|
+
},
|
|
12016
|
+
"required": [
|
|
12017
|
+
"templateUrl"
|
|
12018
|
+
],
|
|
12019
|
+
"shortClassName": "securityInfoProviderActionBean",
|
|
12020
|
+
"type": "object",
|
|
12021
|
+
"fieldDescription": "\n\nAction for fetching security containers by IDs.\n\n"
|
|
12022
|
+
},
|
|
12023
|
+
"searchContainers": {
|
|
12024
|
+
"properties": {
|
|
12025
|
+
"templateUrl": {
|
|
12026
|
+
"format": "uri",
|
|
12027
|
+
"type": "string",
|
|
12028
|
+
"fieldDescription": "\n\n"
|
|
12029
|
+
}
|
|
12030
|
+
},
|
|
12031
|
+
"required": [
|
|
12032
|
+
"templateUrl"
|
|
12033
|
+
],
|
|
12034
|
+
"shortClassName": "securityInfoProviderActionBean",
|
|
12035
|
+
"type": "object",
|
|
12036
|
+
"fieldDescription": "\n\nAction for showing any partial or full matches using a search on the security container name for a given workspace.\n\n"
|
|
12037
|
+
},
|
|
12038
|
+
"onEntityAssociated": {
|
|
12039
|
+
"properties": {
|
|
12040
|
+
"templateUrl": {
|
|
12041
|
+
"format": "uri",
|
|
12042
|
+
"type": "string",
|
|
12043
|
+
"fieldDescription": "\n\n"
|
|
12044
|
+
}
|
|
12045
|
+
},
|
|
12046
|
+
"required": [
|
|
12047
|
+
"templateUrl"
|
|
12048
|
+
],
|
|
12049
|
+
"shortClassName": "securityInfoProviderActionBean",
|
|
12050
|
+
"type": "object",
|
|
12051
|
+
"fieldDescription": "\n\nAction to notify the provider when one of their entities has been associated with an Atlassian entity.\n\n"
|
|
12052
|
+
},
|
|
12053
|
+
"onEntityDisassociated": {
|
|
12054
|
+
"properties": {
|
|
12055
|
+
"templateUrl": {
|
|
12056
|
+
"format": "uri",
|
|
12057
|
+
"type": "string",
|
|
12058
|
+
"fieldDescription": "\n\n"
|
|
12059
|
+
}
|
|
12060
|
+
},
|
|
12061
|
+
"required": [
|
|
12062
|
+
"templateUrl"
|
|
12063
|
+
],
|
|
12064
|
+
"shortClassName": "securityInfoProviderActionBean",
|
|
12065
|
+
"type": "object",
|
|
12066
|
+
"fieldDescription": "\n\nAction to notify the provider when one of their entities has its association removed from an Atlassian entity.\n\n"
|
|
12067
|
+
}
|
|
12068
|
+
},
|
|
12069
|
+
"shortClassName": "securityInfoProviderActionsBean",
|
|
12070
|
+
"type": "object",
|
|
12071
|
+
"title": "Security Information Actions",
|
|
12072
|
+
"description": "\n\n<p>Security Information actions that can be performed by Jira users. </p>\n<p>Each action is optional (unless indicated otherwise). The absence of an action indicates that the action is not supported by the provider.</p>\n\n"
|
|
12073
|
+
},
|
|
12074
|
+
"key": {
|
|
12075
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
12076
|
+
}
|
|
12077
|
+
},
|
|
11863
12078
|
"required": [
|
|
11864
12079
|
"key"
|
|
11865
12080
|
],
|
|
@@ -11937,6 +12152,8 @@
|
|
|
11937
12152
|
}
|
|
11938
12153
|
},
|
|
11939
12154
|
"required": [
|
|
12155
|
+
"location",
|
|
12156
|
+
"url",
|
|
11940
12157
|
"key"
|
|
11941
12158
|
],
|
|
11942
12159
|
"not": {
|
|
@@ -11995,6 +12212,8 @@
|
|
|
11995
12212
|
}
|
|
11996
12213
|
},
|
|
11997
12214
|
"required": [
|
|
12215
|
+
"homeUrl",
|
|
12216
|
+
"name",
|
|
11998
12217
|
"key"
|
|
11999
12218
|
],
|
|
12000
12219
|
"not": {
|
|
@@ -12047,6 +12266,9 @@
|
|
|
12047
12266
|
}
|
|
12048
12267
|
},
|
|
12049
12268
|
"required": [
|
|
12269
|
+
"name",
|
|
12270
|
+
"description",
|
|
12271
|
+
"url",
|
|
12050
12272
|
"key"
|
|
12051
12273
|
],
|
|
12052
12274
|
"not": {
|
|
@@ -12155,6 +12377,10 @@
|
|
|
12155
12377
|
}
|
|
12156
12378
|
},
|
|
12157
12379
|
"required": [
|
|
12380
|
+
"icon",
|
|
12381
|
+
"name",
|
|
12382
|
+
"content",
|
|
12383
|
+
"target",
|
|
12158
12384
|
"key"
|
|
12159
12385
|
],
|
|
12160
12386
|
"not": {
|
|
@@ -12217,6 +12443,10 @@
|
|
|
12217
12443
|
}
|
|
12218
12444
|
},
|
|
12219
12445
|
"required": [
|
|
12446
|
+
"name",
|
|
12447
|
+
"description",
|
|
12448
|
+
"url",
|
|
12449
|
+
"thumbnailUrl",
|
|
12220
12450
|
"key"
|
|
12221
12451
|
],
|
|
12222
12452
|
"not": {
|
|
@@ -12260,6 +12490,8 @@
|
|
|
12260
12490
|
}
|
|
12261
12491
|
},
|
|
12262
12492
|
"required": [
|
|
12493
|
+
"triggered",
|
|
12494
|
+
"name",
|
|
12263
12495
|
"key"
|
|
12264
12496
|
],
|
|
12265
12497
|
"not": {
|
|
@@ -12352,6 +12584,10 @@
|
|
|
12352
12584
|
}
|
|
12353
12585
|
},
|
|
12354
12586
|
"required": [
|
|
12587
|
+
"icon",
|
|
12588
|
+
"tooltip",
|
|
12589
|
+
"name",
|
|
12590
|
+
"target",
|
|
12355
12591
|
"key"
|
|
12356
12592
|
],
|
|
12357
12593
|
"not": {
|
|
@@ -12406,6 +12642,11 @@
|
|
|
12406
12642
|
}
|
|
12407
12643
|
},
|
|
12408
12644
|
"required": [
|
|
12645
|
+
"capabilities",
|
|
12646
|
+
"application",
|
|
12647
|
+
"name",
|
|
12648
|
+
"url",
|
|
12649
|
+
"logoUrl",
|
|
12409
12650
|
"key"
|
|
12410
12651
|
],
|
|
12411
12652
|
"not": {
|
|
@@ -12543,6 +12784,8 @@
|
|
|
12543
12784
|
}
|
|
12544
12785
|
},
|
|
12545
12786
|
"required": [
|
|
12787
|
+
"name",
|
|
12788
|
+
"url",
|
|
12546
12789
|
"key"
|
|
12547
12790
|
],
|
|
12548
12791
|
"not": {
|
|
@@ -12590,6 +12833,8 @@
|
|
|
12590
12833
|
}
|
|
12591
12834
|
},
|
|
12592
12835
|
"required": [
|
|
12836
|
+
"name",
|
|
12837
|
+
"description",
|
|
12593
12838
|
"key"
|
|
12594
12839
|
],
|
|
12595
12840
|
"not": {
|
|
@@ -12736,6 +12981,9 @@
|
|
|
12736
12981
|
}
|
|
12737
12982
|
},
|
|
12738
12983
|
"required": [
|
|
12984
|
+
"name",
|
|
12985
|
+
"description",
|
|
12986
|
+
"type",
|
|
12739
12987
|
"key"
|
|
12740
12988
|
],
|
|
12741
12989
|
"not": {
|
|
@@ -12773,6 +13021,9 @@
|
|
|
12773
13021
|
}
|
|
12774
13022
|
},
|
|
12775
13023
|
"required": [
|
|
13024
|
+
"name",
|
|
13025
|
+
"description",
|
|
13026
|
+
"type",
|
|
12776
13027
|
"key"
|
|
12777
13028
|
],
|
|
12778
13029
|
"not": {
|
|
@@ -12800,6 +13051,7 @@
|
|
|
12800
13051
|
}
|
|
12801
13052
|
},
|
|
12802
13053
|
"required": [
|
|
13054
|
+
"name",
|
|
12803
13055
|
"key"
|
|
12804
13056
|
],
|
|
12805
13057
|
"not": {
|
|
@@ -12819,30 +13071,1399 @@
|
|
|
12819
13071
|
"type": "string",
|
|
12820
13072
|
"fieldDescription": "\n\nWhen a Connect add-on is installed, a synchronous request is fired to this URL to initiate the installation\n handshake. In order to successfully complete installation, the add-on must respond with either a\n <code>200 OK</code> or <code>204 No Content</code> status.\n\n<div class=\"aui-message warning\">\n <p class=\"title\">\n <span class=\"aui-icon icon-warning\">Warning</span>\n <strong>Important</strong>\n </p>\n Upon successful registration, the add-on must return either a <code>200 OK</code> or <code>204 No Content</code>\n response code, otherwise the operation will fail and the installation will be marked as incomplete.\n</div>\n\n"
|
|
12821
13073
|
},
|
|
12822
|
-
"disabled": {
|
|
12823
|
-
"format": "uri",
|
|
12824
|
-
"type": "string",
|
|
12825
|
-
"fieldDescription": "\n\nFires when an add on has been successfully disabled. This is an asynchronous notification event.\n\n"
|
|
13074
|
+
"disabled": {
|
|
13075
|
+
"format": "uri",
|
|
13076
|
+
"type": "string",
|
|
13077
|
+
"fieldDescription": "\n\nFires when an add on has been successfully disabled. This is an asynchronous notification event.\n\n"
|
|
13078
|
+
},
|
|
13079
|
+
"dare-migration": {
|
|
13080
|
+
"type": "string",
|
|
13081
|
+
"fieldDescription": "\n\nUsed DaRe app migration service to trigger migrations events\n\n"
|
|
13082
|
+
},
|
|
13083
|
+
"uninstalled": {
|
|
13084
|
+
"format": "uri",
|
|
13085
|
+
"type": "string",
|
|
13086
|
+
"fieldDescription": "\n\nFires when an add on has been successfully un-installed. This is an asynchronous notification event.\n\n"
|
|
13087
|
+
},
|
|
13088
|
+
"enabled": {
|
|
13089
|
+
"format": "uri",
|
|
13090
|
+
"type": "string",
|
|
13091
|
+
"fieldDescription": "\n\nFires when an add on has been successfully enabled. This is an asynchronous notification event.\n\n"
|
|
13092
|
+
},
|
|
13093
|
+
"key": {
|
|
13094
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13095
|
+
}
|
|
13096
|
+
},
|
|
13097
|
+
"required": [
|
|
13098
|
+
"key"
|
|
13099
|
+
],
|
|
13100
|
+
"not": {
|
|
13101
|
+
"required": [
|
|
13102
|
+
"unlicensedAccess"
|
|
13103
|
+
]
|
|
13104
|
+
}
|
|
13105
|
+
},
|
|
13106
|
+
"minItems": 1
|
|
13107
|
+
},
|
|
13108
|
+
"connect-jira:serviceDeskPortalHeaders": {
|
|
13109
|
+
"type": "array",
|
|
13110
|
+
"items": {
|
|
13111
|
+
"properties": {
|
|
13112
|
+
"url": {
|
|
13113
|
+
"format": "uri",
|
|
13114
|
+
"type": "string"
|
|
13115
|
+
},
|
|
13116
|
+
"weight": {
|
|
13117
|
+
"type": "integer",
|
|
13118
|
+
"defaultValue": "100"
|
|
13119
|
+
},
|
|
13120
|
+
"conditions": {
|
|
13121
|
+
"items": {
|
|
13122
|
+
"type": "object",
|
|
13123
|
+
"anyOf": [
|
|
13124
|
+
{
|
|
13125
|
+
"$ref": "#/definitions/singleCondition"
|
|
13126
|
+
},
|
|
13127
|
+
{
|
|
13128
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13129
|
+
}
|
|
13130
|
+
]
|
|
13131
|
+
},
|
|
13132
|
+
"type": "array"
|
|
13133
|
+
},
|
|
13134
|
+
"pages": {
|
|
13135
|
+
"items": {
|
|
13136
|
+
"enum": [
|
|
13137
|
+
"help_center",
|
|
13138
|
+
"HELP_CENTER",
|
|
13139
|
+
"portal",
|
|
13140
|
+
"PORTAL",
|
|
13141
|
+
"create_request",
|
|
13142
|
+
"CREATE_REQUEST",
|
|
13143
|
+
"view_request",
|
|
13144
|
+
"VIEW_REQUEST",
|
|
13145
|
+
"my_requests",
|
|
13146
|
+
"MY_REQUESTS",
|
|
13147
|
+
"approvals",
|
|
13148
|
+
"APPROVALS",
|
|
13149
|
+
"profile",
|
|
13150
|
+
"PROFILE"
|
|
13151
|
+
],
|
|
13152
|
+
"type": "string"
|
|
13153
|
+
},
|
|
13154
|
+
"type": "array"
|
|
13155
|
+
},
|
|
13156
|
+
"key": {
|
|
13157
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13158
|
+
}
|
|
13159
|
+
},
|
|
13160
|
+
"required": [
|
|
13161
|
+
"url",
|
|
13162
|
+
"key"
|
|
13163
|
+
],
|
|
13164
|
+
"additionalProperties": true,
|
|
13165
|
+
"shortClassName": "portalSharedPanelBean",
|
|
13166
|
+
"type": "object",
|
|
13167
|
+
"not": {
|
|
13168
|
+
"required": [
|
|
13169
|
+
"unlicensedAccess"
|
|
13170
|
+
]
|
|
13171
|
+
}
|
|
13172
|
+
},
|
|
13173
|
+
"minItems": 1
|
|
13174
|
+
},
|
|
13175
|
+
"connect-jira:serviceDeskPortalSubHeaders": {
|
|
13176
|
+
"type": "array",
|
|
13177
|
+
"items": {
|
|
13178
|
+
"properties": {
|
|
13179
|
+
"url": {
|
|
13180
|
+
"format": "uri",
|
|
13181
|
+
"type": "string"
|
|
13182
|
+
},
|
|
13183
|
+
"weight": {
|
|
13184
|
+
"type": "integer",
|
|
13185
|
+
"defaultValue": "100"
|
|
13186
|
+
},
|
|
13187
|
+
"conditions": {
|
|
13188
|
+
"items": {
|
|
13189
|
+
"type": "object",
|
|
13190
|
+
"anyOf": [
|
|
13191
|
+
{
|
|
13192
|
+
"$ref": "#/definitions/singleCondition"
|
|
13193
|
+
},
|
|
13194
|
+
{
|
|
13195
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13196
|
+
}
|
|
13197
|
+
]
|
|
13198
|
+
},
|
|
13199
|
+
"type": "array"
|
|
13200
|
+
},
|
|
13201
|
+
"pages": {
|
|
13202
|
+
"items": {
|
|
13203
|
+
"enum": [
|
|
13204
|
+
"help_center",
|
|
13205
|
+
"HELP_CENTER",
|
|
13206
|
+
"portal",
|
|
13207
|
+
"PORTAL",
|
|
13208
|
+
"create_request",
|
|
13209
|
+
"CREATE_REQUEST",
|
|
13210
|
+
"view_request",
|
|
13211
|
+
"VIEW_REQUEST",
|
|
13212
|
+
"my_requests",
|
|
13213
|
+
"MY_REQUESTS",
|
|
13214
|
+
"approvals",
|
|
13215
|
+
"APPROVALS",
|
|
13216
|
+
"profile",
|
|
13217
|
+
"PROFILE"
|
|
13218
|
+
],
|
|
13219
|
+
"type": "string"
|
|
13220
|
+
},
|
|
13221
|
+
"type": "array"
|
|
13222
|
+
},
|
|
13223
|
+
"key": {
|
|
13224
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13225
|
+
}
|
|
13226
|
+
},
|
|
13227
|
+
"required": [
|
|
13228
|
+
"url",
|
|
13229
|
+
"key"
|
|
13230
|
+
],
|
|
13231
|
+
"additionalProperties": true,
|
|
13232
|
+
"shortClassName": "portalSharedPanelBean",
|
|
13233
|
+
"type": "object",
|
|
13234
|
+
"not": {
|
|
13235
|
+
"required": [
|
|
13236
|
+
"unlicensedAccess"
|
|
13237
|
+
]
|
|
13238
|
+
}
|
|
13239
|
+
},
|
|
13240
|
+
"minItems": 1
|
|
13241
|
+
},
|
|
13242
|
+
"connect-jira:serviceDeskPortalFooters": {
|
|
13243
|
+
"type": "array",
|
|
13244
|
+
"items": {
|
|
13245
|
+
"properties": {
|
|
13246
|
+
"url": {
|
|
13247
|
+
"format": "uri",
|
|
13248
|
+
"type": "string"
|
|
13249
|
+
},
|
|
13250
|
+
"weight": {
|
|
13251
|
+
"type": "integer",
|
|
13252
|
+
"defaultValue": "100"
|
|
13253
|
+
},
|
|
13254
|
+
"conditions": {
|
|
13255
|
+
"items": {
|
|
13256
|
+
"type": "object",
|
|
13257
|
+
"anyOf": [
|
|
13258
|
+
{
|
|
13259
|
+
"$ref": "#/definitions/singleCondition"
|
|
13260
|
+
},
|
|
13261
|
+
{
|
|
13262
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13263
|
+
}
|
|
13264
|
+
]
|
|
13265
|
+
},
|
|
13266
|
+
"type": "array"
|
|
13267
|
+
},
|
|
13268
|
+
"pages": {
|
|
13269
|
+
"items": {
|
|
13270
|
+
"enum": [
|
|
13271
|
+
"help_center",
|
|
13272
|
+
"HELP_CENTER",
|
|
13273
|
+
"portal",
|
|
13274
|
+
"PORTAL",
|
|
13275
|
+
"create_request",
|
|
13276
|
+
"CREATE_REQUEST",
|
|
13277
|
+
"view_request",
|
|
13278
|
+
"VIEW_REQUEST",
|
|
13279
|
+
"my_requests",
|
|
13280
|
+
"MY_REQUESTS",
|
|
13281
|
+
"approvals",
|
|
13282
|
+
"APPROVALS",
|
|
13283
|
+
"profile",
|
|
13284
|
+
"PROFILE"
|
|
13285
|
+
],
|
|
13286
|
+
"type": "string"
|
|
13287
|
+
},
|
|
13288
|
+
"type": "array"
|
|
13289
|
+
},
|
|
13290
|
+
"key": {
|
|
13291
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13292
|
+
}
|
|
13293
|
+
},
|
|
13294
|
+
"required": [
|
|
13295
|
+
"url",
|
|
13296
|
+
"key"
|
|
13297
|
+
],
|
|
13298
|
+
"additionalProperties": true,
|
|
13299
|
+
"shortClassName": "portalSharedPanelBean",
|
|
13300
|
+
"type": "object",
|
|
13301
|
+
"not": {
|
|
13302
|
+
"required": [
|
|
13303
|
+
"unlicensedAccess"
|
|
13304
|
+
]
|
|
13305
|
+
}
|
|
13306
|
+
},
|
|
13307
|
+
"minItems": 1
|
|
13308
|
+
},
|
|
13309
|
+
"connect-jira:serviceDeskPortalRequestCreatePropertyPanels": {
|
|
13310
|
+
"type": "array",
|
|
13311
|
+
"items": {
|
|
13312
|
+
"properties": {
|
|
13313
|
+
"weight": {
|
|
13314
|
+
"type": "integer",
|
|
13315
|
+
"defaultValue": "100"
|
|
13316
|
+
},
|
|
13317
|
+
"conditions": {
|
|
13318
|
+
"items": {
|
|
13319
|
+
"type": "object",
|
|
13320
|
+
"anyOf": [
|
|
13321
|
+
{
|
|
13322
|
+
"$ref": "#/definitions/singleCondition"
|
|
13323
|
+
},
|
|
13324
|
+
{
|
|
13325
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13326
|
+
}
|
|
13327
|
+
]
|
|
13328
|
+
},
|
|
13329
|
+
"type": "array"
|
|
13330
|
+
},
|
|
13331
|
+
"url": {
|
|
13332
|
+
"format": "uri",
|
|
13333
|
+
"type": "string"
|
|
13334
|
+
},
|
|
13335
|
+
"key": {
|
|
13336
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13337
|
+
}
|
|
13338
|
+
},
|
|
13339
|
+
"required": [
|
|
13340
|
+
"url",
|
|
13341
|
+
"key"
|
|
13342
|
+
],
|
|
13343
|
+
"additionalProperties": true,
|
|
13344
|
+
"shortClassName": "portalPanelBean",
|
|
13345
|
+
"type": "object",
|
|
13346
|
+
"not": {
|
|
13347
|
+
"required": [
|
|
13348
|
+
"unlicensedAccess"
|
|
13349
|
+
]
|
|
13350
|
+
}
|
|
13351
|
+
},
|
|
13352
|
+
"minItems": 1
|
|
13353
|
+
},
|
|
13354
|
+
"connect-jira:serviceDeskPortalRequestViewDetailsPanels": {
|
|
13355
|
+
"type": "array",
|
|
13356
|
+
"items": {
|
|
13357
|
+
"properties": {
|
|
13358
|
+
"weight": {
|
|
13359
|
+
"type": "integer",
|
|
13360
|
+
"defaultValue": "100"
|
|
13361
|
+
},
|
|
13362
|
+
"conditions": {
|
|
13363
|
+
"items": {
|
|
13364
|
+
"type": "object",
|
|
13365
|
+
"anyOf": [
|
|
13366
|
+
{
|
|
13367
|
+
"$ref": "#/definitions/singleCondition"
|
|
13368
|
+
},
|
|
13369
|
+
{
|
|
13370
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13371
|
+
}
|
|
13372
|
+
]
|
|
13373
|
+
},
|
|
13374
|
+
"type": "array"
|
|
13375
|
+
},
|
|
13376
|
+
"url": {
|
|
13377
|
+
"format": "uri",
|
|
13378
|
+
"type": "string"
|
|
13379
|
+
},
|
|
13380
|
+
"key": {
|
|
13381
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13382
|
+
}
|
|
13383
|
+
},
|
|
13384
|
+
"required": [
|
|
13385
|
+
"url",
|
|
13386
|
+
"key"
|
|
13387
|
+
],
|
|
13388
|
+
"additionalProperties": true,
|
|
13389
|
+
"shortClassName": "portalPanelBean",
|
|
13390
|
+
"type": "object",
|
|
13391
|
+
"not": {
|
|
13392
|
+
"required": [
|
|
13393
|
+
"unlicensedAccess"
|
|
13394
|
+
]
|
|
13395
|
+
}
|
|
13396
|
+
},
|
|
13397
|
+
"minItems": 1
|
|
13398
|
+
},
|
|
13399
|
+
"connect-jira:serviceDeskPortalRequestViewPanels": {
|
|
13400
|
+
"type": "array",
|
|
13401
|
+
"items": {
|
|
13402
|
+
"properties": {
|
|
13403
|
+
"weight": {
|
|
13404
|
+
"type": "integer",
|
|
13405
|
+
"defaultValue": "100"
|
|
13406
|
+
},
|
|
13407
|
+
"conditions": {
|
|
13408
|
+
"items": {
|
|
13409
|
+
"type": "object",
|
|
13410
|
+
"anyOf": [
|
|
13411
|
+
{
|
|
13412
|
+
"$ref": "#/definitions/singleCondition"
|
|
13413
|
+
},
|
|
13414
|
+
{
|
|
13415
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13416
|
+
}
|
|
13417
|
+
]
|
|
13418
|
+
},
|
|
13419
|
+
"type": "array"
|
|
13420
|
+
},
|
|
13421
|
+
"url": {
|
|
13422
|
+
"format": "uri",
|
|
13423
|
+
"type": "string"
|
|
13424
|
+
},
|
|
13425
|
+
"key": {
|
|
13426
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13427
|
+
}
|
|
13428
|
+
},
|
|
13429
|
+
"required": [
|
|
13430
|
+
"url",
|
|
13431
|
+
"key"
|
|
13432
|
+
],
|
|
13433
|
+
"additionalProperties": true,
|
|
13434
|
+
"shortClassName": "portalPanelBean",
|
|
13435
|
+
"type": "object",
|
|
13436
|
+
"not": {
|
|
13437
|
+
"required": [
|
|
13438
|
+
"unlicensedAccess"
|
|
13439
|
+
]
|
|
13440
|
+
}
|
|
13441
|
+
},
|
|
13442
|
+
"minItems": 1
|
|
13443
|
+
},
|
|
13444
|
+
"connect-jira:serviceDeskPortalProfilePanels": {
|
|
13445
|
+
"type": "array",
|
|
13446
|
+
"items": {
|
|
13447
|
+
"properties": {
|
|
13448
|
+
"weight": {
|
|
13449
|
+
"type": "integer",
|
|
13450
|
+
"defaultValue": "100"
|
|
13451
|
+
},
|
|
13452
|
+
"conditions": {
|
|
13453
|
+
"items": {
|
|
13454
|
+
"type": "object",
|
|
13455
|
+
"anyOf": [
|
|
13456
|
+
{
|
|
13457
|
+
"$ref": "#/definitions/singleCondition"
|
|
13458
|
+
},
|
|
13459
|
+
{
|
|
13460
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13461
|
+
}
|
|
13462
|
+
]
|
|
13463
|
+
},
|
|
13464
|
+
"type": "array"
|
|
13465
|
+
},
|
|
13466
|
+
"url": {
|
|
13467
|
+
"format": "uri",
|
|
13468
|
+
"type": "string"
|
|
13469
|
+
},
|
|
13470
|
+
"key": {
|
|
13471
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13472
|
+
}
|
|
13473
|
+
},
|
|
13474
|
+
"required": [
|
|
13475
|
+
"url",
|
|
13476
|
+
"key"
|
|
13477
|
+
],
|
|
13478
|
+
"additionalProperties": true,
|
|
13479
|
+
"shortClassName": "portalPanelBean",
|
|
13480
|
+
"type": "object",
|
|
13481
|
+
"not": {
|
|
13482
|
+
"required": [
|
|
13483
|
+
"unlicensedAccess"
|
|
13484
|
+
]
|
|
13485
|
+
}
|
|
13486
|
+
},
|
|
13487
|
+
"minItems": 1
|
|
13488
|
+
},
|
|
13489
|
+
"connect-jira:serviceDeskQueues": {
|
|
13490
|
+
"type": "array",
|
|
13491
|
+
"items": {
|
|
13492
|
+
"properties": {
|
|
13493
|
+
"name": {
|
|
13494
|
+
"$ref": "#/definitions/i18nProperty"
|
|
13495
|
+
},
|
|
13496
|
+
"weight": {
|
|
13497
|
+
"type": "integer",
|
|
13498
|
+
"defaultValue": "100"
|
|
13499
|
+
},
|
|
13500
|
+
"conditions": {
|
|
13501
|
+
"items": {
|
|
13502
|
+
"type": "object",
|
|
13503
|
+
"anyOf": [
|
|
13504
|
+
{
|
|
13505
|
+
"$ref": "#/definitions/singleCondition"
|
|
13506
|
+
},
|
|
13507
|
+
{
|
|
13508
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13509
|
+
}
|
|
13510
|
+
]
|
|
13511
|
+
},
|
|
13512
|
+
"type": "array"
|
|
13513
|
+
},
|
|
13514
|
+
"url": {
|
|
13515
|
+
"format": "uri",
|
|
13516
|
+
"type": "string"
|
|
13517
|
+
},
|
|
13518
|
+
"key": {
|
|
13519
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13520
|
+
},
|
|
13521
|
+
"group": {
|
|
13522
|
+
"type": "string"
|
|
13523
|
+
}
|
|
13524
|
+
},
|
|
13525
|
+
"required": [
|
|
13526
|
+
"name",
|
|
13527
|
+
"key"
|
|
13528
|
+
],
|
|
13529
|
+
"additionalProperties": true,
|
|
13530
|
+
"shortClassName": "sidebarNavigationItemBean",
|
|
13531
|
+
"type": "object",
|
|
13532
|
+
"not": {
|
|
13533
|
+
"required": [
|
|
13534
|
+
"unlicensedAccess"
|
|
13535
|
+
]
|
|
13536
|
+
}
|
|
13537
|
+
},
|
|
13538
|
+
"minItems": 1
|
|
13539
|
+
},
|
|
13540
|
+
"connect-jira:serviceDeskReports": {
|
|
13541
|
+
"type": "array",
|
|
13542
|
+
"items": {
|
|
13543
|
+
"properties": {
|
|
13544
|
+
"name": {
|
|
13545
|
+
"$ref": "#/definitions/i18nProperty"
|
|
13546
|
+
},
|
|
13547
|
+
"weight": {
|
|
13548
|
+
"type": "integer",
|
|
13549
|
+
"defaultValue": "100"
|
|
13550
|
+
},
|
|
13551
|
+
"conditions": {
|
|
13552
|
+
"items": {
|
|
13553
|
+
"type": "object",
|
|
13554
|
+
"anyOf": [
|
|
13555
|
+
{
|
|
13556
|
+
"$ref": "#/definitions/singleCondition"
|
|
13557
|
+
},
|
|
13558
|
+
{
|
|
13559
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13560
|
+
}
|
|
13561
|
+
]
|
|
13562
|
+
},
|
|
13563
|
+
"type": "array"
|
|
13564
|
+
},
|
|
13565
|
+
"url": {
|
|
13566
|
+
"format": "uri",
|
|
13567
|
+
"type": "string"
|
|
13568
|
+
},
|
|
13569
|
+
"key": {
|
|
13570
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13571
|
+
},
|
|
13572
|
+
"group": {
|
|
13573
|
+
"type": "string"
|
|
13574
|
+
}
|
|
13575
|
+
},
|
|
13576
|
+
"required": [
|
|
13577
|
+
"name",
|
|
13578
|
+
"key"
|
|
13579
|
+
],
|
|
13580
|
+
"additionalProperties": true,
|
|
13581
|
+
"shortClassName": "sidebarNavigationItemBean",
|
|
13582
|
+
"type": "object",
|
|
13583
|
+
"not": {
|
|
13584
|
+
"required": [
|
|
13585
|
+
"unlicensedAccess"
|
|
13586
|
+
]
|
|
13587
|
+
}
|
|
13588
|
+
},
|
|
13589
|
+
"minItems": 1
|
|
13590
|
+
},
|
|
13591
|
+
"connect-jira:serviceDeskOrganizationPanels": {
|
|
13592
|
+
"type": "array",
|
|
13593
|
+
"items": {
|
|
13594
|
+
"properties": {
|
|
13595
|
+
"weight": {
|
|
13596
|
+
"type": "integer",
|
|
13597
|
+
"defaultValue": "100"
|
|
13598
|
+
},
|
|
13599
|
+
"conditions": {
|
|
13600
|
+
"items": {
|
|
13601
|
+
"type": "object",
|
|
13602
|
+
"anyOf": [
|
|
13603
|
+
{
|
|
13604
|
+
"$ref": "#/definitions/singleCondition"
|
|
13605
|
+
},
|
|
13606
|
+
{
|
|
13607
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13608
|
+
}
|
|
13609
|
+
]
|
|
13610
|
+
},
|
|
13611
|
+
"type": "array"
|
|
13612
|
+
},
|
|
13613
|
+
"url": {
|
|
13614
|
+
"format": "uri",
|
|
13615
|
+
"type": "string"
|
|
13616
|
+
},
|
|
13617
|
+
"key": {
|
|
13618
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13619
|
+
}
|
|
13620
|
+
},
|
|
13621
|
+
"required": [
|
|
13622
|
+
"url",
|
|
13623
|
+
"key"
|
|
13624
|
+
],
|
|
13625
|
+
"additionalProperties": true,
|
|
13626
|
+
"shortClassName": "organizationAgentViewPanelBean",
|
|
13627
|
+
"type": "object",
|
|
13628
|
+
"not": {
|
|
13629
|
+
"required": [
|
|
13630
|
+
"unlicensedAccess"
|
|
13631
|
+
]
|
|
13632
|
+
}
|
|
13633
|
+
},
|
|
13634
|
+
"minItems": 1
|
|
13635
|
+
},
|
|
13636
|
+
"connect-jira:serviceDeskReportGroups": {
|
|
13637
|
+
"type": "array",
|
|
13638
|
+
"items": {
|
|
13639
|
+
"properties": {
|
|
13640
|
+
"name": {
|
|
13641
|
+
"$ref": "#/definitions/i18nProperty"
|
|
13642
|
+
},
|
|
13643
|
+
"weight": {
|
|
13644
|
+
"type": "integer",
|
|
13645
|
+
"defaultValue": "100"
|
|
13646
|
+
},
|
|
13647
|
+
"conditions": {
|
|
13648
|
+
"items": {
|
|
13649
|
+
"type": "object",
|
|
13650
|
+
"anyOf": [
|
|
13651
|
+
{
|
|
13652
|
+
"$ref": "#/definitions/singleCondition"
|
|
13653
|
+
},
|
|
13654
|
+
{
|
|
13655
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13656
|
+
}
|
|
13657
|
+
]
|
|
13658
|
+
},
|
|
13659
|
+
"type": "array"
|
|
13660
|
+
},
|
|
13661
|
+
"key": {
|
|
13662
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13663
|
+
}
|
|
13664
|
+
},
|
|
13665
|
+
"required": [
|
|
13666
|
+
"name",
|
|
13667
|
+
"key"
|
|
13668
|
+
],
|
|
13669
|
+
"additionalProperties": true,
|
|
13670
|
+
"shortClassName": "sidebarNavigationGroupBean",
|
|
13671
|
+
"type": "object",
|
|
13672
|
+
"not": {
|
|
13673
|
+
"required": [
|
|
13674
|
+
"unlicensedAccess"
|
|
13675
|
+
]
|
|
13676
|
+
}
|
|
13677
|
+
},
|
|
13678
|
+
"minItems": 1
|
|
13679
|
+
},
|
|
13680
|
+
"connect-jira:serviceDeskQueueGroups": {
|
|
13681
|
+
"type": "array",
|
|
13682
|
+
"items": {
|
|
13683
|
+
"properties": {
|
|
13684
|
+
"name": {
|
|
13685
|
+
"$ref": "#/definitions/i18nProperty"
|
|
13686
|
+
},
|
|
13687
|
+
"weight": {
|
|
13688
|
+
"type": "integer",
|
|
13689
|
+
"defaultValue": "100"
|
|
13690
|
+
},
|
|
13691
|
+
"conditions": {
|
|
13692
|
+
"items": {
|
|
13693
|
+
"type": "object",
|
|
13694
|
+
"anyOf": [
|
|
13695
|
+
{
|
|
13696
|
+
"$ref": "#/definitions/singleCondition"
|
|
13697
|
+
},
|
|
13698
|
+
{
|
|
13699
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13700
|
+
}
|
|
13701
|
+
]
|
|
13702
|
+
},
|
|
13703
|
+
"type": "array"
|
|
13704
|
+
},
|
|
13705
|
+
"key": {
|
|
13706
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13707
|
+
}
|
|
13708
|
+
},
|
|
13709
|
+
"required": [
|
|
13710
|
+
"name",
|
|
13711
|
+
"key"
|
|
13712
|
+
],
|
|
13713
|
+
"additionalProperties": true,
|
|
13714
|
+
"shortClassName": "sidebarNavigationGroupBean",
|
|
13715
|
+
"type": "object",
|
|
13716
|
+
"not": {
|
|
13717
|
+
"required": [
|
|
13718
|
+
"unlicensedAccess"
|
|
13719
|
+
]
|
|
13720
|
+
}
|
|
13721
|
+
},
|
|
13722
|
+
"minItems": 1
|
|
13723
|
+
},
|
|
13724
|
+
"connect-jira:serviceDeskPortalUserMenuActions": {
|
|
13725
|
+
"type": "array",
|
|
13726
|
+
"items": {
|
|
13727
|
+
"properties": {
|
|
13728
|
+
"context": {
|
|
13729
|
+
"enum": [
|
|
13730
|
+
"page",
|
|
13731
|
+
"PAGE",
|
|
13732
|
+
"addon",
|
|
13733
|
+
"ADDON",
|
|
13734
|
+
"product",
|
|
13735
|
+
"PRODUCT"
|
|
13736
|
+
],
|
|
13737
|
+
"type": "string",
|
|
13738
|
+
"defaultValue": "addon"
|
|
13739
|
+
},
|
|
13740
|
+
"name": {
|
|
13741
|
+
"$ref": "#/definitions/i18nProperty"
|
|
13742
|
+
},
|
|
13743
|
+
"weight": {
|
|
13744
|
+
"type": "integer",
|
|
13745
|
+
"defaultValue": "100"
|
|
13746
|
+
},
|
|
13747
|
+
"conditions": {
|
|
13748
|
+
"items": {
|
|
13749
|
+
"type": "object",
|
|
13750
|
+
"anyOf": [
|
|
13751
|
+
{
|
|
13752
|
+
"$ref": "#/definitions/singleCondition"
|
|
13753
|
+
},
|
|
13754
|
+
{
|
|
13755
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13756
|
+
}
|
|
13757
|
+
]
|
|
13758
|
+
},
|
|
13759
|
+
"type": "array"
|
|
13760
|
+
},
|
|
13761
|
+
"url": {
|
|
13762
|
+
"format": "uri",
|
|
13763
|
+
"type": "string"
|
|
13764
|
+
},
|
|
13765
|
+
"key": {
|
|
13766
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13767
|
+
},
|
|
13768
|
+
"target": {
|
|
13769
|
+
"properties": {
|
|
13770
|
+
"options": {
|
|
13771
|
+
"properties": {
|
|
13772
|
+
"size": {
|
|
13773
|
+
"enum": [
|
|
13774
|
+
"small",
|
|
13775
|
+
"SMALL",
|
|
13776
|
+
"medium",
|
|
13777
|
+
"MEDIUM",
|
|
13778
|
+
"large",
|
|
13779
|
+
"LARGE",
|
|
13780
|
+
"x-large",
|
|
13781
|
+
"X-LARGE"
|
|
13782
|
+
],
|
|
13783
|
+
"type": "string"
|
|
13784
|
+
},
|
|
13785
|
+
"chrome": {
|
|
13786
|
+
"type": "boolean",
|
|
13787
|
+
"defaultValue": "true"
|
|
13788
|
+
},
|
|
13789
|
+
"header": {
|
|
13790
|
+
"$ref": "#/definitions/i18nProperty"
|
|
13791
|
+
}
|
|
13792
|
+
},
|
|
13793
|
+
"additionalProperties": true,
|
|
13794
|
+
"shortClassName": "simpleWebItemTargetOptions",
|
|
13795
|
+
"type": "object"
|
|
13796
|
+
},
|
|
13797
|
+
"type": {
|
|
13798
|
+
"enum": [
|
|
13799
|
+
"page",
|
|
13800
|
+
"PAGE",
|
|
13801
|
+
"dialog",
|
|
13802
|
+
"DIALOG"
|
|
13803
|
+
],
|
|
13804
|
+
"type": "string",
|
|
13805
|
+
"defaultValue": "page"
|
|
13806
|
+
}
|
|
13807
|
+
},
|
|
13808
|
+
"additionalProperties": true,
|
|
13809
|
+
"shortClassName": "simpleTargetBean",
|
|
13810
|
+
"type": "object"
|
|
13811
|
+
}
|
|
13812
|
+
},
|
|
13813
|
+
"required": [
|
|
13814
|
+
"name",
|
|
13815
|
+
"url",
|
|
13816
|
+
"key"
|
|
13817
|
+
],
|
|
13818
|
+
"additionalProperties": true,
|
|
13819
|
+
"shortClassName": "portalActionBean",
|
|
13820
|
+
"type": "object",
|
|
13821
|
+
"not": {
|
|
13822
|
+
"required": [
|
|
13823
|
+
"unlicensedAccess"
|
|
13824
|
+
]
|
|
13825
|
+
}
|
|
13826
|
+
},
|
|
13827
|
+
"minItems": 1
|
|
13828
|
+
},
|
|
13829
|
+
"connect-jira:serviceDeskPortalProfileActions": {
|
|
13830
|
+
"type": "array",
|
|
13831
|
+
"items": {
|
|
13832
|
+
"properties": {
|
|
13833
|
+
"context": {
|
|
13834
|
+
"enum": [
|
|
13835
|
+
"page",
|
|
13836
|
+
"PAGE",
|
|
13837
|
+
"addon",
|
|
13838
|
+
"ADDON",
|
|
13839
|
+
"product",
|
|
13840
|
+
"PRODUCT"
|
|
13841
|
+
],
|
|
13842
|
+
"type": "string",
|
|
13843
|
+
"defaultValue": "addon"
|
|
13844
|
+
},
|
|
13845
|
+
"name": {
|
|
13846
|
+
"$ref": "#/definitions/i18nProperty"
|
|
13847
|
+
},
|
|
13848
|
+
"weight": {
|
|
13849
|
+
"type": "integer",
|
|
13850
|
+
"defaultValue": "100"
|
|
13851
|
+
},
|
|
13852
|
+
"conditions": {
|
|
13853
|
+
"items": {
|
|
13854
|
+
"type": "object",
|
|
13855
|
+
"anyOf": [
|
|
13856
|
+
{
|
|
13857
|
+
"$ref": "#/definitions/singleCondition"
|
|
13858
|
+
},
|
|
13859
|
+
{
|
|
13860
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13861
|
+
}
|
|
13862
|
+
]
|
|
13863
|
+
},
|
|
13864
|
+
"type": "array"
|
|
13865
|
+
},
|
|
13866
|
+
"url": {
|
|
13867
|
+
"format": "uri",
|
|
13868
|
+
"type": "string"
|
|
13869
|
+
},
|
|
13870
|
+
"key": {
|
|
13871
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13872
|
+
},
|
|
13873
|
+
"target": {
|
|
13874
|
+
"properties": {
|
|
13875
|
+
"options": {
|
|
13876
|
+
"properties": {
|
|
13877
|
+
"size": {
|
|
13878
|
+
"enum": [
|
|
13879
|
+
"small",
|
|
13880
|
+
"SMALL",
|
|
13881
|
+
"medium",
|
|
13882
|
+
"MEDIUM",
|
|
13883
|
+
"large",
|
|
13884
|
+
"LARGE",
|
|
13885
|
+
"x-large",
|
|
13886
|
+
"X-LARGE"
|
|
13887
|
+
],
|
|
13888
|
+
"type": "string"
|
|
13889
|
+
},
|
|
13890
|
+
"chrome": {
|
|
13891
|
+
"type": "boolean",
|
|
13892
|
+
"defaultValue": "true"
|
|
13893
|
+
},
|
|
13894
|
+
"header": {
|
|
13895
|
+
"$ref": "#/definitions/i18nProperty"
|
|
13896
|
+
}
|
|
13897
|
+
},
|
|
13898
|
+
"additionalProperties": true,
|
|
13899
|
+
"shortClassName": "simpleWebItemTargetOptions",
|
|
13900
|
+
"type": "object"
|
|
13901
|
+
},
|
|
13902
|
+
"type": {
|
|
13903
|
+
"enum": [
|
|
13904
|
+
"page",
|
|
13905
|
+
"PAGE",
|
|
13906
|
+
"dialog",
|
|
13907
|
+
"DIALOG"
|
|
13908
|
+
],
|
|
13909
|
+
"type": "string",
|
|
13910
|
+
"defaultValue": "page"
|
|
13911
|
+
}
|
|
13912
|
+
},
|
|
13913
|
+
"additionalProperties": true,
|
|
13914
|
+
"shortClassName": "simpleTargetBean",
|
|
13915
|
+
"type": "object"
|
|
13916
|
+
}
|
|
13917
|
+
},
|
|
13918
|
+
"required": [
|
|
13919
|
+
"name",
|
|
13920
|
+
"url",
|
|
13921
|
+
"key"
|
|
13922
|
+
],
|
|
13923
|
+
"additionalProperties": true,
|
|
13924
|
+
"shortClassName": "portalActionBean",
|
|
13925
|
+
"type": "object",
|
|
13926
|
+
"not": {
|
|
13927
|
+
"required": [
|
|
13928
|
+
"unlicensedAccess"
|
|
13929
|
+
]
|
|
13930
|
+
}
|
|
13931
|
+
},
|
|
13932
|
+
"minItems": 1
|
|
13933
|
+
},
|
|
13934
|
+
"connect-jira:serviceDeskPortalRequestViewActions": {
|
|
13935
|
+
"type": "array",
|
|
13936
|
+
"items": {
|
|
13937
|
+
"properties": {
|
|
13938
|
+
"icon": {
|
|
13939
|
+
"properties": {
|
|
13940
|
+
"url": {
|
|
13941
|
+
"format": "uri",
|
|
13942
|
+
"type": "string"
|
|
13943
|
+
}
|
|
13944
|
+
},
|
|
13945
|
+
"required": [
|
|
13946
|
+
"url"
|
|
13947
|
+
],
|
|
13948
|
+
"additionalProperties": false,
|
|
13949
|
+
"shortClassName": "portalIconBean",
|
|
13950
|
+
"type": "object"
|
|
13951
|
+
},
|
|
13952
|
+
"context": {
|
|
13953
|
+
"enum": [
|
|
13954
|
+
"page",
|
|
13955
|
+
"PAGE",
|
|
13956
|
+
"addon",
|
|
13957
|
+
"ADDON",
|
|
13958
|
+
"product",
|
|
13959
|
+
"PRODUCT"
|
|
13960
|
+
],
|
|
13961
|
+
"type": "string",
|
|
13962
|
+
"defaultValue": "addon"
|
|
13963
|
+
},
|
|
13964
|
+
"name": {
|
|
13965
|
+
"$ref": "#/definitions/i18nProperty"
|
|
13966
|
+
},
|
|
13967
|
+
"weight": {
|
|
13968
|
+
"type": "integer",
|
|
13969
|
+
"defaultValue": "100"
|
|
13970
|
+
},
|
|
13971
|
+
"conditions": {
|
|
13972
|
+
"items": {
|
|
13973
|
+
"type": "object",
|
|
13974
|
+
"anyOf": [
|
|
13975
|
+
{
|
|
13976
|
+
"$ref": "#/definitions/singleCondition"
|
|
13977
|
+
},
|
|
13978
|
+
{
|
|
13979
|
+
"$ref": "#/definitions/compositeCondition"
|
|
13980
|
+
}
|
|
13981
|
+
]
|
|
13982
|
+
},
|
|
13983
|
+
"type": "array"
|
|
13984
|
+
},
|
|
13985
|
+
"url": {
|
|
13986
|
+
"format": "uri",
|
|
13987
|
+
"type": "string"
|
|
13988
|
+
},
|
|
13989
|
+
"key": {
|
|
13990
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13991
|
+
},
|
|
13992
|
+
"target": {
|
|
13993
|
+
"properties": {
|
|
13994
|
+
"options": {
|
|
13995
|
+
"properties": {
|
|
13996
|
+
"size": {
|
|
13997
|
+
"enum": [
|
|
13998
|
+
"small",
|
|
13999
|
+
"SMALL",
|
|
14000
|
+
"medium",
|
|
14001
|
+
"MEDIUM",
|
|
14002
|
+
"large",
|
|
14003
|
+
"LARGE",
|
|
14004
|
+
"x-large",
|
|
14005
|
+
"X-LARGE"
|
|
14006
|
+
],
|
|
14007
|
+
"type": "string"
|
|
14008
|
+
},
|
|
14009
|
+
"chrome": {
|
|
14010
|
+
"type": "boolean",
|
|
14011
|
+
"defaultValue": "true"
|
|
14012
|
+
},
|
|
14013
|
+
"header": {
|
|
14014
|
+
"$ref": "#/definitions/i18nProperty"
|
|
14015
|
+
}
|
|
14016
|
+
},
|
|
14017
|
+
"additionalProperties": true,
|
|
14018
|
+
"shortClassName": "simpleWebItemTargetOptions",
|
|
14019
|
+
"type": "object"
|
|
14020
|
+
},
|
|
14021
|
+
"type": {
|
|
14022
|
+
"enum": [
|
|
14023
|
+
"page",
|
|
14024
|
+
"PAGE",
|
|
14025
|
+
"dialog",
|
|
14026
|
+
"DIALOG"
|
|
14027
|
+
],
|
|
14028
|
+
"type": "string",
|
|
14029
|
+
"defaultValue": "page"
|
|
14030
|
+
}
|
|
14031
|
+
},
|
|
14032
|
+
"additionalProperties": true,
|
|
14033
|
+
"shortClassName": "simpleTargetBean",
|
|
14034
|
+
"type": "object"
|
|
14035
|
+
}
|
|
14036
|
+
},
|
|
14037
|
+
"required": [
|
|
14038
|
+
"name",
|
|
14039
|
+
"url",
|
|
14040
|
+
"key"
|
|
14041
|
+
],
|
|
14042
|
+
"additionalProperties": true,
|
|
14043
|
+
"shortClassName": "portalActionWithIconBean",
|
|
14044
|
+
"type": "object",
|
|
14045
|
+
"not": {
|
|
14046
|
+
"required": [
|
|
14047
|
+
"unlicensedAccess"
|
|
14048
|
+
]
|
|
14049
|
+
}
|
|
14050
|
+
},
|
|
14051
|
+
"minItems": 1
|
|
14052
|
+
},
|
|
14053
|
+
"connect-jira:serviceDeskOrganizationActions": {
|
|
14054
|
+
"type": "array",
|
|
14055
|
+
"items": {
|
|
14056
|
+
"properties": {
|
|
14057
|
+
"tooltip": {
|
|
14058
|
+
"$ref": "#/definitions/i18nProperty"
|
|
14059
|
+
},
|
|
14060
|
+
"name": {
|
|
14061
|
+
"$ref": "#/definitions/i18nProperty"
|
|
14062
|
+
},
|
|
14063
|
+
"weight": {
|
|
14064
|
+
"type": "integer",
|
|
14065
|
+
"defaultValue": "100"
|
|
14066
|
+
},
|
|
14067
|
+
"conditions": {
|
|
14068
|
+
"items": {
|
|
14069
|
+
"type": "object",
|
|
14070
|
+
"anyOf": [
|
|
14071
|
+
{
|
|
14072
|
+
"$ref": "#/definitions/singleCondition"
|
|
14073
|
+
},
|
|
14074
|
+
{
|
|
14075
|
+
"$ref": "#/definitions/compositeCondition"
|
|
14076
|
+
}
|
|
14077
|
+
]
|
|
14078
|
+
},
|
|
14079
|
+
"type": "array"
|
|
14080
|
+
},
|
|
14081
|
+
"url": {
|
|
14082
|
+
"format": "uri",
|
|
14083
|
+
"type": "string"
|
|
14084
|
+
},
|
|
14085
|
+
"key": {
|
|
14086
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
14087
|
+
},
|
|
14088
|
+
"target": {
|
|
14089
|
+
"properties": {
|
|
14090
|
+
"options": {
|
|
14091
|
+
"type": "object",
|
|
14092
|
+
"anyOf": [
|
|
14093
|
+
{
|
|
14094
|
+
"properties": {
|
|
14095
|
+
"offsetX": {
|
|
14096
|
+
"maxLength": 10,
|
|
14097
|
+
"type": "string"
|
|
14098
|
+
},
|
|
14099
|
+
"offsetY": {
|
|
14100
|
+
"maxLength": 10,
|
|
14101
|
+
"type": "string"
|
|
14102
|
+
},
|
|
14103
|
+
"width": {
|
|
14104
|
+
"maxLength": 10,
|
|
14105
|
+
"type": "string"
|
|
14106
|
+
},
|
|
14107
|
+
"onTop": {
|
|
14108
|
+
"type": "boolean"
|
|
14109
|
+
},
|
|
14110
|
+
"showDelay": {
|
|
14111
|
+
"type": "integer"
|
|
14112
|
+
},
|
|
14113
|
+
"closeOthers": {
|
|
14114
|
+
"type": "boolean"
|
|
14115
|
+
},
|
|
14116
|
+
"persistent": {
|
|
14117
|
+
"type": "boolean"
|
|
14118
|
+
},
|
|
14119
|
+
"onHover": {
|
|
14120
|
+
"type": "boolean"
|
|
14121
|
+
},
|
|
14122
|
+
"isRelativeToMouse": {
|
|
14123
|
+
"type": "boolean"
|
|
14124
|
+
}
|
|
14125
|
+
},
|
|
14126
|
+
"shortClassName": "inlineDialogOptions",
|
|
14127
|
+
"type": "object",
|
|
14128
|
+
"title": "Inline Dialog Options"
|
|
14129
|
+
},
|
|
14130
|
+
{
|
|
14131
|
+
"properties": {
|
|
14132
|
+
"key": {
|
|
14133
|
+
"maxLength": 100,
|
|
14134
|
+
"type": "string"
|
|
14135
|
+
}
|
|
14136
|
+
},
|
|
14137
|
+
"required": [
|
|
14138
|
+
"key"
|
|
14139
|
+
],
|
|
14140
|
+
"shortClassName": "dialogModuleOptions",
|
|
14141
|
+
"type": "object",
|
|
14142
|
+
"title": "Dialog Module Options"
|
|
14143
|
+
},
|
|
14144
|
+
{
|
|
14145
|
+
"properties": {
|
|
14146
|
+
"size": {
|
|
14147
|
+
"enum": [
|
|
14148
|
+
"small",
|
|
14149
|
+
"SMALL",
|
|
14150
|
+
"medium",
|
|
14151
|
+
"MEDIUM",
|
|
14152
|
+
"large",
|
|
14153
|
+
"LARGE",
|
|
14154
|
+
"x-large",
|
|
14155
|
+
"X-LARGE",
|
|
14156
|
+
"fullscreen",
|
|
14157
|
+
"FULLSCREEN",
|
|
14158
|
+
"maximum",
|
|
14159
|
+
"MAXIMUM"
|
|
14160
|
+
],
|
|
14161
|
+
"type": "string"
|
|
14162
|
+
},
|
|
14163
|
+
"chrome": {
|
|
14164
|
+
"type": "boolean",
|
|
14165
|
+
"defaultValue": "true"
|
|
14166
|
+
},
|
|
14167
|
+
"width": {
|
|
14168
|
+
"maxLength": 10,
|
|
14169
|
+
"type": "string"
|
|
14170
|
+
},
|
|
14171
|
+
"header": {
|
|
14172
|
+
"$ref": "#/definitions/i18nProperty"
|
|
14173
|
+
},
|
|
14174
|
+
"height": {
|
|
14175
|
+
"maxLength": 10,
|
|
14176
|
+
"type": "string"
|
|
14177
|
+
}
|
|
14178
|
+
},
|
|
14179
|
+
"shortClassName": "dialogOptions",
|
|
14180
|
+
"type": "object",
|
|
14181
|
+
"title": "Dialog Options"
|
|
14182
|
+
}
|
|
14183
|
+
]
|
|
14184
|
+
},
|
|
14185
|
+
"type": {
|
|
14186
|
+
"enum": [
|
|
14187
|
+
"page",
|
|
14188
|
+
"PAGE",
|
|
14189
|
+
"dialog",
|
|
14190
|
+
"DIALOG",
|
|
14191
|
+
"inlinedialog",
|
|
14192
|
+
"INLINEDIALOG",
|
|
14193
|
+
"dialogmodule",
|
|
14194
|
+
"DIALOGMODULE"
|
|
14195
|
+
],
|
|
14196
|
+
"type": "string",
|
|
14197
|
+
"defaultValue": "page"
|
|
14198
|
+
}
|
|
14199
|
+
},
|
|
14200
|
+
"shortClassName": "webItemTargetBean",
|
|
14201
|
+
"type": "object",
|
|
14202
|
+
"title": "Web Item Target"
|
|
14203
|
+
}
|
|
14204
|
+
},
|
|
14205
|
+
"required": [
|
|
14206
|
+
"name",
|
|
14207
|
+
"key"
|
|
14208
|
+
],
|
|
14209
|
+
"additionalProperties": true,
|
|
14210
|
+
"shortClassName": "organizationActionBean",
|
|
14211
|
+
"type": "object",
|
|
14212
|
+
"not": {
|
|
14213
|
+
"required": [
|
|
14214
|
+
"unlicensedAccess"
|
|
14215
|
+
]
|
|
14216
|
+
}
|
|
14217
|
+
},
|
|
14218
|
+
"minItems": 1
|
|
14219
|
+
},
|
|
14220
|
+
"connect-jira:automationActions": {
|
|
14221
|
+
"type": "array",
|
|
14222
|
+
"items": {
|
|
14223
|
+
"properties": {
|
|
14224
|
+
"webhook": {
|
|
14225
|
+
"$ref": "#/definitions/webhook"
|
|
14226
|
+
},
|
|
14227
|
+
"name": {
|
|
14228
|
+
"$ref": "#/definitions/i18nProperty"
|
|
14229
|
+
},
|
|
14230
|
+
"configForm": {
|
|
14231
|
+
"$ref": "#/definitions/configForm"
|
|
14232
|
+
},
|
|
14233
|
+
"requires": {
|
|
14234
|
+
"items": {
|
|
14235
|
+
"enum": [
|
|
14236
|
+
"comment",
|
|
14237
|
+
"COMMENT",
|
|
14238
|
+
"issue",
|
|
14239
|
+
"ISSUE",
|
|
14240
|
+
"user",
|
|
14241
|
+
"USER"
|
|
14242
|
+
],
|
|
14243
|
+
"type": "string"
|
|
14244
|
+
},
|
|
14245
|
+
"type": "array"
|
|
14246
|
+
},
|
|
14247
|
+
"key": {
|
|
14248
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
14249
|
+
}
|
|
14250
|
+
},
|
|
14251
|
+
"required": [
|
|
14252
|
+
"webhook",
|
|
14253
|
+
"name",
|
|
14254
|
+
"key"
|
|
14255
|
+
],
|
|
14256
|
+
"not": {
|
|
14257
|
+
"required": [
|
|
14258
|
+
"unlicensedAccess"
|
|
14259
|
+
]
|
|
14260
|
+
}
|
|
14261
|
+
},
|
|
14262
|
+
"minItems": 1
|
|
14263
|
+
},
|
|
14264
|
+
"connect-jira:jiraDeploymentGating": {
|
|
14265
|
+
"type": "array",
|
|
14266
|
+
"items": {
|
|
14267
|
+
"properties": {
|
|
14268
|
+
"name": {
|
|
14269
|
+
"$ref": "#/definitions/i18nProperty"
|
|
14270
|
+
},
|
|
14271
|
+
"callback": {
|
|
14272
|
+
"$ref": "#/definitions/callback"
|
|
14273
|
+
},
|
|
14274
|
+
"key": {
|
|
14275
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
14276
|
+
}
|
|
14277
|
+
},
|
|
14278
|
+
"required": [
|
|
14279
|
+
"name",
|
|
14280
|
+
"callback",
|
|
14281
|
+
"key"
|
|
14282
|
+
],
|
|
14283
|
+
"not": {
|
|
14284
|
+
"required": [
|
|
14285
|
+
"unlicensedAccess"
|
|
14286
|
+
]
|
|
14287
|
+
}
|
|
14288
|
+
},
|
|
14289
|
+
"minItems": 1
|
|
14290
|
+
},
|
|
14291
|
+
"connect-jira:assetPanels": {
|
|
14292
|
+
"type": "array",
|
|
14293
|
+
"items": {
|
|
14294
|
+
"properties": {
|
|
14295
|
+
"name": {
|
|
14296
|
+
"$ref": "#/definitions/i18nProperty"
|
|
14297
|
+
},
|
|
14298
|
+
"url": {
|
|
14299
|
+
"type": "string"
|
|
14300
|
+
},
|
|
14301
|
+
"key": {
|
|
14302
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
14303
|
+
}
|
|
14304
|
+
},
|
|
14305
|
+
"required": [
|
|
14306
|
+
"name",
|
|
14307
|
+
"url",
|
|
14308
|
+
"key"
|
|
14309
|
+
],
|
|
14310
|
+
"not": {
|
|
14311
|
+
"required": [
|
|
14312
|
+
"unlicensedAccess"
|
|
14313
|
+
]
|
|
14314
|
+
}
|
|
14315
|
+
},
|
|
14316
|
+
"minItems": 1
|
|
14317
|
+
},
|
|
14318
|
+
"connect-jira:jiraJqlFunctions": {
|
|
14319
|
+
"type": "array",
|
|
14320
|
+
"items": {
|
|
14321
|
+
"properties": {
|
|
14322
|
+
"types": {
|
|
14323
|
+
"items": {
|
|
14324
|
+
"enum": [
|
|
14325
|
+
"issue",
|
|
14326
|
+
"ISSUE",
|
|
14327
|
+
"project",
|
|
14328
|
+
"PROJECT",
|
|
14329
|
+
"project_category",
|
|
14330
|
+
"PROJECT_CATEGORY",
|
|
14331
|
+
"project_type",
|
|
14332
|
+
"PROJECT_TYPE",
|
|
14333
|
+
"hierarchy_level",
|
|
14334
|
+
"HIERARCHY_LEVEL",
|
|
14335
|
+
"version",
|
|
14336
|
+
"VERSION",
|
|
14337
|
+
"component",
|
|
14338
|
+
"COMPONENT",
|
|
14339
|
+
"user",
|
|
14340
|
+
"USER",
|
|
14341
|
+
"group",
|
|
14342
|
+
"GROUP",
|
|
14343
|
+
"team",
|
|
14344
|
+
"TEAM",
|
|
14345
|
+
"project_role",
|
|
14346
|
+
"PROJECT_ROLE",
|
|
14347
|
+
"priority",
|
|
14348
|
+
"PRIORITY",
|
|
14349
|
+
"resolution",
|
|
14350
|
+
"RESOLUTION",
|
|
14351
|
+
"issue_type",
|
|
14352
|
+
"ISSUE_TYPE",
|
|
14353
|
+
"status",
|
|
14354
|
+
"STATUS",
|
|
14355
|
+
"status_category",
|
|
14356
|
+
"STATUS_CATEGORY",
|
|
14357
|
+
"cascading_option",
|
|
14358
|
+
"CASCADING_OPTION",
|
|
14359
|
+
"option",
|
|
14360
|
+
"OPTION",
|
|
14361
|
+
"saved_filter",
|
|
14362
|
+
"SAVED_FILTER",
|
|
14363
|
+
"issue_security_level",
|
|
14364
|
+
"ISSUE_SECURITY_LEVEL",
|
|
14365
|
+
"issue_restriction",
|
|
14366
|
+
"ISSUE_RESTRICTION",
|
|
14367
|
+
"label",
|
|
14368
|
+
"LABEL",
|
|
14369
|
+
"attachment",
|
|
14370
|
+
"ATTACHMENT",
|
|
14371
|
+
"issue_list",
|
|
14372
|
+
"ISSUE_LIST",
|
|
14373
|
+
"issue_link_type",
|
|
14374
|
+
"ISSUE_LINK_TYPE",
|
|
14375
|
+
"date",
|
|
14376
|
+
"DATE",
|
|
14377
|
+
"text",
|
|
14378
|
+
"TEXT",
|
|
14379
|
+
"number",
|
|
14380
|
+
"NUMBER",
|
|
14381
|
+
"duration",
|
|
14382
|
+
"DURATION",
|
|
14383
|
+
"url",
|
|
14384
|
+
"URL"
|
|
14385
|
+
],
|
|
14386
|
+
"type": "string"
|
|
14387
|
+
},
|
|
14388
|
+
"type": "array",
|
|
14389
|
+
"fieldDescription": "\n\nThe list of field types the function can be used with.\n\n"
|
|
14390
|
+
},
|
|
14391
|
+
"operators": {
|
|
14392
|
+
"items": {
|
|
14393
|
+
"enum": [
|
|
14394
|
+
"eq",
|
|
14395
|
+
"EQ",
|
|
14396
|
+
"neq",
|
|
14397
|
+
"NEQ",
|
|
14398
|
+
"gt",
|
|
14399
|
+
"GT",
|
|
14400
|
+
"gte",
|
|
14401
|
+
"GTE",
|
|
14402
|
+
"lt",
|
|
14403
|
+
"LT",
|
|
14404
|
+
"lte",
|
|
14405
|
+
"LTE",
|
|
14406
|
+
"in",
|
|
14407
|
+
"IN",
|
|
14408
|
+
"not_in",
|
|
14409
|
+
"NOT_IN",
|
|
14410
|
+
"contains",
|
|
14411
|
+
"CONTAINS",
|
|
14412
|
+
"not_contains",
|
|
14413
|
+
"NOT_CONTAINS",
|
|
14414
|
+
"is",
|
|
14415
|
+
"IS",
|
|
14416
|
+
"is_not",
|
|
14417
|
+
"IS_NOT"
|
|
14418
|
+
],
|
|
14419
|
+
"type": "string"
|
|
14420
|
+
},
|
|
14421
|
+
"type": "array",
|
|
14422
|
+
"fieldDescription": "\n\nThe list of operators the function can be used with.\n\n"
|
|
12826
14423
|
},
|
|
12827
|
-
"
|
|
14424
|
+
"name": {
|
|
12828
14425
|
"type": "string",
|
|
12829
|
-
"fieldDescription": "\n\
|
|
14426
|
+
"fieldDescription": "\n\nThe name of the function.\n\n"
|
|
12830
14427
|
},
|
|
12831
|
-
"
|
|
12832
|
-
"
|
|
12833
|
-
|
|
12834
|
-
|
|
14428
|
+
"arguments": {
|
|
14429
|
+
"items": {
|
|
14430
|
+
"properties": {
|
|
14431
|
+
"name": {
|
|
14432
|
+
"type": "string",
|
|
14433
|
+
"fieldDescription": "\n\nThe name of the argument.\n\n"
|
|
14434
|
+
},
|
|
14435
|
+
"required": {
|
|
14436
|
+
"type": "boolean",
|
|
14437
|
+
"fieldDescription": "\n\nWhether the argument is required. Only arguments at the end of the list may be optional.\n\n"
|
|
14438
|
+
}
|
|
14439
|
+
},
|
|
14440
|
+
"required": [
|
|
14441
|
+
"name",
|
|
14442
|
+
"required"
|
|
14443
|
+
],
|
|
14444
|
+
"shortClassName": "jqlFunctionArgumentBean",
|
|
14445
|
+
"type": "object",
|
|
14446
|
+
"title": "JQL Function argument",
|
|
14447
|
+
"description": "\n\n<p>Defines the Remote Link action that can be invoked.</p>\n\n"
|
|
14448
|
+
},
|
|
14449
|
+
"type": "array",
|
|
14450
|
+
"fieldDescription": "\n\nThe list of arguments that the function accepts.\n\n"
|
|
12835
14451
|
},
|
|
12836
|
-
"
|
|
14452
|
+
"url": {
|
|
12837
14453
|
"format": "uri",
|
|
12838
14454
|
"type": "string",
|
|
12839
|
-
"fieldDescription": "\n\
|
|
14455
|
+
"fieldDescription": "\n\nThe relative URL of the endpoint in the app that will be called by Jira to compute the function result.\n <p>\n The argument sent to the endpoint has the following format:\n <code><pre>\n {\n \"precomputationId\": \"<uuid>\"\n \"clause\": {\n \"field\": \"field name\",\n \"type\": [\n \"field type\"\n ],\n \"operator\": \"operator\",\n \"function\": \"function name\",\n \"arguments\": {\n \"value\"\n }\n }\n }\n\n </pre></code>\n <p>\n The endpoint is expected to return the result in the following format:\n <code><pre>\n {\n \"jql\": \"JQL fragment to use in place of the function clause\"\n }\n </pre></code>\n <p>\n or error message:\n <code><pre>\n {\n \"error\": \"Error message that will be displayed on the UI\"\n }\n </pre></code>\n"
|
|
12840
14456
|
},
|
|
12841
14457
|
"key": {
|
|
12842
14458
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
12843
14459
|
}
|
|
12844
14460
|
},
|
|
12845
14461
|
"required": [
|
|
14462
|
+
"types",
|
|
14463
|
+
"operators",
|
|
14464
|
+
"name",
|
|
14465
|
+
"arguments",
|
|
14466
|
+
"url",
|
|
12846
14467
|
"key"
|
|
12847
14468
|
],
|
|
12848
14469
|
"not": {
|
|
@@ -12904,6 +14525,9 @@
|
|
|
12904
14525
|
}
|
|
12905
14526
|
},
|
|
12906
14527
|
"required": [
|
|
14528
|
+
"shortcut",
|
|
14529
|
+
"name",
|
|
14530
|
+
"target",
|
|
12907
14531
|
"key"
|
|
12908
14532
|
],
|
|
12909
14533
|
"not": {
|
|
@@ -12977,6 +14601,8 @@
|
|
|
12977
14601
|
}
|
|
12978
14602
|
},
|
|
12979
14603
|
"required": [
|
|
14604
|
+
"name",
|
|
14605
|
+
"url",
|
|
12980
14606
|
"key"
|
|
12981
14607
|
],
|
|
12982
14608
|
"not": {
|
|
@@ -13053,6 +14679,9 @@
|
|
|
13053
14679
|
}
|
|
13054
14680
|
},
|
|
13055
14681
|
"required": [
|
|
14682
|
+
"name",
|
|
14683
|
+
"location",
|
|
14684
|
+
"url",
|
|
13056
14685
|
"key"
|
|
13057
14686
|
],
|
|
13058
14687
|
"not": {
|
|
@@ -13113,6 +14742,8 @@
|
|
|
13113
14742
|
}
|
|
13114
14743
|
},
|
|
13115
14744
|
"required": [
|
|
14745
|
+
"event",
|
|
14746
|
+
"url",
|
|
13116
14747
|
"key"
|
|
13117
14748
|
],
|
|
13118
14749
|
"not": {
|
|
@@ -13181,6 +14812,8 @@
|
|
|
13181
14812
|
}
|
|
13182
14813
|
},
|
|
13183
14814
|
"required": [
|
|
14815
|
+
"name",
|
|
14816
|
+
"url",
|
|
13184
14817
|
"key"
|
|
13185
14818
|
],
|
|
13186
14819
|
"not": {
|
|
@@ -13239,6 +14872,8 @@
|
|
|
13239
14872
|
}
|
|
13240
14873
|
},
|
|
13241
14874
|
"required": [
|
|
14875
|
+
"name",
|
|
14876
|
+
"location",
|
|
13242
14877
|
"key"
|
|
13243
14878
|
],
|
|
13244
14879
|
"not": {
|
|
@@ -13307,6 +14942,8 @@
|
|
|
13307
14942
|
}
|
|
13308
14943
|
},
|
|
13309
14944
|
"required": [
|
|
14945
|
+
"name",
|
|
14946
|
+
"url",
|
|
13310
14947
|
"key"
|
|
13311
14948
|
],
|
|
13312
14949
|
"not": {
|
|
@@ -13622,6 +15259,8 @@
|
|
|
13622
15259
|
}
|
|
13623
15260
|
},
|
|
13624
15261
|
"required": [
|
|
15262
|
+
"name",
|
|
15263
|
+
"location",
|
|
13625
15264
|
"key"
|
|
13626
15265
|
],
|
|
13627
15266
|
"not": {
|
|
@@ -13695,6 +15334,8 @@
|
|
|
13695
15334
|
}
|
|
13696
15335
|
},
|
|
13697
15336
|
"required": [
|
|
15337
|
+
"name",
|
|
15338
|
+
"url",
|
|
13698
15339
|
"key"
|
|
13699
15340
|
],
|
|
13700
15341
|
"not": {
|
|
@@ -13727,6 +15368,7 @@
|
|
|
13727
15368
|
}
|
|
13728
15369
|
},
|
|
13729
15370
|
"required": [
|
|
15371
|
+
"url",
|
|
13730
15372
|
"key"
|
|
13731
15373
|
],
|
|
13732
15374
|
"not": {
|
|
@@ -13803,6 +15445,8 @@
|
|
|
13803
15445
|
}
|
|
13804
15446
|
},
|
|
13805
15447
|
"required": [
|
|
15448
|
+
"template",
|
|
15449
|
+
"name",
|
|
13806
15450
|
"key"
|
|
13807
15451
|
],
|
|
13808
15452
|
"not": {
|
|
@@ -13916,6 +15560,8 @@
|
|
|
13916
15560
|
}
|
|
13917
15561
|
},
|
|
13918
15562
|
"required": [
|
|
15563
|
+
"name",
|
|
15564
|
+
"url",
|
|
13919
15565
|
"key"
|
|
13920
15566
|
],
|
|
13921
15567
|
"not": {
|
|
@@ -14003,6 +15649,7 @@
|
|
|
14003
15649
|
}
|
|
14004
15650
|
},
|
|
14005
15651
|
"required": [
|
|
15652
|
+
"name",
|
|
14006
15653
|
"key"
|
|
14007
15654
|
],
|
|
14008
15655
|
"not": {
|
|
@@ -14038,6 +15685,117 @@
|
|
|
14038
15685
|
}
|
|
14039
15686
|
},
|
|
14040
15687
|
"required": [
|
|
15688
|
+
"uiSupport",
|
|
15689
|
+
"name",
|
|
15690
|
+
"apiSupport",
|
|
15691
|
+
"key"
|
|
15692
|
+
],
|
|
15693
|
+
"not": {
|
|
15694
|
+
"required": [
|
|
15695
|
+
"unlicensedAccess"
|
|
15696
|
+
]
|
|
15697
|
+
}
|
|
15698
|
+
},
|
|
15699
|
+
"minItems": 1
|
|
15700
|
+
},
|
|
15701
|
+
"connect-confluence:publishConditions": {
|
|
15702
|
+
"type": "array",
|
|
15703
|
+
"items": {
|
|
15704
|
+
"properties": {
|
|
15705
|
+
"dialog": {
|
|
15706
|
+
"properties": {
|
|
15707
|
+
"width": {
|
|
15708
|
+
"maxLength": 10,
|
|
15709
|
+
"type": "string",
|
|
15710
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
15711
|
+
},
|
|
15712
|
+
"header": {
|
|
15713
|
+
"$ref": "#/definitions/i18nProperty",
|
|
15714
|
+
"fieldDescription": "\n\nThe header text for the dialog\n\n"
|
|
15715
|
+
},
|
|
15716
|
+
"conditions": {
|
|
15717
|
+
"items": {
|
|
15718
|
+
"type": "object",
|
|
15719
|
+
"anyOf": [
|
|
15720
|
+
{
|
|
15721
|
+
"$ref": "#/definitions/singleCondition"
|
|
15722
|
+
},
|
|
15723
|
+
{
|
|
15724
|
+
"$ref": "#/definitions/compositeCondition"
|
|
15725
|
+
}
|
|
15726
|
+
]
|
|
15727
|
+
},
|
|
15728
|
+
"type": "array",
|
|
15729
|
+
"fieldDescription": "\n\n<a href=\"../../conditions/\">Conditions</a> can be added to display only when all the given conditions are true.\n\n"
|
|
15730
|
+
},
|
|
15731
|
+
"url": {
|
|
15732
|
+
"format": "uri",
|
|
15733
|
+
"type": "string",
|
|
15734
|
+
"fieldDescription": "\n\nSpecifies the destination of the dialog content. The interpretation of this field depends on the value of the\n <pre>context</pre> field.\n\n Your add-on can receive [additional context](../../context-parameters/) from the app by\n using variable tokens in the URL attribute.\n\n"
|
|
15735
|
+
},
|
|
15736
|
+
"height": {
|
|
15737
|
+
"maxLength": 10,
|
|
15738
|
+
"type": "string",
|
|
15739
|
+
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
15740
|
+
}
|
|
15741
|
+
},
|
|
15742
|
+
"required": [
|
|
15743
|
+
"url"
|
|
15744
|
+
],
|
|
15745
|
+
"shortClassName": "publishConditionDialog",
|
|
15746
|
+
"type": "object",
|
|
15747
|
+
"description": "\n\n<p>The dialog allows you to display their custom content within iFrame in the dialog during publish button click.</p>\n <h4>Trigger dialog close using postMessage</h4>\n You can close dialog by sending postMessage with action = <code>closeConditionalPublishDialog</code>\n <pre><code>\n $(function(){\n setTimeout(() => {\n window.top.postMessage({\n action: \"closeConditionalPublishDialog\"\n }, AP._data.origin)\n }, 10000);\n })\n </code></pre>\n\n",
|
|
15748
|
+
"fieldDescription": "\n\nTriggers the dialog on click of Publish button.\n\n"
|
|
15749
|
+
},
|
|
15750
|
+
"errorMessage": {
|
|
15751
|
+
"$ref": "#/definitions/i18nProperty",
|
|
15752
|
+
"fieldDescription": "\n\n<p>An error message will help you to understand the issue and take necessary action to satisfy the publish condition. <p/>\n <p>\n Note: If `dialog` property is missing, it will be displayed as a notification in Confluence.\n <p/>\n\n"
|
|
15753
|
+
},
|
|
15754
|
+
"context": {
|
|
15755
|
+
"enum": [
|
|
15756
|
+
"page",
|
|
15757
|
+
"PAGE",
|
|
15758
|
+
"addon",
|
|
15759
|
+
"ADDON",
|
|
15760
|
+
"product",
|
|
15761
|
+
"PRODUCT"
|
|
15762
|
+
],
|
|
15763
|
+
"type": "string",
|
|
15764
|
+
"fieldDescription": "\n\nThe context for the URL parameter. As of now only supported value is `addon`.\n <ul>\n <li><pre>addon</pre> - a URL relative to the add-on's base URL</li>\n </ul>\n\n",
|
|
15765
|
+
"defaultValue": "addon"
|
|
15766
|
+
},
|
|
15767
|
+
"name": {
|
|
15768
|
+
"$ref": "#/definitions/i18nProperty",
|
|
15769
|
+
"fieldDescription": "\n\nA human readable name.\n\n"
|
|
15770
|
+
},
|
|
15771
|
+
"conditions": {
|
|
15772
|
+
"items": {
|
|
15773
|
+
"type": "object",
|
|
15774
|
+
"anyOf": [
|
|
15775
|
+
{
|
|
15776
|
+
"$ref": "#/definitions/compositeCondition"
|
|
15777
|
+
},
|
|
15778
|
+
{
|
|
15779
|
+
"$ref": "#/definitions/singleCondition"
|
|
15780
|
+
}
|
|
15781
|
+
]
|
|
15782
|
+
},
|
|
15783
|
+
"type": "array",
|
|
15784
|
+
"fieldDescription": "\n\n<a href=\"../../conditions/\">Conditions</a> can be added to display only when all the given conditions are true.\n\n"
|
|
15785
|
+
},
|
|
15786
|
+
"params": {
|
|
15787
|
+
"additionalProperties": true,
|
|
15788
|
+
"type": "object",
|
|
15789
|
+
"fieldTitle": "Object",
|
|
15790
|
+
"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"
|
|
15791
|
+
},
|
|
15792
|
+
"key": {
|
|
15793
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
15794
|
+
}
|
|
15795
|
+
},
|
|
15796
|
+
"required": [
|
|
15797
|
+
"errorMessage",
|
|
15798
|
+
"name",
|
|
14041
15799
|
"key"
|
|
14042
15800
|
],
|
|
14043
15801
|
"not": {
|
|
@@ -14550,6 +16308,8 @@
|
|
|
14550
16308
|
}
|
|
14551
16309
|
},
|
|
14552
16310
|
"required": [
|
|
16311
|
+
"name",
|
|
16312
|
+
"url",
|
|
14553
16313
|
"key"
|
|
14554
16314
|
],
|
|
14555
16315
|
"not": {
|
|
@@ -15015,6 +16775,8 @@
|
|
|
15015
16775
|
}
|
|
15016
16776
|
},
|
|
15017
16777
|
"required": [
|
|
16778
|
+
"name",
|
|
16779
|
+
"url",
|
|
15018
16780
|
"key"
|
|
15019
16781
|
],
|
|
15020
16782
|
"not": {
|
|
@@ -15233,6 +16995,7 @@
|
|
|
15233
16995
|
}
|
|
15234
16996
|
},
|
|
15235
16997
|
"required": [
|
|
16998
|
+
"name",
|
|
15236
16999
|
"key"
|
|
15237
17000
|
],
|
|
15238
17001
|
"not": {
|
|
@@ -15302,6 +17065,7 @@
|
|
|
15302
17065
|
}
|
|
15303
17066
|
},
|
|
15304
17067
|
"required": [
|
|
17068
|
+
"name",
|
|
15305
17069
|
"key"
|
|
15306
17070
|
],
|
|
15307
17071
|
"not": {
|
|
@@ -16971,6 +18735,7 @@
|
|
|
16971
18735
|
"properties": {
|
|
16972
18736
|
"templateUrl": {
|
|
16973
18737
|
"type": "string",
|
|
18738
|
+
"format": "uri",
|
|
16974
18739
|
"fieldDescription": "\n\n"
|
|
16975
18740
|
}
|
|
16976
18741
|
},
|
|
@@ -16980,7 +18745,55 @@
|
|
|
16980
18745
|
"shortClassName": "developmentToolModuleActionBean",
|
|
16981
18746
|
"type": "object",
|
|
16982
18747
|
"description": "\n\n<p>Defines the URL template that is used when an action is invoked. The following context parameters are supported: <code>{issue.key}</code>, <code>{issue.summary}</code>.</p>\n\n",
|
|
18748
|
+
"fieldDescription": "\n"
|
|
18749
|
+
},
|
|
18750
|
+
"searchConnectedWorkspaces": {
|
|
18751
|
+
"properties": {
|
|
18752
|
+
"templateUrl": {
|
|
18753
|
+
"type": "string",
|
|
18754
|
+
"format": "uri",
|
|
18755
|
+
"fieldDescription": ""
|
|
18756
|
+
}
|
|
18757
|
+
},
|
|
18758
|
+
"required": [
|
|
18759
|
+
"templateUrl"
|
|
18760
|
+
],
|
|
18761
|
+
"shortClassName": "developmentToolModuleActionBean",
|
|
18762
|
+
"type": "object",
|
|
18763
|
+
"description": "\n\n<p>Defines the URL template that is used when an action is invoked. The following context parameters are supported: <code>{issue.key}</code>, <code>{issue.summary}</code>.</p>\n\n",
|
|
18764
|
+
"fieldDescription": "\n"
|
|
18765
|
+
},
|
|
18766
|
+
"searchRepositories": {
|
|
18767
|
+
"properties": {
|
|
18768
|
+
"templateUrl": {
|
|
18769
|
+
"type": "string",
|
|
18770
|
+
"format": "uri",
|
|
18771
|
+
"fieldDescription": ""
|
|
18772
|
+
}
|
|
18773
|
+
},
|
|
18774
|
+
"required": [
|
|
18775
|
+
"templateUrl"
|
|
18776
|
+
],
|
|
18777
|
+
"shortClassName": "developmentToolModuleActionBean",
|
|
18778
|
+
"type": "object",
|
|
18779
|
+
"description": "\n\n<p>Defines the URL template that is used when an action is invoked. The following context parameters are supported: <code>{issue.key}</code>, <code>{issue.summary}</code>.</p>\n\n",
|
|
16983
18780
|
"fieldDescription": "\n\n"
|
|
18781
|
+
},
|
|
18782
|
+
"associateRepository": {
|
|
18783
|
+
"properties": {
|
|
18784
|
+
"templateUrl": {
|
|
18785
|
+
"type": "string",
|
|
18786
|
+
"format": "uri",
|
|
18787
|
+
"fieldDescription": ""
|
|
18788
|
+
}
|
|
18789
|
+
},
|
|
18790
|
+
"required": [
|
|
18791
|
+
"templateUrl"
|
|
18792
|
+
],
|
|
18793
|
+
"shortClassName": "developmentToolModuleActionBean",
|
|
18794
|
+
"type": "object",
|
|
18795
|
+
"description": "\n\n<p>Defines the URL template that is used when an action is invoked. The following context parameters are supported: <code>{issue.key}</code>, <code>{issue.summary}</code>.</p>\n\n",
|
|
18796
|
+
"fieldDescription": ""
|
|
16984
18797
|
}
|
|
16985
18798
|
},
|
|
16986
18799
|
"shortClassName": "developmentToolModuleActionsBean",
|
|
@@ -16988,6 +18801,56 @@
|
|
|
16988
18801
|
"title": "Development Actions",
|
|
16989
18802
|
"description": "\n\n<p>Development actions that can be performed by Jira users.</p>\n<p>Each action is optional (unless indicated otherwise). The absence of an action indicates that the action is not supported by the provider.</p>\n\n"
|
|
16990
18803
|
},
|
|
18804
|
+
"webhook": {
|
|
18805
|
+
"properties": {
|
|
18806
|
+
"url": {
|
|
18807
|
+
"format": "uri",
|
|
18808
|
+
"type": "string"
|
|
18809
|
+
}
|
|
18810
|
+
},
|
|
18811
|
+
"required": [
|
|
18812
|
+
"url"
|
|
18813
|
+
],
|
|
18814
|
+
"additionalProperties": false,
|
|
18815
|
+
"shortClassName": "webhookBean",
|
|
18816
|
+
"type": "object"
|
|
18817
|
+
},
|
|
18818
|
+
"configForm": {
|
|
18819
|
+
"properties": {
|
|
18820
|
+
"url": {
|
|
18821
|
+
"format": "uri",
|
|
18822
|
+
"type": "string"
|
|
18823
|
+
}
|
|
18824
|
+
},
|
|
18825
|
+
"required": [
|
|
18826
|
+
"url"
|
|
18827
|
+
],
|
|
18828
|
+
"additionalProperties": false,
|
|
18829
|
+
"shortClassName": "configFormBean",
|
|
18830
|
+
"type": "object"
|
|
18831
|
+
},
|
|
18832
|
+
"callback": {
|
|
18833
|
+
"properties": {
|
|
18834
|
+
"type": {
|
|
18835
|
+
"enum": [
|
|
18836
|
+
"jwt",
|
|
18837
|
+
"JWT"
|
|
18838
|
+
],
|
|
18839
|
+
"type": "string"
|
|
18840
|
+
},
|
|
18841
|
+
"url": {
|
|
18842
|
+
"format": "uri",
|
|
18843
|
+
"type": "string"
|
|
18844
|
+
}
|
|
18845
|
+
},
|
|
18846
|
+
"required": [
|
|
18847
|
+
"type",
|
|
18848
|
+
"url"
|
|
18849
|
+
],
|
|
18850
|
+
"additionalProperties": false,
|
|
18851
|
+
"shortClassName": "callbackBean",
|
|
18852
|
+
"type": "object"
|
|
18853
|
+
},
|
|
16991
18854
|
"uiSupport": {
|
|
16992
18855
|
"properties": {
|
|
16993
18856
|
"defaultOperator": {
|