@mintlify/validation 0.1.42 → 0.1.43

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.
@@ -217,13 +217,6 @@ export declare const configSchema: z.ZodObject<{
217
217
  url: string;
218
218
  }>]>, "many">>;
219
219
  navigation: z.ZodArray<z.ZodType<import("../..").NavigationType, z.ZodTypeDef, import("../..").NavigationType>, "many">;
220
- inkeep: z.ZodOptional<z.ZodObject<{
221
- integrationApiKey: z.ZodString;
222
- }, "strip", z.ZodTypeAny, {
223
- integrationApiKey: string;
224
- }, {
225
- integrationApiKey: string;
226
- }>>;
227
220
  primaryTab: z.ZodOptional<z.ZodObject<{
228
221
  name: z.ZodString;
229
222
  }, "strict", z.ZodTypeAny, {
@@ -496,12 +489,25 @@ export declare const configSchema: z.ZodObject<{
496
489
  integrations: z.ZodOptional<z.ZodObject<{
497
490
  intercom: z.ZodOptional<z.ZodString>;
498
491
  frontchat: z.ZodOptional<z.ZodString>;
492
+ inkeep: z.ZodOptional<z.ZodObject<{
493
+ integrationApiKey: z.ZodString;
494
+ }, "strip", z.ZodTypeAny, {
495
+ integrationApiKey: string;
496
+ }, {
497
+ integrationApiKey: string;
498
+ }>>;
499
499
  }, "strip", z.ZodTypeAny, {
500
500
  intercom?: string | undefined;
501
501
  frontchat?: string | undefined;
502
+ inkeep?: {
503
+ integrationApiKey: string;
504
+ } | undefined;
502
505
  }, {
503
506
  intercom?: string | undefined;
504
507
  frontchat?: string | undefined;
508
+ inkeep?: {
509
+ integrationApiKey: string;
510
+ } | undefined;
505
511
  }>>;
506
512
  isWhiteLabeled: z.ZodOptional<z.ZodBoolean>;
507
513
  __injected: z.ZodUndefined;
@@ -575,9 +581,6 @@ export declare const configSchema: z.ZodObject<{
575
581
  type: "github";
576
582
  url: string;
577
583
  })[] | undefined;
578
- inkeep?: {
579
- integrationApiKey: string;
580
- } | undefined;
581
584
  primaryTab?: {
582
585
  name: string;
583
586
  } | undefined;
@@ -656,6 +659,9 @@ export declare const configSchema: z.ZodObject<{
656
659
  integrations?: {
657
660
  intercom?: string | undefined;
658
661
  frontchat?: string | undefined;
662
+ inkeep?: {
663
+ integrationApiKey: string;
664
+ } | undefined;
659
665
  } | undefined;
660
666
  isWhiteLabeled?: boolean | undefined;
661
667
  __injected?: undefined;
@@ -729,9 +735,6 @@ export declare const configSchema: z.ZodObject<{
729
735
  type: "github";
730
736
  url: string;
731
737
  })[] | undefined;
732
- inkeep?: {
733
- integrationApiKey: string;
734
- } | undefined;
735
738
  primaryTab?: {
736
739
  name: string;
737
740
  } | undefined;
@@ -810,6 +813,9 @@ export declare const configSchema: z.ZodObject<{
810
813
  integrations?: {
811
814
  intercom?: string | undefined;
812
815
  frontchat?: string | undefined;
816
+ inkeep?: {
817
+ integrationApiKey: string;
818
+ } | undefined;
813
819
  } | undefined;
814
820
  isWhiteLabeled?: boolean | undefined;
815
821
  __injected?: undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mintlify/validation",
3
- "version": "0.1.42",
3
+ "version": "0.1.43",
4
4
  "description": "Validates mint.json files",
5
5
  "author": "Mintlify, Inc.",
6
6
  "repository": {