wxt 0.20.7 → 0.20.8
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/README.md +21 -47
- package/dist/core/builders/vite/index.d.ts +4 -0
- package/dist/core/builders/vite/index.mjs +55 -16
- package/dist/core/builders/vite/plugins/devServerGlobals.mjs +1 -1
- package/dist/core/builders/vite/plugins/iifeFooter.d.ts +8 -0
- package/dist/core/builders/vite/plugins/iifeFooter.mjs +12 -0
- package/dist/core/builders/vite/plugins/index.d.ts +1 -1
- package/dist/core/builders/vite/plugins/index.mjs +1 -1
- package/dist/core/create-server.mjs +4 -2
- package/dist/core/initialize.mjs +1 -1
- package/dist/core/keyboard-shortcuts.mjs +2 -4
- package/dist/core/runners/web-ext.mjs +1 -0
- package/dist/core/utils/building/build-entrypoints.mjs +1 -1
- package/dist/core/utils/minimatch-multiple.d.ts +15 -0
- package/dist/core/utils/minimatch-multiple.mjs +17 -0
- package/dist/core/utils/testing/fake-objects.d.ts +253 -234
- package/dist/core/zip.mjs +2 -2
- package/dist/utils/app-config.d.ts +1 -1
- package/dist/utils/content-script-context.d.ts +10 -0
- package/dist/utils/content-script-context.mjs +8 -0
- package/dist/utils/split-shadow-root-css.d.ts +1 -0
- package/dist/version.mjs +1 -1
- package/dist/virtual/background-entrypoint.mjs +14 -2
- package/package.json +4 -4
- package/dist/core/builders/vite/plugins/multipageMove.d.ts +0 -20
- package/dist/core/builders/vite/plugins/multipageMove.mjs +0 -59
|
@@ -230,26 +230,27 @@ export declare const fakeManifest: (overrides?: {
|
|
|
230
230
|
} | undefined)[] | undefined;
|
|
231
231
|
conditions?: ({
|
|
232
232
|
pageUrl?: {
|
|
233
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
234
|
+
schemes?: (string | undefined)[] | undefined;
|
|
235
|
+
urlMatches?: string | undefined | undefined;
|
|
236
|
+
pathContains?: string | undefined | undefined;
|
|
237
|
+
hostSuffix?: string | undefined | undefined;
|
|
238
|
+
hostPrefix?: string | undefined | undefined;
|
|
233
239
|
hostContains?: string | undefined | undefined;
|
|
240
|
+
urlContains?: string | undefined | undefined;
|
|
241
|
+
querySuffix?: string | undefined | undefined;
|
|
242
|
+
urlPrefix?: string | undefined | undefined;
|
|
234
243
|
hostEquals?: string | undefined | undefined;
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
pathContains?: string | undefined | undefined;
|
|
238
|
-
pathEquals?: string | undefined | undefined;
|
|
244
|
+
urlEquals?: string | undefined | undefined;
|
|
245
|
+
queryContains?: string | undefined | undefined;
|
|
239
246
|
pathPrefix?: string | undefined | undefined;
|
|
247
|
+
pathEquals?: string | undefined | undefined;
|
|
240
248
|
pathSuffix?: string | undefined | undefined;
|
|
241
|
-
queryContains?: string | undefined | undefined;
|
|
242
249
|
queryEquals?: string | undefined | undefined;
|
|
243
250
|
queryPrefix?: string | undefined | undefined;
|
|
244
|
-
querySuffix?: string | undefined | undefined;
|
|
245
|
-
urlContains?: string | undefined | undefined;
|
|
246
|
-
urlEquals?: string | undefined | undefined;
|
|
247
|
-
urlMatches?: string | undefined | undefined;
|
|
248
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
249
|
-
urlPrefix?: string | undefined | undefined;
|
|
250
251
|
urlSuffix?: string | undefined | undefined;
|
|
251
|
-
schemes?: (string | undefined)[] | undefined;
|
|
252
252
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
253
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
253
254
|
} | undefined;
|
|
254
255
|
css?: (string | undefined)[] | undefined;
|
|
255
256
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -456,26 +457,27 @@ export declare const fakeManifest: (overrides?: {
|
|
|
456
457
|
} | undefined)[] | undefined;
|
|
457
458
|
conditions?: ({
|
|
458
459
|
pageUrl?: {
|
|
460
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
461
|
+
schemes?: (string | undefined)[] | undefined;
|
|
462
|
+
urlMatches?: string | undefined | undefined;
|
|
463
|
+
pathContains?: string | undefined | undefined;
|
|
464
|
+
hostSuffix?: string | undefined | undefined;
|
|
465
|
+
hostPrefix?: string | undefined | undefined;
|
|
459
466
|
hostContains?: string | undefined | undefined;
|
|
467
|
+
urlContains?: string | undefined | undefined;
|
|
468
|
+
querySuffix?: string | undefined | undefined;
|
|
469
|
+
urlPrefix?: string | undefined | undefined;
|
|
460
470
|
hostEquals?: string | undefined | undefined;
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
pathContains?: string | undefined | undefined;
|
|
464
|
-
pathEquals?: string | undefined | undefined;
|
|
471
|
+
urlEquals?: string | undefined | undefined;
|
|
472
|
+
queryContains?: string | undefined | undefined;
|
|
465
473
|
pathPrefix?: string | undefined | undefined;
|
|
474
|
+
pathEquals?: string | undefined | undefined;
|
|
466
475
|
pathSuffix?: string | undefined | undefined;
|
|
467
|
-
queryContains?: string | undefined | undefined;
|
|
468
476
|
queryEquals?: string | undefined | undefined;
|
|
469
477
|
queryPrefix?: string | undefined | undefined;
|
|
470
|
-
querySuffix?: string | undefined | undefined;
|
|
471
|
-
urlContains?: string | undefined | undefined;
|
|
472
|
-
urlEquals?: string | undefined | undefined;
|
|
473
|
-
urlMatches?: string | undefined | undefined;
|
|
474
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
475
|
-
urlPrefix?: string | undefined | undefined;
|
|
476
478
|
urlSuffix?: string | undefined | undefined;
|
|
477
|
-
schemes?: (string | undefined)[] | undefined;
|
|
478
479
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
480
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
479
481
|
} | undefined;
|
|
480
482
|
css?: (string | undefined)[] | undefined;
|
|
481
483
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -660,26 +662,27 @@ export declare const fakeUserManifest: (overrides?: {
|
|
|
660
662
|
} | undefined)[] | undefined;
|
|
661
663
|
conditions?: ({
|
|
662
664
|
pageUrl?: {
|
|
665
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
666
|
+
schemes?: (string | undefined)[] | undefined;
|
|
667
|
+
urlMatches?: string | undefined | undefined;
|
|
668
|
+
pathContains?: string | undefined | undefined;
|
|
669
|
+
hostSuffix?: string | undefined | undefined;
|
|
670
|
+
hostPrefix?: string | undefined | undefined;
|
|
663
671
|
hostContains?: string | undefined | undefined;
|
|
672
|
+
urlContains?: string | undefined | undefined;
|
|
673
|
+
querySuffix?: string | undefined | undefined;
|
|
674
|
+
urlPrefix?: string | undefined | undefined;
|
|
664
675
|
hostEquals?: string | undefined | undefined;
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
pathContains?: string | undefined | undefined;
|
|
668
|
-
pathEquals?: string | undefined | undefined;
|
|
676
|
+
urlEquals?: string | undefined | undefined;
|
|
677
|
+
queryContains?: string | undefined | undefined;
|
|
669
678
|
pathPrefix?: string | undefined | undefined;
|
|
679
|
+
pathEquals?: string | undefined | undefined;
|
|
670
680
|
pathSuffix?: string | undefined | undefined;
|
|
671
|
-
queryContains?: string | undefined | undefined;
|
|
672
681
|
queryEquals?: string | undefined | undefined;
|
|
673
682
|
queryPrefix?: string | undefined | undefined;
|
|
674
|
-
querySuffix?: string | undefined | undefined;
|
|
675
|
-
urlContains?: string | undefined | undefined;
|
|
676
|
-
urlEquals?: string | undefined | undefined;
|
|
677
|
-
urlMatches?: string | undefined | undefined;
|
|
678
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
679
|
-
urlPrefix?: string | undefined | undefined;
|
|
680
683
|
urlSuffix?: string | undefined | undefined;
|
|
681
|
-
schemes?: (string | undefined)[] | undefined;
|
|
682
684
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
685
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
683
686
|
} | undefined;
|
|
684
687
|
css?: (string | undefined)[] | undefined;
|
|
685
688
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -1127,26 +1130,27 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
1127
1130
|
} | undefined)[] | undefined;
|
|
1128
1131
|
conditions?: ({
|
|
1129
1132
|
pageUrl?: {
|
|
1133
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
1134
|
+
schemes?: (string | undefined)[] | undefined;
|
|
1135
|
+
urlMatches?: string | undefined | undefined;
|
|
1136
|
+
pathContains?: string | undefined | undefined;
|
|
1137
|
+
hostSuffix?: string | undefined | undefined;
|
|
1138
|
+
hostPrefix?: string | undefined | undefined;
|
|
1130
1139
|
hostContains?: string | undefined | undefined;
|
|
1140
|
+
urlContains?: string | undefined | undefined;
|
|
1141
|
+
querySuffix?: string | undefined | undefined;
|
|
1142
|
+
urlPrefix?: string | undefined | undefined;
|
|
1131
1143
|
hostEquals?: string | undefined | undefined;
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
pathContains?: string | undefined | undefined;
|
|
1135
|
-
pathEquals?: string | undefined | undefined;
|
|
1144
|
+
urlEquals?: string | undefined | undefined;
|
|
1145
|
+
queryContains?: string | undefined | undefined;
|
|
1136
1146
|
pathPrefix?: string | undefined | undefined;
|
|
1147
|
+
pathEquals?: string | undefined | undefined;
|
|
1137
1148
|
pathSuffix?: string | undefined | undefined;
|
|
1138
|
-
queryContains?: string | undefined | undefined;
|
|
1139
1149
|
queryEquals?: string | undefined | undefined;
|
|
1140
1150
|
queryPrefix?: string | undefined | undefined;
|
|
1141
|
-
querySuffix?: string | undefined | undefined;
|
|
1142
|
-
urlContains?: string | undefined | undefined;
|
|
1143
|
-
urlEquals?: string | undefined | undefined;
|
|
1144
|
-
urlMatches?: string | undefined | undefined;
|
|
1145
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
1146
|
-
urlPrefix?: string | undefined | undefined;
|
|
1147
1151
|
urlSuffix?: string | undefined | undefined;
|
|
1148
|
-
schemes?: (string | undefined)[] | undefined;
|
|
1149
1152
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
1153
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
1150
1154
|
} | undefined;
|
|
1151
1155
|
css?: (string | undefined)[] | undefined;
|
|
1152
1156
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -1514,7 +1518,6 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
1514
1518
|
configFile?: string | undefined;
|
|
1515
1519
|
layers?: ({
|
|
1516
1520
|
config?: {
|
|
1517
|
-
browser?: import("../../../types").TargetBrowser | undefined;
|
|
1518
1521
|
debug?: boolean | undefined;
|
|
1519
1522
|
vite?: {} | undefined;
|
|
1520
1523
|
zip?: {
|
|
@@ -1627,26 +1630,27 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
1627
1630
|
} | undefined)[] | undefined;
|
|
1628
1631
|
conditions?: ({
|
|
1629
1632
|
pageUrl?: {
|
|
1633
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
1634
|
+
schemes?: (string | undefined)[] | undefined;
|
|
1635
|
+
urlMatches?: string | undefined | undefined;
|
|
1636
|
+
pathContains?: string | undefined | undefined;
|
|
1637
|
+
hostSuffix?: string | undefined | undefined;
|
|
1638
|
+
hostPrefix?: string | undefined | undefined;
|
|
1630
1639
|
hostContains?: string | undefined | undefined;
|
|
1640
|
+
urlContains?: string | undefined | undefined;
|
|
1641
|
+
querySuffix?: string | undefined | undefined;
|
|
1642
|
+
urlPrefix?: string | undefined | undefined;
|
|
1631
1643
|
hostEquals?: string | undefined | undefined;
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
pathContains?: string | undefined | undefined;
|
|
1635
|
-
pathEquals?: string | undefined | undefined;
|
|
1644
|
+
urlEquals?: string | undefined | undefined;
|
|
1645
|
+
queryContains?: string | undefined | undefined;
|
|
1636
1646
|
pathPrefix?: string | undefined | undefined;
|
|
1647
|
+
pathEquals?: string | undefined | undefined;
|
|
1637
1648
|
pathSuffix?: string | undefined | undefined;
|
|
1638
|
-
queryContains?: string | undefined | undefined;
|
|
1639
1649
|
queryEquals?: string | undefined | undefined;
|
|
1640
1650
|
queryPrefix?: string | undefined | undefined;
|
|
1641
|
-
querySuffix?: string | undefined | undefined;
|
|
1642
|
-
urlContains?: string | undefined | undefined;
|
|
1643
|
-
urlEquals?: string | undefined | undefined;
|
|
1644
|
-
urlMatches?: string | undefined | undefined;
|
|
1645
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
1646
|
-
urlPrefix?: string | undefined | undefined;
|
|
1647
1651
|
urlSuffix?: string | undefined | undefined;
|
|
1648
|
-
schemes?: (string | undefined)[] | undefined;
|
|
1649
1652
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
1653
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
1650
1654
|
} | undefined;
|
|
1651
1655
|
css?: (string | undefined)[] | undefined;
|
|
1652
1656
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -1964,6 +1968,7 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
1964
1968
|
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
1965
1969
|
} | undefined;
|
|
1966
1970
|
} | undefined;
|
|
1971
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
1967
1972
|
targetBrowsers?: (string | undefined)[] | undefined;
|
|
1968
1973
|
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
1969
1974
|
logger?: {
|
|
@@ -2281,7 +2286,6 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
2281
2286
|
name?: string | undefined;
|
|
2282
2287
|
} | undefined;
|
|
2283
2288
|
overrides?: {
|
|
2284
|
-
browser?: import("../../../types").TargetBrowser | undefined;
|
|
2285
2289
|
debug?: boolean | undefined;
|
|
2286
2290
|
vite?: {} | undefined;
|
|
2287
2291
|
zip?: {
|
|
@@ -2394,26 +2398,27 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
2394
2398
|
} | undefined)[] | undefined;
|
|
2395
2399
|
conditions?: ({
|
|
2396
2400
|
pageUrl?: {
|
|
2401
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
2402
|
+
schemes?: (string | undefined)[] | undefined;
|
|
2403
|
+
urlMatches?: string | undefined | undefined;
|
|
2404
|
+
pathContains?: string | undefined | undefined;
|
|
2405
|
+
hostSuffix?: string | undefined | undefined;
|
|
2406
|
+
hostPrefix?: string | undefined | undefined;
|
|
2397
2407
|
hostContains?: string | undefined | undefined;
|
|
2408
|
+
urlContains?: string | undefined | undefined;
|
|
2409
|
+
querySuffix?: string | undefined | undefined;
|
|
2410
|
+
urlPrefix?: string | undefined | undefined;
|
|
2398
2411
|
hostEquals?: string | undefined | undefined;
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
pathContains?: string | undefined | undefined;
|
|
2402
|
-
pathEquals?: string | undefined | undefined;
|
|
2412
|
+
urlEquals?: string | undefined | undefined;
|
|
2413
|
+
queryContains?: string | undefined | undefined;
|
|
2403
2414
|
pathPrefix?: string | undefined | undefined;
|
|
2415
|
+
pathEquals?: string | undefined | undefined;
|
|
2404
2416
|
pathSuffix?: string | undefined | undefined;
|
|
2405
|
-
queryContains?: string | undefined | undefined;
|
|
2406
2417
|
queryEquals?: string | undefined | undefined;
|
|
2407
2418
|
queryPrefix?: string | undefined | undefined;
|
|
2408
|
-
querySuffix?: string | undefined | undefined;
|
|
2409
|
-
urlContains?: string | undefined | undefined;
|
|
2410
|
-
urlEquals?: string | undefined | undefined;
|
|
2411
|
-
urlMatches?: string | undefined | undefined;
|
|
2412
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
2413
|
-
urlPrefix?: string | undefined | undefined;
|
|
2414
2419
|
urlSuffix?: string | undefined | undefined;
|
|
2415
|
-
schemes?: (string | undefined)[] | undefined;
|
|
2416
2420
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
2421
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
2417
2422
|
} | undefined;
|
|
2418
2423
|
css?: (string | undefined)[] | undefined;
|
|
2419
2424
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -2731,6 +2736,7 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
2731
2736
|
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
2732
2737
|
} | undefined;
|
|
2733
2738
|
} | undefined;
|
|
2739
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
2734
2740
|
targetBrowsers?: (string | undefined)[] | undefined;
|
|
2735
2741
|
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
2736
2742
|
logger?: {
|
|
@@ -3075,7 +3081,6 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
3075
3081
|
name?: string | undefined;
|
|
3076
3082
|
} | undefined;
|
|
3077
3083
|
overrides?: {
|
|
3078
|
-
browser?: import("../../../types").TargetBrowser | undefined;
|
|
3079
3084
|
debug?: boolean | undefined;
|
|
3080
3085
|
vite?: {} | undefined;
|
|
3081
3086
|
zip?: {
|
|
@@ -3188,26 +3193,27 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
3188
3193
|
} | undefined)[] | undefined;
|
|
3189
3194
|
conditions?: ({
|
|
3190
3195
|
pageUrl?: {
|
|
3196
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
3197
|
+
schemes?: (string | undefined)[] | undefined;
|
|
3198
|
+
urlMatches?: string | undefined | undefined;
|
|
3199
|
+
pathContains?: string | undefined | undefined;
|
|
3200
|
+
hostSuffix?: string | undefined | undefined;
|
|
3201
|
+
hostPrefix?: string | undefined | undefined;
|
|
3191
3202
|
hostContains?: string | undefined | undefined;
|
|
3203
|
+
urlContains?: string | undefined | undefined;
|
|
3204
|
+
querySuffix?: string | undefined | undefined;
|
|
3205
|
+
urlPrefix?: string | undefined | undefined;
|
|
3192
3206
|
hostEquals?: string | undefined | undefined;
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
pathContains?: string | undefined | undefined;
|
|
3196
|
-
pathEquals?: string | undefined | undefined;
|
|
3207
|
+
urlEquals?: string | undefined | undefined;
|
|
3208
|
+
queryContains?: string | undefined | undefined;
|
|
3197
3209
|
pathPrefix?: string | undefined | undefined;
|
|
3210
|
+
pathEquals?: string | undefined | undefined;
|
|
3198
3211
|
pathSuffix?: string | undefined | undefined;
|
|
3199
|
-
queryContains?: string | undefined | undefined;
|
|
3200
3212
|
queryEquals?: string | undefined | undefined;
|
|
3201
3213
|
queryPrefix?: string | undefined | undefined;
|
|
3202
|
-
querySuffix?: string | undefined | undefined;
|
|
3203
|
-
urlContains?: string | undefined | undefined;
|
|
3204
|
-
urlEquals?: string | undefined | undefined;
|
|
3205
|
-
urlMatches?: string | undefined | undefined;
|
|
3206
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
3207
|
-
urlPrefix?: string | undefined | undefined;
|
|
3208
3214
|
urlSuffix?: string | undefined | undefined;
|
|
3209
|
-
schemes?: (string | undefined)[] | undefined;
|
|
3210
3215
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
3216
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
3211
3217
|
} | undefined;
|
|
3212
3218
|
css?: (string | undefined)[] | undefined;
|
|
3213
3219
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -3525,6 +3531,7 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
3525
3531
|
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
3526
3532
|
} | undefined;
|
|
3527
3533
|
} | undefined;
|
|
3534
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
3528
3535
|
targetBrowsers?: (string | undefined)[] | undefined;
|
|
3529
3536
|
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
3530
3537
|
logger?: {
|
|
@@ -4893,26 +4900,27 @@ export declare const fakeWxt: (overrides?: {
|
|
|
4893
4900
|
} | undefined)[] | undefined;
|
|
4894
4901
|
conditions?: ({
|
|
4895
4902
|
pageUrl?: {
|
|
4903
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
4904
|
+
schemes?: (string | undefined)[] | undefined;
|
|
4905
|
+
urlMatches?: string | undefined | undefined;
|
|
4906
|
+
pathContains?: string | undefined | undefined;
|
|
4907
|
+
hostSuffix?: string | undefined | undefined;
|
|
4908
|
+
hostPrefix?: string | undefined | undefined;
|
|
4896
4909
|
hostContains?: string | undefined | undefined;
|
|
4910
|
+
urlContains?: string | undefined | undefined;
|
|
4911
|
+
querySuffix?: string | undefined | undefined;
|
|
4912
|
+
urlPrefix?: string | undefined | undefined;
|
|
4897
4913
|
hostEquals?: string | undefined | undefined;
|
|
4898
|
-
|
|
4899
|
-
|
|
4900
|
-
pathContains?: string | undefined | undefined;
|
|
4901
|
-
pathEquals?: string | undefined | undefined;
|
|
4914
|
+
urlEquals?: string | undefined | undefined;
|
|
4915
|
+
queryContains?: string | undefined | undefined;
|
|
4902
4916
|
pathPrefix?: string | undefined | undefined;
|
|
4917
|
+
pathEquals?: string | undefined | undefined;
|
|
4903
4918
|
pathSuffix?: string | undefined | undefined;
|
|
4904
|
-
queryContains?: string | undefined | undefined;
|
|
4905
4919
|
queryEquals?: string | undefined | undefined;
|
|
4906
4920
|
queryPrefix?: string | undefined | undefined;
|
|
4907
|
-
querySuffix?: string | undefined | undefined;
|
|
4908
|
-
urlContains?: string | undefined | undefined;
|
|
4909
|
-
urlEquals?: string | undefined | undefined;
|
|
4910
|
-
urlMatches?: string | undefined | undefined;
|
|
4911
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
4912
|
-
urlPrefix?: string | undefined | undefined;
|
|
4913
4921
|
urlSuffix?: string | undefined | undefined;
|
|
4914
|
-
schemes?: (string | undefined)[] | undefined;
|
|
4915
4922
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
4923
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
4916
4924
|
} | undefined;
|
|
4917
4925
|
css?: (string | undefined)[] | undefined;
|
|
4918
4926
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -5280,7 +5288,6 @@ export declare const fakeWxt: (overrides?: {
|
|
|
5280
5288
|
configFile?: string | undefined;
|
|
5281
5289
|
layers?: ({
|
|
5282
5290
|
config?: {
|
|
5283
|
-
browser?: import("../../../types").TargetBrowser | undefined;
|
|
5284
5291
|
debug?: boolean | undefined;
|
|
5285
5292
|
vite?: {} | undefined;
|
|
5286
5293
|
zip?: {
|
|
@@ -5393,26 +5400,27 @@ export declare const fakeWxt: (overrides?: {
|
|
|
5393
5400
|
} | undefined)[] | undefined;
|
|
5394
5401
|
conditions?: ({
|
|
5395
5402
|
pageUrl?: {
|
|
5403
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
5404
|
+
schemes?: (string | undefined)[] | undefined;
|
|
5405
|
+
urlMatches?: string | undefined | undefined;
|
|
5406
|
+
pathContains?: string | undefined | undefined;
|
|
5407
|
+
hostSuffix?: string | undefined | undefined;
|
|
5408
|
+
hostPrefix?: string | undefined | undefined;
|
|
5396
5409
|
hostContains?: string | undefined | undefined;
|
|
5410
|
+
urlContains?: string | undefined | undefined;
|
|
5411
|
+
querySuffix?: string | undefined | undefined;
|
|
5412
|
+
urlPrefix?: string | undefined | undefined;
|
|
5397
5413
|
hostEquals?: string | undefined | undefined;
|
|
5398
|
-
|
|
5399
|
-
|
|
5400
|
-
pathContains?: string | undefined | undefined;
|
|
5401
|
-
pathEquals?: string | undefined | undefined;
|
|
5414
|
+
urlEquals?: string | undefined | undefined;
|
|
5415
|
+
queryContains?: string | undefined | undefined;
|
|
5402
5416
|
pathPrefix?: string | undefined | undefined;
|
|
5417
|
+
pathEquals?: string | undefined | undefined;
|
|
5403
5418
|
pathSuffix?: string | undefined | undefined;
|
|
5404
|
-
queryContains?: string | undefined | undefined;
|
|
5405
5419
|
queryEquals?: string | undefined | undefined;
|
|
5406
5420
|
queryPrefix?: string | undefined | undefined;
|
|
5407
|
-
querySuffix?: string | undefined | undefined;
|
|
5408
|
-
urlContains?: string | undefined | undefined;
|
|
5409
|
-
urlEquals?: string | undefined | undefined;
|
|
5410
|
-
urlMatches?: string | undefined | undefined;
|
|
5411
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
5412
|
-
urlPrefix?: string | undefined | undefined;
|
|
5413
5421
|
urlSuffix?: string | undefined | undefined;
|
|
5414
|
-
schemes?: (string | undefined)[] | undefined;
|
|
5415
5422
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
5423
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
5416
5424
|
} | undefined;
|
|
5417
5425
|
css?: (string | undefined)[] | undefined;
|
|
5418
5426
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -5730,6 +5738,7 @@ export declare const fakeWxt: (overrides?: {
|
|
|
5730
5738
|
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
5731
5739
|
} | undefined;
|
|
5732
5740
|
} | undefined;
|
|
5741
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
5733
5742
|
targetBrowsers?: (string | undefined)[] | undefined;
|
|
5734
5743
|
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
5735
5744
|
logger?: {
|
|
@@ -6047,7 +6056,6 @@ export declare const fakeWxt: (overrides?: {
|
|
|
6047
6056
|
name?: string | undefined;
|
|
6048
6057
|
} | undefined;
|
|
6049
6058
|
overrides?: {
|
|
6050
|
-
browser?: import("../../../types").TargetBrowser | undefined;
|
|
6051
6059
|
debug?: boolean | undefined;
|
|
6052
6060
|
vite?: {} | undefined;
|
|
6053
6061
|
zip?: {
|
|
@@ -6160,26 +6168,27 @@ export declare const fakeWxt: (overrides?: {
|
|
|
6160
6168
|
} | undefined)[] | undefined;
|
|
6161
6169
|
conditions?: ({
|
|
6162
6170
|
pageUrl?: {
|
|
6171
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
6172
|
+
schemes?: (string | undefined)[] | undefined;
|
|
6173
|
+
urlMatches?: string | undefined | undefined;
|
|
6174
|
+
pathContains?: string | undefined | undefined;
|
|
6175
|
+
hostSuffix?: string | undefined | undefined;
|
|
6176
|
+
hostPrefix?: string | undefined | undefined;
|
|
6163
6177
|
hostContains?: string | undefined | undefined;
|
|
6178
|
+
urlContains?: string | undefined | undefined;
|
|
6179
|
+
querySuffix?: string | undefined | undefined;
|
|
6180
|
+
urlPrefix?: string | undefined | undefined;
|
|
6164
6181
|
hostEquals?: string | undefined | undefined;
|
|
6165
|
-
|
|
6166
|
-
|
|
6167
|
-
pathContains?: string | undefined | undefined;
|
|
6168
|
-
pathEquals?: string | undefined | undefined;
|
|
6182
|
+
urlEquals?: string | undefined | undefined;
|
|
6183
|
+
queryContains?: string | undefined | undefined;
|
|
6169
6184
|
pathPrefix?: string | undefined | undefined;
|
|
6185
|
+
pathEquals?: string | undefined | undefined;
|
|
6170
6186
|
pathSuffix?: string | undefined | undefined;
|
|
6171
|
-
queryContains?: string | undefined | undefined;
|
|
6172
6187
|
queryEquals?: string | undefined | undefined;
|
|
6173
6188
|
queryPrefix?: string | undefined | undefined;
|
|
6174
|
-
querySuffix?: string | undefined | undefined;
|
|
6175
|
-
urlContains?: string | undefined | undefined;
|
|
6176
|
-
urlEquals?: string | undefined | undefined;
|
|
6177
|
-
urlMatches?: string | undefined | undefined;
|
|
6178
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
6179
|
-
urlPrefix?: string | undefined | undefined;
|
|
6180
6189
|
urlSuffix?: string | undefined | undefined;
|
|
6181
|
-
schemes?: (string | undefined)[] | undefined;
|
|
6182
6190
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
6191
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
6183
6192
|
} | undefined;
|
|
6184
6193
|
css?: (string | undefined)[] | undefined;
|
|
6185
6194
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -6497,6 +6506,7 @@ export declare const fakeWxt: (overrides?: {
|
|
|
6497
6506
|
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
6498
6507
|
} | undefined;
|
|
6499
6508
|
} | undefined;
|
|
6509
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
6500
6510
|
targetBrowsers?: (string | undefined)[] | undefined;
|
|
6501
6511
|
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
6502
6512
|
logger?: {
|
|
@@ -6841,7 +6851,6 @@ export declare const fakeWxt: (overrides?: {
|
|
|
6841
6851
|
name?: string | undefined;
|
|
6842
6852
|
} | undefined;
|
|
6843
6853
|
overrides?: {
|
|
6844
|
-
browser?: import("../../../types").TargetBrowser | undefined;
|
|
6845
6854
|
debug?: boolean | undefined;
|
|
6846
6855
|
vite?: {} | undefined;
|
|
6847
6856
|
zip?: {
|
|
@@ -6954,26 +6963,27 @@ export declare const fakeWxt: (overrides?: {
|
|
|
6954
6963
|
} | undefined)[] | undefined;
|
|
6955
6964
|
conditions?: ({
|
|
6956
6965
|
pageUrl?: {
|
|
6966
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
6967
|
+
schemes?: (string | undefined)[] | undefined;
|
|
6968
|
+
urlMatches?: string | undefined | undefined;
|
|
6969
|
+
pathContains?: string | undefined | undefined;
|
|
6970
|
+
hostSuffix?: string | undefined | undefined;
|
|
6971
|
+
hostPrefix?: string | undefined | undefined;
|
|
6957
6972
|
hostContains?: string | undefined | undefined;
|
|
6973
|
+
urlContains?: string | undefined | undefined;
|
|
6974
|
+
querySuffix?: string | undefined | undefined;
|
|
6975
|
+
urlPrefix?: string | undefined | undefined;
|
|
6958
6976
|
hostEquals?: string | undefined | undefined;
|
|
6959
|
-
|
|
6960
|
-
|
|
6961
|
-
pathContains?: string | undefined | undefined;
|
|
6962
|
-
pathEquals?: string | undefined | undefined;
|
|
6977
|
+
urlEquals?: string | undefined | undefined;
|
|
6978
|
+
queryContains?: string | undefined | undefined;
|
|
6963
6979
|
pathPrefix?: string | undefined | undefined;
|
|
6980
|
+
pathEquals?: string | undefined | undefined;
|
|
6964
6981
|
pathSuffix?: string | undefined | undefined;
|
|
6965
|
-
queryContains?: string | undefined | undefined;
|
|
6966
6982
|
queryEquals?: string | undefined | undefined;
|
|
6967
6983
|
queryPrefix?: string | undefined | undefined;
|
|
6968
|
-
querySuffix?: string | undefined | undefined;
|
|
6969
|
-
urlContains?: string | undefined | undefined;
|
|
6970
|
-
urlEquals?: string | undefined | undefined;
|
|
6971
|
-
urlMatches?: string | undefined | undefined;
|
|
6972
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
6973
|
-
urlPrefix?: string | undefined | undefined;
|
|
6974
6984
|
urlSuffix?: string | undefined | undefined;
|
|
6975
|
-
schemes?: (string | undefined)[] | undefined;
|
|
6976
6985
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
6986
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
6977
6987
|
} | undefined;
|
|
6978
6988
|
css?: (string | undefined)[] | undefined;
|
|
6979
6989
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -7291,6 +7301,7 @@ export declare const fakeWxt: (overrides?: {
|
|
|
7291
7301
|
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
7292
7302
|
} | undefined;
|
|
7293
7303
|
} | undefined;
|
|
7304
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
7294
7305
|
targetBrowsers?: (string | undefined)[] | undefined;
|
|
7295
7306
|
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
7296
7307
|
logger?: {
|
|
@@ -8550,26 +8561,27 @@ export declare const fakeWxt: (overrides?: {
|
|
|
8550
8561
|
} | undefined)[] | undefined;
|
|
8551
8562
|
conditions?: ({
|
|
8552
8563
|
pageUrl?: {
|
|
8564
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
8565
|
+
schemes?: (string | undefined)[] | undefined;
|
|
8566
|
+
urlMatches?: string | undefined | undefined;
|
|
8567
|
+
pathContains?: string | undefined | undefined;
|
|
8568
|
+
hostSuffix?: string | undefined | undefined;
|
|
8569
|
+
hostPrefix?: string | undefined | undefined;
|
|
8553
8570
|
hostContains?: string | undefined | undefined;
|
|
8571
|
+
urlContains?: string | undefined | undefined;
|
|
8572
|
+
querySuffix?: string | undefined | undefined;
|
|
8573
|
+
urlPrefix?: string | undefined | undefined;
|
|
8554
8574
|
hostEquals?: string | undefined | undefined;
|
|
8555
|
-
|
|
8556
|
-
|
|
8557
|
-
pathContains?: string | undefined | undefined;
|
|
8558
|
-
pathEquals?: string | undefined | undefined;
|
|
8575
|
+
urlEquals?: string | undefined | undefined;
|
|
8576
|
+
queryContains?: string | undefined | undefined;
|
|
8559
8577
|
pathPrefix?: string | undefined | undefined;
|
|
8578
|
+
pathEquals?: string | undefined | undefined;
|
|
8560
8579
|
pathSuffix?: string | undefined | undefined;
|
|
8561
|
-
queryContains?: string | undefined | undefined;
|
|
8562
8580
|
queryEquals?: string | undefined | undefined;
|
|
8563
8581
|
queryPrefix?: string | undefined | undefined;
|
|
8564
|
-
querySuffix?: string | undefined | undefined;
|
|
8565
|
-
urlContains?: string | undefined | undefined;
|
|
8566
|
-
urlEquals?: string | undefined | undefined;
|
|
8567
|
-
urlMatches?: string | undefined | undefined;
|
|
8568
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
8569
|
-
urlPrefix?: string | undefined | undefined;
|
|
8570
8582
|
urlSuffix?: string | undefined | undefined;
|
|
8571
|
-
schemes?: (string | undefined)[] | undefined;
|
|
8572
8583
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
8584
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
8573
8585
|
} | undefined;
|
|
8574
8586
|
css?: (string | undefined)[] | undefined;
|
|
8575
8587
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -8776,26 +8788,27 @@ export declare const fakeWxt: (overrides?: {
|
|
|
8776
8788
|
} | undefined)[] | undefined;
|
|
8777
8789
|
conditions?: ({
|
|
8778
8790
|
pageUrl?: {
|
|
8791
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
8792
|
+
schemes?: (string | undefined)[] | undefined;
|
|
8793
|
+
urlMatches?: string | undefined | undefined;
|
|
8794
|
+
pathContains?: string | undefined | undefined;
|
|
8795
|
+
hostSuffix?: string | undefined | undefined;
|
|
8796
|
+
hostPrefix?: string | undefined | undefined;
|
|
8779
8797
|
hostContains?: string | undefined | undefined;
|
|
8798
|
+
urlContains?: string | undefined | undefined;
|
|
8799
|
+
querySuffix?: string | undefined | undefined;
|
|
8800
|
+
urlPrefix?: string | undefined | undefined;
|
|
8780
8801
|
hostEquals?: string | undefined | undefined;
|
|
8781
|
-
|
|
8782
|
-
|
|
8783
|
-
pathContains?: string | undefined | undefined;
|
|
8784
|
-
pathEquals?: string | undefined | undefined;
|
|
8802
|
+
urlEquals?: string | undefined | undefined;
|
|
8803
|
+
queryContains?: string | undefined | undefined;
|
|
8785
8804
|
pathPrefix?: string | undefined | undefined;
|
|
8805
|
+
pathEquals?: string | undefined | undefined;
|
|
8786
8806
|
pathSuffix?: string | undefined | undefined;
|
|
8787
|
-
queryContains?: string | undefined | undefined;
|
|
8788
8807
|
queryEquals?: string | undefined | undefined;
|
|
8789
8808
|
queryPrefix?: string | undefined | undefined;
|
|
8790
|
-
querySuffix?: string | undefined | undefined;
|
|
8791
|
-
urlContains?: string | undefined | undefined;
|
|
8792
|
-
urlEquals?: string | undefined | undefined;
|
|
8793
|
-
urlMatches?: string | undefined | undefined;
|
|
8794
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
8795
|
-
urlPrefix?: string | undefined | undefined;
|
|
8796
8809
|
urlSuffix?: string | undefined | undefined;
|
|
8797
|
-
schemes?: (string | undefined)[] | undefined;
|
|
8798
8810
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
8811
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
8799
8812
|
} | undefined;
|
|
8800
8813
|
css?: (string | undefined)[] | undefined;
|
|
8801
8814
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -9302,26 +9315,27 @@ export declare const fakeWxtDevServer: (overrides?: {
|
|
|
9302
9315
|
} | undefined)[] | undefined;
|
|
9303
9316
|
conditions?: ({
|
|
9304
9317
|
pageUrl?: {
|
|
9318
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
9319
|
+
schemes?: (string | undefined)[] | undefined;
|
|
9320
|
+
urlMatches?: string | undefined | undefined;
|
|
9321
|
+
pathContains?: string | undefined | undefined;
|
|
9322
|
+
hostSuffix?: string | undefined | undefined;
|
|
9323
|
+
hostPrefix?: string | undefined | undefined;
|
|
9305
9324
|
hostContains?: string | undefined | undefined;
|
|
9325
|
+
urlContains?: string | undefined | undefined;
|
|
9326
|
+
querySuffix?: string | undefined | undefined;
|
|
9327
|
+
urlPrefix?: string | undefined | undefined;
|
|
9306
9328
|
hostEquals?: string | undefined | undefined;
|
|
9307
|
-
|
|
9308
|
-
|
|
9309
|
-
pathContains?: string | undefined | undefined;
|
|
9310
|
-
pathEquals?: string | undefined | undefined;
|
|
9329
|
+
urlEquals?: string | undefined | undefined;
|
|
9330
|
+
queryContains?: string | undefined | undefined;
|
|
9311
9331
|
pathPrefix?: string | undefined | undefined;
|
|
9332
|
+
pathEquals?: string | undefined | undefined;
|
|
9312
9333
|
pathSuffix?: string | undefined | undefined;
|
|
9313
|
-
queryContains?: string | undefined | undefined;
|
|
9314
9334
|
queryEquals?: string | undefined | undefined;
|
|
9315
9335
|
queryPrefix?: string | undefined | undefined;
|
|
9316
|
-
querySuffix?: string | undefined | undefined;
|
|
9317
|
-
urlContains?: string | undefined | undefined;
|
|
9318
|
-
urlEquals?: string | undefined | undefined;
|
|
9319
|
-
urlMatches?: string | undefined | undefined;
|
|
9320
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
9321
|
-
urlPrefix?: string | undefined | undefined;
|
|
9322
9336
|
urlSuffix?: string | undefined | undefined;
|
|
9323
|
-
schemes?: (string | undefined)[] | undefined;
|
|
9324
9337
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
9338
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
9325
9339
|
} | undefined;
|
|
9326
9340
|
css?: (string | undefined)[] | undefined;
|
|
9327
9341
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -9528,26 +9542,27 @@ export declare const fakeWxtDevServer: (overrides?: {
|
|
|
9528
9542
|
} | undefined)[] | undefined;
|
|
9529
9543
|
conditions?: ({
|
|
9530
9544
|
pageUrl?: {
|
|
9545
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
9546
|
+
schemes?: (string | undefined)[] | undefined;
|
|
9547
|
+
urlMatches?: string | undefined | undefined;
|
|
9548
|
+
pathContains?: string | undefined | undefined;
|
|
9549
|
+
hostSuffix?: string | undefined | undefined;
|
|
9550
|
+
hostPrefix?: string | undefined | undefined;
|
|
9531
9551
|
hostContains?: string | undefined | undefined;
|
|
9552
|
+
urlContains?: string | undefined | undefined;
|
|
9553
|
+
querySuffix?: string | undefined | undefined;
|
|
9554
|
+
urlPrefix?: string | undefined | undefined;
|
|
9532
9555
|
hostEquals?: string | undefined | undefined;
|
|
9533
|
-
|
|
9534
|
-
|
|
9535
|
-
pathContains?: string | undefined | undefined;
|
|
9536
|
-
pathEquals?: string | undefined | undefined;
|
|
9556
|
+
urlEquals?: string | undefined | undefined;
|
|
9557
|
+
queryContains?: string | undefined | undefined;
|
|
9537
9558
|
pathPrefix?: string | undefined | undefined;
|
|
9559
|
+
pathEquals?: string | undefined | undefined;
|
|
9538
9560
|
pathSuffix?: string | undefined | undefined;
|
|
9539
|
-
queryContains?: string | undefined | undefined;
|
|
9540
9561
|
queryEquals?: string | undefined | undefined;
|
|
9541
9562
|
queryPrefix?: string | undefined | undefined;
|
|
9542
|
-
querySuffix?: string | undefined | undefined;
|
|
9543
|
-
urlContains?: string | undefined | undefined;
|
|
9544
|
-
urlEquals?: string | undefined | undefined;
|
|
9545
|
-
urlMatches?: string | undefined | undefined;
|
|
9546
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
9547
|
-
urlPrefix?: string | undefined | undefined;
|
|
9548
9563
|
urlSuffix?: string | undefined | undefined;
|
|
9549
|
-
schemes?: (string | undefined)[] | undefined;
|
|
9550
9564
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
9565
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
9551
9566
|
} | undefined;
|
|
9552
9567
|
css?: (string | undefined)[] | undefined;
|
|
9553
9568
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -10045,26 +10060,27 @@ export declare const fakeBuildOutput: (overrides?: {
|
|
|
10045
10060
|
} | undefined)[] | undefined;
|
|
10046
10061
|
conditions?: ({
|
|
10047
10062
|
pageUrl?: {
|
|
10063
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
10064
|
+
schemes?: (string | undefined)[] | undefined;
|
|
10065
|
+
urlMatches?: string | undefined | undefined;
|
|
10066
|
+
pathContains?: string | undefined | undefined;
|
|
10067
|
+
hostSuffix?: string | undefined | undefined;
|
|
10068
|
+
hostPrefix?: string | undefined | undefined;
|
|
10048
10069
|
hostContains?: string | undefined | undefined;
|
|
10070
|
+
urlContains?: string | undefined | undefined;
|
|
10071
|
+
querySuffix?: string | undefined | undefined;
|
|
10072
|
+
urlPrefix?: string | undefined | undefined;
|
|
10049
10073
|
hostEquals?: string | undefined | undefined;
|
|
10050
|
-
|
|
10051
|
-
|
|
10052
|
-
pathContains?: string | undefined | undefined;
|
|
10053
|
-
pathEquals?: string | undefined | undefined;
|
|
10074
|
+
urlEquals?: string | undefined | undefined;
|
|
10075
|
+
queryContains?: string | undefined | undefined;
|
|
10054
10076
|
pathPrefix?: string | undefined | undefined;
|
|
10077
|
+
pathEquals?: string | undefined | undefined;
|
|
10055
10078
|
pathSuffix?: string | undefined | undefined;
|
|
10056
|
-
queryContains?: string | undefined | undefined;
|
|
10057
10079
|
queryEquals?: string | undefined | undefined;
|
|
10058
10080
|
queryPrefix?: string | undefined | undefined;
|
|
10059
|
-
querySuffix?: string | undefined | undefined;
|
|
10060
|
-
urlContains?: string | undefined | undefined;
|
|
10061
|
-
urlEquals?: string | undefined | undefined;
|
|
10062
|
-
urlMatches?: string | undefined | undefined;
|
|
10063
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
10064
|
-
urlPrefix?: string | undefined | undefined;
|
|
10065
10081
|
urlSuffix?: string | undefined | undefined;
|
|
10066
|
-
schemes?: (string | undefined)[] | undefined;
|
|
10067
10082
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
10083
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
10068
10084
|
} | undefined;
|
|
10069
10085
|
css?: (string | undefined)[] | undefined;
|
|
10070
10086
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -10271,26 +10287,27 @@ export declare const fakeBuildOutput: (overrides?: {
|
|
|
10271
10287
|
} | undefined)[] | undefined;
|
|
10272
10288
|
conditions?: ({
|
|
10273
10289
|
pageUrl?: {
|
|
10290
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
10291
|
+
schemes?: (string | undefined)[] | undefined;
|
|
10292
|
+
urlMatches?: string | undefined | undefined;
|
|
10293
|
+
pathContains?: string | undefined | undefined;
|
|
10294
|
+
hostSuffix?: string | undefined | undefined;
|
|
10295
|
+
hostPrefix?: string | undefined | undefined;
|
|
10274
10296
|
hostContains?: string | undefined | undefined;
|
|
10297
|
+
urlContains?: string | undefined | undefined;
|
|
10298
|
+
querySuffix?: string | undefined | undefined;
|
|
10299
|
+
urlPrefix?: string | undefined | undefined;
|
|
10275
10300
|
hostEquals?: string | undefined | undefined;
|
|
10276
|
-
|
|
10277
|
-
|
|
10278
|
-
pathContains?: string | undefined | undefined;
|
|
10279
|
-
pathEquals?: string | undefined | undefined;
|
|
10301
|
+
urlEquals?: string | undefined | undefined;
|
|
10302
|
+
queryContains?: string | undefined | undefined;
|
|
10280
10303
|
pathPrefix?: string | undefined | undefined;
|
|
10304
|
+
pathEquals?: string | undefined | undefined;
|
|
10281
10305
|
pathSuffix?: string | undefined | undefined;
|
|
10282
|
-
queryContains?: string | undefined | undefined;
|
|
10283
10306
|
queryEquals?: string | undefined | undefined;
|
|
10284
10307
|
queryPrefix?: string | undefined | undefined;
|
|
10285
|
-
querySuffix?: string | undefined | undefined;
|
|
10286
|
-
urlContains?: string | undefined | undefined;
|
|
10287
|
-
urlEquals?: string | undefined | undefined;
|
|
10288
|
-
urlMatches?: string | undefined | undefined;
|
|
10289
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
10290
|
-
urlPrefix?: string | undefined | undefined;
|
|
10291
10308
|
urlSuffix?: string | undefined | undefined;
|
|
10292
|
-
schemes?: (string | undefined)[] | undefined;
|
|
10293
10309
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
10310
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
10294
10311
|
} | undefined;
|
|
10295
10312
|
css?: (string | undefined)[] | undefined;
|
|
10296
10313
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -10883,26 +10900,27 @@ export declare const fakeDevServer: (overrides?: {
|
|
|
10883
10900
|
} | undefined)[] | undefined;
|
|
10884
10901
|
conditions?: ({
|
|
10885
10902
|
pageUrl?: {
|
|
10903
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
10904
|
+
schemes?: (string | undefined)[] | undefined;
|
|
10905
|
+
urlMatches?: string | undefined | undefined;
|
|
10906
|
+
pathContains?: string | undefined | undefined;
|
|
10907
|
+
hostSuffix?: string | undefined | undefined;
|
|
10908
|
+
hostPrefix?: string | undefined | undefined;
|
|
10886
10909
|
hostContains?: string | undefined | undefined;
|
|
10910
|
+
urlContains?: string | undefined | undefined;
|
|
10911
|
+
querySuffix?: string | undefined | undefined;
|
|
10912
|
+
urlPrefix?: string | undefined | undefined;
|
|
10887
10913
|
hostEquals?: string | undefined | undefined;
|
|
10888
|
-
|
|
10889
|
-
|
|
10890
|
-
pathContains?: string | undefined | undefined;
|
|
10891
|
-
pathEquals?: string | undefined | undefined;
|
|
10914
|
+
urlEquals?: string | undefined | undefined;
|
|
10915
|
+
queryContains?: string | undefined | undefined;
|
|
10892
10916
|
pathPrefix?: string | undefined | undefined;
|
|
10917
|
+
pathEquals?: string | undefined | undefined;
|
|
10893
10918
|
pathSuffix?: string | undefined | undefined;
|
|
10894
|
-
queryContains?: string | undefined | undefined;
|
|
10895
10919
|
queryEquals?: string | undefined | undefined;
|
|
10896
10920
|
queryPrefix?: string | undefined | undefined;
|
|
10897
|
-
querySuffix?: string | undefined | undefined;
|
|
10898
|
-
urlContains?: string | undefined | undefined;
|
|
10899
|
-
urlEquals?: string | undefined | undefined;
|
|
10900
|
-
urlMatches?: string | undefined | undefined;
|
|
10901
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
10902
|
-
urlPrefix?: string | undefined | undefined;
|
|
10903
10921
|
urlSuffix?: string | undefined | undefined;
|
|
10904
|
-
schemes?: (string | undefined)[] | undefined;
|
|
10905
10922
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
10923
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
10906
10924
|
} | undefined;
|
|
10907
10925
|
css?: (string | undefined)[] | undefined;
|
|
10908
10926
|
isBookmarked?: boolean | undefined | undefined;
|
|
@@ -11109,26 +11127,27 @@ export declare const fakeDevServer: (overrides?: {
|
|
|
11109
11127
|
} | undefined)[] | undefined;
|
|
11110
11128
|
conditions?: ({
|
|
11111
11129
|
pageUrl?: {
|
|
11130
|
+
cidrBlocks?: (string | undefined)[] | undefined;
|
|
11131
|
+
schemes?: (string | undefined)[] | undefined;
|
|
11132
|
+
urlMatches?: string | undefined | undefined;
|
|
11133
|
+
pathContains?: string | undefined | undefined;
|
|
11134
|
+
hostSuffix?: string | undefined | undefined;
|
|
11135
|
+
hostPrefix?: string | undefined | undefined;
|
|
11112
11136
|
hostContains?: string | undefined | undefined;
|
|
11137
|
+
urlContains?: string | undefined | undefined;
|
|
11138
|
+
querySuffix?: string | undefined | undefined;
|
|
11139
|
+
urlPrefix?: string | undefined | undefined;
|
|
11113
11140
|
hostEquals?: string | undefined | undefined;
|
|
11114
|
-
|
|
11115
|
-
|
|
11116
|
-
pathContains?: string | undefined | undefined;
|
|
11117
|
-
pathEquals?: string | undefined | undefined;
|
|
11141
|
+
urlEquals?: string | undefined | undefined;
|
|
11142
|
+
queryContains?: string | undefined | undefined;
|
|
11118
11143
|
pathPrefix?: string | undefined | undefined;
|
|
11144
|
+
pathEquals?: string | undefined | undefined;
|
|
11119
11145
|
pathSuffix?: string | undefined | undefined;
|
|
11120
|
-
queryContains?: string | undefined | undefined;
|
|
11121
11146
|
queryEquals?: string | undefined | undefined;
|
|
11122
11147
|
queryPrefix?: string | undefined | undefined;
|
|
11123
|
-
querySuffix?: string | undefined | undefined;
|
|
11124
|
-
urlContains?: string | undefined | undefined;
|
|
11125
|
-
urlEquals?: string | undefined | undefined;
|
|
11126
|
-
urlMatches?: string | undefined | undefined;
|
|
11127
|
-
originAndPathMatches?: string | undefined | undefined;
|
|
11128
|
-
urlPrefix?: string | undefined | undefined;
|
|
11129
11148
|
urlSuffix?: string | undefined | undefined;
|
|
11130
|
-
schemes?: (string | undefined)[] | undefined;
|
|
11131
11149
|
ports?: (number | (number | undefined)[] | undefined)[] | undefined;
|
|
11150
|
+
originAndPathMatches?: string | undefined | undefined;
|
|
11132
11151
|
} | undefined;
|
|
11133
11152
|
css?: (string | undefined)[] | undefined;
|
|
11134
11153
|
isBookmarked?: boolean | undefined | undefined;
|