@forge/manifest 3.6.0-next.6 → 3.6.0-next.7

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,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 3.6.0-next.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 0920759f: Update manifest definitions
8
+
3
9
  ## 3.6.0-next.6
4
10
 
5
11
  ### Minor Changes
@@ -4221,6 +4221,82 @@
4221
4221
  },
4222
4222
  "minItems": 1
4223
4223
  },
4224
+ "jira:workflowPostFunction": {
4225
+ "type": "array",
4226
+ "items": {
4227
+ "type": "object",
4228
+ "properties": {
4229
+ "name": {
4230
+ "minLength": 1,
4231
+ "maxLength": 255,
4232
+ "type": "string"
4233
+ },
4234
+ "description": {
4235
+ "minLength": 1,
4236
+ "maxLength": 1000,
4237
+ "type": "string"
4238
+ },
4239
+ "function": {
4240
+ "type": "string",
4241
+ "minLength": 1,
4242
+ "maxLength": 255,
4243
+ "pattern": "^[a-zA-Z0-9-_]+$"
4244
+ },
4245
+ "view": {
4246
+ "type": "object",
4247
+ "properties": {
4248
+ "resource": {
4249
+ "type": "string",
4250
+ "minLength": 1,
4251
+ "maxLength": 23,
4252
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
4253
+ }
4254
+ },
4255
+ "required": [
4256
+ "resource"
4257
+ ]
4258
+ },
4259
+ "edit": {
4260
+ "type": "object",
4261
+ "properties": {
4262
+ "resource": {
4263
+ "type": "string",
4264
+ "minLength": 1,
4265
+ "maxLength": 23,
4266
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
4267
+ }
4268
+ },
4269
+ "required": [
4270
+ "resource"
4271
+ ]
4272
+ },
4273
+ "create": {
4274
+ "type": "object",
4275
+ "properties": {
4276
+ "resource": {
4277
+ "type": "string",
4278
+ "minLength": 1,
4279
+ "maxLength": 23,
4280
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
4281
+ }
4282
+ },
4283
+ "required": [
4284
+ "resource"
4285
+ ]
4286
+ },
4287
+ "key": {
4288
+ "$ref": "#/definitions/ModuleKeySchema"
4289
+ }
4290
+ },
4291
+ "required": [
4292
+ "description",
4293
+ "function",
4294
+ "name",
4295
+ "key"
4296
+ ]
4297
+ },
4298
+ "minItems": 1
4299
+ },
4224
4300
  "compass:adminPage": {
4225
4301
  "type": "array",
4226
4302
  "items": {
@@ -2285,6 +2285,46 @@ export interface Modules {
2285
2285
  [k: string]: unknown;
2286
2286
  }[]
2287
2287
  ];
2288
+ 'jira:workflowPostFunction'?: [
2289
+ {
2290
+ name: string;
2291
+ description: string;
2292
+ function: string;
2293
+ view?: {
2294
+ resource: string;
2295
+ [k: string]: unknown;
2296
+ };
2297
+ edit?: {
2298
+ resource: string;
2299
+ [k: string]: unknown;
2300
+ };
2301
+ create?: {
2302
+ resource: string;
2303
+ [k: string]: unknown;
2304
+ };
2305
+ key: ModuleKeySchema;
2306
+ [k: string]: unknown;
2307
+ },
2308
+ ...{
2309
+ name: string;
2310
+ description: string;
2311
+ function: string;
2312
+ view?: {
2313
+ resource: string;
2314
+ [k: string]: unknown;
2315
+ };
2316
+ edit?: {
2317
+ resource: string;
2318
+ [k: string]: unknown;
2319
+ };
2320
+ create?: {
2321
+ resource: string;
2322
+ [k: string]: unknown;
2323
+ };
2324
+ key: ModuleKeySchema;
2325
+ [k: string]: unknown;
2326
+ }[]
2327
+ ];
2288
2328
  'compass:adminPage'?: [
2289
2329
  (
2290
2330
  | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "3.6.0-next.6",
3
+ "version": "3.6.0-next.7",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {