npm package diff
Package: @forge/manifest
Versions: 8.8.0 - 8.9.0-next.0
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
@@ -88,10 +88,9 @@
"type": "array",
"items": {
"type": "string",
"enum": [
- "user-access",
- "agent"
+ "user-access"
]
},
"title": "modes",
"description": "Declares the licensing modes supported by this app. One of the declared modes may be selected as the active mode when the app is listed on the Marketplace. If no value is specified, the legacy coupled licensing mode is assumed by default."
Modified: package/out/schema/manifest-schema.json
Large diffs are not rendered by default.
Modified: package/package.json
Index: package/package.json
===================================================================
--- package/package.json
+++ package/package.json
@@ -1,7 +1,7 @@
{
"name": "@forge/manifest",
- "version": "8.8.0",
+ "version": "8.9.0-next.0",
"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
+## 8.9.0-next.0
+
+### Minor Changes
+
+- 94e48b9: Remove agent mode support per product decision
+
## 8.8.0
### Minor 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
@@ -39,9 +39,9 @@
export type EditionsEnabled = boolean;
/**
* Declares the licensing modes supported by this app. One of the declared modes may be selected as the active mode when the app is listed on the Marketplace. If no value is specified, the legacy coupled licensing mode is assumed by default.
*/
-export type Modes = ('user-access' | 'agent')[];
+export type Modes = 'user-access'[];
/**
* 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;
Modified: package/out/schema/manifest.d.ts
Large diffs are not rendered by default.