@forge/manifest 8.4.2-next.0 → 8.5.0-next.2

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,17 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 8.5.0-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 5293f4a: Update manifest definitions
8
+
9
+ ## 8.5.0-next.1
10
+
11
+ ### Minor Changes
12
+
13
+ - 7ec49ae: Add agent license mode to manifest schema
14
+
3
15
  ## 8.4.2-next.0
4
16
 
5
17
  ### Patch Changes
@@ -80,7 +80,8 @@
80
80
  "items": {
81
81
  "type": "string",
82
82
  "enum": [
83
- "user-access"
83
+ "user-access",
84
+ "agent"
84
85
  ]
85
86
  },
86
87
  "title": "modes",
@@ -36,7 +36,7 @@ export type EditionsEnabled = boolean;
36
36
  /**
37
37
  * 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.
38
38
  */
39
- export type Modes = 'user-access'[];
39
+ export type Modes = ('user-access' | 'agent')[];
40
40
  /**
41
41
  * 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.
42
42
  */
@@ -80,7 +80,8 @@
80
80
  "items": {
81
81
  "type": "string",
82
82
  "enum": [
83
- "user-access"
83
+ "user-access",
84
+ "agent"
84
85
  ]
85
86
  },
86
87
  "title": "modes",
@@ -36,7 +36,7 @@ export type EditionsEnabled = boolean;
36
36
  /**
37
37
  * 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.
38
38
  */
39
- export type Modes = 'user-access'[];
39
+ export type Modes = ('user-access' | 'agent')[];
40
40
  /**
41
41
  * 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.
42
42
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "8.4.2-next.0",
3
+ "version": "8.5.0-next.2",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {