@forge/manifest 11.3.2-next.1 → 11.3.3-next.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 +14 -0
- package/LICENSE.txt +1 -1
- package/out/schema/manifest-schema.json +36 -0
- package/out/schema/manifest.d.ts +24 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 11.3.3-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 545ecc1: Update manifest definitions
|
|
8
|
+
|
|
9
|
+
## 11.3.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 73c9329: Update manifest definitions
|
|
14
|
+
- 1eae7ab: Update manifest definitions
|
|
15
|
+
- b96a445: Update manifest definitions
|
|
16
|
+
|
|
3
17
|
## 11.3.2-next.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/LICENSE.txt
CHANGED
|
@@ -6254,6 +6254,12 @@
|
|
|
6254
6254
|
},
|
|
6255
6255
|
"export": {
|
|
6256
6256
|
"type": "boolean"
|
|
6257
|
+
},
|
|
6258
|
+
"api": {
|
|
6259
|
+
"type": "boolean"
|
|
6260
|
+
},
|
|
6261
|
+
"historyView": {
|
|
6262
|
+
"type": "boolean"
|
|
6257
6263
|
}
|
|
6258
6264
|
},
|
|
6259
6265
|
"required": [
|
|
@@ -6715,6 +6721,12 @@
|
|
|
6715
6721
|
},
|
|
6716
6722
|
"export": {
|
|
6717
6723
|
"type": "boolean"
|
|
6724
|
+
},
|
|
6725
|
+
"api": {
|
|
6726
|
+
"type": "boolean"
|
|
6727
|
+
},
|
|
6728
|
+
"historyView": {
|
|
6729
|
+
"type": "boolean"
|
|
6718
6730
|
}
|
|
6719
6731
|
},
|
|
6720
6732
|
"required": [
|
|
@@ -7160,6 +7172,12 @@
|
|
|
7160
7172
|
},
|
|
7161
7173
|
"export": {
|
|
7162
7174
|
"type": "boolean"
|
|
7175
|
+
},
|
|
7176
|
+
"api": {
|
|
7177
|
+
"type": "boolean"
|
|
7178
|
+
},
|
|
7179
|
+
"historyView": {
|
|
7180
|
+
"type": "boolean"
|
|
7163
7181
|
}
|
|
7164
7182
|
},
|
|
7165
7183
|
"required": [
|
|
@@ -7601,6 +7619,12 @@
|
|
|
7601
7619
|
},
|
|
7602
7620
|
"export": {
|
|
7603
7621
|
"type": "boolean"
|
|
7622
|
+
},
|
|
7623
|
+
"api": {
|
|
7624
|
+
"type": "boolean"
|
|
7625
|
+
},
|
|
7626
|
+
"historyView": {
|
|
7627
|
+
"type": "boolean"
|
|
7604
7628
|
}
|
|
7605
7629
|
},
|
|
7606
7630
|
"required": [
|
|
@@ -8142,6 +8166,12 @@
|
|
|
8142
8166
|
},
|
|
8143
8167
|
"export": {
|
|
8144
8168
|
"type": "boolean"
|
|
8169
|
+
},
|
|
8170
|
+
"api": {
|
|
8171
|
+
"type": "boolean"
|
|
8172
|
+
},
|
|
8173
|
+
"historyView": {
|
|
8174
|
+
"type": "boolean"
|
|
8145
8175
|
}
|
|
8146
8176
|
},
|
|
8147
8177
|
"required": [
|
|
@@ -8667,6 +8697,12 @@
|
|
|
8667
8697
|
},
|
|
8668
8698
|
"export": {
|
|
8669
8699
|
"type": "boolean"
|
|
8700
|
+
},
|
|
8701
|
+
"api": {
|
|
8702
|
+
"type": "boolean"
|
|
8703
|
+
},
|
|
8704
|
+
"historyView": {
|
|
8705
|
+
"type": "boolean"
|
|
8670
8706
|
}
|
|
8671
8707
|
},
|
|
8672
8708
|
"required": [
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -14355,6 +14355,8 @@ export interface Modules {
|
|
|
14355
14355
|
formatter?: {
|
|
14356
14356
|
expression: string;
|
|
14357
14357
|
export?: boolean;
|
|
14358
|
+
api?: boolean;
|
|
14359
|
+
historyView?: boolean;
|
|
14358
14360
|
[k: string]: unknown;
|
|
14359
14361
|
};
|
|
14360
14362
|
value?: {
|
|
@@ -14470,6 +14472,8 @@ export interface Modules {
|
|
|
14470
14472
|
formatter: {
|
|
14471
14473
|
expression: string;
|
|
14472
14474
|
export?: boolean;
|
|
14475
|
+
api?: boolean;
|
|
14476
|
+
historyView?: boolean;
|
|
14473
14477
|
[k: string]: unknown;
|
|
14474
14478
|
};
|
|
14475
14479
|
value?: {
|
|
@@ -14585,6 +14589,8 @@ export interface Modules {
|
|
|
14585
14589
|
formatter: {
|
|
14586
14590
|
expression: string;
|
|
14587
14591
|
export?: boolean;
|
|
14592
|
+
api?: boolean;
|
|
14593
|
+
historyView?: boolean;
|
|
14588
14594
|
[k: string]: unknown;
|
|
14589
14595
|
};
|
|
14590
14596
|
schema?: {
|
|
@@ -14698,6 +14704,8 @@ export interface Modules {
|
|
|
14698
14704
|
formatter?: {
|
|
14699
14705
|
expression: string;
|
|
14700
14706
|
export?: boolean;
|
|
14707
|
+
api?: boolean;
|
|
14708
|
+
historyView?: boolean;
|
|
14701
14709
|
[k: string]: unknown;
|
|
14702
14710
|
};
|
|
14703
14711
|
value?: {
|
|
@@ -14813,6 +14821,8 @@ export interface Modules {
|
|
|
14813
14821
|
formatter: {
|
|
14814
14822
|
expression: string;
|
|
14815
14823
|
export?: boolean;
|
|
14824
|
+
api?: boolean;
|
|
14825
|
+
historyView?: boolean;
|
|
14816
14826
|
[k: string]: unknown;
|
|
14817
14827
|
};
|
|
14818
14828
|
value?: {
|
|
@@ -14928,6 +14938,8 @@ export interface Modules {
|
|
|
14928
14938
|
formatter: {
|
|
14929
14939
|
expression: string;
|
|
14930
14940
|
export?: boolean;
|
|
14941
|
+
api?: boolean;
|
|
14942
|
+
historyView?: boolean;
|
|
14931
14943
|
[k: string]: unknown;
|
|
14932
14944
|
};
|
|
14933
14945
|
schema?: {
|
|
@@ -15043,6 +15055,8 @@ export interface Modules {
|
|
|
15043
15055
|
formatter?: {
|
|
15044
15056
|
expression: string;
|
|
15045
15057
|
export?: boolean;
|
|
15058
|
+
api?: boolean;
|
|
15059
|
+
historyView?: boolean;
|
|
15046
15060
|
[k: string]: unknown;
|
|
15047
15061
|
};
|
|
15048
15062
|
value?: {
|
|
@@ -15173,6 +15187,8 @@ export interface Modules {
|
|
|
15173
15187
|
formatter: {
|
|
15174
15188
|
expression: string;
|
|
15175
15189
|
export?: boolean;
|
|
15190
|
+
api?: boolean;
|
|
15191
|
+
historyView?: boolean;
|
|
15176
15192
|
[k: string]: unknown;
|
|
15177
15193
|
};
|
|
15178
15194
|
value?: {
|
|
@@ -15303,6 +15319,8 @@ export interface Modules {
|
|
|
15303
15319
|
formatter: {
|
|
15304
15320
|
expression: string;
|
|
15305
15321
|
export?: boolean;
|
|
15322
|
+
api?: boolean;
|
|
15323
|
+
historyView?: boolean;
|
|
15306
15324
|
[k: string]: unknown;
|
|
15307
15325
|
};
|
|
15308
15326
|
schema?: {
|
|
@@ -15431,6 +15449,8 @@ export interface Modules {
|
|
|
15431
15449
|
formatter?: {
|
|
15432
15450
|
expression: string;
|
|
15433
15451
|
export?: boolean;
|
|
15452
|
+
api?: boolean;
|
|
15453
|
+
historyView?: boolean;
|
|
15434
15454
|
[k: string]: unknown;
|
|
15435
15455
|
};
|
|
15436
15456
|
value?: {
|
|
@@ -15561,6 +15581,8 @@ export interface Modules {
|
|
|
15561
15581
|
formatter: {
|
|
15562
15582
|
expression: string;
|
|
15563
15583
|
export?: boolean;
|
|
15584
|
+
api?: boolean;
|
|
15585
|
+
historyView?: boolean;
|
|
15564
15586
|
[k: string]: unknown;
|
|
15565
15587
|
};
|
|
15566
15588
|
value?: {
|
|
@@ -15691,6 +15713,8 @@ export interface Modules {
|
|
|
15691
15713
|
formatter: {
|
|
15692
15714
|
expression: string;
|
|
15693
15715
|
export?: boolean;
|
|
15716
|
+
api?: boolean;
|
|
15717
|
+
historyView?: boolean;
|
|
15694
15718
|
[k: string]: unknown;
|
|
15695
15719
|
};
|
|
15696
15720
|
schema?: {
|