@forge/manifest 12.6.0-next.0 → 12.6.0-next.0-experimental-5b726e6

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,16 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 12.6.0-next.0-experimental-5b726e6
4
+
5
+ ### Minor Changes
6
+
7
+ - 399ae7d: Enforce render:native for global:ui
8
+ Remove routePrefix from global:ui
9
+
10
+ ### Patch Changes
11
+
12
+ - 5b726e6: add `user` installation target
13
+
3
14
  ## 12.6.0-next.0
4
15
 
5
16
  ### Minor Changes
@@ -55,7 +55,8 @@
55
55
  "type": "string",
56
56
  "enum": [
57
57
  "site",
58
- "unit"
58
+ "unit",
59
+ "user"
59
60
  ],
60
61
  "description": "The target of the app installation."
61
62
  },
@@ -61,7 +61,7 @@ export interface App {
61
61
  /**
62
62
  * The target of the app installation.
63
63
  */
64
- installationTarget?: 'site' | 'unit';
64
+ installationTarget?: 'site' | 'unit' | 'user';
65
65
  compatibility?: Compatibility;
66
66
  access?: Access;
67
67
  licensing?: Licensing;
@@ -55,7 +55,8 @@
55
55
  "type": "string",
56
56
  "enum": [
57
57
  "site",
58
- "unit"
58
+ "unit",
59
+ "user"
59
60
  ],
60
61
  "description": "The target of the app installation."
61
62
  },
@@ -806,7 +806,7 @@ export interface App {
806
806
  /**
807
807
  * The target of the app installation.
808
808
  */
809
- installationTarget?: 'site' | 'unit';
809
+ installationTarget?: 'site' | 'unit' | 'user';
810
810
  compatibility?: Compatibility;
811
811
  access?: Access;
812
812
  licensing?: Licensing;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "12.6.0-next.0",
3
+ "version": "12.6.0-next.0-experimental-5b726e6",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {