@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.
@@ -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: boolean;
537
- edits: boolean;
538
- issues: boolean;
536
+ thumbs?: boolean | undefined;
537
+ edits?: boolean | undefined;
538
+ issues?: boolean | undefined;
539
539
  }, {
540
- thumbs: boolean;
541
- edits: boolean;
542
- issues: boolean;
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
- auth: "key" | "bearer" | "basic" | "cobo";
952
- baseurl: string;
951
+ baseurl?: string | undefined;
952
+ auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
953
953
  }, {
954
- auth: "key" | "bearer" | "basic" | "cobo";
955
- baseurl: string;
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: boolean;
1143
- edits: boolean;
1144
- issues: boolean;
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
- auth: "key" | "bearer" | "basic" | "cobo";
1243
- baseurl: string;
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: boolean;
1430
- edits: boolean;
1431
- issues: boolean;
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
- auth: "key" | "bearer" | "basic" | "cobo";
1530
- baseurl: string;
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: boolean;
536
- edits: boolean;
537
- issues: boolean;
535
+ thumbs?: boolean | undefined;
536
+ edits?: boolean | undefined;
537
+ issues?: boolean | undefined;
538
538
  }, {
539
- thumbs: boolean;
540
- edits: boolean;
541
- issues: boolean;
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
- auth: "key" | "bearer" | "basic" | "cobo";
951
- baseurl: string;
950
+ baseurl?: string | undefined;
951
+ auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
952
952
  }, {
953
- auth: "key" | "bearer" | "basic" | "cobo";
954
- baseurl: string;
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: boolean;
537
- edits: boolean;
538
- issues: boolean;
536
+ thumbs?: boolean | undefined;
537
+ edits?: boolean | undefined;
538
+ issues?: boolean | undefined;
539
539
  }, {
540
- thumbs: boolean;
541
- edits: boolean;
542
- issues: boolean;
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
- auth: "key" | "bearer" | "basic" | "cobo";
952
- baseurl: string;
951
+ baseurl?: string | undefined;
952
+ auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
953
953
  }, {
954
- auth: "key" | "bearer" | "basic" | "cobo";
955
- baseurl: string;
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: boolean;
1143
- edits: boolean;
1144
- issues: boolean;
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
- auth: "key" | "bearer" | "basic" | "cobo";
1243
- baseurl: string;
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: boolean;
1430
- edits: boolean;
1431
- issues: boolean;
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
- auth: "key" | "bearer" | "basic" | "cobo";
1530
- baseurl: string;
1529
+ baseurl?: string | undefined;
1530
+ auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
1531
1531
  } | undefined;
1532
1532
  }>;