@forge/manifest 7.9.0-next.1 → 7.9.0-next.10

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,64 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 7.9.0-next.10
4
+
5
+ ### Patch Changes
6
+
7
+ - d500498: Fixed validation for ignoreSelf filtering in core:trigger module to actually verify the presence of the ignoreSelf property
8
+ Added validation for expression filtering in core:trigger module
9
+
10
+ ## 7.9.0-next.9
11
+
12
+ ### Patch Changes
13
+
14
+ - 47f24ba: Fix manifest update break unit tests to guard i18n changes
15
+ - 75698c0: Update manifest definitions
16
+ - 6cd61be: Update manifest definitions
17
+
18
+ ## 7.9.0-next.8
19
+
20
+ ### Patch Changes
21
+
22
+ - bdca785: Added Jira issueActionNavigator module
23
+
24
+ ## 7.9.0-next.7
25
+
26
+ ### Patch Changes
27
+
28
+ - 8616ebc: Update manifest definitions
29
+
30
+ ## 7.9.0-next.6
31
+
32
+ ### Minor Changes
33
+
34
+ - c4391fa: add `modes` field to the licensing options
35
+
36
+ ## 7.9.0-next.5
37
+
38
+ ### Patch Changes
39
+
40
+ - 3fe0097: Update manifest definitions
41
+
42
+ ## 7.9.0-next.4
43
+
44
+ ### Minor Changes
45
+
46
+ - 238e7ab: Update type references to support a change in the manifest remote schema
47
+
48
+ ## 7.9.0-next.3
49
+
50
+ ### Patch Changes
51
+
52
+ - f69e798: Update manifest definitions
53
+
54
+ ## 7.9.0-next.2
55
+
56
+ ### Patch Changes
57
+
58
+ - 63d81cf: Update i18n unit test to include macro config property
59
+ - b961661: Update manifest definitions
60
+ - 8ec88e3: Update manifest definitions
61
+
3
62
  ## 7.9.0-next.1
4
63
 
5
64
  ### Minor Changes
@@ -63,6 +63,17 @@
63
63
  "default": false,
64
64
  "title": "editionsEnabled",
65
65
  "description": "Whether to enable editions for this app. Default value of false."
66
+ },
67
+ "modes": {
68
+ "type": "array",
69
+ "items": {
70
+ "type": "string",
71
+ "enum": [
72
+ "user-access"
73
+ ]
74
+ },
75
+ "title": "modes",
76
+ "description": "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."
66
77
  }
67
78
  }
68
79
  },
@@ -29,6 +29,10 @@ export type Enabled = boolean;
29
29
  * Whether to enable editions for this app. Default value of false.
30
30
  */
31
31
  export type EditionsEnabled = boolean;
32
+ /**
33
+ * 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.
34
+ */
35
+ export type Modes = 'user-access'[];
32
36
  /**
33
37
  * 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.
34
38
  */
@@ -166,6 +170,7 @@ export interface Runtime {
166
170
  export interface Licensing {
167
171
  enabled: Enabled;
168
172
  editionsEnabled?: EditionsEnabled;
173
+ modes?: Modes;
169
174
  }
170
175
  /**
171
176
  * Features related to app