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

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,71 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 7.9.0-next.11
4
+
5
+ ### Patch Changes
6
+
7
+ - 08ff14e: - Change product-event-to-scope-mapping.json indentation to match .editorconfig
8
+ - Add Forge Jira user events to product-event-to-scope-mapping.json
9
+
10
+ ## 7.9.0-next.10
11
+
12
+ ### Patch Changes
13
+
14
+ - d500498: Fixed validation for ignoreSelf filtering in core:trigger module to actually verify the presence of the ignoreSelf property
15
+ Added validation for expression filtering in core:trigger module
16
+
17
+ ## 7.9.0-next.9
18
+
19
+ ### Patch Changes
20
+
21
+ - 47f24ba: Fix manifest update break unit tests to guard i18n changes
22
+ - 75698c0: Update manifest definitions
23
+ - 6cd61be: Update manifest definitions
24
+
25
+ ## 7.9.0-next.8
26
+
27
+ ### Patch Changes
28
+
29
+ - bdca785: Added Jira issueActionNavigator module
30
+
31
+ ## 7.9.0-next.7
32
+
33
+ ### Patch Changes
34
+
35
+ - 8616ebc: Update manifest definitions
36
+
37
+ ## 7.9.0-next.6
38
+
39
+ ### Minor Changes
40
+
41
+ - c4391fa: add `modes` field to the licensing options
42
+
43
+ ## 7.9.0-next.5
44
+
45
+ ### Patch Changes
46
+
47
+ - 3fe0097: Update manifest definitions
48
+
49
+ ## 7.9.0-next.4
50
+
51
+ ### Minor Changes
52
+
53
+ - 238e7ab: Update type references to support a change in the manifest remote schema
54
+
55
+ ## 7.9.0-next.3
56
+
57
+ ### Patch Changes
58
+
59
+ - f69e798: Update manifest definitions
60
+
61
+ ## 7.9.0-next.2
62
+
63
+ ### Patch Changes
64
+
65
+ - 63d81cf: Update i18n unit test to include macro config property
66
+ - b961661: Update manifest definitions
67
+ - 8ec88e3: Update manifest definitions
68
+
3
69
  ## 7.9.0-next.1
4
70
 
5
71
  ### Minor Changes
@@ -1462,6 +1462,48 @@
1462
1462
  "manage:jira-configuration"
1463
1463
  ]
1464
1464
  }
1465
+ },
1466
+ {
1467
+ "productEvent": "avi:jira:created:user",
1468
+ "oAuthScopes": {
1469
+ "beta": [
1470
+ "read:application-role:jira",
1471
+ "read:group:jira",
1472
+ "read:user:jira",
1473
+ "read:avatar:jira"
1474
+ ],
1475
+ "current": [
1476
+ "read:jira-user"
1477
+ ]
1478
+ }
1479
+ },
1480
+ {
1481
+ "productEvent": "avi:jira:updated:user",
1482
+ "oAuthScopes": {
1483
+ "beta": [
1484
+ "read:application-role:jira",
1485
+ "read:group:jira",
1486
+ "read:user:jira",
1487
+ "read:avatar:jira"
1488
+ ],
1489
+ "current": [
1490
+ "read:jira-user"
1491
+ ]
1492
+ }
1493
+ },
1494
+ {
1495
+ "productEvent": "avi:jira:deleted:user",
1496
+ "oAuthScopes": {
1497
+ "beta": [
1498
+ "read:application-role:jira",
1499
+ "read:group:jira",
1500
+ "read:user:jira",
1501
+ "read:avatar:jira"
1502
+ ],
1503
+ "current": [
1504
+ "read:jira-user"
1505
+ ]
1506
+ }
1465
1507
  }
1466
1508
  ]
1467
1509
  }
@@ -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