@forge/manifest 8.2.1-next.1 → 8.3.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
|
+
## 8.3.0-next.3
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0146304: Added scopes for the jira configuration changed product event
|
|
8
|
+
|
|
9
|
+
## 8.2.1-next.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- b088bc0: Update manifest definitions
|
|
14
|
+
|
|
3
15
|
## 8.2.1-next.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -1505,6 +1505,17 @@
|
|
|
1505
1505
|
"read:jira-user"
|
|
1506
1506
|
]
|
|
1507
1507
|
}
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
"productEvent": "avi:jira:changed:configuration",
|
|
1511
|
+
"oAuthScopes": {
|
|
1512
|
+
"beta": [
|
|
1513
|
+
"read:instance-configuration:jira"
|
|
1514
|
+
],
|
|
1515
|
+
"current": [
|
|
1516
|
+
"manage:jira-configuration"
|
|
1517
|
+
]
|
|
1518
|
+
}
|
|
1508
1519
|
}
|
|
1509
1520
|
]
|
|
1510
1521
|
}
|
|
@@ -764,6 +764,34 @@
|
|
|
764
764
|
"additionalProperties": true,
|
|
765
765
|
"description": "A Forge Remote definition.",
|
|
766
766
|
"properties": {
|
|
767
|
+
"regionBaseUrls": {
|
|
768
|
+
"type": "object",
|
|
769
|
+
"propertyNames": {
|
|
770
|
+
"enum": [
|
|
771
|
+
"EU",
|
|
772
|
+
"US",
|
|
773
|
+
"AU",
|
|
774
|
+
"DE",
|
|
775
|
+
"SG",
|
|
776
|
+
"CA",
|
|
777
|
+
"IN",
|
|
778
|
+
"KR",
|
|
779
|
+
"JP",
|
|
780
|
+
"GB",
|
|
781
|
+
"CH",
|
|
782
|
+
"default"
|
|
783
|
+
]
|
|
784
|
+
},
|
|
785
|
+
"patternProperties": {
|
|
786
|
+
".+": {
|
|
787
|
+
"type": "string",
|
|
788
|
+
"minLength": 1
|
|
789
|
+
}
|
|
790
|
+
},
|
|
791
|
+
"required": [
|
|
792
|
+
"default"
|
|
793
|
+
]
|
|
794
|
+
},
|
|
767
795
|
"baseUrl": {
|
|
768
796
|
"oneOf": [
|
|
769
797
|
{
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -973,6 +973,13 @@ export interface Modules {
|
|
|
973
973
|
];
|
|
974
974
|
remote?: [
|
|
975
975
|
{
|
|
976
|
+
regionBaseUrls?: {
|
|
977
|
+
/**
|
|
978
|
+
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
979
|
+
* via the `patternProperty` ".+".
|
|
980
|
+
*/
|
|
981
|
+
[k: string]: string;
|
|
982
|
+
};
|
|
976
983
|
baseUrl:
|
|
977
984
|
| string
|
|
978
985
|
| {
|
|
@@ -1008,6 +1015,13 @@ export interface Modules {
|
|
|
1008
1015
|
[k: string]: unknown;
|
|
1009
1016
|
},
|
|
1010
1017
|
...{
|
|
1018
|
+
regionBaseUrls?: {
|
|
1019
|
+
/**
|
|
1020
|
+
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
1021
|
+
* via the `patternProperty` ".+".
|
|
1022
|
+
*/
|
|
1023
|
+
[k: string]: string;
|
|
1024
|
+
};
|
|
1011
1025
|
baseUrl:
|
|
1012
1026
|
| string
|
|
1013
1027
|
| {
|