@forge/manifest 9.5.0-next.6 → 10.0.0-next.10
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
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 10.0.0-next.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e6cd96a: Update manifest definitions
|
|
8
|
+
|
|
9
|
+
## 10.0.0-next.9
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 33c5750: Add dashboards:widget module
|
|
14
|
+
|
|
15
|
+
## 10.0.0-next.8
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 37eba69: Update manifest definitions
|
|
20
|
+
|
|
21
|
+
## 10.0.0-next.7
|
|
22
|
+
|
|
23
|
+
### Major Changes
|
|
24
|
+
|
|
25
|
+
- 8f2a3c9: Update the package to build on Node 20
|
|
26
|
+
|
|
3
27
|
## 9.5.0-next.6
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
|
@@ -967,7 +967,7 @@
|
|
|
967
967
|
"title": "memoryMB",
|
|
968
968
|
"description": "The amount of memory available to this function at runtime. Increasing the function memory also increases its CPU allocation. You can configure memory between 128 MB and 1024 MB in 1-MB increments. The default value is 512 MB.",
|
|
969
969
|
"minimum": 128,
|
|
970
|
-
"maximum":
|
|
970
|
+
"maximum": 4096
|
|
971
971
|
}
|
|
972
972
|
}
|
|
973
973
|
},
|
|
@@ -2291,6 +2291,116 @@
|
|
|
2291
2291
|
},
|
|
2292
2292
|
"minItems": 1
|
|
2293
2293
|
},
|
|
2294
|
+
"dashboards:widget": {
|
|
2295
|
+
"type": "array",
|
|
2296
|
+
"items": {
|
|
2297
|
+
"type": "object",
|
|
2298
|
+
"properties": {
|
|
2299
|
+
"title": {
|
|
2300
|
+
"type": "string",
|
|
2301
|
+
"minLength": 1,
|
|
2302
|
+
"maxLength": 255
|
|
2303
|
+
},
|
|
2304
|
+
"description": {
|
|
2305
|
+
"type": "string",
|
|
2306
|
+
"minLength": 1,
|
|
2307
|
+
"maxLength": 1000
|
|
2308
|
+
},
|
|
2309
|
+
"resource": {
|
|
2310
|
+
"type": "string",
|
|
2311
|
+
"minLength": 1,
|
|
2312
|
+
"maxLength": 23,
|
|
2313
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
2314
|
+
},
|
|
2315
|
+
"render": {
|
|
2316
|
+
"default": "default",
|
|
2317
|
+
"enum": [
|
|
2318
|
+
"default",
|
|
2319
|
+
"native"
|
|
2320
|
+
],
|
|
2321
|
+
"type": "string"
|
|
2322
|
+
},
|
|
2323
|
+
"edit": {
|
|
2324
|
+
"type": "object",
|
|
2325
|
+
"properties": {
|
|
2326
|
+
"resource": {
|
|
2327
|
+
"type": "string",
|
|
2328
|
+
"minLength": 1,
|
|
2329
|
+
"maxLength": 23,
|
|
2330
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
2331
|
+
},
|
|
2332
|
+
"render": {
|
|
2333
|
+
"default": "default",
|
|
2334
|
+
"enum": [
|
|
2335
|
+
"default",
|
|
2336
|
+
"native"
|
|
2337
|
+
],
|
|
2338
|
+
"type": "string"
|
|
2339
|
+
}
|
|
2340
|
+
},
|
|
2341
|
+
"required": [
|
|
2342
|
+
"resource"
|
|
2343
|
+
]
|
|
2344
|
+
},
|
|
2345
|
+
"resolver": {
|
|
2346
|
+
"anyOf": [
|
|
2347
|
+
{
|
|
2348
|
+
"additionalProperties": false,
|
|
2349
|
+
"type": "object",
|
|
2350
|
+
"properties": {
|
|
2351
|
+
"function": {
|
|
2352
|
+
"type": "string",
|
|
2353
|
+
"minLength": 1,
|
|
2354
|
+
"maxLength": 255,
|
|
2355
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
2356
|
+
}
|
|
2357
|
+
},
|
|
2358
|
+
"required": [
|
|
2359
|
+
"function"
|
|
2360
|
+
]
|
|
2361
|
+
},
|
|
2362
|
+
{
|
|
2363
|
+
"additionalProperties": false,
|
|
2364
|
+
"type": "object",
|
|
2365
|
+
"properties": {
|
|
2366
|
+
"endpoint": {
|
|
2367
|
+
"type": "string",
|
|
2368
|
+
"minLength": 1,
|
|
2369
|
+
"maxLength": 255,
|
|
2370
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
2371
|
+
}
|
|
2372
|
+
},
|
|
2373
|
+
"required": [
|
|
2374
|
+
"endpoint"
|
|
2375
|
+
]
|
|
2376
|
+
}
|
|
2377
|
+
]
|
|
2378
|
+
},
|
|
2379
|
+
"thumbnail": {
|
|
2380
|
+
"type": "string",
|
|
2381
|
+
"minLength": 1,
|
|
2382
|
+
"maxLength": 255
|
|
2383
|
+
},
|
|
2384
|
+
"key": {
|
|
2385
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
2386
|
+
}
|
|
2387
|
+
},
|
|
2388
|
+
"required": [
|
|
2389
|
+
"title",
|
|
2390
|
+
"thumbnail",
|
|
2391
|
+
"description",
|
|
2392
|
+
"resource",
|
|
2393
|
+
"edit",
|
|
2394
|
+
"key"
|
|
2395
|
+
],
|
|
2396
|
+
"not": {
|
|
2397
|
+
"required": [
|
|
2398
|
+
"unlicensedAccess"
|
|
2399
|
+
]
|
|
2400
|
+
}
|
|
2401
|
+
},
|
|
2402
|
+
"minItems": 1
|
|
2403
|
+
},
|
|
2294
2404
|
"confluence:contextMenu": {
|
|
2295
2405
|
"type": "array",
|
|
2296
2406
|
"items": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -12271,6 +12271,50 @@ export interface Modules {
|
|
|
12271
12271
|
key: ModuleKeySchema;
|
|
12272
12272
|
}[]
|
|
12273
12273
|
];
|
|
12274
|
+
'dashboards:widget'?: [
|
|
12275
|
+
{
|
|
12276
|
+
title: string;
|
|
12277
|
+
description: string;
|
|
12278
|
+
resource: string;
|
|
12279
|
+
render?: 'default' | 'native';
|
|
12280
|
+
edit: {
|
|
12281
|
+
resource: string;
|
|
12282
|
+
render?: 'default' | 'native';
|
|
12283
|
+
[k: string]: unknown;
|
|
12284
|
+
};
|
|
12285
|
+
resolver?:
|
|
12286
|
+
| {
|
|
12287
|
+
function: string;
|
|
12288
|
+
}
|
|
12289
|
+
| {
|
|
12290
|
+
endpoint: string;
|
|
12291
|
+
};
|
|
12292
|
+
thumbnail: string;
|
|
12293
|
+
key: ModuleKeySchema;
|
|
12294
|
+
[k: string]: unknown;
|
|
12295
|
+
},
|
|
12296
|
+
...{
|
|
12297
|
+
title: string;
|
|
12298
|
+
description: string;
|
|
12299
|
+
resource: string;
|
|
12300
|
+
render?: 'default' | 'native';
|
|
12301
|
+
edit: {
|
|
12302
|
+
resource: string;
|
|
12303
|
+
render?: 'default' | 'native';
|
|
12304
|
+
[k: string]: unknown;
|
|
12305
|
+
};
|
|
12306
|
+
resolver?:
|
|
12307
|
+
| {
|
|
12308
|
+
function: string;
|
|
12309
|
+
}
|
|
12310
|
+
| {
|
|
12311
|
+
endpoint: string;
|
|
12312
|
+
};
|
|
12313
|
+
thumbnail: string;
|
|
12314
|
+
key: ModuleKeySchema;
|
|
12315
|
+
[k: string]: unknown;
|
|
12316
|
+
}[]
|
|
12317
|
+
];
|
|
12274
12318
|
'confluence:contextMenu'?: [
|
|
12275
12319
|
(
|
|
12276
12320
|
| {
|
|
@@ -12,6 +12,7 @@ export declare enum AllModuleTypes {
|
|
|
12
12
|
CoreSql = "core:sql",
|
|
13
13
|
XenMacro = "xen:macro",
|
|
14
14
|
DataResidencyMigration = "migration:dataResidency",
|
|
15
|
+
DashboardsWidget = "dashboards:widget",
|
|
15
16
|
ConfluenceContentAction = "confluence:contentAction",
|
|
16
17
|
ConfluenceContentBylineItem = "confluence:contentBylineItem",
|
|
17
18
|
ConfluenceContextMenu = "confluence:contextMenu",
|
|
@@ -1 +1 @@
|
|
|
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,SAAS,eAAe;IACxB,YAAY,kBAAkB;IAC9B,oBAAoB,0BAA0B;IAC9C,YAAY,kBAAkB;IAC9B,aAAa,mBAAmB;IAChC,UAAU,gBAAgB;IAC1B,OAAO,aAAa;IACpB,QAAQ,cAAc;IACtB,sBAAsB,4BAA4B;
|
|
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,SAAS,eAAe;IACxB,YAAY,kBAAkB;IAC9B,oBAAoB,0BAA0B;IAC9C,YAAY,kBAAkB;IAC9B,aAAa,mBAAmB;IAChC,UAAU,gBAAgB;IAC1B,OAAO,aAAa;IACpB,QAAQ,cAAc;IACtB,sBAAsB,4BAA4B;IAClD,gBAAgB,sBAAsB;IAEtC,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,0BAA0B,gCAAgC;IAC1D,oBAAoB,0BAA0B;IAC9C,yBAAyB,+BAA+B;IAExD,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,wBAAwB,8BAA8B;IACtD,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;IACpC,wBAAwB,8BAA8B;IACtD,iBAAiB,uBAAuB;IACxC,wBAAwB,8BAA8B;IACtD,eAAe,qBAAqB;IACpC,gBAAgB,sBAAsB;IACtC,WAAW,iBAAiB;IAE5B,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,8BAA8B,oCAAoC;IAClE,yBAAyB,+BAA+B;IACxD,4BAA4B,kCAAkC;IAC9D,8BAA8B,oCAAoC;IAClE,qCAAqC,2CAA2C;IAChF,6BAA6B,mCAAmC;IAChE,kCAAkC,wCAAwC;IAC1E,mBAAmB,yBAAyB;IAC5C,iCAAiC,uCAAuC;IAExE,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,wBAAwB,mCAAmC;IAC3D,uBAAuB,8BAA8B;IACrD,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,8BAA8B,yCAAyC;IACvE,6BAA6B,oCAAoC;IACjE,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;IAC7D,qCAAqC,4CAA4C;IACjF,sCAAsC,6CAA6C;IAEnF,8BAA8B,uBAAuB;IACrD,6BAA6B,sBAAsB;IACnD,6BAA6B,sBAAsB;IACnD,gCAAgC,yBAAyB;IACzD,wCAAwC,iCAAiC;IACzE,+BAA+B,wBAAwB;IACvD,2BAA2B,oBAAoB;IAC/C,wBAAwB,8BAA8B;IAEtD,SAAS,eAAe;IACxB,UAAU,gBAAgB;IAC1B,mBAAmB,yBAAyB;IAC5C,cAAc,oBAAoB;IAClC,UAAU,oBAAoB;CAC/B;AAED,eAAO,MAAM,iBAAiB,kBAAgC,CAAC;AAE/D,eAAO,MAAM,uBAAuB,UAAwE,CAAC"}
|
|
@@ -16,6 +16,7 @@ var AllModuleTypes;
|
|
|
16
16
|
AllModuleTypes["CoreSql"] = "core:sql";
|
|
17
17
|
AllModuleTypes["XenMacro"] = "xen:macro";
|
|
18
18
|
AllModuleTypes["DataResidencyMigration"] = "migration:dataResidency";
|
|
19
|
+
AllModuleTypes["DashboardsWidget"] = "dashboards:widget";
|
|
19
20
|
AllModuleTypes["ConfluenceContentAction"] = "confluence:contentAction";
|
|
20
21
|
AllModuleTypes["ConfluenceContentBylineItem"] = "confluence:contentBylineItem";
|
|
21
22
|
AllModuleTypes["ConfluenceContextMenu"] = "confluence:contextMenu";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/manifest",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.0.0-next.10",
|
|
4
4
|
"description": "Definitions and validations of the Forge manifest",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/jest": "^29.5.12",
|
|
19
|
-
"@types/node": "
|
|
19
|
+
"@types/node": "20.19.0",
|
|
20
20
|
"json-schema-to-typescript": "^10.1.5",
|
|
21
21
|
"typescript": "4.8.4",
|
|
22
22
|
"typescript-json-schema": "^0.62.0"
|