@mintlify/validation 0.1.436 → 0.1.438
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/v1/analytics.d.ts +18 -0
- package/dist/mint-config/schemas/v1/analytics.js +5 -0
- package/dist/mint-config/schemas/v1/config.d.ts +26 -0
- package/dist/mint-config/schemas/v2/index.d.ts +182 -0
- package/dist/mint-config/schemas/v2/properties/integrations.d.ts +18 -0
- package/dist/mint-config/schemas/v2/properties/integrations.js +5 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +18 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +26 -0
- package/dist/mint-config/validateConfig.d.ts +64 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/deployment/deploymentEntitlements.d.ts +1 -1
- package/dist/types/deployment/deploymentEntitlements.js +1 -1
- package/package.json +2 -2
|
@@ -913,6 +913,16 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
913
913
|
}, {
|
|
914
914
|
appId: string;
|
|
915
915
|
}>>;
|
|
916
|
+
hightouch: z.ZodOptional<z.ZodObject<{
|
|
917
|
+
writeKey: z.ZodString;
|
|
918
|
+
apiHost: z.ZodOptional<z.ZodString>;
|
|
919
|
+
}, "strip", z.ZodTypeAny, {
|
|
920
|
+
writeKey: string;
|
|
921
|
+
apiHost?: string | undefined;
|
|
922
|
+
}, {
|
|
923
|
+
writeKey: string;
|
|
924
|
+
apiHost?: string | undefined;
|
|
925
|
+
}>>;
|
|
916
926
|
hotjar: z.ZodOptional<z.ZodObject<{
|
|
917
927
|
hjid: z.ZodString;
|
|
918
928
|
hjsv: z.ZodString;
|
|
@@ -1031,6 +1041,10 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1031
1041
|
heap?: {
|
|
1032
1042
|
appId: string;
|
|
1033
1043
|
} | undefined;
|
|
1044
|
+
hightouch?: {
|
|
1045
|
+
writeKey: string;
|
|
1046
|
+
apiHost?: string | undefined;
|
|
1047
|
+
} | undefined;
|
|
1034
1048
|
hotjar?: {
|
|
1035
1049
|
hjid: string;
|
|
1036
1050
|
hjsv: string;
|
|
@@ -1093,6 +1107,10 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1093
1107
|
heap?: {
|
|
1094
1108
|
appId: string;
|
|
1095
1109
|
} | undefined;
|
|
1110
|
+
hightouch?: {
|
|
1111
|
+
writeKey: string;
|
|
1112
|
+
apiHost?: string | undefined;
|
|
1113
|
+
} | undefined;
|
|
1096
1114
|
hotjar?: {
|
|
1097
1115
|
hjid: string;
|
|
1098
1116
|
hjsv: string;
|
|
@@ -1640,6 +1658,10 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1640
1658
|
heap?: {
|
|
1641
1659
|
appId: string;
|
|
1642
1660
|
} | undefined;
|
|
1661
|
+
hightouch?: {
|
|
1662
|
+
writeKey: string;
|
|
1663
|
+
apiHost?: string | undefined;
|
|
1664
|
+
} | undefined;
|
|
1643
1665
|
hotjar?: {
|
|
1644
1666
|
hjid: string;
|
|
1645
1667
|
hjsv: string;
|
|
@@ -2012,6 +2034,10 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
2012
2034
|
heap?: {
|
|
2013
2035
|
appId: string;
|
|
2014
2036
|
} | undefined;
|
|
2037
|
+
hightouch?: {
|
|
2038
|
+
writeKey: string;
|
|
2039
|
+
apiHost?: string | undefined;
|
|
2040
|
+
} | undefined;
|
|
2015
2041
|
hotjar?: {
|
|
2016
2042
|
hjid: string;
|
|
2017
2043
|
hjsv: string;
|
|
@@ -913,6 +913,16 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
913
913
|
}, {
|
|
914
914
|
appId: string;
|
|
915
915
|
}>>;
|
|
916
|
+
hightouch: z.ZodOptional<z.ZodObject<{
|
|
917
|
+
writeKey: z.ZodString;
|
|
918
|
+
apiHost: z.ZodOptional<z.ZodString>;
|
|
919
|
+
}, "strip", z.ZodTypeAny, {
|
|
920
|
+
writeKey: string;
|
|
921
|
+
apiHost?: string | undefined;
|
|
922
|
+
}, {
|
|
923
|
+
writeKey: string;
|
|
924
|
+
apiHost?: string | undefined;
|
|
925
|
+
}>>;
|
|
916
926
|
hotjar: z.ZodOptional<z.ZodObject<{
|
|
917
927
|
hjid: z.ZodString;
|
|
918
928
|
hjsv: z.ZodString;
|
|
@@ -1031,6 +1041,10 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1031
1041
|
heap?: {
|
|
1032
1042
|
appId: string;
|
|
1033
1043
|
} | undefined;
|
|
1044
|
+
hightouch?: {
|
|
1045
|
+
writeKey: string;
|
|
1046
|
+
apiHost?: string | undefined;
|
|
1047
|
+
} | undefined;
|
|
1034
1048
|
hotjar?: {
|
|
1035
1049
|
hjid: string;
|
|
1036
1050
|
hjsv: string;
|
|
@@ -1093,6 +1107,10 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1093
1107
|
heap?: {
|
|
1094
1108
|
appId: string;
|
|
1095
1109
|
} | undefined;
|
|
1110
|
+
hightouch?: {
|
|
1111
|
+
writeKey: string;
|
|
1112
|
+
apiHost?: string | undefined;
|
|
1113
|
+
} | undefined;
|
|
1096
1114
|
hotjar?: {
|
|
1097
1115
|
hjid: string;
|
|
1098
1116
|
hjsv: string;
|
|
@@ -1640,6 +1658,10 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1640
1658
|
heap?: {
|
|
1641
1659
|
appId: string;
|
|
1642
1660
|
} | undefined;
|
|
1661
|
+
hightouch?: {
|
|
1662
|
+
writeKey: string;
|
|
1663
|
+
apiHost?: string | undefined;
|
|
1664
|
+
} | undefined;
|
|
1643
1665
|
hotjar?: {
|
|
1644
1666
|
hjid: string;
|
|
1645
1667
|
hjsv: string;
|
|
@@ -2012,6 +2034,10 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
2012
2034
|
heap?: {
|
|
2013
2035
|
appId: string;
|
|
2014
2036
|
} | undefined;
|
|
2037
|
+
hightouch?: {
|
|
2038
|
+
writeKey: string;
|
|
2039
|
+
apiHost?: string | undefined;
|
|
2040
|
+
} | undefined;
|
|
2015
2041
|
hotjar?: {
|
|
2016
2042
|
hjid: string;
|
|
2017
2043
|
hjsv: string;
|
|
@@ -913,6 +913,16 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
913
913
|
}, {
|
|
914
914
|
appId: string;
|
|
915
915
|
}>>;
|
|
916
|
+
hightouch: z.ZodOptional<z.ZodObject<{
|
|
917
|
+
writeKey: z.ZodString;
|
|
918
|
+
apiHost: z.ZodOptional<z.ZodString>;
|
|
919
|
+
}, "strip", z.ZodTypeAny, {
|
|
920
|
+
writeKey: string;
|
|
921
|
+
apiHost?: string | undefined;
|
|
922
|
+
}, {
|
|
923
|
+
writeKey: string;
|
|
924
|
+
apiHost?: string | undefined;
|
|
925
|
+
}>>;
|
|
916
926
|
hotjar: z.ZodOptional<z.ZodObject<{
|
|
917
927
|
hjid: z.ZodString;
|
|
918
928
|
hjsv: z.ZodString;
|
|
@@ -1031,6 +1041,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1031
1041
|
heap?: {
|
|
1032
1042
|
appId: string;
|
|
1033
1043
|
} | undefined;
|
|
1044
|
+
hightouch?: {
|
|
1045
|
+
writeKey: string;
|
|
1046
|
+
apiHost?: string | undefined;
|
|
1047
|
+
} | undefined;
|
|
1034
1048
|
hotjar?: {
|
|
1035
1049
|
hjid: string;
|
|
1036
1050
|
hjsv: string;
|
|
@@ -1093,6 +1107,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1093
1107
|
heap?: {
|
|
1094
1108
|
appId: string;
|
|
1095
1109
|
} | undefined;
|
|
1110
|
+
hightouch?: {
|
|
1111
|
+
writeKey: string;
|
|
1112
|
+
apiHost?: string | undefined;
|
|
1113
|
+
} | undefined;
|
|
1096
1114
|
hotjar?: {
|
|
1097
1115
|
hjid: string;
|
|
1098
1116
|
hjsv: string;
|
|
@@ -1640,6 +1658,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1640
1658
|
heap?: {
|
|
1641
1659
|
appId: string;
|
|
1642
1660
|
} | undefined;
|
|
1661
|
+
hightouch?: {
|
|
1662
|
+
writeKey: string;
|
|
1663
|
+
apiHost?: string | undefined;
|
|
1664
|
+
} | undefined;
|
|
1643
1665
|
hotjar?: {
|
|
1644
1666
|
hjid: string;
|
|
1645
1667
|
hjsv: string;
|
|
@@ -2012,6 +2034,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2012
2034
|
heap?: {
|
|
2013
2035
|
appId: string;
|
|
2014
2036
|
} | undefined;
|
|
2037
|
+
hightouch?: {
|
|
2038
|
+
writeKey: string;
|
|
2039
|
+
apiHost?: string | undefined;
|
|
2040
|
+
} | undefined;
|
|
2015
2041
|
hotjar?: {
|
|
2016
2042
|
hjid: string;
|
|
2017
2043
|
hjsv: string;
|
|
@@ -913,6 +913,16 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
913
913
|
}, {
|
|
914
914
|
appId: string;
|
|
915
915
|
}>>;
|
|
916
|
+
hightouch: z.ZodOptional<z.ZodObject<{
|
|
917
|
+
writeKey: z.ZodString;
|
|
918
|
+
apiHost: z.ZodOptional<z.ZodString>;
|
|
919
|
+
}, "strip", z.ZodTypeAny, {
|
|
920
|
+
writeKey: string;
|
|
921
|
+
apiHost?: string | undefined;
|
|
922
|
+
}, {
|
|
923
|
+
writeKey: string;
|
|
924
|
+
apiHost?: string | undefined;
|
|
925
|
+
}>>;
|
|
916
926
|
hotjar: z.ZodOptional<z.ZodObject<{
|
|
917
927
|
hjid: z.ZodString;
|
|
918
928
|
hjsv: z.ZodString;
|
|
@@ -1031,6 +1041,10 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1031
1041
|
heap?: {
|
|
1032
1042
|
appId: string;
|
|
1033
1043
|
} | undefined;
|
|
1044
|
+
hightouch?: {
|
|
1045
|
+
writeKey: string;
|
|
1046
|
+
apiHost?: string | undefined;
|
|
1047
|
+
} | undefined;
|
|
1034
1048
|
hotjar?: {
|
|
1035
1049
|
hjid: string;
|
|
1036
1050
|
hjsv: string;
|
|
@@ -1093,6 +1107,10 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1093
1107
|
heap?: {
|
|
1094
1108
|
appId: string;
|
|
1095
1109
|
} | undefined;
|
|
1110
|
+
hightouch?: {
|
|
1111
|
+
writeKey: string;
|
|
1112
|
+
apiHost?: string | undefined;
|
|
1113
|
+
} | undefined;
|
|
1096
1114
|
hotjar?: {
|
|
1097
1115
|
hjid: string;
|
|
1098
1116
|
hjsv: string;
|
|
@@ -1640,6 +1658,10 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1640
1658
|
heap?: {
|
|
1641
1659
|
appId: string;
|
|
1642
1660
|
} | undefined;
|
|
1661
|
+
hightouch?: {
|
|
1662
|
+
writeKey: string;
|
|
1663
|
+
apiHost?: string | undefined;
|
|
1664
|
+
} | undefined;
|
|
1643
1665
|
hotjar?: {
|
|
1644
1666
|
hjid: string;
|
|
1645
1667
|
hjsv: string;
|
|
@@ -2012,6 +2034,10 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
2012
2034
|
heap?: {
|
|
2013
2035
|
appId: string;
|
|
2014
2036
|
} | undefined;
|
|
2037
|
+
hightouch?: {
|
|
2038
|
+
writeKey: string;
|
|
2039
|
+
apiHost?: string | undefined;
|
|
2040
|
+
} | undefined;
|
|
2015
2041
|
hotjar?: {
|
|
2016
2042
|
hjid: string;
|
|
2017
2043
|
hjsv: string;
|
|
@@ -913,6 +913,16 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
913
913
|
}, {
|
|
914
914
|
appId: string;
|
|
915
915
|
}>>;
|
|
916
|
+
hightouch: z.ZodOptional<z.ZodObject<{
|
|
917
|
+
writeKey: z.ZodString;
|
|
918
|
+
apiHost: z.ZodOptional<z.ZodString>;
|
|
919
|
+
}, "strip", z.ZodTypeAny, {
|
|
920
|
+
writeKey: string;
|
|
921
|
+
apiHost?: string | undefined;
|
|
922
|
+
}, {
|
|
923
|
+
writeKey: string;
|
|
924
|
+
apiHost?: string | undefined;
|
|
925
|
+
}>>;
|
|
916
926
|
hotjar: z.ZodOptional<z.ZodObject<{
|
|
917
927
|
hjid: z.ZodString;
|
|
918
928
|
hjsv: z.ZodString;
|
|
@@ -1031,6 +1041,10 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1031
1041
|
heap?: {
|
|
1032
1042
|
appId: string;
|
|
1033
1043
|
} | undefined;
|
|
1044
|
+
hightouch?: {
|
|
1045
|
+
writeKey: string;
|
|
1046
|
+
apiHost?: string | undefined;
|
|
1047
|
+
} | undefined;
|
|
1034
1048
|
hotjar?: {
|
|
1035
1049
|
hjid: string;
|
|
1036
1050
|
hjsv: string;
|
|
@@ -1093,6 +1107,10 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1093
1107
|
heap?: {
|
|
1094
1108
|
appId: string;
|
|
1095
1109
|
} | undefined;
|
|
1110
|
+
hightouch?: {
|
|
1111
|
+
writeKey: string;
|
|
1112
|
+
apiHost?: string | undefined;
|
|
1113
|
+
} | undefined;
|
|
1096
1114
|
hotjar?: {
|
|
1097
1115
|
hjid: string;
|
|
1098
1116
|
hjsv: string;
|
|
@@ -1640,6 +1658,10 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1640
1658
|
heap?: {
|
|
1641
1659
|
appId: string;
|
|
1642
1660
|
} | undefined;
|
|
1661
|
+
hightouch?: {
|
|
1662
|
+
writeKey: string;
|
|
1663
|
+
apiHost?: string | undefined;
|
|
1664
|
+
} | undefined;
|
|
1643
1665
|
hotjar?: {
|
|
1644
1666
|
hjid: string;
|
|
1645
1667
|
hjsv: string;
|
|
@@ -2012,6 +2034,10 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
2012
2034
|
heap?: {
|
|
2013
2035
|
appId: string;
|
|
2014
2036
|
} | undefined;
|
|
2037
|
+
hightouch?: {
|
|
2038
|
+
writeKey: string;
|
|
2039
|
+
apiHost?: string | undefined;
|
|
2040
|
+
} | undefined;
|
|
2015
2041
|
hotjar?: {
|
|
2016
2042
|
hjid: string;
|
|
2017
2043
|
hjsv: string;
|
|
@@ -912,6 +912,16 @@ export declare const standardConfigSchema: {
|
|
|
912
912
|
}, {
|
|
913
913
|
appId: string;
|
|
914
914
|
}>>;
|
|
915
|
+
hightouch: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
916
|
+
writeKey: import("zod").ZodString;
|
|
917
|
+
apiHost: import("zod").ZodOptional<import("zod").ZodString>;
|
|
918
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
919
|
+
writeKey: string;
|
|
920
|
+
apiHost?: string | undefined;
|
|
921
|
+
}, {
|
|
922
|
+
writeKey: string;
|
|
923
|
+
apiHost?: string | undefined;
|
|
924
|
+
}>>;
|
|
915
925
|
hotjar: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
916
926
|
hjid: import("zod").ZodString;
|
|
917
927
|
hjsv: import("zod").ZodString;
|
|
@@ -1030,6 +1040,10 @@ export declare const standardConfigSchema: {
|
|
|
1030
1040
|
heap?: {
|
|
1031
1041
|
appId: string;
|
|
1032
1042
|
} | undefined;
|
|
1043
|
+
hightouch?: {
|
|
1044
|
+
writeKey: string;
|
|
1045
|
+
apiHost?: string | undefined;
|
|
1046
|
+
} | undefined;
|
|
1033
1047
|
hotjar?: {
|
|
1034
1048
|
hjid: string;
|
|
1035
1049
|
hjsv: string;
|
|
@@ -1092,6 +1106,10 @@ export declare const standardConfigSchema: {
|
|
|
1092
1106
|
heap?: {
|
|
1093
1107
|
appId: string;
|
|
1094
1108
|
} | undefined;
|
|
1109
|
+
hightouch?: {
|
|
1110
|
+
writeKey: string;
|
|
1111
|
+
apiHost?: string | undefined;
|
|
1112
|
+
} | undefined;
|
|
1095
1113
|
hotjar?: {
|
|
1096
1114
|
hjid: string;
|
|
1097
1115
|
hjsv: string;
|
|
@@ -913,6 +913,16 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
913
913
|
}, {
|
|
914
914
|
appId: string;
|
|
915
915
|
}>>;
|
|
916
|
+
hightouch: z.ZodOptional<z.ZodObject<{
|
|
917
|
+
writeKey: z.ZodString;
|
|
918
|
+
apiHost: z.ZodOptional<z.ZodString>;
|
|
919
|
+
}, "strip", z.ZodTypeAny, {
|
|
920
|
+
writeKey: string;
|
|
921
|
+
apiHost?: string | undefined;
|
|
922
|
+
}, {
|
|
923
|
+
writeKey: string;
|
|
924
|
+
apiHost?: string | undefined;
|
|
925
|
+
}>>;
|
|
916
926
|
hotjar: z.ZodOptional<z.ZodObject<{
|
|
917
927
|
hjid: z.ZodString;
|
|
918
928
|
hjsv: z.ZodString;
|
|
@@ -1031,6 +1041,10 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1031
1041
|
heap?: {
|
|
1032
1042
|
appId: string;
|
|
1033
1043
|
} | undefined;
|
|
1044
|
+
hightouch?: {
|
|
1045
|
+
writeKey: string;
|
|
1046
|
+
apiHost?: string | undefined;
|
|
1047
|
+
} | undefined;
|
|
1034
1048
|
hotjar?: {
|
|
1035
1049
|
hjid: string;
|
|
1036
1050
|
hjsv: string;
|
|
@@ -1093,6 +1107,10 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1093
1107
|
heap?: {
|
|
1094
1108
|
appId: string;
|
|
1095
1109
|
} | undefined;
|
|
1110
|
+
hightouch?: {
|
|
1111
|
+
writeKey: string;
|
|
1112
|
+
apiHost?: string | undefined;
|
|
1113
|
+
} | undefined;
|
|
1096
1114
|
hotjar?: {
|
|
1097
1115
|
hjid: string;
|
|
1098
1116
|
hjsv: string;
|
|
@@ -1640,6 +1658,10 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1640
1658
|
heap?: {
|
|
1641
1659
|
appId: string;
|
|
1642
1660
|
} | undefined;
|
|
1661
|
+
hightouch?: {
|
|
1662
|
+
writeKey: string;
|
|
1663
|
+
apiHost?: string | undefined;
|
|
1664
|
+
} | undefined;
|
|
1643
1665
|
hotjar?: {
|
|
1644
1666
|
hjid: string;
|
|
1645
1667
|
hjsv: string;
|
|
@@ -2012,6 +2034,10 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
2012
2034
|
heap?: {
|
|
2013
2035
|
appId: string;
|
|
2014
2036
|
} | undefined;
|
|
2037
|
+
hightouch?: {
|
|
2038
|
+
writeKey: string;
|
|
2039
|
+
apiHost?: string | undefined;
|
|
2040
|
+
} | undefined;
|
|
2015
2041
|
hotjar?: {
|
|
2016
2042
|
hjid: string;
|
|
2017
2043
|
hjsv: string;
|
|
@@ -185,6 +185,10 @@ export declare function validateMintConfig(value: unknown): z.SafeParseError<{
|
|
|
185
185
|
heap?: {
|
|
186
186
|
appId: string;
|
|
187
187
|
} | undefined;
|
|
188
|
+
hightouch?: {
|
|
189
|
+
writeKey: string;
|
|
190
|
+
apiHost?: string | undefined;
|
|
191
|
+
} | undefined;
|
|
188
192
|
hotjar?: {
|
|
189
193
|
hjid: string;
|
|
190
194
|
hjsv: string;
|
|
@@ -424,6 +428,10 @@ export declare function validateMintConfig(value: unknown): z.SafeParseError<{
|
|
|
424
428
|
heap?: {
|
|
425
429
|
appId: string;
|
|
426
430
|
} | undefined;
|
|
431
|
+
hightouch?: {
|
|
432
|
+
writeKey: string;
|
|
433
|
+
apiHost?: string | undefined;
|
|
434
|
+
} | undefined;
|
|
427
435
|
hotjar?: {
|
|
428
436
|
hjid: string;
|
|
429
437
|
hjsv: string;
|
|
@@ -770,6 +778,10 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
770
778
|
heap?: {
|
|
771
779
|
appId: string;
|
|
772
780
|
} | undefined;
|
|
781
|
+
hightouch?: {
|
|
782
|
+
writeKey: string;
|
|
783
|
+
apiHost?: string | undefined;
|
|
784
|
+
} | undefined;
|
|
773
785
|
hotjar?: {
|
|
774
786
|
hjid: string;
|
|
775
787
|
hjsv: string;
|
|
@@ -1142,6 +1154,10 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1142
1154
|
heap?: {
|
|
1143
1155
|
appId: string;
|
|
1144
1156
|
} | undefined;
|
|
1157
|
+
hightouch?: {
|
|
1158
|
+
writeKey: string;
|
|
1159
|
+
apiHost?: string | undefined;
|
|
1160
|
+
} | undefined;
|
|
1145
1161
|
hotjar?: {
|
|
1146
1162
|
hjid: string;
|
|
1147
1163
|
hjsv: string;
|
|
@@ -1514,6 +1530,10 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1514
1530
|
heap?: {
|
|
1515
1531
|
appId: string;
|
|
1516
1532
|
} | undefined;
|
|
1533
|
+
hightouch?: {
|
|
1534
|
+
writeKey: string;
|
|
1535
|
+
apiHost?: string | undefined;
|
|
1536
|
+
} | undefined;
|
|
1517
1537
|
hotjar?: {
|
|
1518
1538
|
hjid: string;
|
|
1519
1539
|
hjsv: string;
|
|
@@ -1886,6 +1906,10 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1886
1906
|
heap?: {
|
|
1887
1907
|
appId: string;
|
|
1888
1908
|
} | undefined;
|
|
1909
|
+
hightouch?: {
|
|
1910
|
+
writeKey: string;
|
|
1911
|
+
apiHost?: string | undefined;
|
|
1912
|
+
} | undefined;
|
|
1889
1913
|
hotjar?: {
|
|
1890
1914
|
hjid: string;
|
|
1891
1915
|
hjsv: string;
|
|
@@ -2258,6 +2282,10 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2258
2282
|
heap?: {
|
|
2259
2283
|
appId: string;
|
|
2260
2284
|
} | undefined;
|
|
2285
|
+
hightouch?: {
|
|
2286
|
+
writeKey: string;
|
|
2287
|
+
apiHost?: string | undefined;
|
|
2288
|
+
} | undefined;
|
|
2261
2289
|
hotjar?: {
|
|
2262
2290
|
hjid: string;
|
|
2263
2291
|
hjsv: string;
|
|
@@ -2630,6 +2658,10 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2630
2658
|
heap?: {
|
|
2631
2659
|
appId: string;
|
|
2632
2660
|
} | undefined;
|
|
2661
|
+
hightouch?: {
|
|
2662
|
+
writeKey: string;
|
|
2663
|
+
apiHost?: string | undefined;
|
|
2664
|
+
} | undefined;
|
|
2633
2665
|
hotjar?: {
|
|
2634
2666
|
hjid: string;
|
|
2635
2667
|
hjsv: string;
|
|
@@ -3002,6 +3034,10 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3002
3034
|
heap?: {
|
|
3003
3035
|
appId: string;
|
|
3004
3036
|
} | undefined;
|
|
3037
|
+
hightouch?: {
|
|
3038
|
+
writeKey: string;
|
|
3039
|
+
apiHost?: string | undefined;
|
|
3040
|
+
} | undefined;
|
|
3005
3041
|
hotjar?: {
|
|
3006
3042
|
hjid: string;
|
|
3007
3043
|
hjsv: string;
|
|
@@ -3377,6 +3413,10 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3377
3413
|
heap?: {
|
|
3378
3414
|
appId: string;
|
|
3379
3415
|
} | undefined;
|
|
3416
|
+
hightouch?: {
|
|
3417
|
+
writeKey: string;
|
|
3418
|
+
apiHost?: string | undefined;
|
|
3419
|
+
} | undefined;
|
|
3380
3420
|
hotjar?: {
|
|
3381
3421
|
hjid: string;
|
|
3382
3422
|
hjsv: string;
|
|
@@ -3749,6 +3789,10 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3749
3789
|
heap?: {
|
|
3750
3790
|
appId: string;
|
|
3751
3791
|
} | undefined;
|
|
3792
|
+
hightouch?: {
|
|
3793
|
+
writeKey: string;
|
|
3794
|
+
apiHost?: string | undefined;
|
|
3795
|
+
} | undefined;
|
|
3752
3796
|
hotjar?: {
|
|
3753
3797
|
hjid: string;
|
|
3754
3798
|
hjsv: string;
|
|
@@ -4121,6 +4165,10 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4121
4165
|
heap?: {
|
|
4122
4166
|
appId: string;
|
|
4123
4167
|
} | undefined;
|
|
4168
|
+
hightouch?: {
|
|
4169
|
+
writeKey: string;
|
|
4170
|
+
apiHost?: string | undefined;
|
|
4171
|
+
} | undefined;
|
|
4124
4172
|
hotjar?: {
|
|
4125
4173
|
hjid: string;
|
|
4126
4174
|
hjsv: string;
|
|
@@ -4493,6 +4541,10 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4493
4541
|
heap?: {
|
|
4494
4542
|
appId: string;
|
|
4495
4543
|
} | undefined;
|
|
4544
|
+
hightouch?: {
|
|
4545
|
+
writeKey: string;
|
|
4546
|
+
apiHost?: string | undefined;
|
|
4547
|
+
} | undefined;
|
|
4496
4548
|
hotjar?: {
|
|
4497
4549
|
hjid: string;
|
|
4498
4550
|
hjsv: string;
|
|
@@ -4865,6 +4917,10 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4865
4917
|
heap?: {
|
|
4866
4918
|
appId: string;
|
|
4867
4919
|
} | undefined;
|
|
4920
|
+
hightouch?: {
|
|
4921
|
+
writeKey: string;
|
|
4922
|
+
apiHost?: string | undefined;
|
|
4923
|
+
} | undefined;
|
|
4868
4924
|
hotjar?: {
|
|
4869
4925
|
hjid: string;
|
|
4870
4926
|
hjsv: string;
|
|
@@ -5237,6 +5293,10 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5237
5293
|
heap?: {
|
|
5238
5294
|
appId: string;
|
|
5239
5295
|
} | undefined;
|
|
5296
|
+
hightouch?: {
|
|
5297
|
+
writeKey: string;
|
|
5298
|
+
apiHost?: string | undefined;
|
|
5299
|
+
} | undefined;
|
|
5240
5300
|
hotjar?: {
|
|
5241
5301
|
hjid: string;
|
|
5242
5302
|
hjsv: string;
|
|
@@ -5609,6 +5669,10 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5609
5669
|
heap?: {
|
|
5610
5670
|
appId: string;
|
|
5611
5671
|
} | undefined;
|
|
5672
|
+
hightouch?: {
|
|
5673
|
+
writeKey: string;
|
|
5674
|
+
apiHost?: string | undefined;
|
|
5675
|
+
} | undefined;
|
|
5612
5676
|
hotjar?: {
|
|
5613
5677
|
hjid: string;
|
|
5614
5678
|
hjsv: string;
|