@forge/manifest 2.6.0-next.8 → 3.0.1-fix.0
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 +150 -0
- package/out/index.d.ts +1 -1
- package/out/index.d.ts.map +1 -1
- package/out/mapping/product-event-to-scope-mapping.json +345 -104
- package/out/processor/full-validation-processor.d.ts.map +1 -1
- package/out/processor/full-validation-processor.js +1 -0
- package/out/schema/basic-manifest-schema.json +9 -0
- package/out/schema/basic-manifest.d.ts +4 -0
- package/out/schema/manifest-schema.json +1335 -580
- package/out/schema/manifest.d.ts +1052 -648
- package/out/text/errors.d.ts +1 -0
- package/out/text/errors.d.ts.map +1 -1
- package/out/text/errors.js +2 -1
- package/out/types/module-types.d.ts +1 -0
- package/out/types/module-types.d.ts.map +1 -1
- package/out/types/module-types.js +1 -0
- package/out/validators/connect-authentication-validator.d.ts +7 -0
- package/out/validators/connect-authentication-validator.d.ts.map +1 -0
- package/out/validators/connect-authentication-validator.js +27 -0
- package/out/validators/index.d.ts +1 -0
- package/out/validators/index.d.ts.map +1 -1
- package/out/validators/index.js +1 -0
- package/out/validators/permissions-validator.d.ts.map +1 -1
- package/out/validators/permissions-validator.js +11 -7
- package/out/validators/product-trigger-scopes-validator.d.ts +4 -1
- package/out/validators/product-trigger-scopes-validator.d.ts.map +1 -1
- package/out/validators/product-trigger-scopes-validator.js +23 -7
- package/package.json +1 -1
|
@@ -69,6 +69,15 @@
|
|
|
69
69
|
"description": "A key for the remote, which other modules can refer to. Must be unique within the manifest and have a maximum of 23 characters.",
|
|
70
70
|
"pattern": "^[a-zA-Z0-9_-]+$",
|
|
71
71
|
"maxLength": 23
|
|
72
|
+
},
|
|
73
|
+
"authentication": {
|
|
74
|
+
"description": "The type of authentication used to communicate with tenant APIs",
|
|
75
|
+
"type": "string",
|
|
76
|
+
"default": "jwt",
|
|
77
|
+
"enum": [
|
|
78
|
+
"jwt",
|
|
79
|
+
"oauth2"
|
|
80
|
+
]
|
|
72
81
|
}
|
|
73
82
|
}
|
|
74
83
|
}
|
|
@@ -456,6 +465,9 @@
|
|
|
456
465
|
"maxLength": 255,
|
|
457
466
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
458
467
|
},
|
|
468
|
+
"displayConditions": {
|
|
469
|
+
"type": "object"
|
|
470
|
+
},
|
|
459
471
|
"key": {
|
|
460
472
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
461
473
|
}
|
|
@@ -510,6 +522,9 @@
|
|
|
510
522
|
"large"
|
|
511
523
|
]
|
|
512
524
|
},
|
|
525
|
+
"displayConditions": {
|
|
526
|
+
"type": "object"
|
|
527
|
+
},
|
|
513
528
|
"key": {
|
|
514
529
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
515
530
|
}
|
|
@@ -542,6 +557,9 @@
|
|
|
542
557
|
"maxLength": 255,
|
|
543
558
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
544
559
|
},
|
|
560
|
+
"displayConditions": {
|
|
561
|
+
"type": "object"
|
|
562
|
+
},
|
|
545
563
|
"key": {
|
|
546
564
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
547
565
|
}
|
|
@@ -597,6 +615,9 @@
|
|
|
597
615
|
"xlarge"
|
|
598
616
|
]
|
|
599
617
|
},
|
|
618
|
+
"displayConditions": {
|
|
619
|
+
"type": "object"
|
|
620
|
+
},
|
|
600
621
|
"key": {
|
|
601
622
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
602
623
|
}
|
|
@@ -783,6 +804,9 @@
|
|
|
783
804
|
"maxLength": 255,
|
|
784
805
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
785
806
|
},
|
|
807
|
+
"displayConditions": {
|
|
808
|
+
"type": "object"
|
|
809
|
+
},
|
|
786
810
|
"key": {
|
|
787
811
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
788
812
|
}
|
|
@@ -838,6 +862,9 @@
|
|
|
838
862
|
"xlarge"
|
|
839
863
|
]
|
|
840
864
|
},
|
|
865
|
+
"displayConditions": {
|
|
866
|
+
"type": "object"
|
|
867
|
+
},
|
|
841
868
|
"key": {
|
|
842
869
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
843
870
|
}
|
|
@@ -881,6 +908,9 @@
|
|
|
881
908
|
"maxLength": 255,
|
|
882
909
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
883
910
|
},
|
|
911
|
+
"displayConditions": {
|
|
912
|
+
"type": "object"
|
|
913
|
+
},
|
|
884
914
|
"key": {
|
|
885
915
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
886
916
|
}
|
|
@@ -937,6 +967,9 @@
|
|
|
937
967
|
"minLength": 1,
|
|
938
968
|
"maxLength": 255
|
|
939
969
|
},
|
|
970
|
+
"displayConditions": {
|
|
971
|
+
"type": "object"
|
|
972
|
+
},
|
|
940
973
|
"key": {
|
|
941
974
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
942
975
|
}
|
|
@@ -970,6 +1003,9 @@
|
|
|
970
1003
|
"maxLength": 255,
|
|
971
1004
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
972
1005
|
},
|
|
1006
|
+
"displayConditions": {
|
|
1007
|
+
"type": "object"
|
|
1008
|
+
},
|
|
973
1009
|
"key": {
|
|
974
1010
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
975
1011
|
}
|
|
@@ -1014,6 +1050,9 @@
|
|
|
1014
1050
|
"minLength": 1,
|
|
1015
1051
|
"maxLength": 255
|
|
1016
1052
|
},
|
|
1053
|
+
"displayConditions": {
|
|
1054
|
+
"type": "object"
|
|
1055
|
+
},
|
|
1017
1056
|
"key": {
|
|
1018
1057
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
1019
1058
|
}
|
|
@@ -1046,24 +1085,134 @@
|
|
|
1046
1085
|
"maxLength": 255,
|
|
1047
1086
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1048
1087
|
},
|
|
1088
|
+
"displayConditions": {
|
|
1089
|
+
"type": "object"
|
|
1090
|
+
},
|
|
1091
|
+
"key": {
|
|
1092
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
1093
|
+
}
|
|
1094
|
+
},
|
|
1095
|
+
"required": [
|
|
1096
|
+
"title",
|
|
1097
|
+
"function",
|
|
1098
|
+
"key"
|
|
1099
|
+
]
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"type": "object",
|
|
1103
|
+
"properties": {
|
|
1104
|
+
"title": {
|
|
1105
|
+
"type": "string",
|
|
1106
|
+
"minLength": 1,
|
|
1107
|
+
"maxLength": 255
|
|
1108
|
+
},
|
|
1109
|
+
"resolver": {
|
|
1110
|
+
"additionalProperties": false,
|
|
1111
|
+
"type": "object",
|
|
1112
|
+
"properties": {
|
|
1113
|
+
"function": {
|
|
1114
|
+
"type": "string",
|
|
1115
|
+
"minLength": 1,
|
|
1116
|
+
"maxLength": 255,
|
|
1117
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1118
|
+
}
|
|
1119
|
+
},
|
|
1120
|
+
"required": [
|
|
1121
|
+
"function"
|
|
1122
|
+
]
|
|
1123
|
+
},
|
|
1124
|
+
"resource": {
|
|
1125
|
+
"type": "string",
|
|
1126
|
+
"minLength": 1,
|
|
1127
|
+
"maxLength": 23,
|
|
1128
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
1129
|
+
},
|
|
1130
|
+
"resourceUploadId": {
|
|
1131
|
+
"type": "string",
|
|
1132
|
+
"minLength": 1,
|
|
1133
|
+
"maxLength": 255
|
|
1134
|
+
},
|
|
1135
|
+
"displayConditions": {
|
|
1136
|
+
"type": "object"
|
|
1137
|
+
},
|
|
1138
|
+
"key": {
|
|
1139
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
1140
|
+
}
|
|
1141
|
+
},
|
|
1142
|
+
"required": [
|
|
1143
|
+
"title",
|
|
1144
|
+
"resource",
|
|
1145
|
+
"key"
|
|
1146
|
+
]
|
|
1147
|
+
}
|
|
1148
|
+
]
|
|
1149
|
+
},
|
|
1150
|
+
"minItems": 1
|
|
1151
|
+
},
|
|
1152
|
+
"confluence:globalPage": {
|
|
1153
|
+
"type": "array",
|
|
1154
|
+
"items": {
|
|
1155
|
+
"oneOf": [
|
|
1156
|
+
{
|
|
1157
|
+
"type": "object",
|
|
1158
|
+
"additionalProperties": false,
|
|
1159
|
+
"properties": {
|
|
1160
|
+
"title": {
|
|
1161
|
+
"type": "string",
|
|
1162
|
+
"minLength": 1,
|
|
1163
|
+
"maxLength": 255
|
|
1164
|
+
},
|
|
1165
|
+
"icon": {
|
|
1166
|
+
"type": "string",
|
|
1167
|
+
"minLength": 1,
|
|
1168
|
+
"maxLength": 255
|
|
1169
|
+
},
|
|
1170
|
+
"route": {
|
|
1171
|
+
"type": "string",
|
|
1172
|
+
"minLength": 1,
|
|
1173
|
+
"maxLength": 255,
|
|
1174
|
+
"pattern": "^[a-z0-9\\-]+$"
|
|
1175
|
+
},
|
|
1176
|
+
"function": {
|
|
1177
|
+
"type": "string",
|
|
1178
|
+
"minLength": 1,
|
|
1179
|
+
"maxLength": 255,
|
|
1180
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1181
|
+
},
|
|
1182
|
+
"displayConditions": {
|
|
1183
|
+
"type": "object"
|
|
1184
|
+
},
|
|
1049
1185
|
"key": {
|
|
1050
1186
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
1051
1187
|
}
|
|
1052
1188
|
},
|
|
1053
1189
|
"required": [
|
|
1054
1190
|
"title",
|
|
1191
|
+
"route",
|
|
1055
1192
|
"function",
|
|
1056
1193
|
"key"
|
|
1057
1194
|
]
|
|
1058
1195
|
},
|
|
1059
1196
|
{
|
|
1060
1197
|
"type": "object",
|
|
1198
|
+
"additionalProperties": false,
|
|
1061
1199
|
"properties": {
|
|
1062
1200
|
"title": {
|
|
1063
1201
|
"type": "string",
|
|
1064
1202
|
"minLength": 1,
|
|
1065
1203
|
"maxLength": 255
|
|
1066
1204
|
},
|
|
1205
|
+
"icon": {
|
|
1206
|
+
"type": "string",
|
|
1207
|
+
"minLength": 1,
|
|
1208
|
+
"maxLength": 255
|
|
1209
|
+
},
|
|
1210
|
+
"route": {
|
|
1211
|
+
"type": "string",
|
|
1212
|
+
"minLength": 1,
|
|
1213
|
+
"maxLength": 255,
|
|
1214
|
+
"pattern": "^[a-z0-9\\-]+$"
|
|
1215
|
+
},
|
|
1067
1216
|
"resolver": {
|
|
1068
1217
|
"additionalProperties": false,
|
|
1069
1218
|
"type": "object",
|
|
@@ -1090,12 +1239,16 @@
|
|
|
1090
1239
|
"minLength": 1,
|
|
1091
1240
|
"maxLength": 255
|
|
1092
1241
|
},
|
|
1242
|
+
"displayConditions": {
|
|
1243
|
+
"type": "object"
|
|
1244
|
+
},
|
|
1093
1245
|
"key": {
|
|
1094
1246
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
1095
1247
|
}
|
|
1096
1248
|
},
|
|
1097
1249
|
"required": [
|
|
1098
1250
|
"title",
|
|
1251
|
+
"route",
|
|
1099
1252
|
"resource",
|
|
1100
1253
|
"key"
|
|
1101
1254
|
]
|
|
@@ -2347,12 +2500,13 @@
|
|
|
2347
2500
|
"oneOf": [
|
|
2348
2501
|
{
|
|
2349
2502
|
"type": "object",
|
|
2350
|
-
"required": [
|
|
2351
|
-
"title",
|
|
2352
|
-
"function",
|
|
2353
|
-
"key"
|
|
2354
|
-
],
|
|
2355
2503
|
"properties": {
|
|
2504
|
+
"function": {
|
|
2505
|
+
"type": "string",
|
|
2506
|
+
"minLength": 1,
|
|
2507
|
+
"maxLength": 255,
|
|
2508
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
2509
|
+
},
|
|
2356
2510
|
"title": {
|
|
2357
2511
|
"type": "string",
|
|
2358
2512
|
"minLength": 1,
|
|
@@ -2364,52 +2518,106 @@
|
|
|
2364
2518
|
"maxLength": 255
|
|
2365
2519
|
},
|
|
2366
2520
|
"layout": {
|
|
2367
|
-
"type": "string",
|
|
2368
|
-
"minLength": 1,
|
|
2369
|
-
"maxLength": 255,
|
|
2370
2521
|
"enum": [
|
|
2371
|
-
"
|
|
2372
|
-
"
|
|
2373
|
-
]
|
|
2522
|
+
"basic",
|
|
2523
|
+
"native"
|
|
2524
|
+
],
|
|
2525
|
+
"type": "string"
|
|
2374
2526
|
},
|
|
2375
|
-
"
|
|
2376
|
-
"type": "
|
|
2377
|
-
"
|
|
2378
|
-
|
|
2379
|
-
|
|
2527
|
+
"pages": {
|
|
2528
|
+
"type": "array",
|
|
2529
|
+
"items": {
|
|
2530
|
+
"type": "object",
|
|
2531
|
+
"properties": {
|
|
2532
|
+
"title": {
|
|
2533
|
+
"type": "string",
|
|
2534
|
+
"minLength": 1,
|
|
2535
|
+
"maxLength": 255
|
|
2536
|
+
},
|
|
2537
|
+
"route": {
|
|
2538
|
+
"minLength": 1,
|
|
2539
|
+
"maxLength": 255,
|
|
2540
|
+
"type": "string"
|
|
2541
|
+
},
|
|
2542
|
+
"icon": {
|
|
2543
|
+
"type": "string",
|
|
2544
|
+
"minLength": 1,
|
|
2545
|
+
"maxLength": 255
|
|
2546
|
+
}
|
|
2547
|
+
},
|
|
2548
|
+
"required": [
|
|
2549
|
+
"route",
|
|
2550
|
+
"title"
|
|
2551
|
+
]
|
|
2552
|
+
}
|
|
2553
|
+
},
|
|
2554
|
+
"sections": {
|
|
2555
|
+
"type": "array",
|
|
2556
|
+
"items": {
|
|
2557
|
+
"type": "object",
|
|
2558
|
+
"properties": {
|
|
2559
|
+
"header": {
|
|
2560
|
+
"minLength": 1,
|
|
2561
|
+
"maxLength": 255,
|
|
2562
|
+
"type": "string"
|
|
2563
|
+
},
|
|
2564
|
+
"pages": {
|
|
2565
|
+
"type": "array",
|
|
2566
|
+
"items": {
|
|
2567
|
+
"type": "object",
|
|
2568
|
+
"properties": {
|
|
2569
|
+
"title": {
|
|
2570
|
+
"type": "string",
|
|
2571
|
+
"minLength": 1,
|
|
2572
|
+
"maxLength": 255
|
|
2573
|
+
},
|
|
2574
|
+
"route": {
|
|
2575
|
+
"minLength": 1,
|
|
2576
|
+
"maxLength": 255,
|
|
2577
|
+
"type": "string"
|
|
2578
|
+
},
|
|
2579
|
+
"icon": {
|
|
2580
|
+
"type": "string",
|
|
2581
|
+
"minLength": 1,
|
|
2582
|
+
"maxLength": 255
|
|
2583
|
+
}
|
|
2584
|
+
},
|
|
2585
|
+
"required": [
|
|
2586
|
+
"route",
|
|
2587
|
+
"title"
|
|
2588
|
+
]
|
|
2589
|
+
}
|
|
2590
|
+
}
|
|
2591
|
+
},
|
|
2592
|
+
"required": [
|
|
2593
|
+
"pages"
|
|
2594
|
+
]
|
|
2595
|
+
}
|
|
2380
2596
|
},
|
|
2381
2597
|
"key": {
|
|
2382
2598
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
2383
2599
|
}
|
|
2384
|
-
}
|
|
2385
|
-
},
|
|
2386
|
-
{
|
|
2387
|
-
"type": "object",
|
|
2600
|
+
},
|
|
2388
2601
|
"required": [
|
|
2602
|
+
"function",
|
|
2389
2603
|
"title",
|
|
2390
|
-
"resource",
|
|
2391
2604
|
"key"
|
|
2392
|
-
]
|
|
2605
|
+
]
|
|
2606
|
+
},
|
|
2607
|
+
{
|
|
2608
|
+
"type": "object",
|
|
2393
2609
|
"properties": {
|
|
2394
|
-
"
|
|
2610
|
+
"resource": {
|
|
2395
2611
|
"type": "string",
|
|
2396
2612
|
"minLength": 1,
|
|
2397
|
-
"maxLength":
|
|
2613
|
+
"maxLength": 23,
|
|
2614
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
2398
2615
|
},
|
|
2399
|
-
"
|
|
2616
|
+
"resourceUploadId": {
|
|
2400
2617
|
"type": "string",
|
|
2401
2618
|
"minLength": 1,
|
|
2402
2619
|
"maxLength": 255
|
|
2403
2620
|
},
|
|
2404
|
-
"layout": {
|
|
2405
|
-
"type": "string",
|
|
2406
|
-
"minLength": 1,
|
|
2407
|
-
"maxLength": 255,
|
|
2408
|
-
"enum": [
|
|
2409
|
-
"native",
|
|
2410
|
-
"basic"
|
|
2411
|
-
]
|
|
2412
|
-
},
|
|
2413
2621
|
"resolver": {
|
|
2414
2622
|
"additionalProperties": false,
|
|
2415
2623
|
"type": "object",
|
|
@@ -2425,38 +2633,120 @@
|
|
|
2425
2633
|
"function"
|
|
2426
2634
|
]
|
|
2427
2635
|
},
|
|
2428
|
-
"
|
|
2636
|
+
"title": {
|
|
2429
2637
|
"type": "string",
|
|
2430
2638
|
"minLength": 1,
|
|
2431
|
-
"maxLength":
|
|
2432
|
-
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
2639
|
+
"maxLength": 255
|
|
2433
2640
|
},
|
|
2434
|
-
"
|
|
2641
|
+
"icon": {
|
|
2435
2642
|
"type": "string",
|
|
2436
2643
|
"minLength": 1,
|
|
2437
2644
|
"maxLength": 255
|
|
2438
2645
|
},
|
|
2439
|
-
"
|
|
2440
|
-
"
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2646
|
+
"layout": {
|
|
2647
|
+
"enum": [
|
|
2648
|
+
"basic",
|
|
2649
|
+
"native"
|
|
2650
|
+
],
|
|
2651
|
+
"type": "string"
|
|
2652
|
+
},
|
|
2653
|
+
"pages": {
|
|
2654
|
+
"type": "array",
|
|
2655
|
+
"items": {
|
|
2656
|
+
"type": "object",
|
|
2657
|
+
"properties": {
|
|
2658
|
+
"title": {
|
|
2659
|
+
"type": "string",
|
|
2660
|
+
"minLength": 1,
|
|
2661
|
+
"maxLength": 255
|
|
2662
|
+
},
|
|
2663
|
+
"route": {
|
|
2664
|
+
"minLength": 1,
|
|
2665
|
+
"maxLength": 255,
|
|
2666
|
+
"type": "string"
|
|
2667
|
+
},
|
|
2668
|
+
"icon": {
|
|
2669
|
+
"type": "string",
|
|
2670
|
+
"minLength": 1,
|
|
2671
|
+
"maxLength": 255
|
|
2672
|
+
}
|
|
2673
|
+
},
|
|
2674
|
+
"required": [
|
|
2675
|
+
"route",
|
|
2676
|
+
"title"
|
|
2677
|
+
]
|
|
2678
|
+
}
|
|
2679
|
+
},
|
|
2680
|
+
"sections": {
|
|
2681
|
+
"type": "array",
|
|
2682
|
+
"items": {
|
|
2683
|
+
"type": "object",
|
|
2684
|
+
"properties": {
|
|
2685
|
+
"header": {
|
|
2686
|
+
"minLength": 1,
|
|
2687
|
+
"maxLength": 255,
|
|
2688
|
+
"type": "string"
|
|
2689
|
+
},
|
|
2690
|
+
"pages": {
|
|
2691
|
+
"type": "array",
|
|
2692
|
+
"items": {
|
|
2693
|
+
"type": "object",
|
|
2694
|
+
"properties": {
|
|
2695
|
+
"title": {
|
|
2696
|
+
"type": "string",
|
|
2697
|
+
"minLength": 1,
|
|
2698
|
+
"maxLength": 255
|
|
2699
|
+
},
|
|
2700
|
+
"route": {
|
|
2701
|
+
"minLength": 1,
|
|
2702
|
+
"maxLength": 255,
|
|
2703
|
+
"type": "string"
|
|
2704
|
+
},
|
|
2705
|
+
"icon": {
|
|
2706
|
+
"type": "string",
|
|
2707
|
+
"minLength": 1,
|
|
2708
|
+
"maxLength": 255
|
|
2709
|
+
}
|
|
2710
|
+
},
|
|
2711
|
+
"required": [
|
|
2712
|
+
"route",
|
|
2713
|
+
"title"
|
|
2714
|
+
]
|
|
2715
|
+
}
|
|
2716
|
+
}
|
|
2717
|
+
},
|
|
2718
|
+
"required": [
|
|
2719
|
+
"pages"
|
|
2720
|
+
]
|
|
2721
|
+
}
|
|
2722
|
+
},
|
|
2723
|
+
"key": {
|
|
2724
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
2725
|
+
}
|
|
2726
|
+
},
|
|
2727
|
+
"required": [
|
|
2728
|
+
"resource",
|
|
2729
|
+
"title",
|
|
2457
2730
|
"key"
|
|
2458
|
-
]
|
|
2731
|
+
]
|
|
2732
|
+
}
|
|
2733
|
+
]
|
|
2734
|
+
},
|
|
2735
|
+
"minItems": 1
|
|
2736
|
+
},
|
|
2737
|
+
"jira:projectPage": {
|
|
2738
|
+
"type": "array",
|
|
2739
|
+
"items": {
|
|
2740
|
+
"oneOf": [
|
|
2741
|
+
{
|
|
2742
|
+
"type": "object",
|
|
2459
2743
|
"properties": {
|
|
2744
|
+
"function": {
|
|
2745
|
+
"type": "string",
|
|
2746
|
+
"minLength": 1,
|
|
2747
|
+
"maxLength": 255,
|
|
2748
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
2749
|
+
},
|
|
2460
2750
|
"title": {
|
|
2461
2751
|
"type": "string",
|
|
2462
2752
|
"minLength": 1,
|
|
@@ -2468,52 +2758,106 @@
|
|
|
2468
2758
|
"maxLength": 255
|
|
2469
2759
|
},
|
|
2470
2760
|
"layout": {
|
|
2471
|
-
"type": "string",
|
|
2472
|
-
"minLength": 1,
|
|
2473
|
-
"maxLength": 255,
|
|
2474
2761
|
"enum": [
|
|
2475
|
-
"
|
|
2476
|
-
"
|
|
2477
|
-
]
|
|
2762
|
+
"basic",
|
|
2763
|
+
"native"
|
|
2764
|
+
],
|
|
2765
|
+
"type": "string"
|
|
2478
2766
|
},
|
|
2479
|
-
"
|
|
2480
|
-
"type": "
|
|
2481
|
-
"
|
|
2482
|
-
|
|
2483
|
-
|
|
2767
|
+
"pages": {
|
|
2768
|
+
"type": "array",
|
|
2769
|
+
"items": {
|
|
2770
|
+
"type": "object",
|
|
2771
|
+
"properties": {
|
|
2772
|
+
"title": {
|
|
2773
|
+
"type": "string",
|
|
2774
|
+
"minLength": 1,
|
|
2775
|
+
"maxLength": 255
|
|
2776
|
+
},
|
|
2777
|
+
"route": {
|
|
2778
|
+
"minLength": 1,
|
|
2779
|
+
"maxLength": 255,
|
|
2780
|
+
"type": "string"
|
|
2781
|
+
},
|
|
2782
|
+
"icon": {
|
|
2783
|
+
"type": "string",
|
|
2784
|
+
"minLength": 1,
|
|
2785
|
+
"maxLength": 255
|
|
2786
|
+
}
|
|
2787
|
+
},
|
|
2788
|
+
"required": [
|
|
2789
|
+
"route",
|
|
2790
|
+
"title"
|
|
2791
|
+
]
|
|
2792
|
+
}
|
|
2793
|
+
},
|
|
2794
|
+
"sections": {
|
|
2795
|
+
"type": "array",
|
|
2796
|
+
"items": {
|
|
2797
|
+
"type": "object",
|
|
2798
|
+
"properties": {
|
|
2799
|
+
"header": {
|
|
2800
|
+
"minLength": 1,
|
|
2801
|
+
"maxLength": 255,
|
|
2802
|
+
"type": "string"
|
|
2803
|
+
},
|
|
2804
|
+
"pages": {
|
|
2805
|
+
"type": "array",
|
|
2806
|
+
"items": {
|
|
2807
|
+
"type": "object",
|
|
2808
|
+
"properties": {
|
|
2809
|
+
"title": {
|
|
2810
|
+
"type": "string",
|
|
2811
|
+
"minLength": 1,
|
|
2812
|
+
"maxLength": 255
|
|
2813
|
+
},
|
|
2814
|
+
"route": {
|
|
2815
|
+
"minLength": 1,
|
|
2816
|
+
"maxLength": 255,
|
|
2817
|
+
"type": "string"
|
|
2818
|
+
},
|
|
2819
|
+
"icon": {
|
|
2820
|
+
"type": "string",
|
|
2821
|
+
"minLength": 1,
|
|
2822
|
+
"maxLength": 255
|
|
2823
|
+
}
|
|
2824
|
+
},
|
|
2825
|
+
"required": [
|
|
2826
|
+
"route",
|
|
2827
|
+
"title"
|
|
2828
|
+
]
|
|
2829
|
+
}
|
|
2830
|
+
}
|
|
2831
|
+
},
|
|
2832
|
+
"required": [
|
|
2833
|
+
"pages"
|
|
2834
|
+
]
|
|
2835
|
+
}
|
|
2484
2836
|
},
|
|
2485
2837
|
"key": {
|
|
2486
2838
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
2487
2839
|
}
|
|
2488
|
-
}
|
|
2489
|
-
},
|
|
2490
|
-
{
|
|
2491
|
-
"type": "object",
|
|
2840
|
+
},
|
|
2492
2841
|
"required": [
|
|
2842
|
+
"function",
|
|
2493
2843
|
"title",
|
|
2494
|
-
"resource",
|
|
2495
2844
|
"key"
|
|
2496
|
-
]
|
|
2845
|
+
]
|
|
2846
|
+
},
|
|
2847
|
+
{
|
|
2848
|
+
"type": "object",
|
|
2497
2849
|
"properties": {
|
|
2498
|
-
"
|
|
2850
|
+
"resource": {
|
|
2499
2851
|
"type": "string",
|
|
2500
2852
|
"minLength": 1,
|
|
2501
|
-
"maxLength":
|
|
2853
|
+
"maxLength": 23,
|
|
2854
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
2502
2855
|
},
|
|
2503
|
-
"
|
|
2856
|
+
"resourceUploadId": {
|
|
2504
2857
|
"type": "string",
|
|
2505
2858
|
"minLength": 1,
|
|
2506
2859
|
"maxLength": 255
|
|
2507
2860
|
},
|
|
2508
|
-
"layout": {
|
|
2509
|
-
"type": "string",
|
|
2510
|
-
"minLength": 1,
|
|
2511
|
-
"maxLength": 255,
|
|
2512
|
-
"enum": [
|
|
2513
|
-
"native",
|
|
2514
|
-
"basic"
|
|
2515
|
-
]
|
|
2516
|
-
},
|
|
2517
2861
|
"resolver": {
|
|
2518
2862
|
"additionalProperties": false,
|
|
2519
2863
|
"type": "object",
|
|
@@ -2529,21 +2873,102 @@
|
|
|
2529
2873
|
"function"
|
|
2530
2874
|
]
|
|
2531
2875
|
},
|
|
2532
|
-
"
|
|
2876
|
+
"title": {
|
|
2533
2877
|
"type": "string",
|
|
2534
2878
|
"minLength": 1,
|
|
2535
|
-
"maxLength":
|
|
2536
|
-
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
2879
|
+
"maxLength": 255
|
|
2537
2880
|
},
|
|
2538
|
-
"
|
|
2881
|
+
"icon": {
|
|
2539
2882
|
"type": "string",
|
|
2540
2883
|
"minLength": 1,
|
|
2541
2884
|
"maxLength": 255
|
|
2542
2885
|
},
|
|
2886
|
+
"layout": {
|
|
2887
|
+
"enum": [
|
|
2888
|
+
"basic",
|
|
2889
|
+
"native"
|
|
2890
|
+
],
|
|
2891
|
+
"type": "string"
|
|
2892
|
+
},
|
|
2893
|
+
"pages": {
|
|
2894
|
+
"type": "array",
|
|
2895
|
+
"items": {
|
|
2896
|
+
"type": "object",
|
|
2897
|
+
"properties": {
|
|
2898
|
+
"title": {
|
|
2899
|
+
"type": "string",
|
|
2900
|
+
"minLength": 1,
|
|
2901
|
+
"maxLength": 255
|
|
2902
|
+
},
|
|
2903
|
+
"route": {
|
|
2904
|
+
"minLength": 1,
|
|
2905
|
+
"maxLength": 255,
|
|
2906
|
+
"type": "string"
|
|
2907
|
+
},
|
|
2908
|
+
"icon": {
|
|
2909
|
+
"type": "string",
|
|
2910
|
+
"minLength": 1,
|
|
2911
|
+
"maxLength": 255
|
|
2912
|
+
}
|
|
2913
|
+
},
|
|
2914
|
+
"required": [
|
|
2915
|
+
"route",
|
|
2916
|
+
"title"
|
|
2917
|
+
]
|
|
2918
|
+
}
|
|
2919
|
+
},
|
|
2920
|
+
"sections": {
|
|
2921
|
+
"type": "array",
|
|
2922
|
+
"items": {
|
|
2923
|
+
"type": "object",
|
|
2924
|
+
"properties": {
|
|
2925
|
+
"header": {
|
|
2926
|
+
"minLength": 1,
|
|
2927
|
+
"maxLength": 255,
|
|
2928
|
+
"type": "string"
|
|
2929
|
+
},
|
|
2930
|
+
"pages": {
|
|
2931
|
+
"type": "array",
|
|
2932
|
+
"items": {
|
|
2933
|
+
"type": "object",
|
|
2934
|
+
"properties": {
|
|
2935
|
+
"title": {
|
|
2936
|
+
"type": "string",
|
|
2937
|
+
"minLength": 1,
|
|
2938
|
+
"maxLength": 255
|
|
2939
|
+
},
|
|
2940
|
+
"route": {
|
|
2941
|
+
"minLength": 1,
|
|
2942
|
+
"maxLength": 255,
|
|
2943
|
+
"type": "string"
|
|
2944
|
+
},
|
|
2945
|
+
"icon": {
|
|
2946
|
+
"type": "string",
|
|
2947
|
+
"minLength": 1,
|
|
2948
|
+
"maxLength": 255
|
|
2949
|
+
}
|
|
2950
|
+
},
|
|
2951
|
+
"required": [
|
|
2952
|
+
"route",
|
|
2953
|
+
"title"
|
|
2954
|
+
]
|
|
2955
|
+
}
|
|
2956
|
+
}
|
|
2957
|
+
},
|
|
2958
|
+
"required": [
|
|
2959
|
+
"pages"
|
|
2960
|
+
]
|
|
2961
|
+
}
|
|
2962
|
+
},
|
|
2543
2963
|
"key": {
|
|
2544
2964
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
2545
2965
|
}
|
|
2546
|
-
}
|
|
2966
|
+
},
|
|
2967
|
+
"required": [
|
|
2968
|
+
"resource",
|
|
2969
|
+
"title",
|
|
2970
|
+
"key"
|
|
2971
|
+
]
|
|
2547
2972
|
}
|
|
2548
2973
|
]
|
|
2549
2974
|
},
|
|
@@ -2563,9 +2988,9 @@
|
|
|
2563
2988
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
2564
2989
|
},
|
|
2565
2990
|
"title": {
|
|
2991
|
+
"type": "string",
|
|
2566
2992
|
"minLength": 1,
|
|
2567
|
-
"maxLength": 255
|
|
2568
|
-
"type": "string"
|
|
2993
|
+
"maxLength": 255
|
|
2569
2994
|
},
|
|
2570
2995
|
"icon": {
|
|
2571
2996
|
"type": "string",
|
|
@@ -2579,6 +3004,76 @@
|
|
|
2579
3004
|
],
|
|
2580
3005
|
"type": "string"
|
|
2581
3006
|
},
|
|
3007
|
+
"pages": {
|
|
3008
|
+
"type": "array",
|
|
3009
|
+
"items": {
|
|
3010
|
+
"type": "object",
|
|
3011
|
+
"properties": {
|
|
3012
|
+
"title": {
|
|
3013
|
+
"type": "string",
|
|
3014
|
+
"minLength": 1,
|
|
3015
|
+
"maxLength": 255
|
|
3016
|
+
},
|
|
3017
|
+
"route": {
|
|
3018
|
+
"minLength": 1,
|
|
3019
|
+
"maxLength": 255,
|
|
3020
|
+
"type": "string"
|
|
3021
|
+
},
|
|
3022
|
+
"icon": {
|
|
3023
|
+
"type": "string",
|
|
3024
|
+
"minLength": 1,
|
|
3025
|
+
"maxLength": 255
|
|
3026
|
+
}
|
|
3027
|
+
},
|
|
3028
|
+
"required": [
|
|
3029
|
+
"route",
|
|
3030
|
+
"title"
|
|
3031
|
+
]
|
|
3032
|
+
}
|
|
3033
|
+
},
|
|
3034
|
+
"sections": {
|
|
3035
|
+
"type": "array",
|
|
3036
|
+
"items": {
|
|
3037
|
+
"type": "object",
|
|
3038
|
+
"properties": {
|
|
3039
|
+
"header": {
|
|
3040
|
+
"minLength": 1,
|
|
3041
|
+
"maxLength": 255,
|
|
3042
|
+
"type": "string"
|
|
3043
|
+
},
|
|
3044
|
+
"pages": {
|
|
3045
|
+
"type": "array",
|
|
3046
|
+
"items": {
|
|
3047
|
+
"type": "object",
|
|
3048
|
+
"properties": {
|
|
3049
|
+
"title": {
|
|
3050
|
+
"type": "string",
|
|
3051
|
+
"minLength": 1,
|
|
3052
|
+
"maxLength": 255
|
|
3053
|
+
},
|
|
3054
|
+
"route": {
|
|
3055
|
+
"minLength": 1,
|
|
3056
|
+
"maxLength": 255,
|
|
3057
|
+
"type": "string"
|
|
3058
|
+
},
|
|
3059
|
+
"icon": {
|
|
3060
|
+
"type": "string",
|
|
3061
|
+
"minLength": 1,
|
|
3062
|
+
"maxLength": 255
|
|
3063
|
+
}
|
|
3064
|
+
},
|
|
3065
|
+
"required": [
|
|
3066
|
+
"route",
|
|
3067
|
+
"title"
|
|
3068
|
+
]
|
|
3069
|
+
}
|
|
3070
|
+
}
|
|
3071
|
+
},
|
|
3072
|
+
"required": [
|
|
3073
|
+
"pages"
|
|
3074
|
+
]
|
|
3075
|
+
}
|
|
3076
|
+
},
|
|
2582
3077
|
"key": {
|
|
2583
3078
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
2584
3079
|
}
|
|
@@ -2598,6 +3093,11 @@
|
|
|
2598
3093
|
"maxLength": 23,
|
|
2599
3094
|
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
2600
3095
|
},
|
|
3096
|
+
"resourceUploadId": {
|
|
3097
|
+
"type": "string",
|
|
3098
|
+
"minLength": 1,
|
|
3099
|
+
"maxLength": 255
|
|
3100
|
+
},
|
|
2601
3101
|
"resolver": {
|
|
2602
3102
|
"additionalProperties": false,
|
|
2603
3103
|
"type": "object",
|
|
@@ -2614,9 +3114,9 @@
|
|
|
2614
3114
|
]
|
|
2615
3115
|
},
|
|
2616
3116
|
"title": {
|
|
3117
|
+
"type": "string",
|
|
2617
3118
|
"minLength": 1,
|
|
2618
|
-
"maxLength": 255
|
|
2619
|
-
"type": "string"
|
|
3119
|
+
"maxLength": 255
|
|
2620
3120
|
},
|
|
2621
3121
|
"icon": {
|
|
2622
3122
|
"type": "string",
|
|
@@ -2630,6 +3130,76 @@
|
|
|
2630
3130
|
],
|
|
2631
3131
|
"type": "string"
|
|
2632
3132
|
},
|
|
3133
|
+
"pages": {
|
|
3134
|
+
"type": "array",
|
|
3135
|
+
"items": {
|
|
3136
|
+
"type": "object",
|
|
3137
|
+
"properties": {
|
|
3138
|
+
"title": {
|
|
3139
|
+
"type": "string",
|
|
3140
|
+
"minLength": 1,
|
|
3141
|
+
"maxLength": 255
|
|
3142
|
+
},
|
|
3143
|
+
"route": {
|
|
3144
|
+
"minLength": 1,
|
|
3145
|
+
"maxLength": 255,
|
|
3146
|
+
"type": "string"
|
|
3147
|
+
},
|
|
3148
|
+
"icon": {
|
|
3149
|
+
"type": "string",
|
|
3150
|
+
"minLength": 1,
|
|
3151
|
+
"maxLength": 255
|
|
3152
|
+
}
|
|
3153
|
+
},
|
|
3154
|
+
"required": [
|
|
3155
|
+
"route",
|
|
3156
|
+
"title"
|
|
3157
|
+
]
|
|
3158
|
+
}
|
|
3159
|
+
},
|
|
3160
|
+
"sections": {
|
|
3161
|
+
"type": "array",
|
|
3162
|
+
"items": {
|
|
3163
|
+
"type": "object",
|
|
3164
|
+
"properties": {
|
|
3165
|
+
"header": {
|
|
3166
|
+
"minLength": 1,
|
|
3167
|
+
"maxLength": 255,
|
|
3168
|
+
"type": "string"
|
|
3169
|
+
},
|
|
3170
|
+
"pages": {
|
|
3171
|
+
"type": "array",
|
|
3172
|
+
"items": {
|
|
3173
|
+
"type": "object",
|
|
3174
|
+
"properties": {
|
|
3175
|
+
"title": {
|
|
3176
|
+
"type": "string",
|
|
3177
|
+
"minLength": 1,
|
|
3178
|
+
"maxLength": 255
|
|
3179
|
+
},
|
|
3180
|
+
"route": {
|
|
3181
|
+
"minLength": 1,
|
|
3182
|
+
"maxLength": 255,
|
|
3183
|
+
"type": "string"
|
|
3184
|
+
},
|
|
3185
|
+
"icon": {
|
|
3186
|
+
"type": "string",
|
|
3187
|
+
"minLength": 1,
|
|
3188
|
+
"maxLength": 255
|
|
3189
|
+
}
|
|
3190
|
+
},
|
|
3191
|
+
"required": [
|
|
3192
|
+
"route",
|
|
3193
|
+
"title"
|
|
3194
|
+
]
|
|
3195
|
+
}
|
|
3196
|
+
}
|
|
3197
|
+
},
|
|
3198
|
+
"required": [
|
|
3199
|
+
"pages"
|
|
3200
|
+
]
|
|
3201
|
+
}
|
|
3202
|
+
},
|
|
2633
3203
|
"key": {
|
|
2634
3204
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
2635
3205
|
}
|
|
@@ -2658,21 +3228,91 @@
|
|
|
2658
3228
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
2659
3229
|
},
|
|
2660
3230
|
"title": {
|
|
3231
|
+
"type": "string",
|
|
2661
3232
|
"minLength": 1,
|
|
2662
|
-
"maxLength": 255
|
|
2663
|
-
"type": "string"
|
|
3233
|
+
"maxLength": 255
|
|
2664
3234
|
},
|
|
2665
3235
|
"icon": {
|
|
2666
3236
|
"type": "string",
|
|
2667
3237
|
"minLength": 1,
|
|
2668
3238
|
"maxLength": 255
|
|
2669
3239
|
},
|
|
2670
|
-
"layout": {
|
|
2671
|
-
"enum": [
|
|
2672
|
-
"basic",
|
|
2673
|
-
"native"
|
|
2674
|
-
],
|
|
2675
|
-
"type": "string"
|
|
3240
|
+
"layout": {
|
|
3241
|
+
"enum": [
|
|
3242
|
+
"basic",
|
|
3243
|
+
"native"
|
|
3244
|
+
],
|
|
3245
|
+
"type": "string"
|
|
3246
|
+
},
|
|
3247
|
+
"pages": {
|
|
3248
|
+
"type": "array",
|
|
3249
|
+
"items": {
|
|
3250
|
+
"type": "object",
|
|
3251
|
+
"properties": {
|
|
3252
|
+
"title": {
|
|
3253
|
+
"type": "string",
|
|
3254
|
+
"minLength": 1,
|
|
3255
|
+
"maxLength": 255
|
|
3256
|
+
},
|
|
3257
|
+
"route": {
|
|
3258
|
+
"minLength": 1,
|
|
3259
|
+
"maxLength": 255,
|
|
3260
|
+
"type": "string"
|
|
3261
|
+
},
|
|
3262
|
+
"icon": {
|
|
3263
|
+
"type": "string",
|
|
3264
|
+
"minLength": 1,
|
|
3265
|
+
"maxLength": 255
|
|
3266
|
+
}
|
|
3267
|
+
},
|
|
3268
|
+
"required": [
|
|
3269
|
+
"route",
|
|
3270
|
+
"title"
|
|
3271
|
+
]
|
|
3272
|
+
}
|
|
3273
|
+
},
|
|
3274
|
+
"sections": {
|
|
3275
|
+
"type": "array",
|
|
3276
|
+
"items": {
|
|
3277
|
+
"type": "object",
|
|
3278
|
+
"properties": {
|
|
3279
|
+
"header": {
|
|
3280
|
+
"minLength": 1,
|
|
3281
|
+
"maxLength": 255,
|
|
3282
|
+
"type": "string"
|
|
3283
|
+
},
|
|
3284
|
+
"pages": {
|
|
3285
|
+
"type": "array",
|
|
3286
|
+
"items": {
|
|
3287
|
+
"type": "object",
|
|
3288
|
+
"properties": {
|
|
3289
|
+
"title": {
|
|
3290
|
+
"type": "string",
|
|
3291
|
+
"minLength": 1,
|
|
3292
|
+
"maxLength": 255
|
|
3293
|
+
},
|
|
3294
|
+
"route": {
|
|
3295
|
+
"minLength": 1,
|
|
3296
|
+
"maxLength": 255,
|
|
3297
|
+
"type": "string"
|
|
3298
|
+
},
|
|
3299
|
+
"icon": {
|
|
3300
|
+
"type": "string",
|
|
3301
|
+
"minLength": 1,
|
|
3302
|
+
"maxLength": 255
|
|
3303
|
+
}
|
|
3304
|
+
},
|
|
3305
|
+
"required": [
|
|
3306
|
+
"route",
|
|
3307
|
+
"title"
|
|
3308
|
+
]
|
|
3309
|
+
}
|
|
3310
|
+
}
|
|
3311
|
+
},
|
|
3312
|
+
"required": [
|
|
3313
|
+
"pages"
|
|
3314
|
+
]
|
|
3315
|
+
}
|
|
2676
3316
|
},
|
|
2677
3317
|
"key": {
|
|
2678
3318
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
@@ -2693,6 +3333,11 @@
|
|
|
2693
3333
|
"maxLength": 23,
|
|
2694
3334
|
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
2695
3335
|
},
|
|
3336
|
+
"resourceUploadId": {
|
|
3337
|
+
"type": "string",
|
|
3338
|
+
"minLength": 1,
|
|
3339
|
+
"maxLength": 255
|
|
3340
|
+
},
|
|
2696
3341
|
"resolver": {
|
|
2697
3342
|
"additionalProperties": false,
|
|
2698
3343
|
"type": "object",
|
|
@@ -2709,9 +3354,9 @@
|
|
|
2709
3354
|
]
|
|
2710
3355
|
},
|
|
2711
3356
|
"title": {
|
|
3357
|
+
"type": "string",
|
|
2712
3358
|
"minLength": 1,
|
|
2713
|
-
"maxLength": 255
|
|
2714
|
-
"type": "string"
|
|
3359
|
+
"maxLength": 255
|
|
2715
3360
|
},
|
|
2716
3361
|
"icon": {
|
|
2717
3362
|
"type": "string",
|
|
@@ -2725,6 +3370,76 @@
|
|
|
2725
3370
|
],
|
|
2726
3371
|
"type": "string"
|
|
2727
3372
|
},
|
|
3373
|
+
"pages": {
|
|
3374
|
+
"type": "array",
|
|
3375
|
+
"items": {
|
|
3376
|
+
"type": "object",
|
|
3377
|
+
"properties": {
|
|
3378
|
+
"title": {
|
|
3379
|
+
"type": "string",
|
|
3380
|
+
"minLength": 1,
|
|
3381
|
+
"maxLength": 255
|
|
3382
|
+
},
|
|
3383
|
+
"route": {
|
|
3384
|
+
"minLength": 1,
|
|
3385
|
+
"maxLength": 255,
|
|
3386
|
+
"type": "string"
|
|
3387
|
+
},
|
|
3388
|
+
"icon": {
|
|
3389
|
+
"type": "string",
|
|
3390
|
+
"minLength": 1,
|
|
3391
|
+
"maxLength": 255
|
|
3392
|
+
}
|
|
3393
|
+
},
|
|
3394
|
+
"required": [
|
|
3395
|
+
"route",
|
|
3396
|
+
"title"
|
|
3397
|
+
]
|
|
3398
|
+
}
|
|
3399
|
+
},
|
|
3400
|
+
"sections": {
|
|
3401
|
+
"type": "array",
|
|
3402
|
+
"items": {
|
|
3403
|
+
"type": "object",
|
|
3404
|
+
"properties": {
|
|
3405
|
+
"header": {
|
|
3406
|
+
"minLength": 1,
|
|
3407
|
+
"maxLength": 255,
|
|
3408
|
+
"type": "string"
|
|
3409
|
+
},
|
|
3410
|
+
"pages": {
|
|
3411
|
+
"type": "array",
|
|
3412
|
+
"items": {
|
|
3413
|
+
"type": "object",
|
|
3414
|
+
"properties": {
|
|
3415
|
+
"title": {
|
|
3416
|
+
"type": "string",
|
|
3417
|
+
"minLength": 1,
|
|
3418
|
+
"maxLength": 255
|
|
3419
|
+
},
|
|
3420
|
+
"route": {
|
|
3421
|
+
"minLength": 1,
|
|
3422
|
+
"maxLength": 255,
|
|
3423
|
+
"type": "string"
|
|
3424
|
+
},
|
|
3425
|
+
"icon": {
|
|
3426
|
+
"type": "string",
|
|
3427
|
+
"minLength": 1,
|
|
3428
|
+
"maxLength": 255
|
|
3429
|
+
}
|
|
3430
|
+
},
|
|
3431
|
+
"required": [
|
|
3432
|
+
"route",
|
|
3433
|
+
"title"
|
|
3434
|
+
]
|
|
3435
|
+
}
|
|
3436
|
+
}
|
|
3437
|
+
},
|
|
3438
|
+
"required": [
|
|
3439
|
+
"pages"
|
|
3440
|
+
]
|
|
3441
|
+
}
|
|
3442
|
+
},
|
|
2728
3443
|
"key": {
|
|
2729
3444
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
2730
3445
|
}
|
|
@@ -3096,10 +3811,10 @@
|
|
|
3096
3811
|
"type": "object",
|
|
3097
3812
|
"anyOf": [
|
|
3098
3813
|
{
|
|
3099
|
-
"$ref": "#/definitions/
|
|
3814
|
+
"$ref": "#/definitions/compositeCondition"
|
|
3100
3815
|
},
|
|
3101
3816
|
{
|
|
3102
|
-
"$ref": "#/definitions/
|
|
3817
|
+
"$ref": "#/definitions/singleCondition"
|
|
3103
3818
|
}
|
|
3104
3819
|
]
|
|
3105
3820
|
},
|
|
@@ -3167,10 +3882,10 @@
|
|
|
3167
3882
|
"type": "object",
|
|
3168
3883
|
"anyOf": [
|
|
3169
3884
|
{
|
|
3170
|
-
"$ref": "#/definitions/
|
|
3885
|
+
"$ref": "#/definitions/compositeCondition"
|
|
3171
3886
|
},
|
|
3172
3887
|
{
|
|
3173
|
-
"$ref": "#/definitions/
|
|
3888
|
+
"$ref": "#/definitions/singleCondition"
|
|
3174
3889
|
}
|
|
3175
3890
|
]
|
|
3176
3891
|
},
|
|
@@ -3222,10 +3937,10 @@
|
|
|
3222
3937
|
"type": "object",
|
|
3223
3938
|
"anyOf": [
|
|
3224
3939
|
{
|
|
3225
|
-
"$ref": "#/definitions/
|
|
3940
|
+
"$ref": "#/definitions/singleCondition"
|
|
3226
3941
|
},
|
|
3227
3942
|
{
|
|
3228
|
-
"$ref": "#/definitions/
|
|
3943
|
+
"$ref": "#/definitions/compositeCondition"
|
|
3229
3944
|
}
|
|
3230
3945
|
]
|
|
3231
3946
|
},
|
|
@@ -3286,10 +4001,10 @@
|
|
|
3286
4001
|
"type": "object",
|
|
3287
4002
|
"anyOf": [
|
|
3288
4003
|
{
|
|
3289
|
-
"$ref": "#/definitions/
|
|
4004
|
+
"$ref": "#/definitions/singleCondition"
|
|
3290
4005
|
},
|
|
3291
4006
|
{
|
|
3292
|
-
"$ref": "#/definitions/
|
|
4007
|
+
"$ref": "#/definitions/compositeCondition"
|
|
3293
4008
|
}
|
|
3294
4009
|
]
|
|
3295
4010
|
},
|
|
@@ -3402,10 +4117,10 @@
|
|
|
3402
4117
|
"type": "object",
|
|
3403
4118
|
"anyOf": [
|
|
3404
4119
|
{
|
|
3405
|
-
"$ref": "#/definitions/
|
|
4120
|
+
"$ref": "#/definitions/singleCondition"
|
|
3406
4121
|
},
|
|
3407
4122
|
{
|
|
3408
|
-
"$ref": "#/definitions/
|
|
4123
|
+
"$ref": "#/definitions/compositeCondition"
|
|
3409
4124
|
}
|
|
3410
4125
|
]
|
|
3411
4126
|
},
|
|
@@ -3475,51 +4190,6 @@
|
|
|
3475
4190
|
"type": "object",
|
|
3476
4191
|
"fieldDescription": "\n\n<p>An object containing options which vary based on the type of web item target you are implementing.</p>\n\n <p>Currently-allowed options are:</p>\n <ul>\n <li><a href=\"../inline-dialog-options/\">Inline Dialog Options</a> when type is \"inlinedialog\", and</li>\n <li><a href=\"../dialog-options/\">Dialog Options</a> when type is \"dialog\"</li>\n <li><a href=\"../dialog-module-options/\">Dialog Module Options</a> when type is \"dialogmodule\"</li>\n </ul>\n\n",
|
|
3477
4192
|
"anyOf": [
|
|
3478
|
-
{
|
|
3479
|
-
"properties": {
|
|
3480
|
-
"size": {
|
|
3481
|
-
"enum": [
|
|
3482
|
-
"small",
|
|
3483
|
-
"SMALL",
|
|
3484
|
-
"medium",
|
|
3485
|
-
"MEDIUM",
|
|
3486
|
-
"large",
|
|
3487
|
-
"LARGE",
|
|
3488
|
-
"x-large",
|
|
3489
|
-
"X-LARGE",
|
|
3490
|
-
"fullscreen",
|
|
3491
|
-
"FULLSCREEN",
|
|
3492
|
-
"maximum",
|
|
3493
|
-
"MAXIMUM"
|
|
3494
|
-
],
|
|
3495
|
-
"type": "string",
|
|
3496
|
-
"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"
|
|
3497
|
-
},
|
|
3498
|
-
"chrome": {
|
|
3499
|
-
"type": "boolean",
|
|
3500
|
-
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
3501
|
-
"defaultValue": "true"
|
|
3502
|
-
},
|
|
3503
|
-
"width": {
|
|
3504
|
-
"maxLength": 10,
|
|
3505
|
-
"type": "string",
|
|
3506
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
3507
|
-
},
|
|
3508
|
-
"header": {
|
|
3509
|
-
"$ref": "#/definitions/i18nProperty",
|
|
3510
|
-
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
3511
|
-
},
|
|
3512
|
-
"height": {
|
|
3513
|
-
"maxLength": 10,
|
|
3514
|
-
"type": "string",
|
|
3515
|
-
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
3516
|
-
}
|
|
3517
|
-
},
|
|
3518
|
-
"shortClassName": "dialogOptions",
|
|
3519
|
-
"type": "object",
|
|
3520
|
-
"title": "Dialog Options",
|
|
3521
|
-
"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"
|
|
3522
|
-
},
|
|
3523
4193
|
{
|
|
3524
4194
|
"properties": {
|
|
3525
4195
|
"offsetX": {
|
|
@@ -3567,6 +4237,51 @@
|
|
|
3567
4237
|
"title": "Inline Dialog Options",
|
|
3568
4238
|
"description": "\n\nOptions for an inline dialog target\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"inlinedialog\",\n \"options\": {\n \"onHover\": true,\n \"offsetX\": \"30px\",\n \"offsetY\": \"20px\"\n }\n }\n }\n\n\n"
|
|
3569
4239
|
},
|
|
4240
|
+
{
|
|
4241
|
+
"properties": {
|
|
4242
|
+
"size": {
|
|
4243
|
+
"enum": [
|
|
4244
|
+
"small",
|
|
4245
|
+
"SMALL",
|
|
4246
|
+
"medium",
|
|
4247
|
+
"MEDIUM",
|
|
4248
|
+
"large",
|
|
4249
|
+
"LARGE",
|
|
4250
|
+
"x-large",
|
|
4251
|
+
"X-LARGE",
|
|
4252
|
+
"fullscreen",
|
|
4253
|
+
"FULLSCREEN",
|
|
4254
|
+
"maximum",
|
|
4255
|
+
"MAXIMUM"
|
|
4256
|
+
],
|
|
4257
|
+
"type": "string",
|
|
4258
|
+
"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"
|
|
4259
|
+
},
|
|
4260
|
+
"chrome": {
|
|
4261
|
+
"type": "boolean",
|
|
4262
|
+
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
4263
|
+
"defaultValue": "true"
|
|
4264
|
+
},
|
|
4265
|
+
"width": {
|
|
4266
|
+
"maxLength": 10,
|
|
4267
|
+
"type": "string",
|
|
4268
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
4269
|
+
},
|
|
4270
|
+
"header": {
|
|
4271
|
+
"$ref": "#/definitions/i18nProperty",
|
|
4272
|
+
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
4273
|
+
},
|
|
4274
|
+
"height": {
|
|
4275
|
+
"maxLength": 10,
|
|
4276
|
+
"type": "string",
|
|
4277
|
+
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
4278
|
+
}
|
|
4279
|
+
},
|
|
4280
|
+
"shortClassName": "dialogOptions",
|
|
4281
|
+
"type": "object",
|
|
4282
|
+
"title": "Dialog Options",
|
|
4283
|
+
"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"
|
|
4284
|
+
},
|
|
3570
4285
|
{
|
|
3571
4286
|
"properties": {
|
|
3572
4287
|
"key": {
|
|
@@ -3638,6 +4353,33 @@
|
|
|
3638
4353
|
"items": {
|
|
3639
4354
|
"type": "object",
|
|
3640
4355
|
"anyOf": [
|
|
4356
|
+
{
|
|
4357
|
+
"properties": {
|
|
4358
|
+
"condition": {
|
|
4359
|
+
"maxLength": 100,
|
|
4360
|
+
"type": "string",
|
|
4361
|
+
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
4362
|
+
},
|
|
4363
|
+
"invert": {
|
|
4364
|
+
"type": "boolean",
|
|
4365
|
+
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
4366
|
+
"defaultValue": "false"
|
|
4367
|
+
},
|
|
4368
|
+
"params": {
|
|
4369
|
+
"additionalProperties": true,
|
|
4370
|
+
"type": "object",
|
|
4371
|
+
"fieldTitle": "Object",
|
|
4372
|
+
"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"
|
|
4373
|
+
}
|
|
4374
|
+
},
|
|
4375
|
+
"required": [
|
|
4376
|
+
"condition"
|
|
4377
|
+
],
|
|
4378
|
+
"shortClassName": "singleConditionBean",
|
|
4379
|
+
"type": "object",
|
|
4380
|
+
"title": "Single Condition",
|
|
4381
|
+
"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"
|
|
4382
|
+
},
|
|
3641
4383
|
{
|
|
3642
4384
|
"properties": {
|
|
3643
4385
|
"conditions": {
|
|
@@ -3670,33 +4412,6 @@
|
|
|
3670
4412
|
"type": "object",
|
|
3671
4413
|
"title": "Composite Condition",
|
|
3672
4414
|
"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"
|
|
3673
|
-
},
|
|
3674
|
-
{
|
|
3675
|
-
"properties": {
|
|
3676
|
-
"condition": {
|
|
3677
|
-
"maxLength": 100,
|
|
3678
|
-
"type": "string",
|
|
3679
|
-
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
3680
|
-
},
|
|
3681
|
-
"invert": {
|
|
3682
|
-
"type": "boolean",
|
|
3683
|
-
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
3684
|
-
"defaultValue": "false"
|
|
3685
|
-
},
|
|
3686
|
-
"params": {
|
|
3687
|
-
"additionalProperties": true,
|
|
3688
|
-
"type": "object",
|
|
3689
|
-
"fieldTitle": "Object",
|
|
3690
|
-
"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"
|
|
3691
|
-
}
|
|
3692
|
-
},
|
|
3693
|
-
"required": [
|
|
3694
|
-
"condition"
|
|
3695
|
-
],
|
|
3696
|
-
"shortClassName": "singleConditionBean",
|
|
3697
|
-
"type": "object",
|
|
3698
|
-
"title": "Single Condition",
|
|
3699
|
-
"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"
|
|
3700
4415
|
}
|
|
3701
4416
|
]
|
|
3702
4417
|
},
|
|
@@ -3750,10 +4465,10 @@
|
|
|
3750
4465
|
"type": "object",
|
|
3751
4466
|
"anyOf": [
|
|
3752
4467
|
{
|
|
3753
|
-
"$ref": "#/definitions/
|
|
4468
|
+
"$ref": "#/definitions/compositeCondition"
|
|
3754
4469
|
},
|
|
3755
4470
|
{
|
|
3756
|
-
"$ref": "#/definitions/
|
|
4471
|
+
"$ref": "#/definitions/singleCondition"
|
|
3757
4472
|
}
|
|
3758
4473
|
]
|
|
3759
4474
|
},
|
|
@@ -4114,10 +4829,10 @@
|
|
|
4114
4829
|
"type": "object",
|
|
4115
4830
|
"anyOf": [
|
|
4116
4831
|
{
|
|
4117
|
-
"$ref": "#/definitions/
|
|
4832
|
+
"$ref": "#/definitions/singleCondition"
|
|
4118
4833
|
},
|
|
4119
4834
|
{
|
|
4120
|
-
"$ref": "#/definitions/
|
|
4835
|
+
"$ref": "#/definitions/compositeCondition"
|
|
4121
4836
|
}
|
|
4122
4837
|
]
|
|
4123
4838
|
},
|
|
@@ -4160,10 +4875,10 @@
|
|
|
4160
4875
|
"type": "object",
|
|
4161
4876
|
"anyOf": [
|
|
4162
4877
|
{
|
|
4163
|
-
"$ref": "#/definitions/
|
|
4878
|
+
"$ref": "#/definitions/singleCondition"
|
|
4164
4879
|
},
|
|
4165
4880
|
{
|
|
4166
|
-
"$ref": "#/definitions/
|
|
4881
|
+
"$ref": "#/definitions/compositeCondition"
|
|
4167
4882
|
}
|
|
4168
4883
|
]
|
|
4169
4884
|
},
|
|
@@ -4207,10 +4922,10 @@
|
|
|
4207
4922
|
"type": "object",
|
|
4208
4923
|
"anyOf": [
|
|
4209
4924
|
{
|
|
4210
|
-
"$ref": "#/definitions/
|
|
4925
|
+
"$ref": "#/definitions/compositeCondition"
|
|
4211
4926
|
},
|
|
4212
4927
|
{
|
|
4213
|
-
"$ref": "#/definitions/
|
|
4928
|
+
"$ref": "#/definitions/singleCondition"
|
|
4214
4929
|
}
|
|
4215
4930
|
]
|
|
4216
4931
|
},
|
|
@@ -4296,11 +5011,11 @@
|
|
|
4296
5011
|
"items": {
|
|
4297
5012
|
"type": "object",
|
|
4298
5013
|
"anyOf": [
|
|
4299
|
-
{
|
|
4300
|
-
"$ref": "#/definitions/compositeCondition"
|
|
4301
|
-
},
|
|
4302
5014
|
{
|
|
4303
5015
|
"$ref": "#/definitions/singleCondition"
|
|
5016
|
+
},
|
|
5017
|
+
{
|
|
5018
|
+
"$ref": "#/definitions/compositeCondition"
|
|
4304
5019
|
}
|
|
4305
5020
|
]
|
|
4306
5021
|
},
|
|
@@ -4536,9 +5251,6 @@
|
|
|
4536
5251
|
"items": {
|
|
4537
5252
|
"type": "object",
|
|
4538
5253
|
"anyOf": [
|
|
4539
|
-
{
|
|
4540
|
-
"$ref": "#/definitions/singleCondition"
|
|
4541
|
-
},
|
|
4542
5254
|
{
|
|
4543
5255
|
"properties": {
|
|
4544
5256
|
"conditions": {
|
|
@@ -4546,10 +5258,10 @@
|
|
|
4546
5258
|
"type": "object",
|
|
4547
5259
|
"anyOf": [
|
|
4548
5260
|
{
|
|
4549
|
-
"$ref": "
|
|
5261
|
+
"$ref": "#"
|
|
4550
5262
|
},
|
|
4551
5263
|
{
|
|
4552
|
-
"$ref": "
|
|
5264
|
+
"$ref": "#/definitions/singleCondition"
|
|
4553
5265
|
}
|
|
4554
5266
|
]
|
|
4555
5267
|
},
|
|
@@ -4571,6 +5283,9 @@
|
|
|
4571
5283
|
"type": "object",
|
|
4572
5284
|
"title": "Composite Condition",
|
|
4573
5285
|
"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"
|
|
5286
|
+
},
|
|
5287
|
+
{
|
|
5288
|
+
"$ref": "#/definitions/singleCondition"
|
|
4574
5289
|
}
|
|
4575
5290
|
]
|
|
4576
5291
|
},
|
|
@@ -4851,9 +5566,6 @@
|
|
|
4851
5566
|
"items": {
|
|
4852
5567
|
"type": "object",
|
|
4853
5568
|
"anyOf": [
|
|
4854
|
-
{
|
|
4855
|
-
"$ref": "#/definitions/singleCondition"
|
|
4856
|
-
},
|
|
4857
5569
|
{
|
|
4858
5570
|
"properties": {
|
|
4859
5571
|
"conditions": {
|
|
@@ -4861,10 +5573,10 @@
|
|
|
4861
5573
|
"type": "object",
|
|
4862
5574
|
"anyOf": [
|
|
4863
5575
|
{
|
|
4864
|
-
"$ref": "
|
|
5576
|
+
"$ref": "#"
|
|
4865
5577
|
},
|
|
4866
5578
|
{
|
|
4867
|
-
"$ref": "
|
|
5579
|
+
"$ref": "#/definitions/singleCondition"
|
|
4868
5580
|
}
|
|
4869
5581
|
]
|
|
4870
5582
|
},
|
|
@@ -4886,6 +5598,9 @@
|
|
|
4886
5598
|
"type": "object",
|
|
4887
5599
|
"title": "Composite Condition",
|
|
4888
5600
|
"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"
|
|
5601
|
+
},
|
|
5602
|
+
{
|
|
5603
|
+
"$ref": "#/definitions/singleCondition"
|
|
4889
5604
|
}
|
|
4890
5605
|
]
|
|
4891
5606
|
},
|
|
@@ -5099,10 +5814,10 @@
|
|
|
5099
5814
|
"type": "object",
|
|
5100
5815
|
"anyOf": [
|
|
5101
5816
|
{
|
|
5102
|
-
"$ref": "#/definitions/
|
|
5817
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5103
5818
|
},
|
|
5104
5819
|
{
|
|
5105
|
-
"$ref": "#/definitions/
|
|
5820
|
+
"$ref": "#/definitions/singleCondition"
|
|
5106
5821
|
}
|
|
5107
5822
|
]
|
|
5108
5823
|
},
|
|
@@ -5304,6 +6019,10 @@
|
|
|
5304
6019
|
"type": "string",
|
|
5305
6020
|
"fieldDescription": "\n\nFires when an add on has been successfully disabled. This is an asynchronous notification event.\n\n"
|
|
5306
6021
|
},
|
|
6022
|
+
"dare-migration": {
|
|
6023
|
+
"type": "string",
|
|
6024
|
+
"fieldDescription": "\n\nUsed DaRe app migration service to trigger migrations events\n\n"
|
|
6025
|
+
},
|
|
5307
6026
|
"uninstalled": {
|
|
5308
6027
|
"format": "uri",
|
|
5309
6028
|
"type": "string",
|
|
@@ -5417,10 +6136,10 @@
|
|
|
5417
6136
|
"type": "object",
|
|
5418
6137
|
"anyOf": [
|
|
5419
6138
|
{
|
|
5420
|
-
"$ref": "#/definitions/
|
|
6139
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5421
6140
|
},
|
|
5422
6141
|
{
|
|
5423
|
-
"$ref": "#/definitions/
|
|
6142
|
+
"$ref": "#/definitions/singleCondition"
|
|
5424
6143
|
}
|
|
5425
6144
|
]
|
|
5426
6145
|
},
|
|
@@ -5488,10 +6207,10 @@
|
|
|
5488
6207
|
"type": "object",
|
|
5489
6208
|
"anyOf": [
|
|
5490
6209
|
{
|
|
5491
|
-
"$ref": "#/definitions/
|
|
6210
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5492
6211
|
},
|
|
5493
6212
|
{
|
|
5494
|
-
"$ref": "#/definitions/
|
|
6213
|
+
"$ref": "#/definitions/singleCondition"
|
|
5495
6214
|
}
|
|
5496
6215
|
]
|
|
5497
6216
|
},
|
|
@@ -5543,10 +6262,10 @@
|
|
|
5543
6262
|
"type": "object",
|
|
5544
6263
|
"anyOf": [
|
|
5545
6264
|
{
|
|
5546
|
-
"$ref": "#/definitions/
|
|
6265
|
+
"$ref": "#/definitions/singleCondition"
|
|
5547
6266
|
},
|
|
5548
6267
|
{
|
|
5549
|
-
"$ref": "#/definitions/
|
|
6268
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5550
6269
|
}
|
|
5551
6270
|
]
|
|
5552
6271
|
},
|
|
@@ -5665,10 +6384,10 @@
|
|
|
5665
6384
|
"type": "object",
|
|
5666
6385
|
"anyOf": [
|
|
5667
6386
|
{
|
|
5668
|
-
"$ref": "#/definitions/
|
|
6387
|
+
"$ref": "#/definitions/singleCondition"
|
|
5669
6388
|
},
|
|
5670
6389
|
{
|
|
5671
|
-
"$ref": "#/definitions/
|
|
6390
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5672
6391
|
}
|
|
5673
6392
|
]
|
|
5674
6393
|
},
|
|
@@ -5796,6 +6515,51 @@
|
|
|
5796
6515
|
"type": "object",
|
|
5797
6516
|
"fieldDescription": "\n\n<p>An object containing options which vary based on the type of web item target you are implementing.</p>\n\n <p>Currently-allowed options are:</p>\n <ul>\n <li><a href=\"../inline-dialog-options/\">Inline Dialog Options</a> when type is \"inlinedialog\", and</li>\n <li><a href=\"../dialog-options/\">Dialog Options</a> when type is \"dialog\"</li>\n <li><a href=\"../dialog-module-options/\">Dialog Module Options</a> when type is \"dialogmodule\"</li>\n </ul>\n\n",
|
|
5798
6517
|
"anyOf": [
|
|
6518
|
+
{
|
|
6519
|
+
"properties": {
|
|
6520
|
+
"size": {
|
|
6521
|
+
"enum": [
|
|
6522
|
+
"small",
|
|
6523
|
+
"SMALL",
|
|
6524
|
+
"medium",
|
|
6525
|
+
"MEDIUM",
|
|
6526
|
+
"large",
|
|
6527
|
+
"LARGE",
|
|
6528
|
+
"x-large",
|
|
6529
|
+
"X-LARGE",
|
|
6530
|
+
"fullscreen",
|
|
6531
|
+
"FULLSCREEN",
|
|
6532
|
+
"maximum",
|
|
6533
|
+
"MAXIMUM"
|
|
6534
|
+
],
|
|
6535
|
+
"type": "string",
|
|
6536
|
+
"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"
|
|
6537
|
+
},
|
|
6538
|
+
"chrome": {
|
|
6539
|
+
"type": "boolean",
|
|
6540
|
+
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
6541
|
+
"defaultValue": "true"
|
|
6542
|
+
},
|
|
6543
|
+
"width": {
|
|
6544
|
+
"maxLength": 10,
|
|
6545
|
+
"type": "string",
|
|
6546
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
6547
|
+
},
|
|
6548
|
+
"header": {
|
|
6549
|
+
"$ref": "#/definitions/i18nProperty",
|
|
6550
|
+
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
6551
|
+
},
|
|
6552
|
+
"height": {
|
|
6553
|
+
"maxLength": 10,
|
|
6554
|
+
"type": "string",
|
|
6555
|
+
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
6556
|
+
}
|
|
6557
|
+
},
|
|
6558
|
+
"shortClassName": "dialogOptions",
|
|
6559
|
+
"type": "object",
|
|
6560
|
+
"title": "Dialog Options",
|
|
6561
|
+
"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"
|
|
6562
|
+
},
|
|
5799
6563
|
{
|
|
5800
6564
|
"properties": {
|
|
5801
6565
|
"offsetX": {
|
|
@@ -5858,51 +6622,6 @@
|
|
|
5858
6622
|
"type": "object",
|
|
5859
6623
|
"title": "Dialog Module Options",
|
|
5860
6624
|
"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"
|
|
5861
|
-
},
|
|
5862
|
-
{
|
|
5863
|
-
"properties": {
|
|
5864
|
-
"size": {
|
|
5865
|
-
"enum": [
|
|
5866
|
-
"small",
|
|
5867
|
-
"SMALL",
|
|
5868
|
-
"medium",
|
|
5869
|
-
"MEDIUM",
|
|
5870
|
-
"large",
|
|
5871
|
-
"LARGE",
|
|
5872
|
-
"x-large",
|
|
5873
|
-
"X-LARGE",
|
|
5874
|
-
"fullscreen",
|
|
5875
|
-
"FULLSCREEN",
|
|
5876
|
-
"maximum",
|
|
5877
|
-
"MAXIMUM"
|
|
5878
|
-
],
|
|
5879
|
-
"type": "string",
|
|
5880
|
-
"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"
|
|
5881
|
-
},
|
|
5882
|
-
"chrome": {
|
|
5883
|
-
"type": "boolean",
|
|
5884
|
-
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
5885
|
-
"defaultValue": "true"
|
|
5886
|
-
},
|
|
5887
|
-
"width": {
|
|
5888
|
-
"maxLength": 10,
|
|
5889
|
-
"type": "string",
|
|
5890
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
5891
|
-
},
|
|
5892
|
-
"header": {
|
|
5893
|
-
"$ref": "#/definitions/i18nProperty",
|
|
5894
|
-
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
5895
|
-
},
|
|
5896
|
-
"height": {
|
|
5897
|
-
"maxLength": 10,
|
|
5898
|
-
"type": "string",
|
|
5899
|
-
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
5900
|
-
}
|
|
5901
|
-
},
|
|
5902
|
-
"shortClassName": "dialogOptions",
|
|
5903
|
-
"type": "object",
|
|
5904
|
-
"title": "Dialog Options",
|
|
5905
|
-
"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"
|
|
5906
6625
|
}
|
|
5907
6626
|
]
|
|
5908
6627
|
},
|
|
@@ -5959,33 +6678,6 @@
|
|
|
5959
6678
|
"items": {
|
|
5960
6679
|
"type": "object",
|
|
5961
6680
|
"anyOf": [
|
|
5962
|
-
{
|
|
5963
|
-
"properties": {
|
|
5964
|
-
"condition": {
|
|
5965
|
-
"maxLength": 100,
|
|
5966
|
-
"type": "string",
|
|
5967
|
-
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
5968
|
-
},
|
|
5969
|
-
"invert": {
|
|
5970
|
-
"type": "boolean",
|
|
5971
|
-
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
5972
|
-
"defaultValue": "false"
|
|
5973
|
-
},
|
|
5974
|
-
"params": {
|
|
5975
|
-
"additionalProperties": true,
|
|
5976
|
-
"type": "object",
|
|
5977
|
-
"fieldTitle": "Object",
|
|
5978
|
-
"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"
|
|
5979
|
-
}
|
|
5980
|
-
},
|
|
5981
|
-
"required": [
|
|
5982
|
-
"condition"
|
|
5983
|
-
],
|
|
5984
|
-
"shortClassName": "singleConditionBean",
|
|
5985
|
-
"type": "object",
|
|
5986
|
-
"title": "Single Condition",
|
|
5987
|
-
"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"
|
|
5988
|
-
},
|
|
5989
6681
|
{
|
|
5990
6682
|
"properties": {
|
|
5991
6683
|
"conditions": {
|
|
@@ -6018,6 +6710,33 @@
|
|
|
6018
6710
|
"type": "object",
|
|
6019
6711
|
"title": "Composite Condition",
|
|
6020
6712
|
"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"
|
|
6713
|
+
},
|
|
6714
|
+
{
|
|
6715
|
+
"properties": {
|
|
6716
|
+
"condition": {
|
|
6717
|
+
"maxLength": 100,
|
|
6718
|
+
"type": "string",
|
|
6719
|
+
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
6720
|
+
},
|
|
6721
|
+
"invert": {
|
|
6722
|
+
"type": "boolean",
|
|
6723
|
+
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
6724
|
+
"defaultValue": "false"
|
|
6725
|
+
},
|
|
6726
|
+
"params": {
|
|
6727
|
+
"additionalProperties": true,
|
|
6728
|
+
"type": "object",
|
|
6729
|
+
"fieldTitle": "Object",
|
|
6730
|
+
"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"
|
|
6731
|
+
}
|
|
6732
|
+
},
|
|
6733
|
+
"required": [
|
|
6734
|
+
"condition"
|
|
6735
|
+
],
|
|
6736
|
+
"shortClassName": "singleConditionBean",
|
|
6737
|
+
"type": "object",
|
|
6738
|
+
"title": "Single Condition",
|
|
6739
|
+
"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"
|
|
6021
6740
|
}
|
|
6022
6741
|
]
|
|
6023
6742
|
},
|
|
@@ -6071,10 +6790,10 @@
|
|
|
6071
6790
|
"type": "object",
|
|
6072
6791
|
"anyOf": [
|
|
6073
6792
|
{
|
|
6074
|
-
"$ref": "#/definitions/
|
|
6793
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6075
6794
|
},
|
|
6076
6795
|
{
|
|
6077
|
-
"$ref": "#/definitions/
|
|
6796
|
+
"$ref": "#/definitions/singleCondition"
|
|
6078
6797
|
}
|
|
6079
6798
|
]
|
|
6080
6799
|
},
|
|
@@ -6222,6 +6941,33 @@
|
|
|
6222
6941
|
"items": {
|
|
6223
6942
|
"type": "object",
|
|
6224
6943
|
"anyOf": [
|
|
6944
|
+
{
|
|
6945
|
+
"properties": {
|
|
6946
|
+
"condition": {
|
|
6947
|
+
"maxLength": 100,
|
|
6948
|
+
"type": "string",
|
|
6949
|
+
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
6950
|
+
},
|
|
6951
|
+
"invert": {
|
|
6952
|
+
"type": "boolean",
|
|
6953
|
+
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
6954
|
+
"defaultValue": "false"
|
|
6955
|
+
},
|
|
6956
|
+
"params": {
|
|
6957
|
+
"additionalProperties": true,
|
|
6958
|
+
"type": "object",
|
|
6959
|
+
"fieldTitle": "Object",
|
|
6960
|
+
"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"
|
|
6961
|
+
}
|
|
6962
|
+
},
|
|
6963
|
+
"required": [
|
|
6964
|
+
"condition"
|
|
6965
|
+
],
|
|
6966
|
+
"shortClassName": "singleConditionBean",
|
|
6967
|
+
"type": "object",
|
|
6968
|
+
"title": "Single Condition",
|
|
6969
|
+
"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"
|
|
6970
|
+
},
|
|
6225
6971
|
{
|
|
6226
6972
|
"properties": {
|
|
6227
6973
|
"conditions": {
|
|
@@ -6229,10 +6975,10 @@
|
|
|
6229
6975
|
"type": "object",
|
|
6230
6976
|
"anyOf": [
|
|
6231
6977
|
{
|
|
6232
|
-
"$ref": "
|
|
6978
|
+
"$ref": "#/definitions/singleCondition"
|
|
6233
6979
|
},
|
|
6234
6980
|
{
|
|
6235
|
-
"$ref": "
|
|
6981
|
+
"$ref": "#"
|
|
6236
6982
|
}
|
|
6237
6983
|
]
|
|
6238
6984
|
},
|
|
@@ -6248,39 +6994,12 @@
|
|
|
6248
6994
|
],
|
|
6249
6995
|
"type": "string",
|
|
6250
6996
|
"fieldDescription": "\n\nDefines what logical operator is used to evaluate its collection of condition elements.\n\n"
|
|
6251
|
-
}
|
|
6252
|
-
},
|
|
6253
|
-
"shortClassName": "compositeConditionBean",
|
|
6254
|
-
"type": "object",
|
|
6255
|
-
"title": "Composite Condition",
|
|
6256
|
-
"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"
|
|
6257
|
-
},
|
|
6258
|
-
{
|
|
6259
|
-
"properties": {
|
|
6260
|
-
"condition": {
|
|
6261
|
-
"maxLength": 100,
|
|
6262
|
-
"type": "string",
|
|
6263
|
-
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
6264
|
-
},
|
|
6265
|
-
"invert": {
|
|
6266
|
-
"type": "boolean",
|
|
6267
|
-
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
6268
|
-
"defaultValue": "false"
|
|
6269
|
-
},
|
|
6270
|
-
"params": {
|
|
6271
|
-
"additionalProperties": true,
|
|
6272
|
-
"type": "object",
|
|
6273
|
-
"fieldTitle": "Object",
|
|
6274
|
-
"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"
|
|
6275
|
-
}
|
|
6276
|
-
},
|
|
6277
|
-
"required": [
|
|
6278
|
-
"condition"
|
|
6279
|
-
],
|
|
6280
|
-
"shortClassName": "singleConditionBean",
|
|
6997
|
+
}
|
|
6998
|
+
},
|
|
6999
|
+
"shortClassName": "compositeConditionBean",
|
|
6281
7000
|
"type": "object",
|
|
6282
|
-
"title": "
|
|
6283
|
-
"description": "\n\
|
|
7001
|
+
"title": "Composite Condition",
|
|
7002
|
+
"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"
|
|
6284
7003
|
}
|
|
6285
7004
|
]
|
|
6286
7005
|
},
|
|
@@ -6554,6 +7273,38 @@
|
|
|
6554
7273
|
"items": {
|
|
6555
7274
|
"type": "object",
|
|
6556
7275
|
"anyOf": [
|
|
7276
|
+
{
|
|
7277
|
+
"properties": {
|
|
7278
|
+
"label": {
|
|
7279
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7280
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7281
|
+
},
|
|
7282
|
+
"type": {
|
|
7283
|
+
"enum": [
|
|
7284
|
+
"button",
|
|
7285
|
+
"BUTTON"
|
|
7286
|
+
],
|
|
7287
|
+
"type": "string",
|
|
7288
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7289
|
+
},
|
|
7290
|
+
"key": {
|
|
7291
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7292
|
+
"maxLength": 100,
|
|
7293
|
+
"type": "string",
|
|
7294
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7295
|
+
}
|
|
7296
|
+
},
|
|
7297
|
+
"required": [
|
|
7298
|
+
"label",
|
|
7299
|
+
"type",
|
|
7300
|
+
"key"
|
|
7301
|
+
],
|
|
7302
|
+
"additionalProperties": true,
|
|
7303
|
+
"shortClassName": "buttonControlBean",
|
|
7304
|
+
"type": "object",
|
|
7305
|
+
"title": "ButtonControl",
|
|
7306
|
+
"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"
|
|
7307
|
+
},
|
|
6557
7308
|
{
|
|
6558
7309
|
"properties": {
|
|
6559
7310
|
"controls": {
|
|
@@ -6623,70 +7374,6 @@
|
|
|
6623
7374
|
"title": "ToggleGroup",
|
|
6624
7375
|
"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"
|
|
6625
7376
|
},
|
|
6626
|
-
{
|
|
6627
|
-
"properties": {
|
|
6628
|
-
"macroParameter": {
|
|
6629
|
-
"maxLength": 100,
|
|
6630
|
-
"type": "string",
|
|
6631
|
-
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
6632
|
-
},
|
|
6633
|
-
"type": {
|
|
6634
|
-
"enum": [
|
|
6635
|
-
"text",
|
|
6636
|
-
"TEXT"
|
|
6637
|
-
],
|
|
6638
|
-
"type": "string",
|
|
6639
|
-
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
6640
|
-
},
|
|
6641
|
-
"key": {
|
|
6642
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6643
|
-
"maxLength": 100,
|
|
6644
|
-
"type": "string",
|
|
6645
|
-
"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"
|
|
6646
|
-
}
|
|
6647
|
-
},
|
|
6648
|
-
"required": [
|
|
6649
|
-
"macroParameter",
|
|
6650
|
-
"type",
|
|
6651
|
-
"key"
|
|
6652
|
-
],
|
|
6653
|
-
"shortClassName": "textControlBean",
|
|
6654
|
-
"type": "object",
|
|
6655
|
-
"title": "TextControl",
|
|
6656
|
-
"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"
|
|
6657
|
-
},
|
|
6658
|
-
{
|
|
6659
|
-
"properties": {
|
|
6660
|
-
"label": {
|
|
6661
|
-
"$ref": "#/definitions/i18nProperty",
|
|
6662
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6663
|
-
},
|
|
6664
|
-
"type": {
|
|
6665
|
-
"enum": [
|
|
6666
|
-
"button",
|
|
6667
|
-
"BUTTON"
|
|
6668
|
-
],
|
|
6669
|
-
"type": "string",
|
|
6670
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6671
|
-
},
|
|
6672
|
-
"key": {
|
|
6673
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6674
|
-
"maxLength": 100,
|
|
6675
|
-
"type": "string",
|
|
6676
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6677
|
-
}
|
|
6678
|
-
},
|
|
6679
|
-
"required": [
|
|
6680
|
-
"label",
|
|
6681
|
-
"type",
|
|
6682
|
-
"key"
|
|
6683
|
-
],
|
|
6684
|
-
"additionalProperties": true,
|
|
6685
|
-
"shortClassName": "buttonControlBean",
|
|
6686
|
-
"type": "object",
|
|
6687
|
-
"title": "ButtonControl",
|
|
6688
|
-
"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"
|
|
6689
|
-
},
|
|
6690
7377
|
{
|
|
6691
7378
|
"properties": {
|
|
6692
7379
|
"controls": {
|
|
@@ -6742,6 +7429,38 @@
|
|
|
6742
7429
|
"type": "object",
|
|
6743
7430
|
"title": "ControlGroup",
|
|
6744
7431
|
"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"
|
|
7432
|
+
},
|
|
7433
|
+
{
|
|
7434
|
+
"properties": {
|
|
7435
|
+
"macroParameter": {
|
|
7436
|
+
"maxLength": 100,
|
|
7437
|
+
"type": "string",
|
|
7438
|
+
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
7439
|
+
},
|
|
7440
|
+
"type": {
|
|
7441
|
+
"enum": [
|
|
7442
|
+
"text",
|
|
7443
|
+
"TEXT"
|
|
7444
|
+
],
|
|
7445
|
+
"type": "string",
|
|
7446
|
+
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
7447
|
+
},
|
|
7448
|
+
"key": {
|
|
7449
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7450
|
+
"maxLength": 100,
|
|
7451
|
+
"type": "string",
|
|
7452
|
+
"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"
|
|
7453
|
+
}
|
|
7454
|
+
},
|
|
7455
|
+
"required": [
|
|
7456
|
+
"macroParameter",
|
|
7457
|
+
"type",
|
|
7458
|
+
"key"
|
|
7459
|
+
],
|
|
7460
|
+
"shortClassName": "textControlBean",
|
|
7461
|
+
"type": "object",
|
|
7462
|
+
"title": "TextControl",
|
|
7463
|
+
"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"
|
|
6745
7464
|
}
|
|
6746
7465
|
]
|
|
6747
7466
|
},
|
|
@@ -7036,70 +7755,6 @@
|
|
|
7036
7755
|
"items": {
|
|
7037
7756
|
"type": "object",
|
|
7038
7757
|
"anyOf": [
|
|
7039
|
-
{
|
|
7040
|
-
"properties": {
|
|
7041
|
-
"macroParameter": {
|
|
7042
|
-
"maxLength": 100,
|
|
7043
|
-
"type": "string",
|
|
7044
|
-
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
7045
|
-
},
|
|
7046
|
-
"type": {
|
|
7047
|
-
"enum": [
|
|
7048
|
-
"text",
|
|
7049
|
-
"TEXT"
|
|
7050
|
-
],
|
|
7051
|
-
"type": "string",
|
|
7052
|
-
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
7053
|
-
},
|
|
7054
|
-
"key": {
|
|
7055
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7056
|
-
"maxLength": 100,
|
|
7057
|
-
"type": "string",
|
|
7058
|
-
"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"
|
|
7059
|
-
}
|
|
7060
|
-
},
|
|
7061
|
-
"required": [
|
|
7062
|
-
"macroParameter",
|
|
7063
|
-
"type",
|
|
7064
|
-
"key"
|
|
7065
|
-
],
|
|
7066
|
-
"shortClassName": "textControlBean",
|
|
7067
|
-
"type": "object",
|
|
7068
|
-
"title": "TextControl",
|
|
7069
|
-
"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"
|
|
7070
|
-
},
|
|
7071
|
-
{
|
|
7072
|
-
"properties": {
|
|
7073
|
-
"label": {
|
|
7074
|
-
"$ref": "#/definitions/i18nProperty",
|
|
7075
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7076
|
-
},
|
|
7077
|
-
"type": {
|
|
7078
|
-
"enum": [
|
|
7079
|
-
"button",
|
|
7080
|
-
"BUTTON"
|
|
7081
|
-
],
|
|
7082
|
-
"type": "string",
|
|
7083
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7084
|
-
},
|
|
7085
|
-
"key": {
|
|
7086
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7087
|
-
"maxLength": 100,
|
|
7088
|
-
"type": "string",
|
|
7089
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7090
|
-
}
|
|
7091
|
-
},
|
|
7092
|
-
"required": [
|
|
7093
|
-
"label",
|
|
7094
|
-
"type",
|
|
7095
|
-
"key"
|
|
7096
|
-
],
|
|
7097
|
-
"additionalProperties": true,
|
|
7098
|
-
"shortClassName": "buttonControlBean",
|
|
7099
|
-
"type": "object",
|
|
7100
|
-
"title": "ButtonControl",
|
|
7101
|
-
"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"
|
|
7102
|
-
},
|
|
7103
7758
|
{
|
|
7104
7759
|
"properties": {
|
|
7105
7760
|
"controls": {
|
|
@@ -7169,6 +7824,38 @@
|
|
|
7169
7824
|
"title": "ToggleGroup",
|
|
7170
7825
|
"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"
|
|
7171
7826
|
},
|
|
7827
|
+
{
|
|
7828
|
+
"properties": {
|
|
7829
|
+
"macroParameter": {
|
|
7830
|
+
"maxLength": 100,
|
|
7831
|
+
"type": "string",
|
|
7832
|
+
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
7833
|
+
},
|
|
7834
|
+
"type": {
|
|
7835
|
+
"enum": [
|
|
7836
|
+
"text",
|
|
7837
|
+
"TEXT"
|
|
7838
|
+
],
|
|
7839
|
+
"type": "string",
|
|
7840
|
+
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
7841
|
+
},
|
|
7842
|
+
"key": {
|
|
7843
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7844
|
+
"maxLength": 100,
|
|
7845
|
+
"type": "string",
|
|
7846
|
+
"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"
|
|
7847
|
+
}
|
|
7848
|
+
},
|
|
7849
|
+
"required": [
|
|
7850
|
+
"macroParameter",
|
|
7851
|
+
"type",
|
|
7852
|
+
"key"
|
|
7853
|
+
],
|
|
7854
|
+
"shortClassName": "textControlBean",
|
|
7855
|
+
"type": "object",
|
|
7856
|
+
"title": "TextControl",
|
|
7857
|
+
"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"
|
|
7858
|
+
},
|
|
7172
7859
|
{
|
|
7173
7860
|
"properties": {
|
|
7174
7861
|
"controls": {
|
|
@@ -7213,17 +7900,49 @@
|
|
|
7213
7900
|
"GROUP"
|
|
7214
7901
|
],
|
|
7215
7902
|
"type": "string",
|
|
7216
|
-
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
7903
|
+
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
7904
|
+
}
|
|
7905
|
+
},
|
|
7906
|
+
"required": [
|
|
7907
|
+
"controls",
|
|
7908
|
+
"type"
|
|
7909
|
+
],
|
|
7910
|
+
"shortClassName": "controlGroupBean",
|
|
7911
|
+
"type": "object",
|
|
7912
|
+
"title": "ControlGroup",
|
|
7913
|
+
"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"
|
|
7914
|
+
},
|
|
7915
|
+
{
|
|
7916
|
+
"properties": {
|
|
7917
|
+
"label": {
|
|
7918
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7919
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7920
|
+
},
|
|
7921
|
+
"type": {
|
|
7922
|
+
"enum": [
|
|
7923
|
+
"button",
|
|
7924
|
+
"BUTTON"
|
|
7925
|
+
],
|
|
7926
|
+
"type": "string",
|
|
7927
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7928
|
+
},
|
|
7929
|
+
"key": {
|
|
7930
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7931
|
+
"maxLength": 100,
|
|
7932
|
+
"type": "string",
|
|
7933
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7217
7934
|
}
|
|
7218
7935
|
},
|
|
7219
7936
|
"required": [
|
|
7220
|
-
"
|
|
7221
|
-
"type"
|
|
7937
|
+
"label",
|
|
7938
|
+
"type",
|
|
7939
|
+
"key"
|
|
7222
7940
|
],
|
|
7223
|
-
"
|
|
7941
|
+
"additionalProperties": true,
|
|
7942
|
+
"shortClassName": "buttonControlBean",
|
|
7224
7943
|
"type": "object",
|
|
7225
|
-
"title": "
|
|
7226
|
-
"description": "\n\nDefines a
|
|
7944
|
+
"title": "ButtonControl",
|
|
7945
|
+
"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"
|
|
7227
7946
|
}
|
|
7228
7947
|
]
|
|
7229
7948
|
},
|
|
@@ -7426,10 +8145,10 @@
|
|
|
7426
8145
|
"type": "object",
|
|
7427
8146
|
"anyOf": [
|
|
7428
8147
|
{
|
|
7429
|
-
"$ref": "#/definitions/
|
|
8148
|
+
"$ref": "#/definitions/singleCondition"
|
|
7430
8149
|
},
|
|
7431
8150
|
{
|
|
7432
|
-
"$ref": "#/definitions/
|
|
8151
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7433
8152
|
}
|
|
7434
8153
|
]
|
|
7435
8154
|
},
|
|
@@ -7459,53 +8178,6 @@
|
|
|
7459
8178
|
"type": "object",
|
|
7460
8179
|
"fieldDescription": "\n\n<p>An object containing options which vary based on the type of web item target you are implementing.</p>\n\n <p>Currently-allowed options are:</p>\n <ul>\n <li><a href=\"../inline-dialog-options/\">Inline Dialog Options</a> when type is \"inlinedialog\", and</li>\n <li><a href=\"../dialog-options/\">Dialog Options</a> when type is \"dialog\"</li>\n <li><a href=\"../dialog-module-options/\">Dialog Module Options</a> when type is \"dialogmodule\"</li>\n </ul>\n\n",
|
|
7461
8180
|
"anyOf": [
|
|
7462
|
-
{
|
|
7463
|
-
"properties": {
|
|
7464
|
-
"offsetX": {
|
|
7465
|
-
"maxLength": 10,
|
|
7466
|
-
"type": "string",
|
|
7467
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
7468
|
-
},
|
|
7469
|
-
"offsetY": {
|
|
7470
|
-
"maxLength": 10,
|
|
7471
|
-
"type": "string",
|
|
7472
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
7473
|
-
},
|
|
7474
|
-
"width": {
|
|
7475
|
-
"maxLength": 10,
|
|
7476
|
-
"type": "string",
|
|
7477
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
7478
|
-
},
|
|
7479
|
-
"onTop": {
|
|
7480
|
-
"type": "boolean",
|
|
7481
|
-
"fieldDescription": "\n\nDetermines if the dialog should be shown above the trigger or not. If this option is true but there is insufficient room above the trigger the inline-dialog will be flipped to display below it\n\n"
|
|
7482
|
-
},
|
|
7483
|
-
"showDelay": {
|
|
7484
|
-
"type": "integer",
|
|
7485
|
-
"fieldDescription": "\n\nDetermines how long in milliseconds after a show trigger is fired (such as a trigger click) until the dialog is shown\n\n"
|
|
7486
|
-
},
|
|
7487
|
-
"closeOthers": {
|
|
7488
|
-
"type": "boolean",
|
|
7489
|
-
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
7490
|
-
},
|
|
7491
|
-
"persistent": {
|
|
7492
|
-
"type": "boolean",
|
|
7493
|
-
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
7494
|
-
},
|
|
7495
|
-
"onHover": {
|
|
7496
|
-
"type": "boolean",
|
|
7497
|
-
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
7498
|
-
},
|
|
7499
|
-
"isRelativeToMouse": {
|
|
7500
|
-
"type": "boolean",
|
|
7501
|
-
"fieldDescription": "\n\nDetermines if the dialog should be shown relative to where the mouse is at the time of the event trigger (normally a click) if set to false the dialog will show aligned to the left of the trigger with the arrow showing at the center\n\n"
|
|
7502
|
-
}
|
|
7503
|
-
},
|
|
7504
|
-
"shortClassName": "inlineDialogOptions",
|
|
7505
|
-
"type": "object",
|
|
7506
|
-
"title": "Inline Dialog Options",
|
|
7507
|
-
"description": "\n\nOptions for an inline dialog target\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"inlinedialog\",\n \"options\": {\n \"onHover\": true,\n \"offsetX\": \"30px\",\n \"offsetY\": \"20px\"\n }\n }\n }\n\n\n"
|
|
7508
|
-
},
|
|
7509
8181
|
{
|
|
7510
8182
|
"properties": {
|
|
7511
8183
|
"key": {
|
|
@@ -7566,6 +8238,53 @@
|
|
|
7566
8238
|
"type": "object",
|
|
7567
8239
|
"title": "Dialog Options",
|
|
7568
8240
|
"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"
|
|
8241
|
+
},
|
|
8242
|
+
{
|
|
8243
|
+
"properties": {
|
|
8244
|
+
"offsetX": {
|
|
8245
|
+
"maxLength": 10,
|
|
8246
|
+
"type": "string",
|
|
8247
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
8248
|
+
},
|
|
8249
|
+
"offsetY": {
|
|
8250
|
+
"maxLength": 10,
|
|
8251
|
+
"type": "string",
|
|
8252
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
8253
|
+
},
|
|
8254
|
+
"width": {
|
|
8255
|
+
"maxLength": 10,
|
|
8256
|
+
"type": "string",
|
|
8257
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
8258
|
+
},
|
|
8259
|
+
"onTop": {
|
|
8260
|
+
"type": "boolean",
|
|
8261
|
+
"fieldDescription": "\n\nDetermines if the dialog should be shown above the trigger or not. If this option is true but there is insufficient room above the trigger the inline-dialog will be flipped to display below it\n\n"
|
|
8262
|
+
},
|
|
8263
|
+
"showDelay": {
|
|
8264
|
+
"type": "integer",
|
|
8265
|
+
"fieldDescription": "\n\nDetermines how long in milliseconds after a show trigger is fired (such as a trigger click) until the dialog is shown\n\n"
|
|
8266
|
+
},
|
|
8267
|
+
"closeOthers": {
|
|
8268
|
+
"type": "boolean",
|
|
8269
|
+
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
8270
|
+
},
|
|
8271
|
+
"persistent": {
|
|
8272
|
+
"type": "boolean",
|
|
8273
|
+
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
8274
|
+
},
|
|
8275
|
+
"onHover": {
|
|
8276
|
+
"type": "boolean",
|
|
8277
|
+
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
8278
|
+
},
|
|
8279
|
+
"isRelativeToMouse": {
|
|
8280
|
+
"type": "boolean",
|
|
8281
|
+
"fieldDescription": "\n\nDetermines if the dialog should be shown relative to where the mouse is at the time of the event trigger (normally a click) if set to false the dialog will show aligned to the left of the trigger with the arrow showing at the center\n\n"
|
|
8282
|
+
}
|
|
8283
|
+
},
|
|
8284
|
+
"shortClassName": "inlineDialogOptions",
|
|
8285
|
+
"type": "object",
|
|
8286
|
+
"title": "Inline Dialog Options",
|
|
8287
|
+
"description": "\n\nOptions for an inline dialog target\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"inlinedialog\",\n \"options\": {\n \"onHover\": true,\n \"offsetX\": \"30px\",\n \"offsetY\": \"20px\"\n }\n }\n }\n\n\n"
|
|
7569
8288
|
}
|
|
7570
8289
|
]
|
|
7571
8290
|
},
|
|
@@ -7707,6 +8426,45 @@
|
|
|
7707
8426
|
"title": "ModuleSchema",
|
|
7708
8427
|
"type": "object"
|
|
7709
8428
|
},
|
|
8429
|
+
"BearerMethodSchema": {
|
|
8430
|
+
"oneOf": [
|
|
8431
|
+
{
|
|
8432
|
+
"type": "string",
|
|
8433
|
+
"enum": [
|
|
8434
|
+
"authorization-header",
|
|
8435
|
+
"form-encoded",
|
|
8436
|
+
"uri-query"
|
|
8437
|
+
]
|
|
8438
|
+
},
|
|
8439
|
+
{
|
|
8440
|
+
"type": "object",
|
|
8441
|
+
"additionalProperties": false,
|
|
8442
|
+
"required": [
|
|
8443
|
+
"type"
|
|
8444
|
+
],
|
|
8445
|
+
"properties": {
|
|
8446
|
+
"type": {
|
|
8447
|
+
"type": "string",
|
|
8448
|
+
"enum": [
|
|
8449
|
+
"authorization-header",
|
|
8450
|
+
"form-encoded",
|
|
8451
|
+
"uri-query"
|
|
8452
|
+
]
|
|
8453
|
+
},
|
|
8454
|
+
"prefix": {
|
|
8455
|
+
"type": "string",
|
|
8456
|
+
"description": "Custom authorization header prefix",
|
|
8457
|
+
"maxLength": 1000
|
|
8458
|
+
},
|
|
8459
|
+
"parameter": {
|
|
8460
|
+
"type": "string",
|
|
8461
|
+
"description": "Custom Header name or Parameter name (depending on type)",
|
|
8462
|
+
"maxlength": 1000
|
|
8463
|
+
}
|
|
8464
|
+
}
|
|
8465
|
+
}
|
|
8466
|
+
]
|
|
8467
|
+
},
|
|
7710
8468
|
"ModuleKeySchema": {
|
|
7711
8469
|
"type": "string",
|
|
7712
8470
|
"title": "ModuleKeySchema",
|
|
@@ -7792,8 +8550,27 @@
|
|
|
7792
8550
|
},
|
|
7793
8551
|
"client": {
|
|
7794
8552
|
"items": {
|
|
7795
|
-
"
|
|
7796
|
-
|
|
8553
|
+
"oneOf": [
|
|
8554
|
+
{
|
|
8555
|
+
"type": "string",
|
|
8556
|
+
"maxLength": 1000
|
|
8557
|
+
},
|
|
8558
|
+
{
|
|
8559
|
+
"type": "object",
|
|
8560
|
+
"description": "References a Remote",
|
|
8561
|
+
"title": "remote",
|
|
8562
|
+
"properties": {
|
|
8563
|
+
"remote": {
|
|
8564
|
+
"type": "string",
|
|
8565
|
+
"maxLength": 1000
|
|
8566
|
+
}
|
|
8567
|
+
},
|
|
8568
|
+
"required": [
|
|
8569
|
+
"remote"
|
|
8570
|
+
],
|
|
8571
|
+
"additionalProperties": false
|
|
8572
|
+
}
|
|
8573
|
+
]
|
|
7797
8574
|
},
|
|
7798
8575
|
"title": "client",
|
|
7799
8576
|
"type": "array",
|
|
@@ -7958,8 +8735,10 @@
|
|
|
7958
8735
|
"required": [
|
|
7959
8736
|
"key",
|
|
7960
8737
|
"name",
|
|
8738
|
+
"bearerMethod",
|
|
7961
8739
|
"integration",
|
|
7962
|
-
"clientId"
|
|
8740
|
+
"clientId",
|
|
8741
|
+
"remotes"
|
|
7963
8742
|
],
|
|
7964
8743
|
"properties": {
|
|
7965
8744
|
"key": {
|
|
@@ -7978,7 +8757,11 @@
|
|
|
7978
8757
|
"dropbox",
|
|
7979
8758
|
"google",
|
|
7980
8759
|
"miro"
|
|
7981
|
-
]
|
|
8760
|
+
],
|
|
8761
|
+
"description": "Pre-defined integration name"
|
|
8762
|
+
},
|
|
8763
|
+
"bearerMethod": {
|
|
8764
|
+
"$ref": "#/definitions/BearerMethodSchema"
|
|
7982
8765
|
},
|
|
7983
8766
|
"clientId": {
|
|
7984
8767
|
"type": "string",
|
|
@@ -7990,6 +8773,12 @@
|
|
|
7990
8773
|
"items": {
|
|
7991
8774
|
"type": "string"
|
|
7992
8775
|
}
|
|
8776
|
+
},
|
|
8777
|
+
"remotes": {
|
|
8778
|
+
"type": "array",
|
|
8779
|
+
"items": {
|
|
8780
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
8781
|
+
}
|
|
7993
8782
|
}
|
|
7994
8783
|
}
|
|
7995
8784
|
},
|
|
@@ -8001,7 +8790,9 @@
|
|
|
8001
8790
|
"type",
|
|
8002
8791
|
"name",
|
|
8003
8792
|
"clientId",
|
|
8004
|
-
"actions"
|
|
8793
|
+
"actions",
|
|
8794
|
+
"bearerMethod",
|
|
8795
|
+
"remotes"
|
|
8005
8796
|
],
|
|
8006
8797
|
"properties": {
|
|
8007
8798
|
"key": {
|
|
@@ -8019,43 +8810,7 @@
|
|
|
8019
8810
|
]
|
|
8020
8811
|
},
|
|
8021
8812
|
"bearerMethod": {
|
|
8022
|
-
"
|
|
8023
|
-
{
|
|
8024
|
-
"type": "string",
|
|
8025
|
-
"enum": [
|
|
8026
|
-
"authorization-header",
|
|
8027
|
-
"form-encoded",
|
|
8028
|
-
"uri-query"
|
|
8029
|
-
]
|
|
8030
|
-
},
|
|
8031
|
-
{
|
|
8032
|
-
"type": "object",
|
|
8033
|
-
"additionalProperties": false,
|
|
8034
|
-
"required": [
|
|
8035
|
-
"type"
|
|
8036
|
-
],
|
|
8037
|
-
"properties": {
|
|
8038
|
-
"type": {
|
|
8039
|
-
"type": "string",
|
|
8040
|
-
"enum": [
|
|
8041
|
-
"authorization-header",
|
|
8042
|
-
"form-encoded",
|
|
8043
|
-
"uri-query"
|
|
8044
|
-
]
|
|
8045
|
-
},
|
|
8046
|
-
"prefix": {
|
|
8047
|
-
"type": "string",
|
|
8048
|
-
"description": "Custom authorization header prefix",
|
|
8049
|
-
"maxLength": 1000
|
|
8050
|
-
},
|
|
8051
|
-
"parameter": {
|
|
8052
|
-
"type": "string",
|
|
8053
|
-
"description": "Custom Header name or Parameter name (depending on type)",
|
|
8054
|
-
"maxlength": 1000
|
|
8055
|
-
}
|
|
8056
|
-
}
|
|
8057
|
-
}
|
|
8058
|
-
]
|
|
8813
|
+
"$ref": "#/definitions/BearerMethodSchema"
|
|
8059
8814
|
},
|
|
8060
8815
|
"clientId": {
|
|
8061
8816
|
"type": "string",
|
|
@@ -8821,33 +9576,6 @@
|
|
|
8821
9576
|
"title": "Icon",
|
|
8822
9577
|
"description": "\n\nDefines an icon to display.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"icon\": {\n \"width\": 16,\n \"height\": 16,\n \"url\": \"/my-icon.png\"\n }\n }\n\n\n"
|
|
8823
9578
|
},
|
|
8824
|
-
"singleCondition": {
|
|
8825
|
-
"properties": {
|
|
8826
|
-
"condition": {
|
|
8827
|
-
"maxLength": 100,
|
|
8828
|
-
"type": "string",
|
|
8829
|
-
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
8830
|
-
},
|
|
8831
|
-
"invert": {
|
|
8832
|
-
"type": "boolean",
|
|
8833
|
-
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
8834
|
-
"defaultValue": "false"
|
|
8835
|
-
},
|
|
8836
|
-
"params": {
|
|
8837
|
-
"additionalProperties": true,
|
|
8838
|
-
"type": "object",
|
|
8839
|
-
"fieldTitle": "Object",
|
|
8840
|
-
"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"
|
|
8841
|
-
}
|
|
8842
|
-
},
|
|
8843
|
-
"required": [
|
|
8844
|
-
"condition"
|
|
8845
|
-
],
|
|
8846
|
-
"shortClassName": "singleConditionBean",
|
|
8847
|
-
"type": "object",
|
|
8848
|
-
"title": "Single Condition",
|
|
8849
|
-
"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"
|
|
8850
|
-
},
|
|
8851
9579
|
"compositeCondition": {
|
|
8852
9580
|
"properties": {
|
|
8853
9581
|
"conditions": {
|
|
@@ -8855,10 +9583,10 @@
|
|
|
8855
9583
|
"type": "object",
|
|
8856
9584
|
"anyOf": [
|
|
8857
9585
|
{
|
|
8858
|
-
"$ref": "
|
|
9586
|
+
"$ref": "#/definitions/singleCondition"
|
|
8859
9587
|
},
|
|
8860
9588
|
{
|
|
8861
|
-
"$ref": "
|
|
9589
|
+
"$ref": "#"
|
|
8862
9590
|
}
|
|
8863
9591
|
]
|
|
8864
9592
|
},
|
|
@@ -8881,6 +9609,33 @@
|
|
|
8881
9609
|
"title": "Composite Condition",
|
|
8882
9610
|
"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"
|
|
8883
9611
|
},
|
|
9612
|
+
"singleCondition": {
|
|
9613
|
+
"properties": {
|
|
9614
|
+
"condition": {
|
|
9615
|
+
"maxLength": 100,
|
|
9616
|
+
"type": "string",
|
|
9617
|
+
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
9618
|
+
},
|
|
9619
|
+
"invert": {
|
|
9620
|
+
"type": "boolean",
|
|
9621
|
+
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
9622
|
+
"defaultValue": "false"
|
|
9623
|
+
},
|
|
9624
|
+
"params": {
|
|
9625
|
+
"additionalProperties": true,
|
|
9626
|
+
"type": "object",
|
|
9627
|
+
"fieldTitle": "Object",
|
|
9628
|
+
"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"
|
|
9629
|
+
}
|
|
9630
|
+
},
|
|
9631
|
+
"required": [
|
|
9632
|
+
"condition"
|
|
9633
|
+
],
|
|
9634
|
+
"shortClassName": "singleConditionBean",
|
|
9635
|
+
"type": "object",
|
|
9636
|
+
"title": "Single Condition",
|
|
9637
|
+
"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"
|
|
9638
|
+
},
|
|
8884
9639
|
"webPanelLayout": {
|
|
8885
9640
|
"properties": {
|
|
8886
9641
|
"width": {
|