@forge/manifest 2.4.0 → 2.5.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,30 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 2.5.0-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - dec8066: Update manifest definitions
8
+
9
+ ## 2.5.0-next.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 755e35e: Added new product events to scope mapping for custom field context: added/updated/deleted
14
+ - f013199: Update manifest definitions
15
+
16
+ ## 2.5.0-next.1
17
+
18
+ ### Minor Changes
19
+
20
+ - 66f60f9: Add Jira global full page and Jira projects settings full page extensions
21
+
22
+ ## 2.4.1-next.0
23
+
24
+ ### Patch Changes
25
+
26
+ - bc0c83b: Update manifest definitions
27
+
3
28
  ## 2.4.0
4
29
 
5
30
  ### Minor Changes
@@ -48,6 +48,24 @@
48
48
  "manage:jira-configuration"
49
49
  ]
50
50
  },
51
+ {
52
+ "productEvent": "avi:jira:created:field:context",
53
+ "oAuthScopes": [
54
+ "manage:jira-configuration"
55
+ ]
56
+ },
57
+ {
58
+ "productEvent": "avi:jira:updated:field:context",
59
+ "oAuthScopes": [
60
+ "manage:jira-configuration"
61
+ ]
62
+ },
63
+ {
64
+ "productEvent": "avi:jira:deleted:field:context",
65
+ "oAuthScopes": [
66
+ "manage:jira-configuration"
67
+ ]
68
+ },
51
69
  {
52
70
  "productEvent": "avi:confluence:updated:blogpost",
53
71
  "oAuthScopes": [
@@ -468,6 +468,42 @@
468
468
  },
469
469
  "type": "object"
470
470
  },
471
+ "ProjectSettingsPage": {
472
+ "additionalProperties": false,
473
+ "properties": {
474
+ "hasCoreAccess": {
475
+ "type": "boolean"
476
+ },
477
+ "hasServiceDeskAccess": {
478
+ "type": "boolean"
479
+ },
480
+ "hasSoftwareAccess": {
481
+ "type": "boolean"
482
+ },
483
+ "isAdmin": {
484
+ "type": "boolean"
485
+ },
486
+ "isLoggedIn": {
487
+ "type": "boolean"
488
+ },
489
+ "isSiteAdmin": {
490
+ "type": "boolean"
491
+ },
492
+ "projectId": {
493
+ "$ref": "#/definitions/StringOrListOfStrings"
494
+ },
495
+ "projectKey": {
496
+ "$ref": "#/definitions/StringOrListOfStrings"
497
+ },
498
+ "projectName": {
499
+ "$ref": "#/definitions/StringOrListOfStrings"
500
+ },
501
+ "projectType": {
502
+ "$ref": "#/definitions/StringOrListOfStrings"
503
+ }
504
+ },
505
+ "type": "object"
506
+ },
471
507
  "StringOrListOfStrings": {
472
508
  "anyOf": [
473
509
  {
@@ -508,6 +544,9 @@
508
544
  "jira:customField": {
509
545
  "$ref": "#/definitions/IssueView"
510
546
  },
547
+ "jira:globalPage": {
548
+ "$ref": "#/definitions/Jira"
549
+ },
511
550
  "jira:issueAction": {
512
551
  "$ref": "#/definitions/IssueView"
513
552
  },
@@ -522,6 +561,9 @@
522
561
  },
523
562
  "jira:projectPage": {
524
563
  "$ref": "#/definitions/ProjectPage"
564
+ },
565
+ "jira:projectSettingsPage": {
566
+ "$ref": "#/definitions/ProjectSettingsPage"
525
567
  }
526
568
  },
527
569
  "type": "object"