@forge/manifest 10.2.0-next.4 → 10.2.0

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,26 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 10.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 5144b15: Adding validation for undefined actions under automation:actionProvider module
8
+
9
+ ### Patch Changes
10
+
11
+ - 5069c3c: Forge manifest linter now includes devops:developmentInfoProvider, devops:featureFlagInfoProvider, devops:deploymentInfoProvider, devops:buildInfoProvider, and devops:remoteLinkInfoProvider
12
+ - 8e9a8b5: Got rid of FG
13
+ - 5bfa872: Update manifest definitions
14
+ - 13e5daa: Update manifest definitions
15
+ - e029de1: Update manifest definitions
16
+ - 426dfe1: Update manifest definitions
17
+
18
+ ## 10.2.0-next.5
19
+
20
+ ### Patch Changes
21
+
22
+ - 5bfa872: Update manifest definitions
23
+
3
24
  ## 10.2.0-next.4
4
25
 
5
26
  ### Minor Changes
@@ -27076,13 +27076,39 @@
27076
27076
  "maxLength": 255
27077
27077
  }
27078
27078
  },
27079
+ "validateConnection": {
27080
+ "type": "object",
27081
+ "properties": {
27082
+ "function": {
27083
+ "$ref": "#/definitions/ExtensionKey",
27084
+ "description": "The key of the function that should be invoked on connection creation to validate configuration.",
27085
+ "title": "validateConnection"
27086
+ }
27087
+ },
27088
+ "required": [
27089
+ "function"
27090
+ ]
27091
+ },
27079
27092
  "onConnectionChange": {
27080
27093
  "type": "object",
27081
27094
  "properties": {
27082
27095
  "function": {
27083
27096
  "$ref": "#/definitions/ExtensionKey",
27084
- "description": "The key of the function that should be invoked on connection change.",
27085
- "title": "function"
27097
+ "description": "The key of the function that should be invoked on connection change (Created, updated, deleted).",
27098
+ "title": "onConnectionChange"
27099
+ }
27100
+ },
27101
+ "required": [
27102
+ "function"
27103
+ ]
27104
+ },
27105
+ "taskRunner": {
27106
+ "type": "object",
27107
+ "properties": {
27108
+ "function": {
27109
+ "$ref": "#/definitions/ExtensionKey",
27110
+ "description": "The key of the function that the Orchestrator will invoke to execute a Task. When using Task Management.",
27111
+ "title": "taskRunner"
27086
27112
  }
27087
27113
  },
27088
27114
  "required": [
@@ -680,6 +680,14 @@ export type Patterns =
680
680
  * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
681
681
  */
682
682
  export type ExtensionKey10 = string;
683
+ /**
684
+ * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
685
+ */
686
+ export type ExtensionKey11 = string;
687
+ /**
688
+ * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
689
+ */
690
+ export type ExtensionKey12 = string;
683
691
  export type Scopes =
684
692
  | string[]
685
693
  | {
@@ -23299,10 +23307,18 @@ export interface Modules {
23299
23307
  | 'atlassian:worker'
23300
23308
  )[]
23301
23309
  ];
23302
- onConnectionChange?: {
23310
+ validateConnection?: {
23303
23311
  function: ExtensionKey10;
23304
23312
  [k: string]: unknown;
23305
23313
  };
23314
+ onConnectionChange?: {
23315
+ function: ExtensionKey11;
23316
+ [k: string]: unknown;
23317
+ };
23318
+ taskRunner?: {
23319
+ function: ExtensionKey12;
23320
+ [k: string]: unknown;
23321
+ };
23306
23322
  key: ModuleKeySchema;
23307
23323
  },
23308
23324
  ...{
@@ -23374,10 +23390,18 @@ export interface Modules {
23374
23390
  | 'atlassian:worker'
23375
23391
  )[]
23376
23392
  ];
23377
- onConnectionChange?: {
23393
+ validateConnection?: {
23378
23394
  function: ExtensionKey10;
23379
23395
  [k: string]: unknown;
23380
23396
  };
23397
+ onConnectionChange?: {
23398
+ function: ExtensionKey11;
23399
+ [k: string]: unknown;
23400
+ };
23401
+ taskRunner?: {
23402
+ function: ExtensionKey12;
23403
+ [k: string]: unknown;
23404
+ };
23381
23405
  key: ModuleKeySchema;
23382
23406
  }[]
23383
23407
  ];
@@ -260,6 +260,8 @@
260
260
  "read:label:confluence",
261
261
  "read:label:jira",
262
262
  "read:license:jira",
263
+ "read:mail-logs.connectivity:jira-service-management",
264
+ "read:mail-logs.processing:jira-service-management",
263
265
  "read:me",
264
266
  "read:metric:compass",
265
267
  "read:notes:customer-notes",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "10.2.0-next.4",
3
+ "version": "10.2.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {