@mintlify/validation 0.1.228 → 0.1.229
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 +100 -100
- package/dist/mint-config/schemas/v2/properties/feedback.d.ts +9 -9
- package/dist/mint-config/schemas/v2/properties/feedback.js +3 -3
- package/dist/mint-config/schemas/v2/properties/legacy.d.ts +6 -6
- package/dist/mint-config/schemas/v2/properties/legacy.js +2 -1
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +25 -25
- package/dist/mint-config/schemas/v2/themes/prism.d.ts +25 -25
- package/dist/mint-config/schemas/v2/themes/quill.d.ts +25 -25
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +15 -15
- package/dist/mint-config/schemas/v2/themes/venus.d.ts +25 -25
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -529,17 +529,17 @@ export declare const quillConfigSchema: z.ZodObject<{
|
|
|
529
529
|
}[] | undefined;
|
|
530
530
|
}>>;
|
|
531
531
|
feedback: z.ZodOptional<z.ZodObject<{
|
|
532
|
-
thumbs: z.ZodBoolean
|
|
533
|
-
edits: z.ZodBoolean
|
|
534
|
-
issues: z.ZodBoolean
|
|
532
|
+
thumbs: z.ZodOptional<z.ZodBoolean>;
|
|
533
|
+
edits: z.ZodOptional<z.ZodBoolean>;
|
|
534
|
+
issues: z.ZodOptional<z.ZodBoolean>;
|
|
535
535
|
}, "strip", z.ZodTypeAny, {
|
|
536
|
-
thumbs
|
|
537
|
-
edits
|
|
538
|
-
issues
|
|
536
|
+
thumbs?: boolean | undefined;
|
|
537
|
+
edits?: boolean | undefined;
|
|
538
|
+
issues?: boolean | undefined;
|
|
539
539
|
}, {
|
|
540
|
-
thumbs
|
|
541
|
-
edits
|
|
542
|
-
issues
|
|
540
|
+
thumbs?: boolean | undefined;
|
|
541
|
+
edits?: boolean | undefined;
|
|
542
|
+
issues?: boolean | undefined;
|
|
543
543
|
}>>;
|
|
544
544
|
search: z.ZodOptional<z.ZodObject<{
|
|
545
545
|
prompt: z.ZodOptional<z.ZodString>;
|
|
@@ -945,14 +945,14 @@ export declare const quillConfigSchema: z.ZodObject<{
|
|
|
945
945
|
} | undefined;
|
|
946
946
|
}>>;
|
|
947
947
|
legacy: z.ZodOptional<z.ZodObject<{
|
|
948
|
-
baseurl: z.ZodString
|
|
949
|
-
auth: z.ZodEnum<["basic", "bearer", "cobo", "key"]
|
|
948
|
+
baseurl: z.ZodOptional<z.ZodString>;
|
|
949
|
+
auth: z.ZodOptional<z.ZodEnum<["basic", "bearer", "cobo", "key"]>>;
|
|
950
950
|
}, "strip", z.ZodTypeAny, {
|
|
951
|
-
|
|
952
|
-
|
|
951
|
+
baseurl?: string | undefined;
|
|
952
|
+
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
953
953
|
}, {
|
|
954
|
-
|
|
955
|
-
|
|
954
|
+
baseurl?: string | undefined;
|
|
955
|
+
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
956
956
|
}>>;
|
|
957
957
|
theme: z.ZodLiteral<"quill">;
|
|
958
958
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1139,9 +1139,9 @@ export declare const quillConfigSchema: z.ZodObject<{
|
|
|
1139
1139
|
}[] | undefined;
|
|
1140
1140
|
} | undefined;
|
|
1141
1141
|
feedback?: {
|
|
1142
|
-
thumbs
|
|
1143
|
-
edits
|
|
1144
|
-
issues
|
|
1142
|
+
thumbs?: boolean | undefined;
|
|
1143
|
+
edits?: boolean | undefined;
|
|
1144
|
+
issues?: boolean | undefined;
|
|
1145
1145
|
} | undefined;
|
|
1146
1146
|
search?: {
|
|
1147
1147
|
prompt?: string | undefined;
|
|
@@ -1239,8 +1239,8 @@ export declare const quillConfigSchema: z.ZodObject<{
|
|
|
1239
1239
|
} | undefined;
|
|
1240
1240
|
} | undefined;
|
|
1241
1241
|
legacy?: {
|
|
1242
|
-
|
|
1243
|
-
|
|
1242
|
+
baseurl?: string | undefined;
|
|
1243
|
+
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1244
1244
|
} | undefined;
|
|
1245
1245
|
}, {
|
|
1246
1246
|
name: string;
|
|
@@ -1426,9 +1426,9 @@ export declare const quillConfigSchema: z.ZodObject<{
|
|
|
1426
1426
|
}[] | undefined;
|
|
1427
1427
|
} | undefined;
|
|
1428
1428
|
feedback?: {
|
|
1429
|
-
thumbs
|
|
1430
|
-
edits
|
|
1431
|
-
issues
|
|
1429
|
+
thumbs?: boolean | undefined;
|
|
1430
|
+
edits?: boolean | undefined;
|
|
1431
|
+
issues?: boolean | undefined;
|
|
1432
1432
|
} | undefined;
|
|
1433
1433
|
search?: {
|
|
1434
1434
|
prompt?: string | undefined;
|
|
@@ -1526,7 +1526,7 @@ export declare const quillConfigSchema: z.ZodObject<{
|
|
|
1526
1526
|
} | undefined;
|
|
1527
1527
|
} | undefined;
|
|
1528
1528
|
legacy?: {
|
|
1529
|
-
|
|
1530
|
-
|
|
1529
|
+
baseurl?: string | undefined;
|
|
1530
|
+
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1531
1531
|
} | undefined;
|
|
1532
1532
|
}>;
|
|
@@ -528,17 +528,17 @@ export declare const standardConfigSchema: {
|
|
|
528
528
|
}[] | undefined;
|
|
529
529
|
}>>;
|
|
530
530
|
feedback: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
531
|
-
thumbs: import("zod").ZodBoolean
|
|
532
|
-
edits: import("zod").ZodBoolean
|
|
533
|
-
issues: import("zod").ZodBoolean
|
|
531
|
+
thumbs: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
532
|
+
edits: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
533
|
+
issues: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
534
534
|
}, "strip", import("zod").ZodTypeAny, {
|
|
535
|
-
thumbs
|
|
536
|
-
edits
|
|
537
|
-
issues
|
|
535
|
+
thumbs?: boolean | undefined;
|
|
536
|
+
edits?: boolean | undefined;
|
|
537
|
+
issues?: boolean | undefined;
|
|
538
538
|
}, {
|
|
539
|
-
thumbs
|
|
540
|
-
edits
|
|
541
|
-
issues
|
|
539
|
+
thumbs?: boolean | undefined;
|
|
540
|
+
edits?: boolean | undefined;
|
|
541
|
+
issues?: boolean | undefined;
|
|
542
542
|
}>>;
|
|
543
543
|
search: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
544
544
|
prompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -944,13 +944,13 @@ export declare const standardConfigSchema: {
|
|
|
944
944
|
} | undefined;
|
|
945
945
|
}>>;
|
|
946
946
|
legacy: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
947
|
-
baseurl: import("zod").ZodString
|
|
948
|
-
auth: import("zod").ZodEnum<["basic", "bearer", "cobo", "key"]
|
|
947
|
+
baseurl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
948
|
+
auth: import("zod").ZodOptional<import("zod").ZodEnum<["basic", "bearer", "cobo", "key"]>>;
|
|
949
949
|
}, "strip", import("zod").ZodTypeAny, {
|
|
950
|
-
|
|
951
|
-
|
|
950
|
+
baseurl?: string | undefined;
|
|
951
|
+
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
952
952
|
}, {
|
|
953
|
-
|
|
954
|
-
|
|
953
|
+
baseurl?: string | undefined;
|
|
954
|
+
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
955
955
|
}>>;
|
|
956
956
|
};
|
|
@@ -529,17 +529,17 @@ export declare const venusConfigSchema: z.ZodObject<{
|
|
|
529
529
|
}[] | undefined;
|
|
530
530
|
}>>;
|
|
531
531
|
feedback: z.ZodOptional<z.ZodObject<{
|
|
532
|
-
thumbs: z.ZodBoolean
|
|
533
|
-
edits: z.ZodBoolean
|
|
534
|
-
issues: z.ZodBoolean
|
|
532
|
+
thumbs: z.ZodOptional<z.ZodBoolean>;
|
|
533
|
+
edits: z.ZodOptional<z.ZodBoolean>;
|
|
534
|
+
issues: z.ZodOptional<z.ZodBoolean>;
|
|
535
535
|
}, "strip", z.ZodTypeAny, {
|
|
536
|
-
thumbs
|
|
537
|
-
edits
|
|
538
|
-
issues
|
|
536
|
+
thumbs?: boolean | undefined;
|
|
537
|
+
edits?: boolean | undefined;
|
|
538
|
+
issues?: boolean | undefined;
|
|
539
539
|
}, {
|
|
540
|
-
thumbs
|
|
541
|
-
edits
|
|
542
|
-
issues
|
|
540
|
+
thumbs?: boolean | undefined;
|
|
541
|
+
edits?: boolean | undefined;
|
|
542
|
+
issues?: boolean | undefined;
|
|
543
543
|
}>>;
|
|
544
544
|
search: z.ZodOptional<z.ZodObject<{
|
|
545
545
|
prompt: z.ZodOptional<z.ZodString>;
|
|
@@ -945,14 +945,14 @@ export declare const venusConfigSchema: z.ZodObject<{
|
|
|
945
945
|
} | undefined;
|
|
946
946
|
}>>;
|
|
947
947
|
legacy: z.ZodOptional<z.ZodObject<{
|
|
948
|
-
baseurl: z.ZodString
|
|
949
|
-
auth: z.ZodEnum<["basic", "bearer", "cobo", "key"]
|
|
948
|
+
baseurl: z.ZodOptional<z.ZodString>;
|
|
949
|
+
auth: z.ZodOptional<z.ZodEnum<["basic", "bearer", "cobo", "key"]>>;
|
|
950
950
|
}, "strip", z.ZodTypeAny, {
|
|
951
|
-
|
|
952
|
-
|
|
951
|
+
baseurl?: string | undefined;
|
|
952
|
+
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
953
953
|
}, {
|
|
954
|
-
|
|
955
|
-
|
|
954
|
+
baseurl?: string | undefined;
|
|
955
|
+
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
956
956
|
}>>;
|
|
957
957
|
theme: z.ZodLiteral<"venus">;
|
|
958
958
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1139,9 +1139,9 @@ export declare const venusConfigSchema: z.ZodObject<{
|
|
|
1139
1139
|
}[] | undefined;
|
|
1140
1140
|
} | undefined;
|
|
1141
1141
|
feedback?: {
|
|
1142
|
-
thumbs
|
|
1143
|
-
edits
|
|
1144
|
-
issues
|
|
1142
|
+
thumbs?: boolean | undefined;
|
|
1143
|
+
edits?: boolean | undefined;
|
|
1144
|
+
issues?: boolean | undefined;
|
|
1145
1145
|
} | undefined;
|
|
1146
1146
|
search?: {
|
|
1147
1147
|
prompt?: string | undefined;
|
|
@@ -1239,8 +1239,8 @@ export declare const venusConfigSchema: z.ZodObject<{
|
|
|
1239
1239
|
} | undefined;
|
|
1240
1240
|
} | undefined;
|
|
1241
1241
|
legacy?: {
|
|
1242
|
-
|
|
1243
|
-
|
|
1242
|
+
baseurl?: string | undefined;
|
|
1243
|
+
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1244
1244
|
} | undefined;
|
|
1245
1245
|
}, {
|
|
1246
1246
|
name: string;
|
|
@@ -1426,9 +1426,9 @@ export declare const venusConfigSchema: z.ZodObject<{
|
|
|
1426
1426
|
}[] | undefined;
|
|
1427
1427
|
} | undefined;
|
|
1428
1428
|
feedback?: {
|
|
1429
|
-
thumbs
|
|
1430
|
-
edits
|
|
1431
|
-
issues
|
|
1429
|
+
thumbs?: boolean | undefined;
|
|
1430
|
+
edits?: boolean | undefined;
|
|
1431
|
+
issues?: boolean | undefined;
|
|
1432
1432
|
} | undefined;
|
|
1433
1433
|
search?: {
|
|
1434
1434
|
prompt?: string | undefined;
|
|
@@ -1526,7 +1526,7 @@ export declare const venusConfigSchema: z.ZodObject<{
|
|
|
1526
1526
|
} | undefined;
|
|
1527
1527
|
} | undefined;
|
|
1528
1528
|
legacy?: {
|
|
1529
|
-
|
|
1530
|
-
|
|
1529
|
+
baseurl?: string | undefined;
|
|
1530
|
+
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1531
1531
|
} | undefined;
|
|
1532
1532
|
}>;
|