@forge/manifest 10.7.0-next.2 → 10.7.0-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,17 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 10.7.0-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - ec8000d: Update manifest definitions
8
+
9
+ ## 10.7.0-next.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 2ac3cde: Change manifest property permission "detection" to "enforcement"
14
+
3
15
  ## 10.7.0-next.2
4
16
 
5
17
  ### Patch Changes
@@ -27747,12 +27747,12 @@
27747
27747
  "type": "object",
27748
27748
  "title": "AppPermissionsSchema",
27749
27749
  "properties": {
27750
- "detection": {
27751
- "description": "App permissions detection method",
27752
- "title": "detection",
27750
+ "enforcement": {
27751
+ "description": "App permissions enforcement method",
27752
+ "title": "enforcement",
27753
27753
  "type": "string",
27754
27754
  "enum": [
27755
- "app-check"
27755
+ "app-managed"
27756
27756
  ]
27757
27757
  },
27758
27758
  "configurable": {
@@ -703,9 +703,9 @@ export type ExtensionKey11 = string;
703
703
  */
704
704
  export type ExtensionKey12 = string;
705
705
  /**
706
- * App permissions detection method
706
+ * App permissions enforcement method
707
707
  */
708
- export type Detection = 'app-check';
708
+ export type Enforcement = 'app-managed';
709
709
  export type Scopes =
710
710
  | string[]
711
711
  | {
@@ -72819,7 +72819,7 @@ export interface FormProperty {
72819
72819
  hideInEditView?: boolean;
72820
72820
  }
72821
72821
  export interface Permissions {
72822
- detection?: Detection;
72822
+ enforcement?: Enforcement;
72823
72823
  /**
72824
72824
  * This property is not yet supported
72825
72825
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "10.7.0-next.2",
3
+ "version": "10.7.0-next.4",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {