@forge/manifest 8.7.1-next.0 → 8.7.1-next.1

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
+ ## 8.7.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 359756b: Update manifest definitions
8
+
3
9
  ## 8.7.1-next.0
4
10
 
5
11
  ### Patch Changes
@@ -11463,6 +11463,10 @@
11463
11463
  ]
11464
11464
  }
11465
11465
  },
11466
+ "migratedFromConnect": {
11467
+ "default": false,
11468
+ "type": "boolean"
11469
+ },
11466
11470
  "key": {
11467
11471
  "$ref": "#/definitions/ModuleKeySchema"
11468
11472
  }
@@ -11559,6 +11563,10 @@
11559
11563
  ],
11560
11564
  "type": "string"
11561
11565
  },
11566
+ "migratedFromConnect": {
11567
+ "default": false,
11568
+ "type": "boolean"
11569
+ },
11562
11570
  "key": {
11563
11571
  "$ref": "#/definitions/ModuleKeySchema"
11564
11572
  }
@@ -6155,6 +6155,7 @@ export interface Modules {
6155
6155
  description__i18n?: string;
6156
6156
  anonymousAllowed: boolean;
6157
6157
  defaultGrants?: ('none' | 'all' | 'jira-administrators')[];
6158
+ migratedFromConnect?: boolean;
6158
6159
  key: ModuleKeySchema;
6159
6160
  [k: string]: unknown;
6160
6161
  },
@@ -6173,6 +6174,7 @@ export interface Modules {
6173
6174
  description__i18n?: string;
6174
6175
  anonymousAllowed: boolean;
6175
6176
  defaultGrants?: ('none' | 'all' | 'jira-administrators')[];
6177
+ migratedFromConnect?: boolean;
6176
6178
  key: ModuleKeySchema;
6177
6179
  [k: string]: unknown;
6178
6180
  }[]
@@ -6192,6 +6194,7 @@ export interface Modules {
6192
6194
  };
6193
6195
  description__i18n?: string;
6194
6196
  category?: 'attachments' | 'comments' | 'issues' | 'other' | 'projects' | 'time_tracking' | 'voters_and_watchers';
6197
+ migratedFromConnect?: boolean;
6195
6198
  key: ModuleKeySchema;
6196
6199
  [k: string]: unknown;
6197
6200
  },
@@ -6209,6 +6212,7 @@ export interface Modules {
6209
6212
  };
6210
6213
  description__i18n?: string;
6211
6214
  category?: 'attachments' | 'comments' | 'issues' | 'other' | 'projects' | 'time_tracking' | 'voters_and_watchers';
6215
+ migratedFromConnect?: boolean;
6212
6216
  key: ModuleKeySchema;
6213
6217
  [k: string]: unknown;
6214
6218
  }[]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "8.7.1-next.0",
3
+ "version": "8.7.1-next.1",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {