@forge/manifest 3.4.0 → 3.5.0-next.2

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,23 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 3.5.0-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 02839be: Update manifest definitions
8
+
9
+ ## 3.5.0-next.1
10
+
11
+ ### Patch Changes
12
+
13
+ - a3bfe81: Update manifest definitions
14
+
15
+ ## 3.5.0-next.0
16
+
17
+ ### Minor Changes
18
+
19
+ - ba674590: Add validation for Issue Adjustments module
20
+
3
21
  ## 3.4.0
4
22
 
5
23
  ### Minor Changes
@@ -1111,6 +1111,11 @@
1111
1111
  "displayConditions": {
1112
1112
  "type": "object"
1113
1113
  },
1114
+ "useAsConfig": {
1115
+ "type": "boolean",
1116
+ "default": false,
1117
+ "description": "A flag indicating whether this settings instance will be used as the app's configuration"
1118
+ },
1114
1119
  "key": {
1115
1120
  "$ref": "#/definitions/ModuleKeySchema"
1116
1121
  }
@@ -1158,6 +1163,11 @@
1158
1163
  "displayConditions": {
1159
1164
  "type": "object"
1160
1165
  },
1166
+ "useAsConfig": {
1167
+ "type": "boolean",
1168
+ "default": false,
1169
+ "description": "A flag indicating whether this settings instance will be used as the app's configuration"
1170
+ },
1161
1171
  "key": {
1162
1172
  "$ref": "#/definitions/ModuleKeySchema"
1163
1173
  }
@@ -2294,6 +2304,49 @@
2294
2304
  },
2295
2305
  "minItems": 1
2296
2306
  },
2307
+ "jira:issueAdjustment": {
2308
+ "type": "array",
2309
+ "items": {
2310
+ "type": "object",
2311
+ "properties": {
2312
+ "title": {
2313
+ "type": "string",
2314
+ "minLength": 1,
2315
+ "maxLength": 255
2316
+ },
2317
+ "resolver": {
2318
+ "additionalProperties": false,
2319
+ "type": "object",
2320
+ "properties": {
2321
+ "function": {
2322
+ "type": "string",
2323
+ "minLength": 1,
2324
+ "maxLength": 255,
2325
+ "pattern": "^[a-zA-Z0-9-_]+$"
2326
+ }
2327
+ },
2328
+ "required": [
2329
+ "function"
2330
+ ]
2331
+ },
2332
+ "resource": {
2333
+ "type": "string",
2334
+ "minLength": 1,
2335
+ "maxLength": 23,
2336
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
2337
+ },
2338
+ "key": {
2339
+ "$ref": "#/definitions/ModuleKeySchema"
2340
+ }
2341
+ },
2342
+ "required": [
2343
+ "title",
2344
+ "resource",
2345
+ "key"
2346
+ ]
2347
+ },
2348
+ "minItems": 1
2349
+ },
2297
2350
  "jira:issueGlance": {
2298
2351
  "type": "array",
2299
2352
  "items": {
@@ -663,6 +663,10 @@ export interface Modules {
663
663
  displayConditions?: {
664
664
  [k: string]: unknown;
665
665
  };
666
+ /**
667
+ * A flag indicating whether this settings instance will be used as the app's configuration
668
+ */
669
+ useAsConfig?: boolean;
666
670
  key: ModuleKeySchema;
667
671
  [k: string]: unknown;
668
672
  }
@@ -676,6 +680,10 @@ export interface Modules {
676
680
  displayConditions?: {
677
681
  [k: string]: unknown;
678
682
  };
683
+ /**
684
+ * A flag indicating whether this settings instance will be used as the app's configuration
685
+ */
686
+ useAsConfig?: boolean;
679
687
  key: ModuleKeySchema;
680
688
  [k: string]: unknown;
681
689
  }
@@ -687,6 +695,10 @@ export interface Modules {
687
695
  displayConditions?: {
688
696
  [k: string]: unknown;
689
697
  };
698
+ /**
699
+ * A flag indicating whether this settings instance will be used as the app's configuration
700
+ */
701
+ useAsConfig?: boolean;
690
702
  key: ModuleKeySchema;
691
703
  [k: string]: unknown;
692
704
  }
@@ -700,6 +712,10 @@ export interface Modules {
700
712
  displayConditions?: {
701
713
  [k: string]: unknown;
702
714
  };
715
+ /**
716
+ * A flag indicating whether this settings instance will be used as the app's configuration
717
+ */
718
+ useAsConfig?: boolean;
703
719
  key: ModuleKeySchema;
704
720
  [k: string]: unknown;
705
721
  }
@@ -1321,6 +1337,26 @@ export interface Modules {
1321
1337
  }
1322
1338
  )[]
1323
1339
  ];
1340
+ 'jira:issueAdjustment'?: [
1341
+ {
1342
+ title: string;
1343
+ resolver?: {
1344
+ function: string;
1345
+ };
1346
+ resource: string;
1347
+ key: ModuleKeySchema;
1348
+ [k: string]: unknown;
1349
+ },
1350
+ ...{
1351
+ title: string;
1352
+ resolver?: {
1353
+ function: string;
1354
+ };
1355
+ resource: string;
1356
+ key: ModuleKeySchema;
1357
+ [k: string]: unknown;
1358
+ }[]
1359
+ ];
1324
1360
  'jira:issueGlance'?: [
1325
1361
  (
1326
1362
  | {
@@ -26,6 +26,7 @@ export declare const errors: {
26
26
  duplicateKeyFound: (key: string) => string;
27
27
  wrongFunctionReference: (module: string, functionKey: string) => string;
28
28
  wrongResourceReference: (module: string, resourceKey: string) => string;
29
+ singleEntryOfTheModule: (moduleType: string) => string;
29
30
  displayConditions: {
30
31
  overcomplicated: (moduleKey: string) => string;
31
32
  invalid: (moduleKey: string) => string;
@@ -42,9 +43,6 @@ export declare const errors: {
42
43
  jiraEntityProperty: {
43
44
  maxExtractionsPerApp: (limit: number) => string;
44
45
  };
45
- fullPage: {
46
- children: (moduleType: string) => string;
47
- };
48
46
  customFields: {
49
47
  searchAlias: (aliases: string[]) => string;
50
48
  };
@@ -1 +1 @@
1
- {"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../../src/text/errors.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM;8BACS,MAAM,KAAG,MAAM;2BACpB,MAAM;yBAEN,MAAM,GAAG,SAAS,QAAQ,MAAM,EAAE,UAAU,MAAM,GAAG,SAAS,KAAG,MAAM;;uBAO3E,MAAM,EAAE,EAAE,GAAG,SAAS,KAAG,MAAM;4BAI1B,MAAM,EAAE,KAAG,MAAM;mCACV,MAAM,SAAS,MAAM,0CAA4B,MAAM;mDAIvC,MAAM,KAAG,MAAM;;;qCAI7B,MAAM,SAAS,MAAM,KAAG,MAAM;4CAEvB,MAAM,SAAS,MAAM,KAAG,MAAM;wCAElC,MAAM,SAAS,MAAM,EAAE,KAAG,MAAM;;;uCAMjC,MAAM,KAAG,MAAM;oCACpB,MAAM;iCAEP,MAAM,KAAG,MAAM;4CACJ,MAAM,KAAG,MAAM;;;gCAG3B,MAAM,KAAG,MAAM;6BACpB,MAAM;+BACJ,MAAM;iCACF,MAAM,KAAG,MAAM;yCACP,MAAM,eAAe,MAAM,KAAG,MAAM;yCAEpC,MAAM,eAAe,MAAM,KAAG,MAAM;;yCAGtC,MAAM,KAAG,MAAM;iCAEvB,MAAM,KAAG,MAAM;4CACJ,MAAM,gBAAgB,MAAM,KAAG,MAAM;sCAE3C,MAAM,gBAAgB,MAAM,gBAAgB,MAAM,KAAG,MAAM;;;mCAI9D,MAAM,KAAG,MAAM;mCAEf,MAAM,KAAG,MAAM;;;qCAIb,MAAM,KAAG,MAAM;;;0CAIV,MAAM,KAAG,MAAM;;;mCAItB,MAAM,KAAG,MAAM;;;mCAIf,MAAM,EAAE,KAAG,MAAM;;;qCAIf,MAAM,KAAG,MAAM;2CAET,MAAM,KAAG,MAAM;;;oCAGtB,MAAM,KAAG,MAAM;;oCAEjB,MAAM,SAAS,MAAM,KAAG,MAAM;qCAI7B,MAAM,YAAY,MAAM,KAAG,MAAM;;;;;mCAQ/B,MAAM,OAAO,MAAM,KAAG,MAAM;iCAE9B,MAAM,OAAO,MAAM,KAAG,MAAM;oCAEzB,MAAM,OAAO,MAAM,KAAG,MAAM;gDAEhB,MAAM,KAAG,MAAM;uCAExB,MAAM,KAAG,MAAM;;;;;;;;kCAQpB,MAAM,UAAU,MAAM,KAAG,MAAM;gCAEjC,MAAM,KAAG,MAAM;2CAEJ,MAAM,eAAe,MAAM,KAAG,MAAM;;;uCAI1C,MAAM;uCAEJ,MAAM,KAAG,MAAM;qCAEnB,MAAM;;CAGpC,CAAC;AAEF,oBAAY,UAAU;IACpB,eAAe,2BAA2B;IAC1C,eAAe,wBAAwB;IACvC,WAAW,4BAA4B;IACvC,WAAW,+BAA+B;IAC1C,aAAa,8BAA8B;IAC3C,OAAO,0BAA0B;IACjC,cAAc,kCAAkC;IAChD,mBAAmB,0BAA0B;IAC7C,SAAS,4BAA4B;IACrC,SAAS,4BAA4B;IACrC,UAAU,wBAAwB;IAClC,GAAG,8BAA8B;CAClC"}
1
+ {"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../../src/text/errors.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM;8BACS,MAAM,KAAG,MAAM;2BACpB,MAAM;yBAEN,MAAM,GAAG,SAAS,QAAQ,MAAM,EAAE,UAAU,MAAM,GAAG,SAAS,KAAG,MAAM;;uBAO3E,MAAM,EAAE,EAAE,GAAG,SAAS,KAAG,MAAM;4BAI1B,MAAM,EAAE,KAAG,MAAM;mCACV,MAAM,SAAS,MAAM,0CAA4B,MAAM;mDAIvC,MAAM,KAAG,MAAM;;;qCAI7B,MAAM,SAAS,MAAM,KAAG,MAAM;4CAEvB,MAAM,SAAS,MAAM,KAAG,MAAM;wCAElC,MAAM,SAAS,MAAM,EAAE,KAAG,MAAM;;;uCAMjC,MAAM,KAAG,MAAM;oCACpB,MAAM;iCAEP,MAAM,KAAG,MAAM;4CACJ,MAAM,KAAG,MAAM;;;gCAG3B,MAAM,KAAG,MAAM;6BACpB,MAAM;+BACJ,MAAM;iCACF,MAAM,KAAG,MAAM;yCACP,MAAM,eAAe,MAAM,KAAG,MAAM;yCAEpC,MAAM,eAAe,MAAM,KAAG,MAAM;6CAEhC,MAAM,KAAG,MAAM;;yCAGrB,MAAM,KAAG,MAAM;iCAEvB,MAAM,KAAG,MAAM;4CACJ,MAAM,gBAAgB,MAAM,KAAG,MAAM;sCAE3C,MAAM,gBAAgB,MAAM,gBAAgB,MAAM,KAAG,MAAM;;;mCAI9D,MAAM,KAAG,MAAM;mCAEf,MAAM,KAAG,MAAM;;;qCAIb,MAAM,KAAG,MAAM;;;0CAIV,MAAM,KAAG,MAAM;;;mCAItB,MAAM,EAAE,KAAG,MAAM;;;qCAIf,MAAM,KAAG,MAAM;2CAET,MAAM,KAAG,MAAM;;;oCAGtB,MAAM,KAAG,MAAM;;oCAEjB,MAAM,SAAS,MAAM,KAAG,MAAM;qCAI7B,MAAM,YAAY,MAAM,KAAG,MAAM;;;;;mCAQ/B,MAAM,OAAO,MAAM,KAAG,MAAM;iCAE9B,MAAM,OAAO,MAAM,KAAG,MAAM;oCAEzB,MAAM,OAAO,MAAM,KAAG,MAAM;gDAEhB,MAAM,KAAG,MAAM;uCAExB,MAAM,KAAG,MAAM;;;;;;;;kCAQpB,MAAM,UAAU,MAAM,KAAG,MAAM;gCAEjC,MAAM,KAAG,MAAM;2CAEJ,MAAM,eAAe,MAAM,KAAG,MAAM;;;uCAI1C,MAAM;uCAEJ,MAAM,KAAG,MAAM;qCAEnB,MAAM;;CAGpC,CAAC;AAEF,oBAAY,UAAU;IACpB,eAAe,2BAA2B;IAC1C,eAAe,wBAAwB;IACvC,WAAW,4BAA4B;IACvC,WAAW,+BAA+B;IAC1C,aAAa,8BAA8B;IAC3C,OAAO,0BAA0B;IACjC,cAAc,kCAAkC;IAChD,mBAAmB,0BAA0B;IAC7C,SAAS,4BAA4B;IACrC,SAAS,4BAA4B;IACrC,UAAU,wBAAwB;IAClC,GAAG,8BAA8B;CAClC"}
@@ -38,6 +38,7 @@ exports.errors = {
38
38
  duplicateKeyFound: (key) => `found duplicate module key '${key}'`,
39
39
  wrongFunctionReference: (module, functionKey) => `${module} references undefined function module with key '${functionKey}'`,
40
40
  wrongResourceReference: (module, resourceKey) => `missing resource key '${resourceKey}' is being referenced by ${module} module`,
41
+ singleEntryOfTheModule: (moduleType) => `Only a single entry of the ${moduleType} module can be defined in the manifest`,
41
42
  displayConditions: {
42
43
  overcomplicated: (moduleKey) => `Nesting of display conditions of the "${moduleKey}" module exceeds 10 levels.`,
43
44
  invalid: (moduleKey) => `Display conditions of the "${moduleKey}" module are invalid.`,
@@ -54,9 +55,6 @@ exports.errors = {
54
55
  jiraEntityProperty: {
55
56
  maxExtractionsPerApp: (limit) => `All ${types_1.AllModuleTypes.JiraEntityProperty} modules combined cannot declare more than ${limit} values.`
56
57
  },
57
- fullPage: {
58
- children: (moduleType) => `Only a single entry of the ${moduleType} module can be defined in the manifest`
59
- },
60
58
  customFields: {
61
59
  searchAlias: (aliases) => `Search alias should be always unique per field. Found duplicates: ${aliases.join(', ')}.`
62
60
  },
@@ -20,6 +20,7 @@ export declare enum AllModuleTypes {
20
20
  JiraCustomFieldType = "jira:customFieldType",
21
21
  JiraIssueAction = "jira:issueAction",
22
22
  JiraIssueActivity = "jira:issueActivity",
23
+ JiraIssueAdjustment = "jira:issueAdjustment",
23
24
  JiraIssueGlance = "jira:issueGlance",
24
25
  JiraIssuePanel = "jira:issuePanel",
25
26
  JiraAdminPage = "jira:adminPage",
@@ -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,oBAAoB,0BAA0B;IAC9C,QAAQ,cAAc;IACtB,uBAAuB,6BAA6B;IACpD,2BAA2B,iCAAiC;IAC5D,qBAAqB,2BAA2B;IAChD,wBAAwB,8BAA8B;IACtD,oBAAoB,0BAA0B;IAC9C,sBAAsB,4BAA4B;IAClD,mBAAmB,yBAAyB;IAC5C,uBAAuB,6BAA6B;IACpD,kBAAkB,wBAAwB;IAC1C,qBAAqB,2BAA2B;IAChD,qBAAqB,2BAA2B;IAChD,eAAe,qBAAqB;IACpC,mBAAmB,yBAAyB;IAC5C,eAAe,qBAAqB;IACpC,iBAAiB,uBAAuB;IACxC,eAAe,qBAAqB;IACpC,cAAc,oBAAoB;IAClC,aAAa,mBAAmB;IAChC,eAAe,qBAAqB;IACpC,uBAAuB,6BAA6B;IACpD,cAAc,oBAAoB;IAClC,mBAAmB,yBAAyB;IAC5C,gBAAgB,sBAAsB;IACtC,oBAAoB,0BAA0B;IAC9C,iBAAiB,uBAAuB;IACxC,eAAe,qBAAqB;IAEpC,8BAA8B,oCAAoC;IAClE,wCAAwC,8CAA8C;IACtF,6CAA6C,mDAAmD;IAChG,sCAAsC,4CAA4C;IAClF,iCAAiC,uCAAuC;IACxE,oCAAoC,0CAA0C;IAC9E,iCAAiC,uCAAuC;IACxE,uCAAuC,6CAA6C;IAEpF,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,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,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;CAC5D;AAED,eAAO,MAAM,iBAAiB,kBAAgC,CAAC;AAE/D,eAAO,MAAM,uBAAuB,UAAwE,CAAC"}
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,QAAQ,cAAc;IACtB,uBAAuB,6BAA6B;IACpD,2BAA2B,iCAAiC;IAC5D,qBAAqB,2BAA2B;IAChD,wBAAwB,8BAA8B;IACtD,oBAAoB,0BAA0B;IAC9C,sBAAsB,4BAA4B;IAClD,mBAAmB,yBAAyB;IAC5C,uBAAuB,6BAA6B;IACpD,kBAAkB,wBAAwB;IAC1C,qBAAqB,2BAA2B;IAChD,qBAAqB,2BAA2B;IAChD,eAAe,qBAAqB;IACpC,mBAAmB,yBAAyB;IAC5C,eAAe,qBAAqB;IACpC,iBAAiB,uBAAuB;IACxC,mBAAmB,yBAAyB;IAC5C,eAAe,qBAAqB;IACpC,cAAc,oBAAoB;IAClC,aAAa,mBAAmB;IAChC,eAAe,qBAAqB;IACpC,uBAAuB,6BAA6B;IACpD,cAAc,oBAAoB;IAClC,mBAAmB,yBAAyB;IAC5C,gBAAgB,sBAAsB;IACtC,oBAAoB,0BAA0B;IAC9C,iBAAiB,uBAAuB;IACxC,eAAe,qBAAqB;IAEpC,8BAA8B,oCAAoC;IAClE,wCAAwC,8CAA8C;IACtF,6CAA6C,mDAAmD;IAChG,sCAAsC,4CAA4C;IAClF,iCAAiC,uCAAuC;IACxE,oCAAoC,0CAA0C;IAC9E,iCAAiC,uCAAuC;IACxE,uCAAuC,6CAA6C;IAEpF,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,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,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;CAC5D;AAED,eAAO,MAAM,iBAAiB,kBAAgC,CAAC;AAE/D,eAAO,MAAM,uBAAuB,UAAwE,CAAC"}
@@ -24,6 +24,7 @@ var AllModuleTypes;
24
24
  AllModuleTypes["JiraCustomFieldType"] = "jira:customFieldType";
25
25
  AllModuleTypes["JiraIssueAction"] = "jira:issueAction";
26
26
  AllModuleTypes["JiraIssueActivity"] = "jira:issueActivity";
27
+ AllModuleTypes["JiraIssueAdjustment"] = "jira:issueAdjustment";
27
28
  AllModuleTypes["JiraIssueGlance"] = "jira:issueGlance";
28
29
  AllModuleTypes["JiraIssuePanel"] = "jira:issuePanel";
29
30
  AllModuleTypes["JiraAdminPage"] = "jira:adminPage";
@@ -1 +1 @@
1
- {"version":3,"file":"modules-validator.d.ts","sourceRoot":"","sources":["../../src/validators/modules-validator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,cAAc,EAAE,wBAAwB,EAAsC,MAAM,UAAU,CAAC;AAGxH,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAI3D,qBAAa,gBACX,YAAW,kBAAkB,CAAC,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,EAAE,cAAc,CAAC;IACzF,OAAO,CAAC,oBAAoB,CAA0C;IAEtE,QAAQ,CAAC,QAAQ,EAAE,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,GAAG,wBAAwB,CAAC,cAAc,CAAC;CAuOzG"}
1
+ {"version":3,"file":"modules-validator.d.ts","sourceRoot":"","sources":["../../src/validators/modules-validator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,cAAc,EAAE,wBAAwB,EAAsC,MAAM,UAAU,CAAC;AAGxH,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAK3D,qBAAa,gBACX,YAAW,kBAAkB,CAAC,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,EAAE,cAAc,CAAC;IACzF,OAAO,CAAC,oBAAoB,CAA0C;IAEtE,QAAQ,CAAC,QAAQ,EAAE,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,GAAG,wBAAwB,CAAC,cAAc,CAAC;CA0OzG"}
@@ -6,6 +6,7 @@ const utils_1 = require("../utils");
6
6
  const text_1 = require("../text");
7
7
  const fs_1 = require("fs");
8
8
  const path_1 = require("path");
9
+ const issue_adjustment_1 = require("./modules-validators/issue-adjustment");
9
10
  class ModulesValidator {
10
11
  constructor() {
11
12
  this.functionHandlerRegex = /^([a-zA-Z0-9-_]+)\.([a-zA-Z0-9-_]+)$/;
@@ -90,6 +91,7 @@ class ModulesValidator {
90
91
  validationErrors.push(Object.assign({ message: text_1.errors.modules.jiraWorkflowCondition.missingExpression(module.key), reference: text_1.References.Modules, level: 'error' }, utils_1.findPosition(module.key, yamlContentByLine)));
91
92
  }
92
93
  });
94
+ validationErrors.push(...issue_adjustment_1.validateIssueAdjustmentModule(modules, yamlContentByLine));
93
95
  [
94
96
  types_1.AllModuleTypes.JiraAdminPage,
95
97
  types_1.AllModuleTypes.JiraProjectPage,
@@ -98,7 +100,7 @@ class ModulesValidator {
98
100
  ].forEach((moduleType) => {
99
101
  const moduleArray = modules[moduleType];
100
102
  if (moduleArray && moduleArray.length > 1) {
101
- validationErrors.push(Object.assign({ message: text_1.errors.modules.fullPage.children(moduleType), reference: text_1.References.Modules, level: 'error' }, utils_1.findPosition(moduleArray[1].key, yamlContentByLine)));
103
+ validationErrors.push(Object.assign({ message: text_1.errors.modules.singleEntryOfTheModule(moduleType), reference: text_1.References.Modules, level: 'error' }, utils_1.findPosition(moduleArray[1].key, yamlContentByLine)));
102
104
  }
103
105
  if (moduleArray && moduleArray.length === 1) {
104
106
  const module = moduleArray[0];
@@ -0,0 +1,4 @@
1
+ import { ValidationError } from '../../types';
2
+ import { Modules } from '../../schema/manifest';
3
+ export declare function validateIssueAdjustmentModule(modules: Modules, yamlContentByLine?: string[]): ValidationError[];
4
+ //# sourceMappingURL=issue-adjustment.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"issue-adjustment.d.ts","sourceRoot":"","sources":["../../../src/validators/modules-validators/issue-adjustment.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,eAAe,EAAE,MAAM,aAAa,CAAC;AAG9D,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAEhD,wBAAgB,6BAA6B,CAAC,OAAO,EAAE,OAAO,EAAE,iBAAiB,CAAC,EAAE,MAAM,EAAE,GAAG,eAAe,EAAE,CAe/G"}
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.validateIssueAdjustmentModule = void 0;
4
+ const types_1 = require("../../types");
5
+ const text_1 = require("../../text");
6
+ const utils_1 = require("../../utils");
7
+ function validateIssueAdjustmentModule(modules, yamlContentByLine) {
8
+ const validationErrors = [];
9
+ const moduleType = types_1.AllModuleTypes.JiraIssueAdjustment;
10
+ const moduleArray = modules[moduleType];
11
+ if (moduleArray && moduleArray.length > 1) {
12
+ validationErrors.push(Object.assign({ message: text_1.errors.modules.singleEntryOfTheModule(moduleType), reference: text_1.References.Modules, level: 'error' }, utils_1.findPosition(moduleArray[1].key, yamlContentByLine)));
13
+ }
14
+ return validationErrors;
15
+ }
16
+ exports.validateIssueAdjustmentModule = validateIssueAdjustmentModule;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "3.4.0",
3
+ "version": "3.5.0-next.2",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {