@forge/manifest 4.20.2-next.3 → 4.20.2-next.4

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
+ ## 4.20.2-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - ed9ecfda: Update manifest definitions
8
+
3
9
  ## 4.20.2-next.3
4
10
 
5
11
  ### Patch Changes
@@ -6108,10 +6108,7 @@
6108
6108
  "type": "string"
6109
6109
  },
6110
6110
  "anonymousAllowed": {
6111
- "type": "boolean",
6112
- "enum": [
6113
- false
6114
- ]
6111
+ "type": "boolean"
6115
6112
  },
6116
6113
  "defaultGrants": {
6117
6114
  "type": "array",
@@ -3433,7 +3433,7 @@ export interface Modules {
3433
3433
  {
3434
3434
  name: string;
3435
3435
  description: string;
3436
- anonymousAllowed: false;
3436
+ anonymousAllowed: boolean;
3437
3437
  defaultGrants?: ('all' | 'jira-administrators' | 'none')[];
3438
3438
  key: ModuleKeySchema;
3439
3439
  [k: string]: unknown;
@@ -3441,7 +3441,7 @@ export interface Modules {
3441
3441
  ...{
3442
3442
  name: string;
3443
3443
  description: string;
3444
- anonymousAllowed: false;
3444
+ anonymousAllowed: boolean;
3445
3445
  defaultGrants?: ('all' | 'jira-administrators' | 'none')[];
3446
3446
  key: ModuleKeySchema;
3447
3447
  [k: string]: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "4.20.2-next.3",
3
+ "version": "4.20.2-next.4",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {