@forge/manifest 10.7.0-next.1 → 10.7.0-next.3

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.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 2ac3cde: Change manifest property permission "detection" to "enforcement"
8
+
9
+ ## 10.7.0-next.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 4afc4fb: Update manifest definitions
14
+
3
15
  ## 10.7.0-next.1
4
16
 
5
17
  ### Minor 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
  */
@@ -368,7 +368,9 @@
368
368
  "space-admin:connect-confluence",
369
369
  "storage:app",
370
370
  "validate:jql:jira",
371
+ "view:membership-temp:teams",
371
372
  "view:membership:teams",
373
+ "view:team-temp:teams",
372
374
  "view:team:teams",
373
375
  "write:airtrack-object:jira",
374
376
  "write:app-data:confluence",
@@ -465,6 +467,7 @@
465
467
  "write:issue.watcher:jira",
466
468
  "write:jira-work",
467
469
  "write:label:confluence",
470
+ "write:membership-temp:teams",
468
471
  "write:membership:teams",
469
472
  "write:metric:compass",
470
473
  "write:notes:customer-notes",
@@ -532,6 +535,7 @@
532
535
  "write:sprint:jira-software",
533
536
  "write:storage:brie",
534
537
  "write:task:confluence",
538
+ "write:team-temp:teams",
535
539
  "write:team:teams",
536
540
  "write:template:confluence",
537
541
  "write:user-configuration:jira",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "10.7.0-next.1",
3
+ "version": "10.7.0-next.3",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {