@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 +12 -0
- package/out/schema/manifest-schema.json +4 -4
- package/out/schema/manifest.d.ts +3 -3
- package/package.json +1 -1
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
|
-
"
|
|
27751
|
-
"description": "App permissions
|
|
27752
|
-
"title": "
|
|
27750
|
+
"enforcement": {
|
|
27751
|
+
"description": "App permissions enforcement method",
|
|
27752
|
+
"title": "enforcement",
|
|
27753
27753
|
"type": "string",
|
|
27754
27754
|
"enum": [
|
|
27755
|
-
"app-
|
|
27755
|
+
"app-managed"
|
|
27756
27756
|
]
|
|
27757
27757
|
},
|
|
27758
27758
|
"configurable": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -703,9 +703,9 @@ export type ExtensionKey11 = string;
|
|
|
703
703
|
*/
|
|
704
704
|
export type ExtensionKey12 = string;
|
|
705
705
|
/**
|
|
706
|
-
* App permissions
|
|
706
|
+
* App permissions enforcement method
|
|
707
707
|
*/
|
|
708
|
-
export type
|
|
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
|
-
|
|
72822
|
+
enforcement?: Enforcement;
|
|
72823
72823
|
/**
|
|
72824
72824
|
* This property is not yet supported
|
|
72825
72825
|
*/
|