@forge/manifest 9.5.0-next.5 → 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,36 @@
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
+
27
+ ## 9.5.0-next.6
28
+
29
+ ### Patch Changes
30
+
31
+ - a7bd152: Adding support for new module type core:apiroute
32
+ - 8a548ce: Update manifest definitions
33
+
3
34
  ## 9.5.0-next.5
4
35
 
5
36
  ### Minor Changes
@@ -627,6 +627,66 @@
627
627
  },
628
628
  "minItems": 1
629
629
  },
630
+ "apiRoute": {
631
+ "type": "array",
632
+ "items": {
633
+ "$schema": "http://json-schema.org/draft-07/schema#",
634
+ "type": "object",
635
+ "additionalProperties": false,
636
+ "properties": {
637
+ "path": {
638
+ "type": "string",
639
+ "description": "The URL path for the API endpoint",
640
+ "pattern": "^/[a-zA-Z0-9]+(/[a-zA-Z0-9]+|/\\*)*$",
641
+ "minLength": 1,
642
+ "maxLength": 255
643
+ },
644
+ "operation": {
645
+ "type": "string",
646
+ "description": "HTTP method for the API endpoint",
647
+ "enum": [
648
+ "GET",
649
+ "POST",
650
+ "PUT",
651
+ "DELETE",
652
+ "PATCH"
653
+ ]
654
+ },
655
+ "function": {
656
+ "$ref": "#/definitions/ExtensionKey",
657
+ "description": "The key of the function that should be invoked for this API route",
658
+ "title": "function",
659
+ "type": "string"
660
+ },
661
+ "accept": {
662
+ "type": "array",
663
+ "description": "List of accepted content types for the API route",
664
+ "items": {
665
+ "type": "string",
666
+ "enum": [
667
+ "application/json"
668
+ ]
669
+ },
670
+ "minItems": 1
671
+ },
672
+ "key": {
673
+ "$ref": "#/definitions/ModuleKeySchema"
674
+ }
675
+ },
676
+ "required": [
677
+ "path",
678
+ "operation",
679
+ "function",
680
+ "key"
681
+ ],
682
+ "not": {
683
+ "required": [
684
+ "unlicensedAccess"
685
+ ]
686
+ }
687
+ },
688
+ "minItems": 1
689
+ },
630
690
  "consumer": {
631
691
  "type": "array",
632
692
  "items": {
@@ -907,7 +967,7 @@
907
967
  "title": "memoryMB",
908
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.",
909
969
  "minimum": 128,
910
- "maximum": 1769
970
+ "maximum": 4096
911
971
  }
912
972
  }
913
973
  },
@@ -2231,6 +2291,116 @@
2231
2291
  },
2232
2292
  "minItems": 1
2233
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
+ },
2234
2404
  "confluence:contextMenu": {
2235
2405
  "type": "array",
2236
2406
  "items": {
@@ -158,6 +158,10 @@ export type ExtensionKey = string;
158
158
  export type ResponseOptions = {
159
159
  [k: string]: unknown;
160
160
  };
161
+ /**
162
+ * The key of the function that should be invoked for this API route
163
+ */
164
+ export type Function2 = string;
161
165
  /**
162
166
  * The name of the queue that this consumer listens to.
163
167
  */
@@ -1043,6 +1047,40 @@ export interface Modules {
1043
1047
  }
1044
1048
  )[]
1045
1049
  ];
1050
+ apiRoute?: [
1051
+ {
1052
+ /**
1053
+ * The URL path for the API endpoint
1054
+ */
1055
+ path: string;
1056
+ /**
1057
+ * HTTP method for the API endpoint
1058
+ */
1059
+ operation: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
1060
+ function: Function2;
1061
+ /**
1062
+ * List of accepted content types for the API route
1063
+ */
1064
+ accept?: ['application/json', ...'application/json'[]];
1065
+ key: ModuleKeySchema;
1066
+ },
1067
+ ...{
1068
+ /**
1069
+ * The URL path for the API endpoint
1070
+ */
1071
+ path: string;
1072
+ /**
1073
+ * HTTP method for the API endpoint
1074
+ */
1075
+ operation: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
1076
+ function: Function2;
1077
+ /**
1078
+ * List of accepted content types for the API route
1079
+ */
1080
+ accept?: ['application/json', ...'application/json'[]];
1081
+ key: ModuleKeySchema;
1082
+ }[]
1083
+ ];
1046
1084
  consumer?: [
1047
1085
  (
1048
1086
  | {
@@ -12233,6 +12271,50 @@ export interface Modules {
12233
12271
  key: ModuleKeySchema;
12234
12272
  }[]
12235
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
+ ];
12236
12318
  'confluence:contextMenu'?: [
12237
12319
  (
12238
12320
  | {
@@ -2,6 +2,7 @@ export declare enum AllModuleTypes {
2
2
  CoreFunction = "core:function",
3
3
  CoreTrigger = "core:trigger",
4
4
  CoreWebTrigger = "core:webtrigger",
5
+ CoreAPIRoute = "core:apiRoute",
5
6
  CoreEvent = "core:event",
6
7
  CoreConsumer = "core:consumer",
7
8
  CoreScheduledTrigger = "core:scheduledTrigger",
@@ -11,6 +12,7 @@ export declare enum AllModuleTypes {
11
12
  CoreSql = "core:sql",
12
13
  XenMacro = "xen:macro",
13
14
  DataResidencyMigration = "migration:dataResidency",
15
+ DashboardsWidget = "dashboards:widget",
14
16
  ConfluenceContentAction = "confluence:contentAction",
15
17
  ConfluenceContentBylineItem = "confluence:contentBylineItem",
16
18
  ConfluenceContextMenu = "confluence:contextMenu",
@@ -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":"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"}
@@ -6,6 +6,7 @@ var AllModuleTypes;
6
6
  AllModuleTypes["CoreFunction"] = "core:function";
7
7
  AllModuleTypes["CoreTrigger"] = "core:trigger";
8
8
  AllModuleTypes["CoreWebTrigger"] = "core:webtrigger";
9
+ AllModuleTypes["CoreAPIRoute"] = "core:apiRoute";
9
10
  AllModuleTypes["CoreEvent"] = "core:event";
10
11
  AllModuleTypes["CoreConsumer"] = "core:consumer";
11
12
  AllModuleTypes["CoreScheduledTrigger"] = "core:scheduledTrigger";
@@ -15,6 +16,7 @@ var AllModuleTypes;
15
16
  AllModuleTypes["CoreSql"] = "core:sql";
16
17
  AllModuleTypes["XenMacro"] = "xen:macro";
17
18
  AllModuleTypes["DataResidencyMigration"] = "migration:dataResidency";
19
+ AllModuleTypes["DashboardsWidget"] = "dashboards:widget";
18
20
  AllModuleTypes["ConfluenceContentAction"] = "confluence:contentAction";
19
21
  AllModuleTypes["ConfluenceContentBylineItem"] = "confluence:contentBylineItem";
20
22
  AllModuleTypes["ConfluenceContextMenu"] = "confluence:contextMenu";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "9.5.0-next.5",
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": "14.18.63",
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"