@forge/manifest 8.7.0-next.1 → 8.7.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 +63 -0
- package/out/schema/basic-manifest-schema.json +9 -0
- package/out/schema/basic-manifest.d.ts +5 -0
- package/out/schema/manifest-schema.json +489 -106
- package/out/schema/manifest.d.ts +601 -120
- package/out/scopes/shipyard-scopes.json +11 -0
- package/out/text/errors.d.ts +4 -0
- package/out/text/errors.d.ts.map +1 -1
- package/out/text/errors.js +4 -0
- package/out/validators/modules-validators/confluence/index.d.ts.map +1 -1
- package/out/validators/modules-validators/confluence/index.js +2 -0
- package/out/validators/modules-validators/confluence/validateMacroAutoConvert.d.ts +4 -0
- package/out/validators/modules-validators/confluence/validateMacroAutoConvert.d.ts.map +1 -0
- package/out/validators/modules-validators/confluence/validateMacroAutoConvert.js +55 -0
- package/out/validators/schema-validator.d.ts.map +1 -1
- package/out/validators/schema-validator.js +3 -0
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,68 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 8.7.0-next.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 503e60e: Add publish config
|
|
8
|
+
- Updated dependencies [503e60e]
|
|
9
|
+
- @forge/i18n@0.0.4-next.0
|
|
10
|
+
|
|
11
|
+
## 8.7.0-next.10
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- f70acc8: Update manifest definitions
|
|
16
|
+
|
|
17
|
+
## 8.7.0-next.9
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 2086b3d: Remove node-fetch as a dependency
|
|
22
|
+
|
|
23
|
+
## 8.7.0-next.8
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- 6f0fe42: Enabled macro autoConvert
|
|
28
|
+
|
|
29
|
+
## 8.7.0-next.7
|
|
30
|
+
|
|
31
|
+
### Minor Changes
|
|
32
|
+
|
|
33
|
+
- 6a41721: Updated linting for macro auto convert
|
|
34
|
+
|
|
35
|
+
## 8.7.0-next.6
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- ddc0256: Update manifest definitions
|
|
40
|
+
|
|
41
|
+
## 8.7.0-next.5
|
|
42
|
+
|
|
43
|
+
### Minor Changes
|
|
44
|
+
|
|
45
|
+
- dec434a: Don't produce extra error messages from conditional json schema snippets
|
|
46
|
+
|
|
47
|
+
## 8.7.0-next.4
|
|
48
|
+
|
|
49
|
+
### Patch Changes
|
|
50
|
+
|
|
51
|
+
- ba58c3a: allow app developer to configure lambda architecture
|
|
52
|
+
- 55df193: Update manifest definitions
|
|
53
|
+
|
|
54
|
+
## 8.7.0-next.3
|
|
55
|
+
|
|
56
|
+
### Patch Changes
|
|
57
|
+
|
|
58
|
+
- 4b050d8: Update manifest definitions
|
|
59
|
+
|
|
60
|
+
## 8.7.0-next.2
|
|
61
|
+
|
|
62
|
+
### Patch Changes
|
|
63
|
+
|
|
64
|
+
- de16df9: Update manifest definitions
|
|
65
|
+
|
|
3
66
|
## 8.7.0-next.1
|
|
4
67
|
|
|
5
68
|
### Minor Changes
|
|
@@ -36,6 +36,15 @@
|
|
|
36
36
|
"nodejs20.x",
|
|
37
37
|
"nodejs22.x"
|
|
38
38
|
]
|
|
39
|
+
},
|
|
40
|
+
"architecture": {
|
|
41
|
+
"description": "Lambda architecture, its value can be either 'x86_64' or 'arm64'. Default value is 'x86_64'.",
|
|
42
|
+
"title": "architecture",
|
|
43
|
+
"type": "string",
|
|
44
|
+
"enum": [
|
|
45
|
+
"x86_64",
|
|
46
|
+
"arm64"
|
|
47
|
+
]
|
|
39
48
|
}
|
|
40
49
|
},
|
|
41
50
|
"title": "runtime",
|
|
@@ -21,6 +21,10 @@ export type Snapshots = boolean;
|
|
|
21
21
|
* Name of the runtime to use for app execution.
|
|
22
22
|
*/
|
|
23
23
|
export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
|
|
24
|
+
/**
|
|
25
|
+
* Lambda architecture, its value can be either 'x86_64' or 'arm64'. Default value is 'x86_64'.
|
|
26
|
+
*/
|
|
27
|
+
export type Architecture = 'x86_64' | 'arm64';
|
|
24
28
|
/**
|
|
25
29
|
* The required product for cross-product functionality. If not set, app is not a cross-product app.
|
|
26
30
|
*/
|
|
@@ -168,6 +172,7 @@ export interface App {
|
|
|
168
172
|
export interface Runtime {
|
|
169
173
|
snapshots?: Snapshots;
|
|
170
174
|
name: Name;
|
|
175
|
+
architecture?: Architecture;
|
|
171
176
|
}
|
|
172
177
|
/**
|
|
173
178
|
* Options related to paid app licensing
|