@mintlify/validation 0.1.645 → 0.1.646
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/dist/mint-config/schemas/v2/index.d.ts +70 -70
- package/dist/mint-config/schemas/v2/properties/integrations.d.ts +8 -8
- package/dist/mint-config/schemas/v2/properties/integrations.js +1 -1
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +7 -7
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +7 -7
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +7 -7
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +7 -7
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +7 -7
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +7 -7
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +7 -7
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +5 -5
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +7 -7
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +7 -7
- package/dist/mint-config/validateConfig.d.ts +18 -18
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -1166,13 +1166,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1166
1166
|
}>>;
|
|
1167
1167
|
customScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1168
1168
|
src: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1169
|
-
strategy: z.ZodOptional<z.ZodEnum<["afterInteractive", "lazyOnload"]>>;
|
|
1169
|
+
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
1170
1170
|
}, "strip", z.ZodTypeAny, {
|
|
1171
1171
|
src: string;
|
|
1172
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1172
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1173
1173
|
}, {
|
|
1174
1174
|
src: string;
|
|
1175
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1175
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1176
1176
|
}>, "many">>;
|
|
1177
1177
|
}, "strict", z.ZodTypeAny, {
|
|
1178
1178
|
adobe?: {
|
|
@@ -1246,7 +1246,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1246
1246
|
} | undefined;
|
|
1247
1247
|
customScripts?: {
|
|
1248
1248
|
src: string;
|
|
1249
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1249
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1250
1250
|
}[] | undefined;
|
|
1251
1251
|
}, {
|
|
1252
1252
|
adobe?: {
|
|
@@ -1320,7 +1320,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1320
1320
|
} | undefined;
|
|
1321
1321
|
customScripts?: {
|
|
1322
1322
|
src: string;
|
|
1323
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1323
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1324
1324
|
}[] | undefined;
|
|
1325
1325
|
}>>;
|
|
1326
1326
|
banner: z.ZodOptional<z.ZodObject<{
|
|
@@ -1758,7 +1758,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1758
1758
|
} | undefined;
|
|
1759
1759
|
customScripts?: {
|
|
1760
1760
|
src: string;
|
|
1761
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1761
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1762
1762
|
}[] | undefined;
|
|
1763
1763
|
} | undefined;
|
|
1764
1764
|
search?: {
|
|
@@ -2115,7 +2115,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2115
2115
|
} | undefined;
|
|
2116
2116
|
customScripts?: {
|
|
2117
2117
|
src: string;
|
|
2118
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
2118
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
2119
2119
|
}[] | undefined;
|
|
2120
2120
|
} | undefined;
|
|
2121
2121
|
search?: {
|
|
@@ -3418,13 +3418,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3418
3418
|
}>>;
|
|
3419
3419
|
customScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3420
3420
|
src: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3421
|
-
strategy: z.ZodOptional<z.ZodEnum<["afterInteractive", "lazyOnload"]>>;
|
|
3421
|
+
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
3422
3422
|
}, "strip", z.ZodTypeAny, {
|
|
3423
3423
|
src: string;
|
|
3424
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
3424
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
3425
3425
|
}, {
|
|
3426
3426
|
src: string;
|
|
3427
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
3427
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
3428
3428
|
}>, "many">>;
|
|
3429
3429
|
}, "strict", z.ZodTypeAny, {
|
|
3430
3430
|
adobe?: {
|
|
@@ -3498,7 +3498,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3498
3498
|
} | undefined;
|
|
3499
3499
|
customScripts?: {
|
|
3500
3500
|
src: string;
|
|
3501
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
3501
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
3502
3502
|
}[] | undefined;
|
|
3503
3503
|
}, {
|
|
3504
3504
|
adobe?: {
|
|
@@ -3572,7 +3572,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3572
3572
|
} | undefined;
|
|
3573
3573
|
customScripts?: {
|
|
3574
3574
|
src: string;
|
|
3575
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
3575
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
3576
3576
|
}[] | undefined;
|
|
3577
3577
|
}>>;
|
|
3578
3578
|
banner: z.ZodOptional<z.ZodObject<{
|
|
@@ -4010,7 +4010,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4010
4010
|
} | undefined;
|
|
4011
4011
|
customScripts?: {
|
|
4012
4012
|
src: string;
|
|
4013
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
4013
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
4014
4014
|
}[] | undefined;
|
|
4015
4015
|
} | undefined;
|
|
4016
4016
|
search?: {
|
|
@@ -4367,7 +4367,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4367
4367
|
} | undefined;
|
|
4368
4368
|
customScripts?: {
|
|
4369
4369
|
src: string;
|
|
4370
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
4370
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
4371
4371
|
}[] | undefined;
|
|
4372
4372
|
} | undefined;
|
|
4373
4373
|
search?: {
|
|
@@ -5670,13 +5670,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5670
5670
|
}>>;
|
|
5671
5671
|
customScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5672
5672
|
src: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
5673
|
-
strategy: z.ZodOptional<z.ZodEnum<["afterInteractive", "lazyOnload"]>>;
|
|
5673
|
+
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
5674
5674
|
}, "strip", z.ZodTypeAny, {
|
|
5675
5675
|
src: string;
|
|
5676
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
5676
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
5677
5677
|
}, {
|
|
5678
5678
|
src: string;
|
|
5679
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
5679
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
5680
5680
|
}>, "many">>;
|
|
5681
5681
|
}, "strict", z.ZodTypeAny, {
|
|
5682
5682
|
adobe?: {
|
|
@@ -5750,7 +5750,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5750
5750
|
} | undefined;
|
|
5751
5751
|
customScripts?: {
|
|
5752
5752
|
src: string;
|
|
5753
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
5753
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
5754
5754
|
}[] | undefined;
|
|
5755
5755
|
}, {
|
|
5756
5756
|
adobe?: {
|
|
@@ -5824,7 +5824,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5824
5824
|
} | undefined;
|
|
5825
5825
|
customScripts?: {
|
|
5826
5826
|
src: string;
|
|
5827
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
5827
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
5828
5828
|
}[] | undefined;
|
|
5829
5829
|
}>>;
|
|
5830
5830
|
banner: z.ZodOptional<z.ZodObject<{
|
|
@@ -6262,7 +6262,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6262
6262
|
} | undefined;
|
|
6263
6263
|
customScripts?: {
|
|
6264
6264
|
src: string;
|
|
6265
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
6265
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
6266
6266
|
}[] | undefined;
|
|
6267
6267
|
} | undefined;
|
|
6268
6268
|
search?: {
|
|
@@ -6619,7 +6619,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6619
6619
|
} | undefined;
|
|
6620
6620
|
customScripts?: {
|
|
6621
6621
|
src: string;
|
|
6622
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
6622
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
6623
6623
|
}[] | undefined;
|
|
6624
6624
|
} | undefined;
|
|
6625
6625
|
search?: {
|
|
@@ -7922,13 +7922,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7922
7922
|
}>>;
|
|
7923
7923
|
customScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7924
7924
|
src: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
7925
|
-
strategy: z.ZodOptional<z.ZodEnum<["afterInteractive", "lazyOnload"]>>;
|
|
7925
|
+
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
7926
7926
|
}, "strip", z.ZodTypeAny, {
|
|
7927
7927
|
src: string;
|
|
7928
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
7928
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
7929
7929
|
}, {
|
|
7930
7930
|
src: string;
|
|
7931
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
7931
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
7932
7932
|
}>, "many">>;
|
|
7933
7933
|
}, "strict", z.ZodTypeAny, {
|
|
7934
7934
|
adobe?: {
|
|
@@ -8002,7 +8002,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8002
8002
|
} | undefined;
|
|
8003
8003
|
customScripts?: {
|
|
8004
8004
|
src: string;
|
|
8005
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
8005
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
8006
8006
|
}[] | undefined;
|
|
8007
8007
|
}, {
|
|
8008
8008
|
adobe?: {
|
|
@@ -8076,7 +8076,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8076
8076
|
} | undefined;
|
|
8077
8077
|
customScripts?: {
|
|
8078
8078
|
src: string;
|
|
8079
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
8079
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
8080
8080
|
}[] | undefined;
|
|
8081
8081
|
}>>;
|
|
8082
8082
|
banner: z.ZodOptional<z.ZodObject<{
|
|
@@ -8514,7 +8514,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8514
8514
|
} | undefined;
|
|
8515
8515
|
customScripts?: {
|
|
8516
8516
|
src: string;
|
|
8517
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
8517
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
8518
8518
|
}[] | undefined;
|
|
8519
8519
|
} | undefined;
|
|
8520
8520
|
search?: {
|
|
@@ -8871,7 +8871,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8871
8871
|
} | undefined;
|
|
8872
8872
|
customScripts?: {
|
|
8873
8873
|
src: string;
|
|
8874
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
8874
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
8875
8875
|
}[] | undefined;
|
|
8876
8876
|
} | undefined;
|
|
8877
8877
|
search?: {
|
|
@@ -10174,13 +10174,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10174
10174
|
}>>;
|
|
10175
10175
|
customScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10176
10176
|
src: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
10177
|
-
strategy: z.ZodOptional<z.ZodEnum<["afterInteractive", "lazyOnload"]>>;
|
|
10177
|
+
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
10178
10178
|
}, "strip", z.ZodTypeAny, {
|
|
10179
10179
|
src: string;
|
|
10180
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
10180
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
10181
10181
|
}, {
|
|
10182
10182
|
src: string;
|
|
10183
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
10183
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
10184
10184
|
}>, "many">>;
|
|
10185
10185
|
}, "strict", z.ZodTypeAny, {
|
|
10186
10186
|
adobe?: {
|
|
@@ -10254,7 +10254,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10254
10254
|
} | undefined;
|
|
10255
10255
|
customScripts?: {
|
|
10256
10256
|
src: string;
|
|
10257
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
10257
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
10258
10258
|
}[] | undefined;
|
|
10259
10259
|
}, {
|
|
10260
10260
|
adobe?: {
|
|
@@ -10328,7 +10328,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10328
10328
|
} | undefined;
|
|
10329
10329
|
customScripts?: {
|
|
10330
10330
|
src: string;
|
|
10331
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
10331
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
10332
10332
|
}[] | undefined;
|
|
10333
10333
|
}>>;
|
|
10334
10334
|
banner: z.ZodOptional<z.ZodObject<{
|
|
@@ -10766,7 +10766,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10766
10766
|
} | undefined;
|
|
10767
10767
|
customScripts?: {
|
|
10768
10768
|
src: string;
|
|
10769
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
10769
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
10770
10770
|
}[] | undefined;
|
|
10771
10771
|
} | undefined;
|
|
10772
10772
|
search?: {
|
|
@@ -11123,7 +11123,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11123
11123
|
} | undefined;
|
|
11124
11124
|
customScripts?: {
|
|
11125
11125
|
src: string;
|
|
11126
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
11126
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
11127
11127
|
}[] | undefined;
|
|
11128
11128
|
} | undefined;
|
|
11129
11129
|
search?: {
|
|
@@ -12426,13 +12426,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12426
12426
|
}>>;
|
|
12427
12427
|
customScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12428
12428
|
src: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
12429
|
-
strategy: z.ZodOptional<z.ZodEnum<["afterInteractive", "lazyOnload"]>>;
|
|
12429
|
+
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
12430
12430
|
}, "strip", z.ZodTypeAny, {
|
|
12431
12431
|
src: string;
|
|
12432
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
12432
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
12433
12433
|
}, {
|
|
12434
12434
|
src: string;
|
|
12435
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
12435
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
12436
12436
|
}>, "many">>;
|
|
12437
12437
|
}, "strict", z.ZodTypeAny, {
|
|
12438
12438
|
adobe?: {
|
|
@@ -12506,7 +12506,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12506
12506
|
} | undefined;
|
|
12507
12507
|
customScripts?: {
|
|
12508
12508
|
src: string;
|
|
12509
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
12509
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
12510
12510
|
}[] | undefined;
|
|
12511
12511
|
}, {
|
|
12512
12512
|
adobe?: {
|
|
@@ -12580,7 +12580,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12580
12580
|
} | undefined;
|
|
12581
12581
|
customScripts?: {
|
|
12582
12582
|
src: string;
|
|
12583
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
12583
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
12584
12584
|
}[] | undefined;
|
|
12585
12585
|
}>>;
|
|
12586
12586
|
banner: z.ZodOptional<z.ZodObject<{
|
|
@@ -13018,7 +13018,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13018
13018
|
} | undefined;
|
|
13019
13019
|
customScripts?: {
|
|
13020
13020
|
src: string;
|
|
13021
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
13021
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
13022
13022
|
}[] | undefined;
|
|
13023
13023
|
} | undefined;
|
|
13024
13024
|
search?: {
|
|
@@ -13375,7 +13375,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13375
13375
|
} | undefined;
|
|
13376
13376
|
customScripts?: {
|
|
13377
13377
|
src: string;
|
|
13378
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
13378
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
13379
13379
|
}[] | undefined;
|
|
13380
13380
|
} | undefined;
|
|
13381
13381
|
search?: {
|
|
@@ -14678,13 +14678,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14678
14678
|
}>>;
|
|
14679
14679
|
customScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14680
14680
|
src: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
14681
|
-
strategy: z.ZodOptional<z.ZodEnum<["afterInteractive", "lazyOnload"]>>;
|
|
14681
|
+
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
14682
14682
|
}, "strip", z.ZodTypeAny, {
|
|
14683
14683
|
src: string;
|
|
14684
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
14684
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
14685
14685
|
}, {
|
|
14686
14686
|
src: string;
|
|
14687
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
14687
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
14688
14688
|
}>, "many">>;
|
|
14689
14689
|
}, "strict", z.ZodTypeAny, {
|
|
14690
14690
|
adobe?: {
|
|
@@ -14758,7 +14758,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14758
14758
|
} | undefined;
|
|
14759
14759
|
customScripts?: {
|
|
14760
14760
|
src: string;
|
|
14761
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
14761
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
14762
14762
|
}[] | undefined;
|
|
14763
14763
|
}, {
|
|
14764
14764
|
adobe?: {
|
|
@@ -14832,7 +14832,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14832
14832
|
} | undefined;
|
|
14833
14833
|
customScripts?: {
|
|
14834
14834
|
src: string;
|
|
14835
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
14835
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
14836
14836
|
}[] | undefined;
|
|
14837
14837
|
}>>;
|
|
14838
14838
|
banner: z.ZodOptional<z.ZodObject<{
|
|
@@ -15270,7 +15270,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15270
15270
|
} | undefined;
|
|
15271
15271
|
customScripts?: {
|
|
15272
15272
|
src: string;
|
|
15273
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
15273
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
15274
15274
|
}[] | undefined;
|
|
15275
15275
|
} | undefined;
|
|
15276
15276
|
search?: {
|
|
@@ -15627,7 +15627,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15627
15627
|
} | undefined;
|
|
15628
15628
|
customScripts?: {
|
|
15629
15629
|
src: string;
|
|
15630
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
15630
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
15631
15631
|
}[] | undefined;
|
|
15632
15632
|
} | undefined;
|
|
15633
15633
|
search?: {
|
|
@@ -16930,13 +16930,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16930
16930
|
}>>;
|
|
16931
16931
|
customScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16932
16932
|
src: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
16933
|
-
strategy: z.ZodOptional<z.ZodEnum<["afterInteractive", "lazyOnload"]>>;
|
|
16933
|
+
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
16934
16934
|
}, "strip", z.ZodTypeAny, {
|
|
16935
16935
|
src: string;
|
|
16936
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
16936
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
16937
16937
|
}, {
|
|
16938
16938
|
src: string;
|
|
16939
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
16939
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
16940
16940
|
}>, "many">>;
|
|
16941
16941
|
}, "strict", z.ZodTypeAny, {
|
|
16942
16942
|
adobe?: {
|
|
@@ -17010,7 +17010,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17010
17010
|
} | undefined;
|
|
17011
17011
|
customScripts?: {
|
|
17012
17012
|
src: string;
|
|
17013
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
17013
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
17014
17014
|
}[] | undefined;
|
|
17015
17015
|
}, {
|
|
17016
17016
|
adobe?: {
|
|
@@ -17084,7 +17084,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17084
17084
|
} | undefined;
|
|
17085
17085
|
customScripts?: {
|
|
17086
17086
|
src: string;
|
|
17087
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
17087
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
17088
17088
|
}[] | undefined;
|
|
17089
17089
|
}>>;
|
|
17090
17090
|
banner: z.ZodOptional<z.ZodObject<{
|
|
@@ -17522,7 +17522,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17522
17522
|
} | undefined;
|
|
17523
17523
|
customScripts?: {
|
|
17524
17524
|
src: string;
|
|
17525
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
17525
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
17526
17526
|
}[] | undefined;
|
|
17527
17527
|
} | undefined;
|
|
17528
17528
|
search?: {
|
|
@@ -17879,7 +17879,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17879
17879
|
} | undefined;
|
|
17880
17880
|
customScripts?: {
|
|
17881
17881
|
src: string;
|
|
17882
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
17882
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
17883
17883
|
}[] | undefined;
|
|
17884
17884
|
} | undefined;
|
|
17885
17885
|
search?: {
|
|
@@ -19182,13 +19182,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19182
19182
|
}>>;
|
|
19183
19183
|
customScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19184
19184
|
src: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
19185
|
-
strategy: z.ZodOptional<z.ZodEnum<["afterInteractive", "lazyOnload"]>>;
|
|
19185
|
+
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
19186
19186
|
}, "strip", z.ZodTypeAny, {
|
|
19187
19187
|
src: string;
|
|
19188
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
19188
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
19189
19189
|
}, {
|
|
19190
19190
|
src: string;
|
|
19191
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
19191
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
19192
19192
|
}>, "many">>;
|
|
19193
19193
|
}, "strict", z.ZodTypeAny, {
|
|
19194
19194
|
adobe?: {
|
|
@@ -19262,7 +19262,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19262
19262
|
} | undefined;
|
|
19263
19263
|
customScripts?: {
|
|
19264
19264
|
src: string;
|
|
19265
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
19265
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
19266
19266
|
}[] | undefined;
|
|
19267
19267
|
}, {
|
|
19268
19268
|
adobe?: {
|
|
@@ -19336,7 +19336,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19336
19336
|
} | undefined;
|
|
19337
19337
|
customScripts?: {
|
|
19338
19338
|
src: string;
|
|
19339
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
19339
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
19340
19340
|
}[] | undefined;
|
|
19341
19341
|
}>>;
|
|
19342
19342
|
banner: z.ZodOptional<z.ZodObject<{
|
|
@@ -19774,7 +19774,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19774
19774
|
} | undefined;
|
|
19775
19775
|
customScripts?: {
|
|
19776
19776
|
src: string;
|
|
19777
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
19777
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
19778
19778
|
}[] | undefined;
|
|
19779
19779
|
} | undefined;
|
|
19780
19780
|
search?: {
|
|
@@ -20131,7 +20131,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20131
20131
|
} | undefined;
|
|
20132
20132
|
customScripts?: {
|
|
20133
20133
|
src: string;
|
|
20134
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
20134
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
20135
20135
|
}[] | undefined;
|
|
20136
20136
|
} | undefined;
|
|
20137
20137
|
search?: {
|
|
@@ -21435,13 +21435,13 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
21435
21435
|
}>>;
|
|
21436
21436
|
customScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21437
21437
|
src: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
21438
|
-
strategy: z.ZodOptional<z.ZodEnum<["afterInteractive", "lazyOnload"]>>;
|
|
21438
|
+
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
21439
21439
|
}, "strip", z.ZodTypeAny, {
|
|
21440
21440
|
src: string;
|
|
21441
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
21441
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
21442
21442
|
}, {
|
|
21443
21443
|
src: string;
|
|
21444
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
21444
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
21445
21445
|
}>, "many">>;
|
|
21446
21446
|
}, "strict", z.ZodTypeAny, {
|
|
21447
21447
|
adobe?: {
|
|
@@ -21515,7 +21515,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
21515
21515
|
} | undefined;
|
|
21516
21516
|
customScripts?: {
|
|
21517
21517
|
src: string;
|
|
21518
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
21518
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
21519
21519
|
}[] | undefined;
|
|
21520
21520
|
}, {
|
|
21521
21521
|
adobe?: {
|
|
@@ -21589,7 +21589,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
21589
21589
|
} | undefined;
|
|
21590
21590
|
customScripts?: {
|
|
21591
21591
|
src: string;
|
|
21592
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
21592
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
21593
21593
|
}[] | undefined;
|
|
21594
21594
|
}>>;
|
|
21595
21595
|
banner: z.ZodOptional<z.ZodObject<{
|
|
@@ -22027,7 +22027,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22027
22027
|
} | undefined;
|
|
22028
22028
|
customScripts?: {
|
|
22029
22029
|
src: string;
|
|
22030
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
22030
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
22031
22031
|
}[] | undefined;
|
|
22032
22032
|
} | undefined;
|
|
22033
22033
|
search?: {
|
|
@@ -22384,7 +22384,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22384
22384
|
} | undefined;
|
|
22385
22385
|
customScripts?: {
|
|
22386
22386
|
src: string;
|
|
22387
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
22387
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
22388
22388
|
}[] | undefined;
|
|
22389
22389
|
} | undefined;
|
|
22390
22390
|
search?: {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
declare const customScriptSchema: z.ZodObject<{
|
|
3
3
|
src: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4
|
-
strategy: z.ZodOptional<z.ZodEnum<["afterInteractive", "lazyOnload"]>>;
|
|
4
|
+
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
5
5
|
}, "strip", z.ZodTypeAny, {
|
|
6
6
|
src: string;
|
|
7
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
7
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
8
8
|
}, {
|
|
9
9
|
src: string;
|
|
10
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
10
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
11
11
|
}>;
|
|
12
12
|
export declare const integrationsSchema: z.ZodObject<{
|
|
13
13
|
adobe: z.ZodOptional<z.ZodObject<{
|
|
@@ -177,13 +177,13 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
177
177
|
}>>;
|
|
178
178
|
customScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
179
179
|
src: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
180
|
-
strategy: z.ZodOptional<z.ZodEnum<["afterInteractive", "lazyOnload"]>>;
|
|
180
|
+
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
181
181
|
}, "strip", z.ZodTypeAny, {
|
|
182
182
|
src: string;
|
|
183
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
183
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
184
184
|
}, {
|
|
185
185
|
src: string;
|
|
186
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
186
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
187
187
|
}>, "many">>;
|
|
188
188
|
}, "strict", z.ZodTypeAny, {
|
|
189
189
|
adobe?: {
|
|
@@ -257,7 +257,7 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
257
257
|
} | undefined;
|
|
258
258
|
customScripts?: {
|
|
259
259
|
src: string;
|
|
260
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
260
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
261
261
|
}[] | undefined;
|
|
262
262
|
}, {
|
|
263
263
|
adobe?: {
|
|
@@ -331,7 +331,7 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
331
331
|
} | undefined;
|
|
332
332
|
customScripts?: {
|
|
333
333
|
src: string;
|
|
334
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
334
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
335
335
|
}[] | undefined;
|
|
336
336
|
}>;
|
|
337
337
|
export type CustomScript = z.infer<typeof customScriptSchema>;
|
|
@@ -89,7 +89,7 @@ const customScriptSchema = z.object({
|
|
|
89
89
|
return false;
|
|
90
90
|
}
|
|
91
91
|
}, 'URL must not point to a disallowed file type (e.g. .svg, .exe, .zip)'),
|
|
92
|
-
strategy: z.enum(['afterInteractive', 'lazyOnload']).optional(),
|
|
92
|
+
strategy: z.enum(['beforeInteractive', 'afterInteractive', 'lazyOnload']).optional(),
|
|
93
93
|
});
|
|
94
94
|
export const integrationsSchema = z
|
|
95
95
|
.object({
|
|
@@ -1163,13 +1163,13 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1163
1163
|
}>>;
|
|
1164
1164
|
customScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1165
1165
|
src: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1166
|
-
strategy: z.ZodOptional<z.ZodEnum<["afterInteractive", "lazyOnload"]>>;
|
|
1166
|
+
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
1167
1167
|
}, "strip", z.ZodTypeAny, {
|
|
1168
1168
|
src: string;
|
|
1169
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1169
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1170
1170
|
}, {
|
|
1171
1171
|
src: string;
|
|
1172
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1172
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1173
1173
|
}>, "many">>;
|
|
1174
1174
|
}, "strict", z.ZodTypeAny, {
|
|
1175
1175
|
adobe?: {
|
|
@@ -1243,7 +1243,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1243
1243
|
} | undefined;
|
|
1244
1244
|
customScripts?: {
|
|
1245
1245
|
src: string;
|
|
1246
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1246
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1247
1247
|
}[] | undefined;
|
|
1248
1248
|
}, {
|
|
1249
1249
|
adobe?: {
|
|
@@ -1317,7 +1317,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1317
1317
|
} | undefined;
|
|
1318
1318
|
customScripts?: {
|
|
1319
1319
|
src: string;
|
|
1320
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1320
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1321
1321
|
}[] | undefined;
|
|
1322
1322
|
}>>;
|
|
1323
1323
|
banner: z.ZodOptional<z.ZodObject<{
|
|
@@ -1755,7 +1755,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1755
1755
|
} | undefined;
|
|
1756
1756
|
customScripts?: {
|
|
1757
1757
|
src: string;
|
|
1758
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1758
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1759
1759
|
}[] | undefined;
|
|
1760
1760
|
} | undefined;
|
|
1761
1761
|
search?: {
|
|
@@ -2112,7 +2112,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
2112
2112
|
} | undefined;
|
|
2113
2113
|
customScripts?: {
|
|
2114
2114
|
src: string;
|
|
2115
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
2115
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
2116
2116
|
}[] | undefined;
|
|
2117
2117
|
} | undefined;
|
|
2118
2118
|
search?: {
|