@forge/manifest 8.3.1-next.2-experimental-d6acbbd → 8.4.0-next.3

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,12 +1,10 @@
1
1
  # @forge/manifest
2
2
 
3
- ## 8.3.1-next.2-experimental-d6acbbd
3
+ ## 8.4.0-next.3
4
4
 
5
- ### Patch Changes
5
+ ### Minor Changes
6
6
 
7
- - c599ff2: Fix: Path resolution for rovo resources
8
- - 2ccf3f4: Update manifest definitions
9
- - adf93f2: Adds the `appIsLicensed` display condition to Jira module schemas
7
+ - e170565: Enforce no additional properties for functions
10
8
 
11
9
  ## 8.3.1-next.2
12
10
 
@@ -665,6 +665,7 @@
665
665
  "handler",
666
666
  "key"
667
667
  ],
668
+ "additionalProperties": false,
668
669
  "not": {
669
670
  "required": [
670
671
  "unlicensedAccess"
@@ -2640,7 +2640,6 @@ export interface Modules {
2640
2640
  providers?: ExternalAuthFunctionProviders;
2641
2641
  timeoutSeconds?: TimeoutSeconds;
2642
2642
  key: ModuleKeySchema;
2643
- [k: string]: unknown;
2644
2643
  },
2645
2644
  ...{
2646
2645
  handler: Handler;
@@ -2662,7 +2661,6 @@ export interface Modules {
2662
2661
  providers?: ExternalAuthFunctionProviders;
2663
2662
  timeoutSeconds?: TimeoutSeconds;
2664
2663
  key: ModuleKeySchema;
2665
- [k: string]: unknown;
2666
2664
  }[]
2667
2665
  ];
2668
2666
  migration?: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "8.3.1-next.2-experimental-d6acbbd",
3
+ "version": "8.4.0-next.3",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {