@forge/manifest 12.0.0-next.3-experimental-cb1ecce → 12.0.0-next.4
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 +2 -13
- package/out/schema/manifest-schema.json +7 -1
- package/out/schema/manifest.d.ts +4 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,21 +1,10 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
-
## 12.0.0-next.
|
|
4
|
-
|
|
5
|
-
### Major Changes
|
|
6
|
-
|
|
7
|
-
- 6b7a4ef: Added GraphConnector module Auth Provider reference validation
|
|
8
|
-
- dfa2aa6: Added GraphConnector module Auth Provider reference validation
|
|
9
|
-
|
|
10
|
-
### Minor Changes
|
|
11
|
-
|
|
12
|
-
- e21f32f: Remove remote oauth scopes lint check as scopes are no longer required in manifest
|
|
3
|
+
## 12.0.0-next.4
|
|
13
4
|
|
|
14
5
|
### Patch Changes
|
|
15
6
|
|
|
16
|
-
-
|
|
17
|
-
- eadb4a6: Update manifest definitions
|
|
18
|
-
- 8db2311: Update manifest definitions
|
|
7
|
+
- 9418d29: Update manifest definitions
|
|
19
8
|
|
|
20
9
|
## 12.0.0-next.3
|
|
21
10
|
|
|
@@ -2305,11 +2305,17 @@
|
|
|
2305
2305
|
"medium",
|
|
2306
2306
|
"large",
|
|
2307
2307
|
"xlarge",
|
|
2308
|
-
"max"
|
|
2308
|
+
"max",
|
|
2309
|
+
"fullscreen"
|
|
2309
2310
|
]
|
|
2310
2311
|
},
|
|
2311
2312
|
"openOnInsert": {
|
|
2312
2313
|
"type": "boolean"
|
|
2314
|
+
},
|
|
2315
|
+
"icon": {
|
|
2316
|
+
"type": "string",
|
|
2317
|
+
"minLength": 1,
|
|
2318
|
+
"maxLength": 255
|
|
2313
2319
|
}
|
|
2314
2320
|
},
|
|
2315
2321
|
"required": [
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -12426,8 +12426,9 @@ export interface Modules {
|
|
|
12426
12426
|
title__i18n?: string;
|
|
12427
12427
|
resource: string;
|
|
12428
12428
|
render?: 'native' | 'default';
|
|
12429
|
-
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
12429
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max' | 'fullscreen';
|
|
12430
12430
|
openOnInsert?: boolean;
|
|
12431
|
+
icon?: string;
|
|
12431
12432
|
};
|
|
12432
12433
|
autoConvert?: {
|
|
12433
12434
|
matchers: [
|
|
@@ -12539,8 +12540,9 @@ export interface Modules {
|
|
|
12539
12540
|
title__i18n?: string;
|
|
12540
12541
|
resource: string;
|
|
12541
12542
|
render?: 'native' | 'default';
|
|
12542
|
-
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
12543
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max' | 'fullscreen';
|
|
12543
12544
|
openOnInsert?: boolean;
|
|
12545
|
+
icon?: string;
|
|
12544
12546
|
};
|
|
12545
12547
|
autoConvert?: {
|
|
12546
12548
|
matchers: [
|