@forge/manifest 12.7.0-next.0 → 12.7.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 +18 -0
- package/out/schema/manifest-schema.json +464 -25
- package/out/schema/manifest.d.ts +210 -14
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 12.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 56e38e9: Added support for new v2 url format and validation
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- a99c9f1: Add customerServiceManagement:queuePage and customerServiceManagement:requestDetail to AllModuleTypes enum, add corresponding CLI templates (UI Kit + Custom UI) for both module types, and register Customer Service Management as a product context in forge create (shown as "Customer Service Management (EAP)").
|
|
12
|
+
- 22613fc: Update manifest definitions
|
|
13
|
+
- aed9912: Update manifest definitions
|
|
14
|
+
|
|
15
|
+
## 12.7.0-next.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 22613fc: Update manifest definitions
|
|
20
|
+
|
|
3
21
|
## 12.7.0-next.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
3
|
"definitions": {
|
|
4
|
-
"WebTriggerUrlFormatSchema": {
|
|
5
|
-
"type": "string",
|
|
6
|
-
"enum": ["v1", "v2"],
|
|
7
|
-
"description": "The URL format to use for this webtrigger. 'v1' uses the legacy app-based URL format, 'v2' uses the new installation-based URL format with a unique domain per installation."
|
|
8
|
-
},
|
|
9
4
|
"AppSchema": {
|
|
10
5
|
"additionalProperties": false,
|
|
11
6
|
"properties": {
|
|
@@ -490,28 +485,28 @@
|
|
|
490
485
|
"items": {
|
|
491
486
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
492
487
|
"additionalProperties": true,
|
|
493
|
-
"properties": {
|
|
494
|
-
"urlFormat": {
|
|
495
|
-
"$ref": "#/definitions/WebTriggerUrlFormatSchema"
|
|
496
|
-
}
|
|
497
|
-
},
|
|
498
488
|
"oneOf": [
|
|
499
489
|
{
|
|
500
490
|
"properties": {
|
|
501
|
-
"urlFormat": {
|
|
502
|
-
"$ref": "#/definitions/WebTriggerUrlFormatSchema"
|
|
503
|
-
},
|
|
504
491
|
"function": {
|
|
505
492
|
"$ref": "#/definitions/ExtensionKey",
|
|
506
493
|
"description": "The key of the function that should be invoked for this webtrigger.",
|
|
507
494
|
"title": "function",
|
|
508
495
|
"type": "string"
|
|
509
496
|
},
|
|
497
|
+
"request": {
|
|
498
|
+
"$ref": "#/definitions/RequestOptions",
|
|
499
|
+
"description": "Request options for the webtrigger module.",
|
|
500
|
+
"title": "request"
|
|
501
|
+
},
|
|
510
502
|
"response": {
|
|
511
503
|
"$ref": "#/definitions/ResponseOptions",
|
|
512
504
|
"description": "Response options for the webtrigger module.",
|
|
513
505
|
"title": "response"
|
|
514
506
|
},
|
|
507
|
+
"urlFormat": {
|
|
508
|
+
"$ref": "#/definitions/UrlFormat"
|
|
509
|
+
},
|
|
515
510
|
"key": {
|
|
516
511
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
517
512
|
}
|
|
@@ -528,16 +523,20 @@
|
|
|
528
523
|
},
|
|
529
524
|
{
|
|
530
525
|
"properties": {
|
|
531
|
-
"urlFormat": {
|
|
532
|
-
"$ref": "#/definitions/WebTriggerUrlFormatSchema"
|
|
533
|
-
},
|
|
534
526
|
"endpoint": {
|
|
535
527
|
"$ref": "#/definitions/ExtensionKey",
|
|
536
528
|
"description": "The key of the service that should be invoked for this webtrigger."
|
|
537
529
|
},
|
|
530
|
+
"request": {
|
|
531
|
+
"$ref": "#/definitions/RequestOptions",
|
|
532
|
+
"description": "Request options for the webtrigger module."
|
|
533
|
+
},
|
|
538
534
|
"response": {
|
|
539
535
|
"$ref": "#/definitions/ResponseOptions"
|
|
540
536
|
},
|
|
537
|
+
"urlFormat": {
|
|
538
|
+
"$ref": "#/definitions/UrlFormat"
|
|
539
|
+
},
|
|
541
540
|
"key": {
|
|
542
541
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
543
542
|
}
|
|
@@ -7138,7 +7137,8 @@
|
|
|
7138
7137
|
"enum": [
|
|
7139
7138
|
"MULTI_SELECT",
|
|
7140
7139
|
"SINGLE_SELECT",
|
|
7141
|
-
"TEXT"
|
|
7140
|
+
"TEXT",
|
|
7141
|
+
"RICH_TEXT"
|
|
7142
7142
|
],
|
|
7143
7143
|
"type": "string"
|
|
7144
7144
|
}
|
|
@@ -7641,7 +7641,8 @@
|
|
|
7641
7641
|
"enum": [
|
|
7642
7642
|
"MULTI_SELECT",
|
|
7643
7643
|
"SINGLE_SELECT",
|
|
7644
|
-
"TEXT"
|
|
7644
|
+
"TEXT",
|
|
7645
|
+
"RICH_TEXT"
|
|
7645
7646
|
],
|
|
7646
7647
|
"type": "string"
|
|
7647
7648
|
}
|
|
@@ -8091,7 +8092,8 @@
|
|
|
8091
8092
|
"enum": [
|
|
8092
8093
|
"MULTI_SELECT",
|
|
8093
8094
|
"SINGLE_SELECT",
|
|
8094
|
-
"TEXT"
|
|
8095
|
+
"TEXT",
|
|
8096
|
+
"RICH_TEXT"
|
|
8095
8097
|
],
|
|
8096
8098
|
"type": "string"
|
|
8097
8099
|
}
|
|
@@ -10151,12 +10153,7 @@
|
|
|
10151
10153
|
"resource",
|
|
10152
10154
|
"title",
|
|
10153
10155
|
"key"
|
|
10154
|
-
]
|
|
10155
|
-
"not": {
|
|
10156
|
-
"required": [
|
|
10157
|
-
"unlicensedAccess"
|
|
10158
|
-
]
|
|
10159
|
-
}
|
|
10156
|
+
]
|
|
10160
10157
|
},
|
|
10161
10158
|
"minItems": 1
|
|
10162
10159
|
},
|
|
@@ -20014,6 +20011,423 @@
|
|
|
20014
20011
|
},
|
|
20015
20012
|
"minItems": 1
|
|
20016
20013
|
},
|
|
20014
|
+
"customerServiceManagement:queuePage": {
|
|
20015
|
+
"type": "array",
|
|
20016
|
+
"items": {
|
|
20017
|
+
"oneOf": [
|
|
20018
|
+
{
|
|
20019
|
+
"type": "object",
|
|
20020
|
+
"required": [
|
|
20021
|
+
"title",
|
|
20022
|
+
"function",
|
|
20023
|
+
"key"
|
|
20024
|
+
],
|
|
20025
|
+
"properties": {
|
|
20026
|
+
"title": {
|
|
20027
|
+
"oneOf": [
|
|
20028
|
+
{
|
|
20029
|
+
"type": "object",
|
|
20030
|
+
"additionalProperties": false,
|
|
20031
|
+
"properties": {
|
|
20032
|
+
"i18n": {
|
|
20033
|
+
"type": "string",
|
|
20034
|
+
"minLength": 1,
|
|
20035
|
+
"maxLength": 300,
|
|
20036
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
20037
|
+
}
|
|
20038
|
+
},
|
|
20039
|
+
"required": [
|
|
20040
|
+
"i18n"
|
|
20041
|
+
]
|
|
20042
|
+
},
|
|
20043
|
+
{
|
|
20044
|
+
"type": "string",
|
|
20045
|
+
"minLength": 1,
|
|
20046
|
+
"maxLength": 255
|
|
20047
|
+
}
|
|
20048
|
+
]
|
|
20049
|
+
},
|
|
20050
|
+
"title__i18n": {
|
|
20051
|
+
"type": "string",
|
|
20052
|
+
"minLength": 1,
|
|
20053
|
+
"maxLength": 300,
|
|
20054
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
20055
|
+
},
|
|
20056
|
+
"icon": {
|
|
20057
|
+
"type": "string",
|
|
20058
|
+
"minLength": 1,
|
|
20059
|
+
"maxLength": 255
|
|
20060
|
+
},
|
|
20061
|
+
"layout": {
|
|
20062
|
+
"type": "string",
|
|
20063
|
+
"minLength": 1,
|
|
20064
|
+
"maxLength": 255,
|
|
20065
|
+
"enum": [
|
|
20066
|
+
"native",
|
|
20067
|
+
"basic"
|
|
20068
|
+
]
|
|
20069
|
+
},
|
|
20070
|
+
"function": {
|
|
20071
|
+
"type": "string",
|
|
20072
|
+
"minLength": 1,
|
|
20073
|
+
"maxLength": 255,
|
|
20074
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
20075
|
+
},
|
|
20076
|
+
"key": {
|
|
20077
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
20078
|
+
}
|
|
20079
|
+
},
|
|
20080
|
+
"not": {
|
|
20081
|
+
"required": [
|
|
20082
|
+
"unlicensedAccess"
|
|
20083
|
+
]
|
|
20084
|
+
}
|
|
20085
|
+
},
|
|
20086
|
+
{
|
|
20087
|
+
"type": "object",
|
|
20088
|
+
"required": [
|
|
20089
|
+
"title",
|
|
20090
|
+
"resource",
|
|
20091
|
+
"key"
|
|
20092
|
+
],
|
|
20093
|
+
"properties": {
|
|
20094
|
+
"title": {
|
|
20095
|
+
"oneOf": [
|
|
20096
|
+
{
|
|
20097
|
+
"type": "object",
|
|
20098
|
+
"additionalProperties": false,
|
|
20099
|
+
"properties": {
|
|
20100
|
+
"i18n": {
|
|
20101
|
+
"type": "string",
|
|
20102
|
+
"minLength": 1,
|
|
20103
|
+
"maxLength": 300,
|
|
20104
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
20105
|
+
}
|
|
20106
|
+
},
|
|
20107
|
+
"required": [
|
|
20108
|
+
"i18n"
|
|
20109
|
+
]
|
|
20110
|
+
},
|
|
20111
|
+
{
|
|
20112
|
+
"type": "string",
|
|
20113
|
+
"minLength": 1,
|
|
20114
|
+
"maxLength": 255
|
|
20115
|
+
}
|
|
20116
|
+
]
|
|
20117
|
+
},
|
|
20118
|
+
"title__i18n": {
|
|
20119
|
+
"type": "string",
|
|
20120
|
+
"minLength": 1,
|
|
20121
|
+
"maxLength": 300,
|
|
20122
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
20123
|
+
},
|
|
20124
|
+
"icon": {
|
|
20125
|
+
"type": "string",
|
|
20126
|
+
"minLength": 1,
|
|
20127
|
+
"maxLength": 255
|
|
20128
|
+
},
|
|
20129
|
+
"layout": {
|
|
20130
|
+
"type": "string",
|
|
20131
|
+
"minLength": 1,
|
|
20132
|
+
"maxLength": 255,
|
|
20133
|
+
"enum": [
|
|
20134
|
+
"native",
|
|
20135
|
+
"basic",
|
|
20136
|
+
"blank"
|
|
20137
|
+
]
|
|
20138
|
+
},
|
|
20139
|
+
"resolver": {
|
|
20140
|
+
"anyOf": [
|
|
20141
|
+
{
|
|
20142
|
+
"additionalProperties": false,
|
|
20143
|
+
"type": "object",
|
|
20144
|
+
"properties": {
|
|
20145
|
+
"function": {
|
|
20146
|
+
"type": "string",
|
|
20147
|
+
"minLength": 1,
|
|
20148
|
+
"maxLength": 255,
|
|
20149
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
20150
|
+
}
|
|
20151
|
+
},
|
|
20152
|
+
"required": [
|
|
20153
|
+
"function"
|
|
20154
|
+
]
|
|
20155
|
+
},
|
|
20156
|
+
{
|
|
20157
|
+
"additionalProperties": false,
|
|
20158
|
+
"type": "object",
|
|
20159
|
+
"properties": {
|
|
20160
|
+
"endpoint": {
|
|
20161
|
+
"type": "string",
|
|
20162
|
+
"minLength": 1,
|
|
20163
|
+
"maxLength": 255,
|
|
20164
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
20165
|
+
}
|
|
20166
|
+
},
|
|
20167
|
+
"required": [
|
|
20168
|
+
"endpoint"
|
|
20169
|
+
]
|
|
20170
|
+
}
|
|
20171
|
+
]
|
|
20172
|
+
},
|
|
20173
|
+
"resource": {
|
|
20174
|
+
"type": "string",
|
|
20175
|
+
"minLength": 1,
|
|
20176
|
+
"maxLength": 23,
|
|
20177
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
20178
|
+
},
|
|
20179
|
+
"resourceUploadId": {
|
|
20180
|
+
"type": "string",
|
|
20181
|
+
"minLength": 1,
|
|
20182
|
+
"maxLength": 255
|
|
20183
|
+
},
|
|
20184
|
+
"render": {
|
|
20185
|
+
"enum": [
|
|
20186
|
+
"native",
|
|
20187
|
+
"default"
|
|
20188
|
+
],
|
|
20189
|
+
"type": "string",
|
|
20190
|
+
"default": "default"
|
|
20191
|
+
},
|
|
20192
|
+
"renderRuntimeType": {
|
|
20193
|
+
"enum": [
|
|
20194
|
+
"webworker",
|
|
20195
|
+
"iframe"
|
|
20196
|
+
],
|
|
20197
|
+
"type": "string",
|
|
20198
|
+
"default": "iframe"
|
|
20199
|
+
},
|
|
20200
|
+
"key": {
|
|
20201
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
20202
|
+
}
|
|
20203
|
+
},
|
|
20204
|
+
"not": {
|
|
20205
|
+
"required": [
|
|
20206
|
+
"unlicensedAccess"
|
|
20207
|
+
]
|
|
20208
|
+
}
|
|
20209
|
+
}
|
|
20210
|
+
]
|
|
20211
|
+
},
|
|
20212
|
+
"minItems": 1
|
|
20213
|
+
},
|
|
20214
|
+
"customerServiceManagement:requestDetail": {
|
|
20215
|
+
"type": "array",
|
|
20216
|
+
"items": {
|
|
20217
|
+
"oneOf": [
|
|
20218
|
+
{
|
|
20219
|
+
"type": "object",
|
|
20220
|
+
"required": [
|
|
20221
|
+
"title",
|
|
20222
|
+
"function",
|
|
20223
|
+
"key"
|
|
20224
|
+
],
|
|
20225
|
+
"properties": {
|
|
20226
|
+
"title": {
|
|
20227
|
+
"oneOf": [
|
|
20228
|
+
{
|
|
20229
|
+
"type": "object",
|
|
20230
|
+
"additionalProperties": false,
|
|
20231
|
+
"properties": {
|
|
20232
|
+
"i18n": {
|
|
20233
|
+
"type": "string",
|
|
20234
|
+
"minLength": 1,
|
|
20235
|
+
"maxLength": 300,
|
|
20236
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
20237
|
+
}
|
|
20238
|
+
},
|
|
20239
|
+
"required": [
|
|
20240
|
+
"i18n"
|
|
20241
|
+
]
|
|
20242
|
+
},
|
|
20243
|
+
{
|
|
20244
|
+
"type": "string",
|
|
20245
|
+
"minLength": 1,
|
|
20246
|
+
"maxLength": 255
|
|
20247
|
+
}
|
|
20248
|
+
]
|
|
20249
|
+
},
|
|
20250
|
+
"title__i18n": {
|
|
20251
|
+
"type": "string",
|
|
20252
|
+
"minLength": 1,
|
|
20253
|
+
"maxLength": 300,
|
|
20254
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
20255
|
+
},
|
|
20256
|
+
"icon": {
|
|
20257
|
+
"type": "string",
|
|
20258
|
+
"minLength": 1,
|
|
20259
|
+
"maxLength": 255
|
|
20260
|
+
},
|
|
20261
|
+
"layout": {
|
|
20262
|
+
"type": "string",
|
|
20263
|
+
"minLength": 1,
|
|
20264
|
+
"maxLength": 255,
|
|
20265
|
+
"enum": [
|
|
20266
|
+
"native",
|
|
20267
|
+
"basic"
|
|
20268
|
+
]
|
|
20269
|
+
},
|
|
20270
|
+
"viewportSize": {
|
|
20271
|
+
"type": "string",
|
|
20272
|
+
"minLength": 1,
|
|
20273
|
+
"maxLength": 255,
|
|
20274
|
+
"enum": [
|
|
20275
|
+
"small",
|
|
20276
|
+
"medium",
|
|
20277
|
+
"large",
|
|
20278
|
+
"xlarge"
|
|
20279
|
+
]
|
|
20280
|
+
},
|
|
20281
|
+
"function": {
|
|
20282
|
+
"type": "string",
|
|
20283
|
+
"minLength": 1,
|
|
20284
|
+
"maxLength": 255,
|
|
20285
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
20286
|
+
},
|
|
20287
|
+
"displayConditions": {
|
|
20288
|
+
"type": "object"
|
|
20289
|
+
},
|
|
20290
|
+
"key": {
|
|
20291
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
20292
|
+
}
|
|
20293
|
+
}
|
|
20294
|
+
},
|
|
20295
|
+
{
|
|
20296
|
+
"type": "object",
|
|
20297
|
+
"required": [
|
|
20298
|
+
"title",
|
|
20299
|
+
"resource",
|
|
20300
|
+
"key"
|
|
20301
|
+
],
|
|
20302
|
+
"properties": {
|
|
20303
|
+
"title": {
|
|
20304
|
+
"oneOf": [
|
|
20305
|
+
{
|
|
20306
|
+
"type": "object",
|
|
20307
|
+
"additionalProperties": false,
|
|
20308
|
+
"properties": {
|
|
20309
|
+
"i18n": {
|
|
20310
|
+
"type": "string",
|
|
20311
|
+
"minLength": 1,
|
|
20312
|
+
"maxLength": 300,
|
|
20313
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
20314
|
+
}
|
|
20315
|
+
},
|
|
20316
|
+
"required": [
|
|
20317
|
+
"i18n"
|
|
20318
|
+
]
|
|
20319
|
+
},
|
|
20320
|
+
{
|
|
20321
|
+
"type": "string",
|
|
20322
|
+
"minLength": 1,
|
|
20323
|
+
"maxLength": 255
|
|
20324
|
+
}
|
|
20325
|
+
]
|
|
20326
|
+
},
|
|
20327
|
+
"title__i18n": {
|
|
20328
|
+
"type": "string",
|
|
20329
|
+
"minLength": 1,
|
|
20330
|
+
"maxLength": 300,
|
|
20331
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
20332
|
+
},
|
|
20333
|
+
"icon": {
|
|
20334
|
+
"type": "string",
|
|
20335
|
+
"minLength": 1,
|
|
20336
|
+
"maxLength": 255
|
|
20337
|
+
},
|
|
20338
|
+
"layout": {
|
|
20339
|
+
"type": "string",
|
|
20340
|
+
"minLength": 1,
|
|
20341
|
+
"maxLength": 255,
|
|
20342
|
+
"enum": [
|
|
20343
|
+
"native",
|
|
20344
|
+
"basic"
|
|
20345
|
+
]
|
|
20346
|
+
},
|
|
20347
|
+
"viewportSize": {
|
|
20348
|
+
"type": "string",
|
|
20349
|
+
"minLength": 1,
|
|
20350
|
+
"maxLength": 255,
|
|
20351
|
+
"enum": [
|
|
20352
|
+
"small",
|
|
20353
|
+
"medium",
|
|
20354
|
+
"large",
|
|
20355
|
+
"xlarge"
|
|
20356
|
+
]
|
|
20357
|
+
},
|
|
20358
|
+
"resolver": {
|
|
20359
|
+
"anyOf": [
|
|
20360
|
+
{
|
|
20361
|
+
"additionalProperties": false,
|
|
20362
|
+
"type": "object",
|
|
20363
|
+
"properties": {
|
|
20364
|
+
"function": {
|
|
20365
|
+
"type": "string",
|
|
20366
|
+
"minLength": 1,
|
|
20367
|
+
"maxLength": 255,
|
|
20368
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
20369
|
+
}
|
|
20370
|
+
},
|
|
20371
|
+
"required": [
|
|
20372
|
+
"function"
|
|
20373
|
+
]
|
|
20374
|
+
},
|
|
20375
|
+
{
|
|
20376
|
+
"additionalProperties": false,
|
|
20377
|
+
"type": "object",
|
|
20378
|
+
"properties": {
|
|
20379
|
+
"endpoint": {
|
|
20380
|
+
"type": "string",
|
|
20381
|
+
"minLength": 1,
|
|
20382
|
+
"maxLength": 255,
|
|
20383
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
20384
|
+
}
|
|
20385
|
+
},
|
|
20386
|
+
"required": [
|
|
20387
|
+
"endpoint"
|
|
20388
|
+
]
|
|
20389
|
+
}
|
|
20390
|
+
]
|
|
20391
|
+
},
|
|
20392
|
+
"resource": {
|
|
20393
|
+
"type": "string",
|
|
20394
|
+
"minLength": 1,
|
|
20395
|
+
"maxLength": 23,
|
|
20396
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
20397
|
+
},
|
|
20398
|
+
"resourceUploadId": {
|
|
20399
|
+
"type": "string",
|
|
20400
|
+
"minLength": 1,
|
|
20401
|
+
"maxLength": 255
|
|
20402
|
+
},
|
|
20403
|
+
"render": {
|
|
20404
|
+
"enum": [
|
|
20405
|
+
"native",
|
|
20406
|
+
"default"
|
|
20407
|
+
],
|
|
20408
|
+
"type": "string",
|
|
20409
|
+
"default": "default"
|
|
20410
|
+
},
|
|
20411
|
+
"renderRuntimeType": {
|
|
20412
|
+
"enum": [
|
|
20413
|
+
"webworker",
|
|
20414
|
+
"iframe"
|
|
20415
|
+
],
|
|
20416
|
+
"type": "string",
|
|
20417
|
+
"default": "iframe"
|
|
20418
|
+
},
|
|
20419
|
+
"displayConditions": {
|
|
20420
|
+
"type": "object"
|
|
20421
|
+
},
|
|
20422
|
+
"key": {
|
|
20423
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
20424
|
+
}
|
|
20425
|
+
}
|
|
20426
|
+
}
|
|
20427
|
+
]
|
|
20428
|
+
},
|
|
20429
|
+
"minItems": 1
|
|
20430
|
+
},
|
|
20017
20431
|
"bitbucket:repoPullRequestCard": {
|
|
20018
20432
|
"type": "array",
|
|
20019
20433
|
"items": {
|
|
@@ -32341,6 +32755,31 @@
|
|
|
32341
32755
|
]
|
|
32342
32756
|
}
|
|
32343
32757
|
},
|
|
32758
|
+
"UrlFormat": {
|
|
32759
|
+
"description": "The URL format to use for this webtrigger.",
|
|
32760
|
+
"type": "string",
|
|
32761
|
+
"enum": [
|
|
32762
|
+
"v1",
|
|
32763
|
+
"v2"
|
|
32764
|
+
]
|
|
32765
|
+
},
|
|
32766
|
+
"Authentication": {
|
|
32767
|
+
"description": "The authentication method to use for this webtrigger request.",
|
|
32768
|
+
"type": "string",
|
|
32769
|
+
"enum": [
|
|
32770
|
+
"hmac",
|
|
32771
|
+
"none"
|
|
32772
|
+
]
|
|
32773
|
+
},
|
|
32774
|
+
"RequestOptions": {
|
|
32775
|
+
"additionalProperties": false,
|
|
32776
|
+
"properties": {
|
|
32777
|
+
"authentication": {
|
|
32778
|
+
"$ref": "#/definitions/Authentication"
|
|
32779
|
+
}
|
|
32780
|
+
},
|
|
32781
|
+
"type": "object"
|
|
32782
|
+
},
|
|
32344
32783
|
"ResponseOptions": {
|
|
32345
32784
|
"additionalProperties": false,
|
|
32346
32785
|
"properties": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -108,20 +108,24 @@ export type Filter2 =
|
|
|
108
108
|
| {
|
|
109
109
|
[k: string]: unknown;
|
|
110
110
|
};
|
|
111
|
-
/**
|
|
112
|
-
* The URL format to use for this webtrigger. 'v1' uses the legacy app-based URL format, 'v2' uses the new installation-based URL format with a unique domain per installation.
|
|
113
|
-
*/
|
|
114
|
-
export type WebTriggerUrlFormatSchema = 'v1' | 'v2';
|
|
115
111
|
/**
|
|
116
112
|
* The key of the function that should be invoked for this webtrigger.
|
|
117
113
|
*/
|
|
118
114
|
export type Function1 = string;
|
|
115
|
+
/**
|
|
116
|
+
* The authentication method to use for this webtrigger request.
|
|
117
|
+
*/
|
|
118
|
+
export type Authentication = 'hmac' | 'none';
|
|
119
119
|
/**
|
|
120
120
|
* Response options for the webtrigger module.
|
|
121
121
|
*/
|
|
122
122
|
export type Response = {
|
|
123
123
|
[k: string]: unknown;
|
|
124
124
|
};
|
|
125
|
+
/**
|
|
126
|
+
* The URL format to use for this webtrigger.
|
|
127
|
+
*/
|
|
128
|
+
export type UrlFormat = 'v1' | 'v2';
|
|
125
129
|
/**
|
|
126
130
|
* The key of the service that should be invoked for this webtrigger.
|
|
127
131
|
*/
|
|
@@ -1052,32 +1056,46 @@ export interface Modules {
|
|
|
1052
1056
|
webtrigger?: [
|
|
1053
1057
|
(
|
|
1054
1058
|
| {
|
|
1055
|
-
urlFormat?: WebTriggerUrlFormatSchema;
|
|
1056
1059
|
function: Function1;
|
|
1060
|
+
request?: Request;
|
|
1057
1061
|
response?: Response;
|
|
1062
|
+
urlFormat?: UrlFormat;
|
|
1058
1063
|
key: ModuleKeySchema;
|
|
1059
1064
|
[k: string]: unknown;
|
|
1060
1065
|
}
|
|
1061
1066
|
| {
|
|
1062
|
-
urlFormat?: WebTriggerUrlFormatSchema;
|
|
1063
1067
|
endpoint: ExtensionKey;
|
|
1068
|
+
/**
|
|
1069
|
+
* Request options for the webtrigger module.
|
|
1070
|
+
*/
|
|
1071
|
+
request?: {
|
|
1072
|
+
authentication?: Authentication;
|
|
1073
|
+
};
|
|
1064
1074
|
response?: ResponseOptions;
|
|
1075
|
+
urlFormat?: UrlFormat;
|
|
1065
1076
|
key: ModuleKeySchema;
|
|
1066
1077
|
[k: string]: unknown;
|
|
1067
1078
|
}
|
|
1068
1079
|
),
|
|
1069
1080
|
...(
|
|
1070
1081
|
| {
|
|
1071
|
-
urlFormat?: WebTriggerUrlFormatSchema;
|
|
1072
1082
|
function: Function1;
|
|
1083
|
+
request?: Request;
|
|
1073
1084
|
response?: Response;
|
|
1085
|
+
urlFormat?: UrlFormat;
|
|
1074
1086
|
key: ModuleKeySchema;
|
|
1075
1087
|
[k: string]: unknown;
|
|
1076
1088
|
}
|
|
1077
1089
|
| {
|
|
1078
|
-
urlFormat?: WebTriggerUrlFormatSchema;
|
|
1079
1090
|
endpoint: ExtensionKey;
|
|
1091
|
+
/**
|
|
1092
|
+
* Request options for the webtrigger module.
|
|
1093
|
+
*/
|
|
1094
|
+
request?: {
|
|
1095
|
+
authentication?: Authentication;
|
|
1096
|
+
};
|
|
1080
1097
|
response?: ResponseOptions;
|
|
1098
|
+
urlFormat?: UrlFormat;
|
|
1081
1099
|
key: ModuleKeySchema;
|
|
1082
1100
|
[k: string]: unknown;
|
|
1083
1101
|
}
|
|
@@ -14643,7 +14661,7 @@ export interface Modules {
|
|
|
14643
14661
|
connectFieldProperty?: {
|
|
14644
14662
|
key?: string;
|
|
14645
14663
|
path?: string;
|
|
14646
|
-
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT';
|
|
14664
|
+
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT' | 'RICH_TEXT';
|
|
14647
14665
|
[k: string]: unknown;
|
|
14648
14666
|
};
|
|
14649
14667
|
isUIModificationsEnabled?: boolean;
|
|
@@ -14768,7 +14786,7 @@ export interface Modules {
|
|
|
14768
14786
|
connectFieldProperty?: {
|
|
14769
14787
|
key?: string;
|
|
14770
14788
|
path?: string;
|
|
14771
|
-
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT';
|
|
14789
|
+
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT' | 'RICH_TEXT';
|
|
14772
14790
|
[k: string]: unknown;
|
|
14773
14791
|
};
|
|
14774
14792
|
isUIModificationsEnabled?: boolean;
|
|
@@ -14882,7 +14900,7 @@ export interface Modules {
|
|
|
14882
14900
|
connectFieldProperty?: {
|
|
14883
14901
|
key?: string;
|
|
14884
14902
|
path?: string;
|
|
14885
|
-
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT';
|
|
14903
|
+
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT' | 'RICH_TEXT';
|
|
14886
14904
|
[k: string]: unknown;
|
|
14887
14905
|
};
|
|
14888
14906
|
isUIModificationsEnabled?: boolean;
|
|
@@ -15006,7 +15024,7 @@ export interface Modules {
|
|
|
15006
15024
|
connectFieldProperty?: {
|
|
15007
15025
|
key?: string;
|
|
15008
15026
|
path?: string;
|
|
15009
|
-
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT';
|
|
15027
|
+
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT' | 'RICH_TEXT';
|
|
15010
15028
|
[k: string]: unknown;
|
|
15011
15029
|
};
|
|
15012
15030
|
isUIModificationsEnabled?: boolean;
|
|
@@ -15131,7 +15149,7 @@ export interface Modules {
|
|
|
15131
15149
|
connectFieldProperty?: {
|
|
15132
15150
|
key?: string;
|
|
15133
15151
|
path?: string;
|
|
15134
|
-
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT';
|
|
15152
|
+
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT' | 'RICH_TEXT';
|
|
15135
15153
|
[k: string]: unknown;
|
|
15136
15154
|
};
|
|
15137
15155
|
isUIModificationsEnabled?: boolean;
|
|
@@ -15245,7 +15263,7 @@ export interface Modules {
|
|
|
15245
15263
|
connectFieldProperty?: {
|
|
15246
15264
|
key?: string;
|
|
15247
15265
|
path?: string;
|
|
15248
|
-
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT';
|
|
15266
|
+
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT' | 'RICH_TEXT';
|
|
15249
15267
|
[k: string]: unknown;
|
|
15250
15268
|
};
|
|
15251
15269
|
isUIModificationsEnabled?: boolean;
|
|
@@ -20527,6 +20545,178 @@ export interface Modules {
|
|
|
20527
20545
|
}
|
|
20528
20546
|
)[]
|
|
20529
20547
|
];
|
|
20548
|
+
'customerServiceManagement:queuePage'?: [
|
|
20549
|
+
(
|
|
20550
|
+
| {
|
|
20551
|
+
title:
|
|
20552
|
+
| {
|
|
20553
|
+
i18n: string;
|
|
20554
|
+
}
|
|
20555
|
+
| string;
|
|
20556
|
+
title__i18n?: string;
|
|
20557
|
+
icon?: string;
|
|
20558
|
+
layout?: 'native' | 'basic';
|
|
20559
|
+
function: string;
|
|
20560
|
+
key: ModuleKeySchema;
|
|
20561
|
+
[k: string]: unknown;
|
|
20562
|
+
}
|
|
20563
|
+
| {
|
|
20564
|
+
title:
|
|
20565
|
+
| {
|
|
20566
|
+
i18n: string;
|
|
20567
|
+
}
|
|
20568
|
+
| string;
|
|
20569
|
+
title__i18n?: string;
|
|
20570
|
+
icon?: string;
|
|
20571
|
+
layout?: 'native' | 'basic' | 'blank';
|
|
20572
|
+
resolver?:
|
|
20573
|
+
| {
|
|
20574
|
+
function: string;
|
|
20575
|
+
}
|
|
20576
|
+
| {
|
|
20577
|
+
endpoint: string;
|
|
20578
|
+
};
|
|
20579
|
+
resource: string;
|
|
20580
|
+
resourceUploadId?: string;
|
|
20581
|
+
render?: 'native' | 'default';
|
|
20582
|
+
renderRuntimeType?: 'webworker' | 'iframe';
|
|
20583
|
+
key: ModuleKeySchema;
|
|
20584
|
+
[k: string]: unknown;
|
|
20585
|
+
}
|
|
20586
|
+
),
|
|
20587
|
+
...(
|
|
20588
|
+
| {
|
|
20589
|
+
title:
|
|
20590
|
+
| {
|
|
20591
|
+
i18n: string;
|
|
20592
|
+
}
|
|
20593
|
+
| string;
|
|
20594
|
+
title__i18n?: string;
|
|
20595
|
+
icon?: string;
|
|
20596
|
+
layout?: 'native' | 'basic';
|
|
20597
|
+
function: string;
|
|
20598
|
+
key: ModuleKeySchema;
|
|
20599
|
+
[k: string]: unknown;
|
|
20600
|
+
}
|
|
20601
|
+
| {
|
|
20602
|
+
title:
|
|
20603
|
+
| {
|
|
20604
|
+
i18n: string;
|
|
20605
|
+
}
|
|
20606
|
+
| string;
|
|
20607
|
+
title__i18n?: string;
|
|
20608
|
+
icon?: string;
|
|
20609
|
+
layout?: 'native' | 'basic' | 'blank';
|
|
20610
|
+
resolver?:
|
|
20611
|
+
| {
|
|
20612
|
+
function: string;
|
|
20613
|
+
}
|
|
20614
|
+
| {
|
|
20615
|
+
endpoint: string;
|
|
20616
|
+
};
|
|
20617
|
+
resource: string;
|
|
20618
|
+
resourceUploadId?: string;
|
|
20619
|
+
render?: 'native' | 'default';
|
|
20620
|
+
renderRuntimeType?: 'webworker' | 'iframe';
|
|
20621
|
+
key: ModuleKeySchema;
|
|
20622
|
+
[k: string]: unknown;
|
|
20623
|
+
}
|
|
20624
|
+
)[]
|
|
20625
|
+
];
|
|
20626
|
+
'customerServiceManagement:requestDetail'?: [
|
|
20627
|
+
(
|
|
20628
|
+
| {
|
|
20629
|
+
title:
|
|
20630
|
+
| {
|
|
20631
|
+
i18n: string;
|
|
20632
|
+
}
|
|
20633
|
+
| string;
|
|
20634
|
+
title__i18n?: string;
|
|
20635
|
+
icon?: string;
|
|
20636
|
+
layout?: 'native' | 'basic';
|
|
20637
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
20638
|
+
function: string;
|
|
20639
|
+
displayConditions?: {
|
|
20640
|
+
[k: string]: unknown;
|
|
20641
|
+
};
|
|
20642
|
+
key: ModuleKeySchema;
|
|
20643
|
+
[k: string]: unknown;
|
|
20644
|
+
}
|
|
20645
|
+
| {
|
|
20646
|
+
title:
|
|
20647
|
+
| {
|
|
20648
|
+
i18n: string;
|
|
20649
|
+
}
|
|
20650
|
+
| string;
|
|
20651
|
+
title__i18n?: string;
|
|
20652
|
+
icon?: string;
|
|
20653
|
+
layout?: 'native' | 'basic';
|
|
20654
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
20655
|
+
resolver?:
|
|
20656
|
+
| {
|
|
20657
|
+
function: string;
|
|
20658
|
+
}
|
|
20659
|
+
| {
|
|
20660
|
+
endpoint: string;
|
|
20661
|
+
};
|
|
20662
|
+
resource: string;
|
|
20663
|
+
resourceUploadId?: string;
|
|
20664
|
+
render?: 'native' | 'default';
|
|
20665
|
+
renderRuntimeType?: 'webworker' | 'iframe';
|
|
20666
|
+
displayConditions?: {
|
|
20667
|
+
[k: string]: unknown;
|
|
20668
|
+
};
|
|
20669
|
+
key: ModuleKeySchema;
|
|
20670
|
+
[k: string]: unknown;
|
|
20671
|
+
}
|
|
20672
|
+
),
|
|
20673
|
+
...(
|
|
20674
|
+
| {
|
|
20675
|
+
title:
|
|
20676
|
+
| {
|
|
20677
|
+
i18n: string;
|
|
20678
|
+
}
|
|
20679
|
+
| string;
|
|
20680
|
+
title__i18n?: string;
|
|
20681
|
+
icon?: string;
|
|
20682
|
+
layout?: 'native' | 'basic';
|
|
20683
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
20684
|
+
function: string;
|
|
20685
|
+
displayConditions?: {
|
|
20686
|
+
[k: string]: unknown;
|
|
20687
|
+
};
|
|
20688
|
+
key: ModuleKeySchema;
|
|
20689
|
+
[k: string]: unknown;
|
|
20690
|
+
}
|
|
20691
|
+
| {
|
|
20692
|
+
title:
|
|
20693
|
+
| {
|
|
20694
|
+
i18n: string;
|
|
20695
|
+
}
|
|
20696
|
+
| string;
|
|
20697
|
+
title__i18n?: string;
|
|
20698
|
+
icon?: string;
|
|
20699
|
+
layout?: 'native' | 'basic';
|
|
20700
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
20701
|
+
resolver?:
|
|
20702
|
+
| {
|
|
20703
|
+
function: string;
|
|
20704
|
+
}
|
|
20705
|
+
| {
|
|
20706
|
+
endpoint: string;
|
|
20707
|
+
};
|
|
20708
|
+
resource: string;
|
|
20709
|
+
resourceUploadId?: string;
|
|
20710
|
+
render?: 'native' | 'default';
|
|
20711
|
+
renderRuntimeType?: 'webworker' | 'iframe';
|
|
20712
|
+
displayConditions?: {
|
|
20713
|
+
[k: string]: unknown;
|
|
20714
|
+
};
|
|
20715
|
+
key: ModuleKeySchema;
|
|
20716
|
+
[k: string]: unknown;
|
|
20717
|
+
}
|
|
20718
|
+
)[]
|
|
20719
|
+
];
|
|
20530
20720
|
'bitbucket:repoPullRequestCard'?: [
|
|
20531
20721
|
(
|
|
20532
20722
|
| {
|
|
@@ -25286,6 +25476,12 @@ export interface Payload1 {
|
|
|
25286
25476
|
export interface Payload2 {
|
|
25287
25477
|
include: Include;
|
|
25288
25478
|
}
|
|
25479
|
+
/**
|
|
25480
|
+
* Request options for the webtrigger module.
|
|
25481
|
+
*/
|
|
25482
|
+
export interface Request {
|
|
25483
|
+
authentication?: Authentication;
|
|
25484
|
+
}
|
|
25289
25485
|
export interface RuntimeLayer {
|
|
25290
25486
|
identifier: string;
|
|
25291
25487
|
layer: {
|