npm package diff
Package: @forge/manifest
Versions: 7.8.1-next.0 - 7.9.0-next.1
Modified:package/out/schema/basic-manifest-schema.json
Index: package/out/schema/basic-manifest-schema.json
===================================================================
--- package/out/schema/basic-manifest-schema.json
+++ package/out/schema/basic-manifest-schema.json
@@ -56,8 +56,14 @@
"type": "boolean",
"default": false,
"title": "enabled",
"description": "Whether to enable paid app licensing for production installations of this app. Default value of false."
+ },
+ "editionsEnabled": {
+ "type": "boolean",
+ "default": false,
+ "title": "editionsEnabled",
+ "description": "Whether to enable editions for this app. Default value of false."
}
}
},
"features": {
Modified:package/out/schema/manifest-schema.json
too-big
Modified:package/package.json
Index: package/package.json
===================================================================
--- package/package.json
+++ package/package.json
@@ -1,7 +1,7 @@
{
"name": "@forge/manifest",
- "version": "7.8.1-next.0",
+ "version": "7.9.0-next.1",
"description": "Definitions and validations of the Forge manifest",
"main": "out/index.js",
"scripts": {
"build": "yarn run compile",
Modified:package/CHANGELOG.md
Index: package/CHANGELOG.md
===================================================================
--- package/CHANGELOG.md
+++ package/CHANGELOG.md
@@ -1,6 +1,12 @@
# @forge/manifest
+## 7.9.0-next.1
+
+### Minor Changes
+
+- 5f02b70: add `editionsEnabled` field to the licensing options
+
## 7.8.1-next.0
### Patch Changes
Modified:package/out/schema/basic-manifest.d.ts
Index: package/out/schema/basic-manifest.d.ts
===================================================================
--- package/out/schema/basic-manifest.d.ts
+++ package/out/schema/basic-manifest.d.ts
@@ -25,8 +25,12 @@
* Whether to enable paid app licensing for production installations of this app. Default value of false.
*/
export type Enabled = boolean;
/**
+ * Whether to enable editions for this app. Default value of false.
+ */
+export type EditionsEnabled = boolean;
+/**
* This property is deprecated and no longer required to use simplified user consent. Please remove it from your manifest as in a future release this will become an error.
*/
export type AutoUserConsent = boolean;
/**
@@ -160,8 +164,9 @@
* Options related to paid app licensing
*/
export interface Licensing {
enabled: Enabled;
+ editionsEnabled?: EditionsEnabled;
}
/**
* Features related to app
*/
Modified:package/out/schema/manifest.d.ts
too-big