@forge/manifest 5.5.2 → 5.5.3-next.1
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 +14 -0
- package/out/schema/manifest-schema.json +2 -1
- package/out/schema/manifest.d.ts +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 5.5.3-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 96feb0c: Update manifest definitions
|
|
8
|
+
|
|
9
|
+
## 5.5.3-next.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 32fa518: Bumping dependencies via Renovate:
|
|
14
|
+
|
|
15
|
+
- @types/node-fetch
|
|
16
|
+
|
|
3
17
|
## 5.5.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -641,7 +641,7 @@ export interface Modules {
|
|
|
641
641
|
remote?: [
|
|
642
642
|
{
|
|
643
643
|
baseUrl: string;
|
|
644
|
-
operations?: ['storage' | 'other' | 'compute', ...('storage' | 'other' | 'compute')[]];
|
|
644
|
+
operations?: ['storage' | 'other' | 'compute' | 'fetch', ...('storage' | 'other' | 'compute' | 'fetch')[]];
|
|
645
645
|
storage?: {
|
|
646
646
|
inScopeEUD?: boolean;
|
|
647
647
|
[k: string]: unknown;
|
|
@@ -651,7 +651,7 @@ export interface Modules {
|
|
|
651
651
|
},
|
|
652
652
|
...{
|
|
653
653
|
baseUrl: string;
|
|
654
|
-
operations?: ['storage' | 'other' | 'compute', ...('storage' | 'other' | 'compute')[]];
|
|
654
|
+
operations?: ['storage' | 'other' | 'compute' | 'fetch', ...('storage' | 'other' | 'compute' | 'fetch')[]];
|
|
655
655
|
storage?: {
|
|
656
656
|
inScopeEUD?: boolean;
|
|
657
657
|
[k: string]: unknown;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/manifest",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.3-next.1",
|
|
4
4
|
"description": "Definitions and validations of the Forge manifest",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/jest": "^29.5.11",
|
|
19
19
|
"@types/node": "14.18.63",
|
|
20
|
-
"@types/node-fetch": "^2.6.
|
|
20
|
+
"@types/node-fetch": "^2.6.11"
|
|
21
21
|
},
|
|
22
22
|
"author": "Atlassian",
|
|
23
23
|
"license": "UNLICENSED",
|