@forge/manifest 4.14.0-next.4 → 4.14.0
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,32 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 4.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5d8a7a49: Add Bitbucket PR comment events
|
|
8
|
+
- 44042371: Add linter support for runtime name in manifest
|
|
9
|
+
- 9477f538: Allowing app to opt-in for auto-consent
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- cf453494: Bumping dependencies via Renovate:
|
|
14
|
+
|
|
15
|
+
- node-fetch
|
|
16
|
+
- @types/node-fetch
|
|
17
|
+
|
|
18
|
+
- bb7b824d: Bumping dependencies via Renovate:
|
|
19
|
+
|
|
20
|
+
- @types/node
|
|
21
|
+
|
|
22
|
+
- 00f194a9: Update manifest definitions
|
|
23
|
+
|
|
24
|
+
## 4.14.0-next.5
|
|
25
|
+
|
|
26
|
+
### Minor Changes
|
|
27
|
+
|
|
28
|
+
- 9477f538: Allowing app to opt-in for auto-consent
|
|
29
|
+
|
|
3
30
|
## 4.14.0-next.4
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
|
@@ -57,6 +57,20 @@
|
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
|
+
"features": {
|
|
61
|
+
"additionalProperties": false,
|
|
62
|
+
"type": "object",
|
|
63
|
+
"title": "features",
|
|
64
|
+
"description": "Features related to app",
|
|
65
|
+
"properties": {
|
|
66
|
+
"autoUserConsent": {
|
|
67
|
+
"type": "boolean",
|
|
68
|
+
"default": false,
|
|
69
|
+
"title": "autoUserConsent",
|
|
70
|
+
"description": "Whether user consent should be automatic. If set to false or no value is specified for this property in the manifest, user consent will be interactive."
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
},
|
|
60
74
|
"connect": {
|
|
61
75
|
"additionalProperties": false,
|
|
62
76
|
"required": [
|
|
@@ -25,6 +25,10 @@ export type Name = 'sandbox' | 'nodejs18.x';
|
|
|
25
25
|
* Whether to enable paid app licensing for production installations of this app. Default value of false.
|
|
26
26
|
*/
|
|
27
27
|
export type Enabled = boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Whether user consent should be automatic. If set to false or no value is specified for this property in the manifest, user consent will be interactive.
|
|
30
|
+
*/
|
|
31
|
+
export type AutoUserConsent = boolean;
|
|
28
32
|
/**
|
|
29
33
|
* The app's connect key
|
|
30
34
|
*/
|
|
@@ -39,6 +43,7 @@ export interface App {
|
|
|
39
43
|
id: Id;
|
|
40
44
|
runtime?: Runtime;
|
|
41
45
|
licensing?: Licensing;
|
|
46
|
+
features?: Features;
|
|
42
47
|
connect?: Connect;
|
|
43
48
|
/**
|
|
44
49
|
* Options related to hosted storage
|
|
@@ -156,6 +161,12 @@ export interface Runtime {
|
|
|
156
161
|
export interface Licensing {
|
|
157
162
|
enabled: Enabled;
|
|
158
163
|
}
|
|
164
|
+
/**
|
|
165
|
+
* Features related to app
|
|
166
|
+
*/
|
|
167
|
+
export interface Features {
|
|
168
|
+
autoUserConsent?: AutoUserConsent;
|
|
169
|
+
}
|
|
159
170
|
/**
|
|
160
171
|
* Connect Configuration for the forge app.
|
|
161
172
|
*/
|
|
@@ -57,6 +57,20 @@
|
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
|
+
"features": {
|
|
61
|
+
"additionalProperties": false,
|
|
62
|
+
"type": "object",
|
|
63
|
+
"title": "features",
|
|
64
|
+
"description": "Features related to app",
|
|
65
|
+
"properties": {
|
|
66
|
+
"autoUserConsent": {
|
|
67
|
+
"type": "boolean",
|
|
68
|
+
"default": false,
|
|
69
|
+
"title": "autoUserConsent",
|
|
70
|
+
"description": "Whether user consent should be automatic. If set to false or no value is specified for this property in the manifest, user consent will be interactive."
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
},
|
|
60
74
|
"connect": {
|
|
61
75
|
"additionalProperties": false,
|
|
62
76
|
"required": [
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -25,6 +25,10 @@ export type Name = 'sandbox' | 'nodejs18.x';
|
|
|
25
25
|
* Whether to enable paid app licensing for production installations of this app. Default value of false.
|
|
26
26
|
*/
|
|
27
27
|
export type Enabled = boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Whether user consent should be automatic. If set to false or no value is specified for this property in the manifest, user consent will be interactive.
|
|
30
|
+
*/
|
|
31
|
+
export type AutoUserConsent = boolean;
|
|
28
32
|
/**
|
|
29
33
|
* The app's connect key
|
|
30
34
|
*/
|
|
@@ -219,6 +223,7 @@ export interface App {
|
|
|
219
223
|
id: Id;
|
|
220
224
|
runtime?: Runtime;
|
|
221
225
|
licensing?: Licensing;
|
|
226
|
+
features?: Features;
|
|
222
227
|
connect?: Connect;
|
|
223
228
|
/**
|
|
224
229
|
* Options related to hosted storage
|
|
@@ -336,6 +341,12 @@ export interface Runtime {
|
|
|
336
341
|
export interface Licensing {
|
|
337
342
|
enabled: Enabled;
|
|
338
343
|
}
|
|
344
|
+
/**
|
|
345
|
+
* Features related to app
|
|
346
|
+
*/
|
|
347
|
+
export interface Features {
|
|
348
|
+
autoUserConsent?: AutoUserConsent;
|
|
349
|
+
}
|
|
339
350
|
/**
|
|
340
351
|
* Connect Configuration for the forge app.
|
|
341
352
|
*/
|