@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
|
@@ -1163,13 +1163,13 @@ export declare const aspenConfigSchema: 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 aspenConfigSchema: 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 aspenConfigSchema: 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 aspenConfigSchema: 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 aspenConfigSchema: 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?: {
|
|
@@ -1163,13 +1163,13 @@ export declare const lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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?: {
|
|
@@ -1163,13 +1163,13 @@ export declare const lumaConfigSchema: 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 lumaConfigSchema: 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 lumaConfigSchema: 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 lumaConfigSchema: 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 lumaConfigSchema: 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?: {
|
|
@@ -1163,13 +1163,13 @@ export declare const mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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?: {
|
|
@@ -1163,13 +1163,13 @@ export declare const mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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?: {
|
|
@@ -1163,13 +1163,13 @@ export declare const palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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?: {
|
|
@@ -1162,13 +1162,13 @@ export declare const standardConfigSchema: {
|
|
|
1162
1162
|
}>>;
|
|
1163
1163
|
customScripts: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1164
1164
|
src: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
|
1165
|
-
strategy: import("zod").ZodOptional<import("zod").ZodEnum<["afterInteractive", "lazyOnload"]>>;
|
|
1165
|
+
strategy: import("zod").ZodOptional<import("zod").ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
1166
1166
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1167
1167
|
src: string;
|
|
1168
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1168
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1169
1169
|
}, {
|
|
1170
1170
|
src: string;
|
|
1171
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1171
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1172
1172
|
}>, "many">>;
|
|
1173
1173
|
}, "strict", import("zod").ZodTypeAny, {
|
|
1174
1174
|
adobe?: {
|
|
@@ -1242,7 +1242,7 @@ export declare const standardConfigSchema: {
|
|
|
1242
1242
|
} | undefined;
|
|
1243
1243
|
customScripts?: {
|
|
1244
1244
|
src: string;
|
|
1245
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1245
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1246
1246
|
}[] | undefined;
|
|
1247
1247
|
}, {
|
|
1248
1248
|
adobe?: {
|
|
@@ -1316,7 +1316,7 @@ export declare const standardConfigSchema: {
|
|
|
1316
1316
|
} | undefined;
|
|
1317
1317
|
customScripts?: {
|
|
1318
1318
|
src: string;
|
|
1319
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1319
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1320
1320
|
}[] | undefined;
|
|
1321
1321
|
}>>;
|
|
1322
1322
|
banner: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -1163,13 +1163,13 @@ export declare const sequoiaConfigSchema: 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 sequoiaConfigSchema: 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 sequoiaConfigSchema: 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 sequoiaConfigSchema: 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 sequoiaConfigSchema: 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?: {
|
|
@@ -1163,13 +1163,13 @@ export declare const willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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?: {
|
|
@@ -715,7 +715,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
715
715
|
} | undefined;
|
|
716
716
|
customScripts?: {
|
|
717
717
|
src: string;
|
|
718
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
718
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
719
719
|
}[] | undefined;
|
|
720
720
|
} | undefined;
|
|
721
721
|
search?: {
|
|
@@ -1072,7 +1072,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1072
1072
|
} | undefined;
|
|
1073
1073
|
customScripts?: {
|
|
1074
1074
|
src: string;
|
|
1075
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1075
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1076
1076
|
}[] | undefined;
|
|
1077
1077
|
} | undefined;
|
|
1078
1078
|
search?: {
|
|
@@ -1429,7 +1429,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1429
1429
|
} | undefined;
|
|
1430
1430
|
customScripts?: {
|
|
1431
1431
|
src: string;
|
|
1432
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1432
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1433
1433
|
}[] | undefined;
|
|
1434
1434
|
} | undefined;
|
|
1435
1435
|
search?: {
|
|
@@ -1786,7 +1786,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1786
1786
|
} | undefined;
|
|
1787
1787
|
customScripts?: {
|
|
1788
1788
|
src: string;
|
|
1789
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
1789
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
1790
1790
|
}[] | undefined;
|
|
1791
1791
|
} | undefined;
|
|
1792
1792
|
search?: {
|
|
@@ -2143,7 +2143,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2143
2143
|
} | undefined;
|
|
2144
2144
|
customScripts?: {
|
|
2145
2145
|
src: string;
|
|
2146
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
2146
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
2147
2147
|
}[] | undefined;
|
|
2148
2148
|
} | undefined;
|
|
2149
2149
|
search?: {
|
|
@@ -2500,7 +2500,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2500
2500
|
} | undefined;
|
|
2501
2501
|
customScripts?: {
|
|
2502
2502
|
src: string;
|
|
2503
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
2503
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
2504
2504
|
}[] | undefined;
|
|
2505
2505
|
} | undefined;
|
|
2506
2506
|
search?: {
|
|
@@ -2857,7 +2857,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2857
2857
|
} | undefined;
|
|
2858
2858
|
customScripts?: {
|
|
2859
2859
|
src: string;
|
|
2860
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
2860
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
2861
2861
|
}[] | undefined;
|
|
2862
2862
|
} | undefined;
|
|
2863
2863
|
search?: {
|
|
@@ -3214,7 +3214,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3214
3214
|
} | undefined;
|
|
3215
3215
|
customScripts?: {
|
|
3216
3216
|
src: string;
|
|
3217
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
3217
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
3218
3218
|
}[] | undefined;
|
|
3219
3219
|
} | undefined;
|
|
3220
3220
|
search?: {
|
|
@@ -3571,7 +3571,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3571
3571
|
} | undefined;
|
|
3572
3572
|
customScripts?: {
|
|
3573
3573
|
src: string;
|
|
3574
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
3574
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
3575
3575
|
}[] | undefined;
|
|
3576
3576
|
} | undefined;
|
|
3577
3577
|
search?: {
|
|
@@ -3931,7 +3931,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3931
3931
|
} | undefined;
|
|
3932
3932
|
customScripts?: {
|
|
3933
3933
|
src: string;
|
|
3934
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
3934
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
3935
3935
|
}[] | undefined;
|
|
3936
3936
|
} | undefined;
|
|
3937
3937
|
search?: {
|
|
@@ -4288,7 +4288,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4288
4288
|
} | undefined;
|
|
4289
4289
|
customScripts?: {
|
|
4290
4290
|
src: string;
|
|
4291
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
4291
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
4292
4292
|
}[] | undefined;
|
|
4293
4293
|
} | undefined;
|
|
4294
4294
|
search?: {
|
|
@@ -4645,7 +4645,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4645
4645
|
} | undefined;
|
|
4646
4646
|
customScripts?: {
|
|
4647
4647
|
src: string;
|
|
4648
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
4648
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
4649
4649
|
}[] | undefined;
|
|
4650
4650
|
} | undefined;
|
|
4651
4651
|
search?: {
|
|
@@ -5002,7 +5002,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5002
5002
|
} | undefined;
|
|
5003
5003
|
customScripts?: {
|
|
5004
5004
|
src: string;
|
|
5005
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
5005
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
5006
5006
|
}[] | undefined;
|
|
5007
5007
|
} | undefined;
|
|
5008
5008
|
search?: {
|
|
@@ -5359,7 +5359,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5359
5359
|
} | undefined;
|
|
5360
5360
|
customScripts?: {
|
|
5361
5361
|
src: string;
|
|
5362
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
5362
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
5363
5363
|
}[] | undefined;
|
|
5364
5364
|
} | undefined;
|
|
5365
5365
|
search?: {
|
|
@@ -5716,7 +5716,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5716
5716
|
} | undefined;
|
|
5717
5717
|
customScripts?: {
|
|
5718
5718
|
src: string;
|
|
5719
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
5719
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
5720
5720
|
}[] | undefined;
|
|
5721
5721
|
} | undefined;
|
|
5722
5722
|
search?: {
|
|
@@ -6073,7 +6073,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6073
6073
|
} | undefined;
|
|
6074
6074
|
customScripts?: {
|
|
6075
6075
|
src: string;
|
|
6076
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
6076
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
6077
6077
|
}[] | undefined;
|
|
6078
6078
|
} | undefined;
|
|
6079
6079
|
search?: {
|
|
@@ -6430,7 +6430,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6430
6430
|
} | undefined;
|
|
6431
6431
|
customScripts?: {
|
|
6432
6432
|
src: string;
|
|
6433
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
6433
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
6434
6434
|
}[] | undefined;
|
|
6435
6435
|
} | undefined;
|
|
6436
6436
|
search?: {
|
|
@@ -6787,7 +6787,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6787
6787
|
} | undefined;
|
|
6788
6788
|
customScripts?: {
|
|
6789
6789
|
src: string;
|
|
6790
|
-
strategy?: "afterInteractive" | "lazyOnload" | undefined;
|
|
6790
|
+
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
6791
6791
|
}[] | undefined;
|
|
6792
6792
|
} | undefined;
|
|
6793
6793
|
search?: {
|