@forge/manifest 6.2.0-next.0 → 6.2.0-next.0-experimental-12c7386
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 +10 -0
- package/out/schema/manifest-schema.json +461 -1
- package/out/schema/manifest.d.ts +172 -0
- package/out/scopes/shipyard-scopes.json +2 -0
- package/out/types/module-types.d.ts +4 -1
- package/out/types/module-types.d.ts.map +1 -1
- package/out/types/module-types.js +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 6.2.0-next.0-experimental-12c7386
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9307e05: Added endpoint validation for bitbucket:mergeCheck module
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- afb1634: Update manifest definitions
|
|
12
|
+
|
|
3
13
|
## 6.2.0-next.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -503,7 +503,7 @@
|
|
|
503
503
|
"type": "string"
|
|
504
504
|
},
|
|
505
505
|
"interval": {
|
|
506
|
-
"
|
|
506
|
+
"description": "The interval at which to trigger function invocation.",
|
|
507
507
|
"enum": [
|
|
508
508
|
"fiveMinute",
|
|
509
509
|
"hour",
|
|
@@ -17375,6 +17375,221 @@
|
|
|
17375
17375
|
}
|
|
17376
17376
|
},
|
|
17377
17377
|
"minItems": 1
|
|
17378
|
+
},
|
|
17379
|
+
"ai:skill": {
|
|
17380
|
+
"type": "array",
|
|
17381
|
+
"items": {
|
|
17382
|
+
"oneOf": [
|
|
17383
|
+
{
|
|
17384
|
+
"type": "object",
|
|
17385
|
+
"additionalProperties": false,
|
|
17386
|
+
"required": [
|
|
17387
|
+
"name",
|
|
17388
|
+
"description",
|
|
17389
|
+
"function",
|
|
17390
|
+
"key"
|
|
17391
|
+
],
|
|
17392
|
+
"properties": {
|
|
17393
|
+
"name": {
|
|
17394
|
+
"description": "Give it a human friendly skill name so that AI agent render in the UI.",
|
|
17395
|
+
"minLength": 1,
|
|
17396
|
+
"maxLength": 255,
|
|
17397
|
+
"type": "string"
|
|
17398
|
+
},
|
|
17399
|
+
"description": {
|
|
17400
|
+
"minLength": 1,
|
|
17401
|
+
"maxLength": 255,
|
|
17402
|
+
"type": "string"
|
|
17403
|
+
},
|
|
17404
|
+
"function": {
|
|
17405
|
+
"$ref": "#/definitions/AiExtensionKey",
|
|
17406
|
+
"title": "function"
|
|
17407
|
+
},
|
|
17408
|
+
"inputSchema": {
|
|
17409
|
+
"allOf": [
|
|
17410
|
+
{
|
|
17411
|
+
"$ref": "#/definitions/JsonSchema"
|
|
17412
|
+
},
|
|
17413
|
+
{
|
|
17414
|
+
"description": "The input schema for the skill. This must be a valid JSON schema draft v7 and the top level type must be an object.",
|
|
17415
|
+
"type": "object",
|
|
17416
|
+
"properties": {
|
|
17417
|
+
"type": {
|
|
17418
|
+
"type": "string",
|
|
17419
|
+
"enum": [
|
|
17420
|
+
"object"
|
|
17421
|
+
]
|
|
17422
|
+
}
|
|
17423
|
+
},
|
|
17424
|
+
"required": [
|
|
17425
|
+
"type"
|
|
17426
|
+
]
|
|
17427
|
+
}
|
|
17428
|
+
]
|
|
17429
|
+
},
|
|
17430
|
+
"key": {
|
|
17431
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
17432
|
+
}
|
|
17433
|
+
},
|
|
17434
|
+
"not": {
|
|
17435
|
+
"required": [
|
|
17436
|
+
"unlicensedAccess"
|
|
17437
|
+
]
|
|
17438
|
+
}
|
|
17439
|
+
},
|
|
17440
|
+
{
|
|
17441
|
+
"type": "object",
|
|
17442
|
+
"additionalProperties": false,
|
|
17443
|
+
"required": [
|
|
17444
|
+
"name",
|
|
17445
|
+
"description",
|
|
17446
|
+
"endpoint",
|
|
17447
|
+
"key"
|
|
17448
|
+
],
|
|
17449
|
+
"properties": {
|
|
17450
|
+
"name": {
|
|
17451
|
+
"description": "Give it a human friendly skill name so that AI agent render in the UI.",
|
|
17452
|
+
"minLength": 1,
|
|
17453
|
+
"maxLength": 255,
|
|
17454
|
+
"type": "string"
|
|
17455
|
+
},
|
|
17456
|
+
"description": {
|
|
17457
|
+
"minLength": 1,
|
|
17458
|
+
"maxLength": 255,
|
|
17459
|
+
"type": "string"
|
|
17460
|
+
},
|
|
17461
|
+
"endpoint": {
|
|
17462
|
+
"$ref": "#/definitions/AiExtensionKey",
|
|
17463
|
+
"title": "endpoint"
|
|
17464
|
+
},
|
|
17465
|
+
"inputSchema": {
|
|
17466
|
+
"allOf": [
|
|
17467
|
+
{
|
|
17468
|
+
"$ref": "#/definitions/JsonSchema"
|
|
17469
|
+
},
|
|
17470
|
+
{
|
|
17471
|
+
"description": "The input schema for the skill. This must be a valid JSON schema draft v7 and the top level type must be an object.",
|
|
17472
|
+
"type": "object",
|
|
17473
|
+
"properties": {
|
|
17474
|
+
"type": {
|
|
17475
|
+
"type": "string",
|
|
17476
|
+
"enum": [
|
|
17477
|
+
"object"
|
|
17478
|
+
]
|
|
17479
|
+
}
|
|
17480
|
+
},
|
|
17481
|
+
"required": [
|
|
17482
|
+
"type"
|
|
17483
|
+
]
|
|
17484
|
+
}
|
|
17485
|
+
]
|
|
17486
|
+
},
|
|
17487
|
+
"key": {
|
|
17488
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
17489
|
+
}
|
|
17490
|
+
},
|
|
17491
|
+
"not": {
|
|
17492
|
+
"required": [
|
|
17493
|
+
"unlicensedAccess"
|
|
17494
|
+
]
|
|
17495
|
+
}
|
|
17496
|
+
}
|
|
17497
|
+
]
|
|
17498
|
+
},
|
|
17499
|
+
"minItems": 1
|
|
17500
|
+
},
|
|
17501
|
+
"ai:agent": {
|
|
17502
|
+
"type": "array",
|
|
17503
|
+
"items": {
|
|
17504
|
+
"type": "object",
|
|
17505
|
+
"additionalProperties": false,
|
|
17506
|
+
"required": [
|
|
17507
|
+
"name",
|
|
17508
|
+
"prompt",
|
|
17509
|
+
"model",
|
|
17510
|
+
"key"
|
|
17511
|
+
],
|
|
17512
|
+
"properties": {
|
|
17513
|
+
"name": {
|
|
17514
|
+
"type": "string",
|
|
17515
|
+
"minLength": 1
|
|
17516
|
+
},
|
|
17517
|
+
"description": {
|
|
17518
|
+
"minLength": 1,
|
|
17519
|
+
"maxLength": 255,
|
|
17520
|
+
"type": "string"
|
|
17521
|
+
},
|
|
17522
|
+
"model": {
|
|
17523
|
+
"type": "string",
|
|
17524
|
+
"enum": [
|
|
17525
|
+
"gpt-4",
|
|
17526
|
+
"gpt-3.5"
|
|
17527
|
+
]
|
|
17528
|
+
},
|
|
17529
|
+
"prompt": {
|
|
17530
|
+
"type": "string",
|
|
17531
|
+
"minLength": 1
|
|
17532
|
+
},
|
|
17533
|
+
"followUpPrompt": {
|
|
17534
|
+
"type": "string",
|
|
17535
|
+
"minLength": 1
|
|
17536
|
+
},
|
|
17537
|
+
"key": {
|
|
17538
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
17539
|
+
}
|
|
17540
|
+
},
|
|
17541
|
+
"not": {
|
|
17542
|
+
"required": [
|
|
17543
|
+
"unlicensedAccess"
|
|
17544
|
+
]
|
|
17545
|
+
}
|
|
17546
|
+
},
|
|
17547
|
+
"minItems": 1
|
|
17548
|
+
},
|
|
17549
|
+
"ai:customAgent": {
|
|
17550
|
+
"type": "array",
|
|
17551
|
+
"items": {
|
|
17552
|
+
"oneOf": [
|
|
17553
|
+
{
|
|
17554
|
+
"type": "object",
|
|
17555
|
+
"required": [
|
|
17556
|
+
"name",
|
|
17557
|
+
"model",
|
|
17558
|
+
"function",
|
|
17559
|
+
"key"
|
|
17560
|
+
],
|
|
17561
|
+
"properties": {
|
|
17562
|
+
"name": {
|
|
17563
|
+
"type": "string"
|
|
17564
|
+
},
|
|
17565
|
+
"description": {
|
|
17566
|
+
"minLength": 1,
|
|
17567
|
+
"maxLength": 255,
|
|
17568
|
+
"type": "string"
|
|
17569
|
+
},
|
|
17570
|
+
"model": {
|
|
17571
|
+
"type": "string",
|
|
17572
|
+
"enum": [
|
|
17573
|
+
"atlassian"
|
|
17574
|
+
]
|
|
17575
|
+
},
|
|
17576
|
+
"function": {
|
|
17577
|
+
"$ref": "#/definitions/AiExtensionKey",
|
|
17578
|
+
"title": "function"
|
|
17579
|
+
},
|
|
17580
|
+
"key": {
|
|
17581
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
17582
|
+
}
|
|
17583
|
+
},
|
|
17584
|
+
"not": {
|
|
17585
|
+
"required": [
|
|
17586
|
+
"unlicensedAccess"
|
|
17587
|
+
]
|
|
17588
|
+
}
|
|
17589
|
+
}
|
|
17590
|
+
]
|
|
17591
|
+
},
|
|
17592
|
+
"minItems": 1
|
|
17378
17593
|
}
|
|
17379
17594
|
},
|
|
17380
17595
|
"title": "ModuleSchema",
|
|
@@ -19899,6 +20114,251 @@
|
|
|
19899
20114
|
"type": "object",
|
|
19900
20115
|
"title": "Body",
|
|
19901
20116
|
"description": "\n\n<p>\n Defines styles to be applied on the body of content view.\n </p>\n <p>\n The supported properties include <i>background</i> shorthand property and all CSS background element properties.\n The keys are the camelCased versions of corresponding CSS properties, like <i>backgroundImage</i>,\n <i>backgroundColor</i>, <i>backgroundSize</i>, <i>backgroundPosition</i>, <i>backgroundRepeat</i>,\n <i>backgroundClip</i>, <i>backgroundOrigin</i>, <i>backgroundAttachment</i>, and <i>backgroundBlendMode</i>.\n </p>\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"padding\": \"10px\",\n \"borderRadius\": \"0 0 5px 5px\",\n \"background\": \"#FFFFFF\"\n }\n\n\n"
|
|
20117
|
+
},
|
|
20118
|
+
"AiExtensionKey": {
|
|
20119
|
+
"description": "The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.",
|
|
20120
|
+
"maxLength": 255,
|
|
20121
|
+
"minLength": 1,
|
|
20122
|
+
"pattern": "^[a-zA-Z0-9-._]+$",
|
|
20123
|
+
"title": "AiExtensionKey",
|
|
20124
|
+
"type": "string"
|
|
20125
|
+
},
|
|
20126
|
+
"schemaArray": {
|
|
20127
|
+
"type": "array",
|
|
20128
|
+
"minItems": 1,
|
|
20129
|
+
"items": {
|
|
20130
|
+
"$ref": "#/definitions/JsonSchema"
|
|
20131
|
+
}
|
|
20132
|
+
},
|
|
20133
|
+
"nonNegativeInteger": {
|
|
20134
|
+
"type": "integer",
|
|
20135
|
+
"minimum": 0
|
|
20136
|
+
},
|
|
20137
|
+
"nonNegativeIntegerDefault0": {
|
|
20138
|
+
"allOf": [
|
|
20139
|
+
{
|
|
20140
|
+
"$ref": "#/definitions/nonNegativeInteger"
|
|
20141
|
+
},
|
|
20142
|
+
{
|
|
20143
|
+
"default": 0
|
|
20144
|
+
}
|
|
20145
|
+
]
|
|
20146
|
+
},
|
|
20147
|
+
"simpleTypes": {
|
|
20148
|
+
"enum": [
|
|
20149
|
+
"array",
|
|
20150
|
+
"boolean",
|
|
20151
|
+
"integer",
|
|
20152
|
+
"null",
|
|
20153
|
+
"number",
|
|
20154
|
+
"object",
|
|
20155
|
+
"string"
|
|
20156
|
+
]
|
|
20157
|
+
},
|
|
20158
|
+
"stringArray": {
|
|
20159
|
+
"type": "array",
|
|
20160
|
+
"items": {
|
|
20161
|
+
"type": "string"
|
|
20162
|
+
},
|
|
20163
|
+
"uniqueItems": true,
|
|
20164
|
+
"default": []
|
|
20165
|
+
},
|
|
20166
|
+
"JsonSchema": {
|
|
20167
|
+
"title": "Core schema meta-schema",
|
|
20168
|
+
"type": [
|
|
20169
|
+
"object",
|
|
20170
|
+
"boolean"
|
|
20171
|
+
],
|
|
20172
|
+
"properties": {
|
|
20173
|
+
"$id": {
|
|
20174
|
+
"type": "string",
|
|
20175
|
+
"format": "uri-reference"
|
|
20176
|
+
},
|
|
20177
|
+
"$schema": {
|
|
20178
|
+
"type": "string",
|
|
20179
|
+
"format": "uri"
|
|
20180
|
+
},
|
|
20181
|
+
"$ref": {
|
|
20182
|
+
"type": "string",
|
|
20183
|
+
"format": "uri-reference"
|
|
20184
|
+
},
|
|
20185
|
+
"$comment": {
|
|
20186
|
+
"type": "string"
|
|
20187
|
+
},
|
|
20188
|
+
"title": {
|
|
20189
|
+
"type": "string"
|
|
20190
|
+
},
|
|
20191
|
+
"description": {
|
|
20192
|
+
"type": "string"
|
|
20193
|
+
},
|
|
20194
|
+
"default": true,
|
|
20195
|
+
"readOnly": {
|
|
20196
|
+
"type": "boolean",
|
|
20197
|
+
"default": false
|
|
20198
|
+
},
|
|
20199
|
+
"examples": {
|
|
20200
|
+
"type": "array",
|
|
20201
|
+
"items": true
|
|
20202
|
+
},
|
|
20203
|
+
"multipleOf": {
|
|
20204
|
+
"type": "number",
|
|
20205
|
+
"exclusiveMinimum": 0
|
|
20206
|
+
},
|
|
20207
|
+
"maximum": {
|
|
20208
|
+
"type": "number"
|
|
20209
|
+
},
|
|
20210
|
+
"exclusiveMaximum": {
|
|
20211
|
+
"type": "number"
|
|
20212
|
+
},
|
|
20213
|
+
"minimum": {
|
|
20214
|
+
"type": "number"
|
|
20215
|
+
},
|
|
20216
|
+
"exclusiveMinimum": {
|
|
20217
|
+
"type": "number"
|
|
20218
|
+
},
|
|
20219
|
+
"maxLength": {
|
|
20220
|
+
"$ref": "#/definitions/nonNegativeInteger"
|
|
20221
|
+
},
|
|
20222
|
+
"minLength": {
|
|
20223
|
+
"$ref": "#/definitions/nonNegativeIntegerDefault0"
|
|
20224
|
+
},
|
|
20225
|
+
"pattern": {
|
|
20226
|
+
"type": "string",
|
|
20227
|
+
"format": "regex"
|
|
20228
|
+
},
|
|
20229
|
+
"additionalItems": {
|
|
20230
|
+
"$ref": "#/definitions/JsonSchema"
|
|
20231
|
+
},
|
|
20232
|
+
"items": {
|
|
20233
|
+
"anyOf": [
|
|
20234
|
+
{
|
|
20235
|
+
"$ref": "#/definitions/JsonSchema"
|
|
20236
|
+
},
|
|
20237
|
+
{
|
|
20238
|
+
"$ref": "#/definitions/schemaArray"
|
|
20239
|
+
}
|
|
20240
|
+
],
|
|
20241
|
+
"default": true
|
|
20242
|
+
},
|
|
20243
|
+
"maxItems": {
|
|
20244
|
+
"$ref": "#/definitions/nonNegativeInteger"
|
|
20245
|
+
},
|
|
20246
|
+
"minItems": {
|
|
20247
|
+
"$ref": "#/definitions/nonNegativeIntegerDefault0"
|
|
20248
|
+
},
|
|
20249
|
+
"uniqueItems": {
|
|
20250
|
+
"type": "boolean",
|
|
20251
|
+
"default": false
|
|
20252
|
+
},
|
|
20253
|
+
"contains": {
|
|
20254
|
+
"$ref": "#/definitions/JsonSchema"
|
|
20255
|
+
},
|
|
20256
|
+
"maxProperties": {
|
|
20257
|
+
"$ref": "#/definitions/nonNegativeInteger"
|
|
20258
|
+
},
|
|
20259
|
+
"minProperties": {
|
|
20260
|
+
"$ref": "#/definitions/nonNegativeIntegerDefault0"
|
|
20261
|
+
},
|
|
20262
|
+
"required": {
|
|
20263
|
+
"$ref": "#/definitions/stringArray"
|
|
20264
|
+
},
|
|
20265
|
+
"additionalProperties": {
|
|
20266
|
+
"$ref": "#/definitions/JsonSchema"
|
|
20267
|
+
},
|
|
20268
|
+
"definitions": {
|
|
20269
|
+
"type": "object",
|
|
20270
|
+
"additionalProperties": {
|
|
20271
|
+
"$ref": "#/definitions/JsonSchema"
|
|
20272
|
+
},
|
|
20273
|
+
"default": {}
|
|
20274
|
+
},
|
|
20275
|
+
"properties": {
|
|
20276
|
+
"type": "object",
|
|
20277
|
+
"additionalProperties": {
|
|
20278
|
+
"$ref": "#/definitions/JsonSchema"
|
|
20279
|
+
},
|
|
20280
|
+
"default": {}
|
|
20281
|
+
},
|
|
20282
|
+
"patternProperties": {
|
|
20283
|
+
"type": "object",
|
|
20284
|
+
"additionalProperties": {
|
|
20285
|
+
"$ref": "#/definitions/JsonSchema"
|
|
20286
|
+
},
|
|
20287
|
+
"propertyNames": {
|
|
20288
|
+
"format": "regex"
|
|
20289
|
+
},
|
|
20290
|
+
"default": {}
|
|
20291
|
+
},
|
|
20292
|
+
"dependencies": {
|
|
20293
|
+
"type": "object",
|
|
20294
|
+
"additionalProperties": {
|
|
20295
|
+
"anyOf": [
|
|
20296
|
+
{
|
|
20297
|
+
"$ref": "#/definitions/JsonSchema"
|
|
20298
|
+
},
|
|
20299
|
+
{
|
|
20300
|
+
"$ref": "#/definitions/stringArray"
|
|
20301
|
+
}
|
|
20302
|
+
]
|
|
20303
|
+
}
|
|
20304
|
+
},
|
|
20305
|
+
"propertyNames": {
|
|
20306
|
+
"$ref": "#/definitions/JsonSchema"
|
|
20307
|
+
},
|
|
20308
|
+
"const": true,
|
|
20309
|
+
"enum": {
|
|
20310
|
+
"type": "array",
|
|
20311
|
+
"items": true,
|
|
20312
|
+
"minItems": 1,
|
|
20313
|
+
"uniqueItems": true
|
|
20314
|
+
},
|
|
20315
|
+
"type": {
|
|
20316
|
+
"anyOf": [
|
|
20317
|
+
{
|
|
20318
|
+
"$ref": "#/definitions/simpleTypes"
|
|
20319
|
+
},
|
|
20320
|
+
{
|
|
20321
|
+
"type": "array",
|
|
20322
|
+
"items": {
|
|
20323
|
+
"$ref": "#/definitions/simpleTypes"
|
|
20324
|
+
},
|
|
20325
|
+
"minItems": 1,
|
|
20326
|
+
"uniqueItems": true
|
|
20327
|
+
}
|
|
20328
|
+
]
|
|
20329
|
+
},
|
|
20330
|
+
"format": {
|
|
20331
|
+
"type": "string"
|
|
20332
|
+
},
|
|
20333
|
+
"contentMediaType": {
|
|
20334
|
+
"type": "string"
|
|
20335
|
+
},
|
|
20336
|
+
"contentEncoding": {
|
|
20337
|
+
"type": "string"
|
|
20338
|
+
},
|
|
20339
|
+
"if": {
|
|
20340
|
+
"$ref": "#/definitions/JsonSchema"
|
|
20341
|
+
},
|
|
20342
|
+
"then": {
|
|
20343
|
+
"$ref": "#/definitions/JsonSchema"
|
|
20344
|
+
},
|
|
20345
|
+
"else": {
|
|
20346
|
+
"$ref": "#/definitions/JsonSchema"
|
|
20347
|
+
},
|
|
20348
|
+
"allOf": {
|
|
20349
|
+
"$ref": "#/definitions/schemaArray"
|
|
20350
|
+
},
|
|
20351
|
+
"anyOf": {
|
|
20352
|
+
"$ref": "#/definitions/schemaArray"
|
|
20353
|
+
},
|
|
20354
|
+
"oneOf": {
|
|
20355
|
+
"$ref": "#/definitions/schemaArray"
|
|
20356
|
+
},
|
|
20357
|
+
"not": {
|
|
20358
|
+
"$ref": "#/definitions/JsonSchema"
|
|
20359
|
+
}
|
|
20360
|
+
},
|
|
20361
|
+
"default": true
|
|
19902
20362
|
}
|
|
19903
20363
|
},
|
|
19904
20364
|
"additionalProperties": false,
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -86,6 +86,9 @@ export type Foo1 = string;
|
|
|
86
86
|
* This key is defined in: https://bitbucket.org/atlassian/connect-service/src/cd7252b/service/cs-apps/api.raml#lines-1094
|
|
87
87
|
*/
|
|
88
88
|
export type Endpoint1 = string;
|
|
89
|
+
/**
|
|
90
|
+
* The interval at which to trigger function invocation.
|
|
91
|
+
*/
|
|
89
92
|
export type Interval1 = 'fiveMinute' | 'hour' | 'day' | 'week';
|
|
90
93
|
/**
|
|
91
94
|
* The method, within the index.js function, that will be called to invoke the function.
|
|
@@ -194,6 +197,81 @@ export type LinkTypes = [
|
|
|
194
197
|
'chat-channel' | 'document' | 'repository' | 'dashboard' | 'on-call' | 'project' | 'other-link',
|
|
195
198
|
...('chat-channel' | 'document' | 'repository' | 'dashboard' | 'on-call' | 'project' | 'other-link')[]
|
|
196
199
|
];
|
|
200
|
+
/**
|
|
201
|
+
* The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
|
|
202
|
+
*/
|
|
203
|
+
export type Function3 = string;
|
|
204
|
+
export type CoreSchemaMetaSchema =
|
|
205
|
+
| {
|
|
206
|
+
$id?: string;
|
|
207
|
+
$schema?: string;
|
|
208
|
+
$ref?: string;
|
|
209
|
+
$comment?: string;
|
|
210
|
+
title?: string;
|
|
211
|
+
description?: string;
|
|
212
|
+
default?: true;
|
|
213
|
+
readOnly?: boolean;
|
|
214
|
+
examples?: true[];
|
|
215
|
+
multipleOf?: number;
|
|
216
|
+
maximum?: number;
|
|
217
|
+
exclusiveMaximum?: number;
|
|
218
|
+
minimum?: number;
|
|
219
|
+
exclusiveMinimum?: number;
|
|
220
|
+
maxLength?: NonNegativeInteger;
|
|
221
|
+
minLength?: NonNegativeIntegerDefault0;
|
|
222
|
+
pattern?: string;
|
|
223
|
+
additionalItems?: CoreSchemaMetaSchema;
|
|
224
|
+
items?: CoreSchemaMetaSchema | SchemaArray;
|
|
225
|
+
maxItems?: NonNegativeInteger;
|
|
226
|
+
minItems?: NonNegativeIntegerDefault0;
|
|
227
|
+
uniqueItems?: boolean;
|
|
228
|
+
contains?: CoreSchemaMetaSchema;
|
|
229
|
+
maxProperties?: NonNegativeInteger;
|
|
230
|
+
minProperties?: NonNegativeIntegerDefault0;
|
|
231
|
+
required?: StringArray;
|
|
232
|
+
additionalProperties?: CoreSchemaMetaSchema;
|
|
233
|
+
definitions?: {
|
|
234
|
+
[k: string]: CoreSchemaMetaSchema;
|
|
235
|
+
};
|
|
236
|
+
properties?: {
|
|
237
|
+
[k: string]: CoreSchemaMetaSchema;
|
|
238
|
+
};
|
|
239
|
+
patternProperties?: {
|
|
240
|
+
[k: string]: CoreSchemaMetaSchema;
|
|
241
|
+
};
|
|
242
|
+
dependencies?: {
|
|
243
|
+
[k: string]: CoreSchemaMetaSchema | StringArray;
|
|
244
|
+
};
|
|
245
|
+
propertyNames?: CoreSchemaMetaSchema;
|
|
246
|
+
const?: true;
|
|
247
|
+
enum?: [true, ...unknown[]];
|
|
248
|
+
type?: SimpleTypes | [SimpleTypes, ...SimpleTypes[]];
|
|
249
|
+
format?: string;
|
|
250
|
+
contentMediaType?: string;
|
|
251
|
+
contentEncoding?: string;
|
|
252
|
+
if?: CoreSchemaMetaSchema;
|
|
253
|
+
then?: CoreSchemaMetaSchema;
|
|
254
|
+
else?: CoreSchemaMetaSchema;
|
|
255
|
+
allOf?: SchemaArray;
|
|
256
|
+
anyOf?: SchemaArray;
|
|
257
|
+
oneOf?: SchemaArray;
|
|
258
|
+
not?: CoreSchemaMetaSchema;
|
|
259
|
+
[k: string]: unknown;
|
|
260
|
+
}
|
|
261
|
+
| boolean;
|
|
262
|
+
export type NonNegativeInteger = number;
|
|
263
|
+
export type NonNegativeIntegerDefault0 = NonNegativeInteger & number;
|
|
264
|
+
export type SchemaArray = [CoreSchemaMetaSchema, ...CoreSchemaMetaSchema[]];
|
|
265
|
+
export type StringArray = string[];
|
|
266
|
+
export type SimpleTypes = 'array' | 'boolean' | 'integer' | 'null' | 'number' | 'object' | 'string';
|
|
267
|
+
/**
|
|
268
|
+
* The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
|
|
269
|
+
*/
|
|
270
|
+
export type Endpoint2 = string;
|
|
271
|
+
/**
|
|
272
|
+
* The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
|
|
273
|
+
*/
|
|
274
|
+
export type Function4 = string;
|
|
197
275
|
export type Scopes = string[];
|
|
198
276
|
export type Scripts = string[];
|
|
199
277
|
export type Styles = 'unsafe-inline'[];
|
|
@@ -7622,6 +7700,100 @@ export interface Modules {
|
|
|
7622
7700
|
[k: string]: unknown;
|
|
7623
7701
|
}[]
|
|
7624
7702
|
];
|
|
7703
|
+
'ai:skill'?: [
|
|
7704
|
+
(
|
|
7705
|
+
| {
|
|
7706
|
+
/**
|
|
7707
|
+
* Give it a human friendly skill name so that AI agent render in the UI.
|
|
7708
|
+
*/
|
|
7709
|
+
name: string;
|
|
7710
|
+
description: string;
|
|
7711
|
+
function: Function3;
|
|
7712
|
+
inputSchema?: CoreSchemaMetaSchema & {
|
|
7713
|
+
type: 'object';
|
|
7714
|
+
[k: string]: unknown;
|
|
7715
|
+
};
|
|
7716
|
+
key: ModuleKeySchema;
|
|
7717
|
+
}
|
|
7718
|
+
| {
|
|
7719
|
+
/**
|
|
7720
|
+
* Give it a human friendly skill name so that AI agent render in the UI.
|
|
7721
|
+
*/
|
|
7722
|
+
name: string;
|
|
7723
|
+
description: string;
|
|
7724
|
+
endpoint: Endpoint2;
|
|
7725
|
+
inputSchema?: CoreSchemaMetaSchema & {
|
|
7726
|
+
type: 'object';
|
|
7727
|
+
[k: string]: unknown;
|
|
7728
|
+
};
|
|
7729
|
+
key: ModuleKeySchema;
|
|
7730
|
+
}
|
|
7731
|
+
),
|
|
7732
|
+
...(
|
|
7733
|
+
| {
|
|
7734
|
+
/**
|
|
7735
|
+
* Give it a human friendly skill name so that AI agent render in the UI.
|
|
7736
|
+
*/
|
|
7737
|
+
name: string;
|
|
7738
|
+
description: string;
|
|
7739
|
+
function: Function3;
|
|
7740
|
+
inputSchema?: CoreSchemaMetaSchema & {
|
|
7741
|
+
type: 'object';
|
|
7742
|
+
[k: string]: unknown;
|
|
7743
|
+
};
|
|
7744
|
+
key: ModuleKeySchema;
|
|
7745
|
+
}
|
|
7746
|
+
| {
|
|
7747
|
+
/**
|
|
7748
|
+
* Give it a human friendly skill name so that AI agent render in the UI.
|
|
7749
|
+
*/
|
|
7750
|
+
name: string;
|
|
7751
|
+
description: string;
|
|
7752
|
+
endpoint: Endpoint2;
|
|
7753
|
+
inputSchema?: CoreSchemaMetaSchema & {
|
|
7754
|
+
type: 'object';
|
|
7755
|
+
[k: string]: unknown;
|
|
7756
|
+
};
|
|
7757
|
+
key: ModuleKeySchema;
|
|
7758
|
+
}
|
|
7759
|
+
)[]
|
|
7760
|
+
];
|
|
7761
|
+
'ai:agent'?: [
|
|
7762
|
+
{
|
|
7763
|
+
name: string;
|
|
7764
|
+
description?: string;
|
|
7765
|
+
model: 'gpt-4' | 'gpt-3.5';
|
|
7766
|
+
prompt: string;
|
|
7767
|
+
followUpPrompt?: string;
|
|
7768
|
+
key: ModuleKeySchema;
|
|
7769
|
+
},
|
|
7770
|
+
...{
|
|
7771
|
+
name: string;
|
|
7772
|
+
description?: string;
|
|
7773
|
+
model: 'gpt-4' | 'gpt-3.5';
|
|
7774
|
+
prompt: string;
|
|
7775
|
+
followUpPrompt?: string;
|
|
7776
|
+
key: ModuleKeySchema;
|
|
7777
|
+
}[]
|
|
7778
|
+
];
|
|
7779
|
+
'ai:customAgent'?: [
|
|
7780
|
+
{
|
|
7781
|
+
name: string;
|
|
7782
|
+
description?: string;
|
|
7783
|
+
model: 'atlassian';
|
|
7784
|
+
function: Function4;
|
|
7785
|
+
key: ModuleKeySchema;
|
|
7786
|
+
[k: string]: unknown;
|
|
7787
|
+
},
|
|
7788
|
+
...{
|
|
7789
|
+
name: string;
|
|
7790
|
+
description?: string;
|
|
7791
|
+
model: 'atlassian';
|
|
7792
|
+
function: Function4;
|
|
7793
|
+
key: ModuleKeySchema;
|
|
7794
|
+
[k: string]: unknown;
|
|
7795
|
+
}[]
|
|
7796
|
+
];
|
|
7625
7797
|
[k: string]: unknown;
|
|
7626
7798
|
}
|
|
7627
7799
|
export interface Filter {
|
|
@@ -148,7 +148,10 @@ export declare enum AllModuleTypes {
|
|
|
148
148
|
AutomationForConfluenceCondition = "automation:condition",
|
|
149
149
|
AutomationForConfluenceAttributeResolver = "automation:attributeResolver",
|
|
150
150
|
AutomationForConfluenceTemplate = "automation:template",
|
|
151
|
-
AutomationForConfluenceI18n = "automation:i18n"
|
|
151
|
+
AutomationForConfluenceI18n = "automation:i18n",
|
|
152
|
+
AiSkillModule = "ai:skill",
|
|
153
|
+
AiAgentModule = "ai:agent",
|
|
154
|
+
AiCustomAgentModule = "ai:customAgent"
|
|
152
155
|
}
|
|
153
156
|
export declare const SUPPORTED_MODULES: AllModuleTypes[];
|
|
154
157
|
export declare const SUPPORTED_PRODUCTS_ONLY: string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,YAAY,kBAAkB;IAC9B,WAAW,iBAAiB;IAC5B,cAAc,oBAAoB;IAClC,YAAY,kBAAkB;IAC9B,oBAAoB,0BAA0B;IAC9C,YAAY,kBAAkB;IAC9B,aAAa,mBAAmB;IAChC,UAAU,gBAAgB;IAC1B,QAAQ,cAAc;IACtB,uBAAuB,6BAA6B;IACpD,2BAA2B,iCAAiC;IAC5D,qBAAqB,2BAA2B;IAChD,uBAAuB,6BAA6B;IACpD,wBAAwB,8BAA8B;IACtD,oBAAoB,0BAA0B;IAC9C,sBAAsB,4BAA4B;IAClD,mBAAmB,yBAAyB;IAC5C,uBAAuB,6BAA6B;IACpD,kBAAkB,wBAAwB;IAC1C,qBAAqB,2BAA2B;IAChD,qBAAqB,2BAA2B;IAChD,wBAAwB,8BAA8B;IACtD,eAAe,qBAAqB;IACpC,mBAAmB,yBAAyB;IAC5C,eAAe,qBAAqB;IACpC,iBAAiB,uBAAuB;IACxC,mBAAmB,yBAAyB;IAC5C,eAAe,qBAAqB;IACpC,gBAAgB,sBAAsB;IACtC,cAAc,oBAAoB;IAClC,aAAa,mBAAmB;IAChC,eAAe,qBAAqB;IACpC,uBAAuB,6BAA6B;IACpD,cAAc,oBAAoB;IAClC,mBAAmB,yBAAyB;IAC5C,6BAA6B,mCAAmC;IAChE,6BAA6B,mCAAmC;IAChE,oBAAoB,0BAA0B;IAC9C,qBAAqB,2BAA2B;IAChD,eAAe,qBAAqB;IAEpC,gBAAgB,sBAAsB;IACtC,oBAAoB,0BAA0B;IAC9C,iBAAiB,uBAAuB;IACxC,eAAe,qBAAqB;IACpC,mBAAmB,yBAAyB;IAE5C,qCAAqC,2CAA2C;IAChF,qCAAqC,2CAA2C;IAChF,8BAA8B,oCAAoC;IAClE,wCAAwC,8CAA8C;IACtF,6CAA6C,mDAAmD;IAChG,sCAAsC,4CAA4C;IAClF,iCAAiC,uCAAuC;IACxE,oCAAoC,0CAA0C;IAC9E,iCAAiC,uCAAuC;IACxE,uCAAuC,6CAA6C;IACpF,4CAA4C,kDAAkD;IAC9F,yCAAyC,+CAA+C;IACxF,qDAAqD,2DAA2D;IAEhH,6BAA6B,mCAAmC;IAChE,+BAA+B,qCAAqC;IACpE,yBAAyB,+BAA+B;IACxD,4BAA4B,kCAAkC;IAC9D,8BAA8B,oCAAoC;IAClE,6BAA6B,mCAAmC;IAChE,kCAAkC,wCAAwC;IAC1E,mBAAmB,yBAAyB;IAE5C,qBAAqB,4BAA4B;IACjD,gCAAgC,uCAAuC;IACvE,uBAAuB,8BAA8B;IACrD,6BAA6B,oCAAoC;IACjE,gCAAgC,uCAAuC;IACvE,0BAA0B,iCAAiC;IAC3D,2BAA2B,kCAAkC;IAC7D,oCAAoC,2CAA2C;IAC/E,+BAA+B,sCAAsC;IACrE,iCAAiC,wCAAwC;IACzE,oCAAoC,2CAA2C;IAC/E,4BAA4B,mCAAmC;IAC/D,mBAAmB,0BAA0B;IAC7C,oBAAoB,2BAA2B;IAC/C,2BAA2B,kCAAkC;IAC7D,2BAA2B,kCAAkC;IAC7D,8BAA8B,qCAAqC;IACnE,4CAA4C,mDAAmD;IAC/F,iCAAiC,wCAAwC;IACzE,mCAAmC,0CAA0C;IAC7E,8BAA8B,qCAAqC;IACnE,wBAAwB,+BAA+B;IACvD,qCAAqC,4CAA4C;IACjF,6BAA6B,oCAAoC;IACjE,kCAAkC,yCAAyC;IAC3E,gCAAgC,uCAAuC;IACvE,+BAA+B,sCAAsC;IACrE,oCAAoC,2CAA2C;IAC/E,yBAAyB,gCAAgC;IACzD,0BAA0B,iCAAiC;IAC3D,4BAA4B,mCAAmC;IAC/D,yBAAyB,gCAAgC;IACzD,kCAAkC,yCAAyC;IAC3E,wBAAwB,+BAA+B;IACvD,kBAAkB,yBAAyB;IAC3C,gCAAgC,uCAAuC;IACvE,qCAAqC,4CAA4C;IACjF,8BAA8B,qCAAqC;IACnE,+BAA+B,sCAAsC;IACrE,sCAAsC,6CAA6C;IACnF,4BAA4B,mCAAmC;IAC/D,4BAA4B,mCAAmC;IAC/D,qCAAqC,4CAA4C;IACjF,6BAA6B,oCAAoC;IACjE,yBAAyB,gCAAgC;IACzD,2BAA2B,kCAAkC;IAC7D,iCAAiC,wCAAwC;IACzE,sBAAsB,6BAA6B;IACnD,iCAAiC,wCAAwC;IACzE,oCAAoC,2CAA2C;IAC/E,iCAAiC,wCAAwC;IACzE,0BAA0B,iCAAiC;IAC3D,oBAAoB,2BAA2B;IAC/C,sBAAsB,6BAA6B;IACnD,mBAAmB,0BAA0B;IAC7C,0BAA0B,iCAAiC;IAC3D,mCAAmC,0CAA0C;IAC7E,mCAAmC,0CAA0C;IAC7E,sCAAsC,6CAA6C;IACnF,mCAAmC,0CAA0C;IAC7E,uDAAuD,8DAA8D;IACrH,oDAAoD,2DAA2D;IAC/G,6CAA6C,oDAAoD;IACjG,yCAAyC,gDAAgD;IACzF,4BAA4B,mCAAmC;IAC/D,6BAA6B,oCAAoC;IACjE,wCAAwC,+CAA+C;IACvF,kCAAkC,yCAAyC;IAC3E,iCAAiC,wCAAwC;IACzE,2CAA2C,kDAAkD;IAC7F,0CAA0C,iDAAiD;IAC3F,8CAA8C,qDAAqD;IACnG,yCAAyC,gDAAgD;IACzF,4BAA4B,mCAAmC;IAC/D,+BAA+B,sCAAsC;IACrE,sBAAsB,6BAA6B;IACnD,2BAA2B,kCAAkC;IAE7D,8BAA8B,uBAAuB;IACrD,6BAA6B,sBAAsB;IACnD,6BAA6B,sBAAsB;IACnD,gCAAgC,yBAAyB;IACzD,wCAAwC,iCAAiC;IACzE,+BAA+B,wBAAwB;IACvD,2BAA2B,oBAAoB;IAE/C,aAAa,aAAa;IAC1B,aAAa,aAAa;IAC1B,mBAAmB,mBAAmB;CACvC;AAED,eAAO,MAAM,iBAAiB,kBAAgC,CAAC;AAE/D,eAAO,MAAM,uBAAuB,UAAwE,CAAC"}
|
|
@@ -153,6 +153,9 @@ var AllModuleTypes;
|
|
|
153
153
|
AllModuleTypes["AutomationForConfluenceAttributeResolver"] = "automation:attributeResolver";
|
|
154
154
|
AllModuleTypes["AutomationForConfluenceTemplate"] = "automation:template";
|
|
155
155
|
AllModuleTypes["AutomationForConfluenceI18n"] = "automation:i18n";
|
|
156
|
+
AllModuleTypes["AiSkillModule"] = "ai:skill";
|
|
157
|
+
AllModuleTypes["AiAgentModule"] = "ai:agent";
|
|
158
|
+
AllModuleTypes["AiCustomAgentModule"] = "ai:customAgent";
|
|
156
159
|
})(AllModuleTypes = exports.AllModuleTypes || (exports.AllModuleTypes = {}));
|
|
157
160
|
exports.SUPPORTED_MODULES = Object.values(AllModuleTypes);
|
|
158
161
|
exports.SUPPORTED_PRODUCTS_ONLY = [...new Set(exports.SUPPORTED_MODULES.map((module) => module.split(':')[0]))];
|