@mintlify/validation 0.1.739 → 0.1.741
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/editor-navigation/conversion/common.js +2 -1
- package/dist/editor-navigation/conversion/docsjson-to-tree.js +2 -1
- package/dist/editor-navigation/index.d.ts +1 -0
- package/dist/editor-navigation/index.js +1 -0
- package/dist/editor-navigation/order.d.ts +17 -0
- package/dist/editor-navigation/order.js +98 -0
- package/dist/editor-navigation/types.d.ts +1 -0
- package/dist/mint-config/schemas/v2/index.d.ts +330 -0
- package/dist/mint-config/schemas/v2/properties/integrations.d.ts +23 -0
- package/dist/mint-config/schemas/v2/properties/integrations.js +10 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +33 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +33 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +33 -0
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +33 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +33 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +33 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +33 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +23 -0
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +33 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +33 -0
- package/dist/mint-config/validateConfig.d.ts +90 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -2
|
@@ -60,6 +60,15 @@ const clarityConfigSchema = z.object({
|
|
|
60
60
|
const segmentConfigSchema = z.object({
|
|
61
61
|
key: z.string(),
|
|
62
62
|
});
|
|
63
|
+
const oneTrustConfigSchema = z.object({
|
|
64
|
+
domainScript: z.string().min(1, 'Domain script is required'),
|
|
65
|
+
categoryId: z.string().min(1, 'Category ID is required').optional(),
|
|
66
|
+
scriptSource: z
|
|
67
|
+
.string()
|
|
68
|
+
.url('Must be a valid URL')
|
|
69
|
+
.refine((url) => url.startsWith('https://'), 'Must be an HTTPS URL')
|
|
70
|
+
.optional(),
|
|
71
|
+
});
|
|
63
72
|
const intercomSchema = z.object({
|
|
64
73
|
appId: z.string().min(6, 'Must be a valid Intercom app ID'),
|
|
65
74
|
});
|
|
@@ -108,6 +117,7 @@ export const integrationsSchema = z
|
|
|
108
117
|
koala: koalaConfigSchema.optional(),
|
|
109
118
|
logrocket: logrocketConfigSchema.optional(),
|
|
110
119
|
mixpanel: mixpanelConfigSchema.optional(),
|
|
120
|
+
onetrust: oneTrustConfigSchema.optional(),
|
|
111
121
|
pirsch: pirschConfigSchema.optional(),
|
|
112
122
|
posthog: postHogConfigSchema.optional(),
|
|
113
123
|
plausible: plausibleConfigSchema.optional(),
|
|
@@ -1160,6 +1160,19 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1160
1160
|
}, {
|
|
1161
1161
|
projectToken: string;
|
|
1162
1162
|
}>>;
|
|
1163
|
+
onetrust: z.ZodOptional<z.ZodObject<{
|
|
1164
|
+
domainScript: z.ZodString;
|
|
1165
|
+
categoryId: z.ZodOptional<z.ZodString>;
|
|
1166
|
+
scriptSource: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1167
|
+
}, "strip", z.ZodTypeAny, {
|
|
1168
|
+
domainScript: string;
|
|
1169
|
+
categoryId?: string | undefined;
|
|
1170
|
+
scriptSource?: string | undefined;
|
|
1171
|
+
}, {
|
|
1172
|
+
domainScript: string;
|
|
1173
|
+
categoryId?: string | undefined;
|
|
1174
|
+
scriptSource?: string | undefined;
|
|
1175
|
+
}>>;
|
|
1163
1176
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
1164
1177
|
id: z.ZodString;
|
|
1165
1178
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1277,6 +1290,11 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1277
1290
|
frontchat?: {
|
|
1278
1291
|
snippetId: string;
|
|
1279
1292
|
} | undefined;
|
|
1293
|
+
onetrust?: {
|
|
1294
|
+
domainScript: string;
|
|
1295
|
+
categoryId?: string | undefined;
|
|
1296
|
+
scriptSource?: string | undefined;
|
|
1297
|
+
} | undefined;
|
|
1280
1298
|
telemetry?: {
|
|
1281
1299
|
enabled?: boolean | undefined;
|
|
1282
1300
|
} | undefined;
|
|
@@ -1347,6 +1365,11 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1347
1365
|
frontchat?: {
|
|
1348
1366
|
snippetId: string;
|
|
1349
1367
|
} | undefined;
|
|
1368
|
+
onetrust?: {
|
|
1369
|
+
domainScript: string;
|
|
1370
|
+
categoryId?: string | undefined;
|
|
1371
|
+
scriptSource?: string | undefined;
|
|
1372
|
+
} | undefined;
|
|
1350
1373
|
telemetry?: {
|
|
1351
1374
|
enabled?: boolean | undefined;
|
|
1352
1375
|
} | undefined;
|
|
@@ -1824,6 +1847,11 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1824
1847
|
frontchat?: {
|
|
1825
1848
|
snippetId: string;
|
|
1826
1849
|
} | undefined;
|
|
1850
|
+
onetrust?: {
|
|
1851
|
+
domainScript: string;
|
|
1852
|
+
categoryId?: string | undefined;
|
|
1853
|
+
scriptSource?: string | undefined;
|
|
1854
|
+
} | undefined;
|
|
1827
1855
|
telemetry?: {
|
|
1828
1856
|
enabled?: boolean | undefined;
|
|
1829
1857
|
} | undefined;
|
|
@@ -2200,6 +2228,11 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
2200
2228
|
frontchat?: {
|
|
2201
2229
|
snippetId: string;
|
|
2202
2230
|
} | undefined;
|
|
2231
|
+
onetrust?: {
|
|
2232
|
+
domainScript: string;
|
|
2233
|
+
categoryId?: string | undefined;
|
|
2234
|
+
scriptSource?: string | undefined;
|
|
2235
|
+
} | undefined;
|
|
2203
2236
|
telemetry?: {
|
|
2204
2237
|
enabled?: boolean | undefined;
|
|
2205
2238
|
} | undefined;
|
|
@@ -1160,6 +1160,19 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1160
1160
|
}, {
|
|
1161
1161
|
projectToken: string;
|
|
1162
1162
|
}>>;
|
|
1163
|
+
onetrust: z.ZodOptional<z.ZodObject<{
|
|
1164
|
+
domainScript: z.ZodString;
|
|
1165
|
+
categoryId: z.ZodOptional<z.ZodString>;
|
|
1166
|
+
scriptSource: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1167
|
+
}, "strip", z.ZodTypeAny, {
|
|
1168
|
+
domainScript: string;
|
|
1169
|
+
categoryId?: string | undefined;
|
|
1170
|
+
scriptSource?: string | undefined;
|
|
1171
|
+
}, {
|
|
1172
|
+
domainScript: string;
|
|
1173
|
+
categoryId?: string | undefined;
|
|
1174
|
+
scriptSource?: string | undefined;
|
|
1175
|
+
}>>;
|
|
1163
1176
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
1164
1177
|
id: z.ZodString;
|
|
1165
1178
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1277,6 +1290,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1277
1290
|
frontchat?: {
|
|
1278
1291
|
snippetId: string;
|
|
1279
1292
|
} | undefined;
|
|
1293
|
+
onetrust?: {
|
|
1294
|
+
domainScript: string;
|
|
1295
|
+
categoryId?: string | undefined;
|
|
1296
|
+
scriptSource?: string | undefined;
|
|
1297
|
+
} | undefined;
|
|
1280
1298
|
telemetry?: {
|
|
1281
1299
|
enabled?: boolean | undefined;
|
|
1282
1300
|
} | undefined;
|
|
@@ -1347,6 +1365,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1347
1365
|
frontchat?: {
|
|
1348
1366
|
snippetId: string;
|
|
1349
1367
|
} | undefined;
|
|
1368
|
+
onetrust?: {
|
|
1369
|
+
domainScript: string;
|
|
1370
|
+
categoryId?: string | undefined;
|
|
1371
|
+
scriptSource?: string | undefined;
|
|
1372
|
+
} | undefined;
|
|
1350
1373
|
telemetry?: {
|
|
1351
1374
|
enabled?: boolean | undefined;
|
|
1352
1375
|
} | undefined;
|
|
@@ -1824,6 +1847,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1824
1847
|
frontchat?: {
|
|
1825
1848
|
snippetId: string;
|
|
1826
1849
|
} | undefined;
|
|
1850
|
+
onetrust?: {
|
|
1851
|
+
domainScript: string;
|
|
1852
|
+
categoryId?: string | undefined;
|
|
1853
|
+
scriptSource?: string | undefined;
|
|
1854
|
+
} | undefined;
|
|
1827
1855
|
telemetry?: {
|
|
1828
1856
|
enabled?: boolean | undefined;
|
|
1829
1857
|
} | undefined;
|
|
@@ -2200,6 +2228,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
2200
2228
|
frontchat?: {
|
|
2201
2229
|
snippetId: string;
|
|
2202
2230
|
} | undefined;
|
|
2231
|
+
onetrust?: {
|
|
2232
|
+
domainScript: string;
|
|
2233
|
+
categoryId?: string | undefined;
|
|
2234
|
+
scriptSource?: string | undefined;
|
|
2235
|
+
} | undefined;
|
|
2203
2236
|
telemetry?: {
|
|
2204
2237
|
enabled?: boolean | undefined;
|
|
2205
2238
|
} | undefined;
|
|
@@ -1160,6 +1160,19 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1160
1160
|
}, {
|
|
1161
1161
|
projectToken: string;
|
|
1162
1162
|
}>>;
|
|
1163
|
+
onetrust: z.ZodOptional<z.ZodObject<{
|
|
1164
|
+
domainScript: z.ZodString;
|
|
1165
|
+
categoryId: z.ZodOptional<z.ZodString>;
|
|
1166
|
+
scriptSource: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1167
|
+
}, "strip", z.ZodTypeAny, {
|
|
1168
|
+
domainScript: string;
|
|
1169
|
+
categoryId?: string | undefined;
|
|
1170
|
+
scriptSource?: string | undefined;
|
|
1171
|
+
}, {
|
|
1172
|
+
domainScript: string;
|
|
1173
|
+
categoryId?: string | undefined;
|
|
1174
|
+
scriptSource?: string | undefined;
|
|
1175
|
+
}>>;
|
|
1163
1176
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
1164
1177
|
id: z.ZodString;
|
|
1165
1178
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1277,6 +1290,11 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1277
1290
|
frontchat?: {
|
|
1278
1291
|
snippetId: string;
|
|
1279
1292
|
} | undefined;
|
|
1293
|
+
onetrust?: {
|
|
1294
|
+
domainScript: string;
|
|
1295
|
+
categoryId?: string | undefined;
|
|
1296
|
+
scriptSource?: string | undefined;
|
|
1297
|
+
} | undefined;
|
|
1280
1298
|
telemetry?: {
|
|
1281
1299
|
enabled?: boolean | undefined;
|
|
1282
1300
|
} | undefined;
|
|
@@ -1347,6 +1365,11 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1347
1365
|
frontchat?: {
|
|
1348
1366
|
snippetId: string;
|
|
1349
1367
|
} | undefined;
|
|
1368
|
+
onetrust?: {
|
|
1369
|
+
domainScript: string;
|
|
1370
|
+
categoryId?: string | undefined;
|
|
1371
|
+
scriptSource?: string | undefined;
|
|
1372
|
+
} | undefined;
|
|
1350
1373
|
telemetry?: {
|
|
1351
1374
|
enabled?: boolean | undefined;
|
|
1352
1375
|
} | undefined;
|
|
@@ -1824,6 +1847,11 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1824
1847
|
frontchat?: {
|
|
1825
1848
|
snippetId: string;
|
|
1826
1849
|
} | undefined;
|
|
1850
|
+
onetrust?: {
|
|
1851
|
+
domainScript: string;
|
|
1852
|
+
categoryId?: string | undefined;
|
|
1853
|
+
scriptSource?: string | undefined;
|
|
1854
|
+
} | undefined;
|
|
1827
1855
|
telemetry?: {
|
|
1828
1856
|
enabled?: boolean | undefined;
|
|
1829
1857
|
} | undefined;
|
|
@@ -2200,6 +2228,11 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
2200
2228
|
frontchat?: {
|
|
2201
2229
|
snippetId: string;
|
|
2202
2230
|
} | undefined;
|
|
2231
|
+
onetrust?: {
|
|
2232
|
+
domainScript: string;
|
|
2233
|
+
categoryId?: string | undefined;
|
|
2234
|
+
scriptSource?: string | undefined;
|
|
2235
|
+
} | undefined;
|
|
2203
2236
|
telemetry?: {
|
|
2204
2237
|
enabled?: boolean | undefined;
|
|
2205
2238
|
} | undefined;
|
|
@@ -1160,6 +1160,19 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
1160
1160
|
}, {
|
|
1161
1161
|
projectToken: string;
|
|
1162
1162
|
}>>;
|
|
1163
|
+
onetrust: z.ZodOptional<z.ZodObject<{
|
|
1164
|
+
domainScript: z.ZodString;
|
|
1165
|
+
categoryId: z.ZodOptional<z.ZodString>;
|
|
1166
|
+
scriptSource: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1167
|
+
}, "strip", z.ZodTypeAny, {
|
|
1168
|
+
domainScript: string;
|
|
1169
|
+
categoryId?: string | undefined;
|
|
1170
|
+
scriptSource?: string | undefined;
|
|
1171
|
+
}, {
|
|
1172
|
+
domainScript: string;
|
|
1173
|
+
categoryId?: string | undefined;
|
|
1174
|
+
scriptSource?: string | undefined;
|
|
1175
|
+
}>>;
|
|
1163
1176
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
1164
1177
|
id: z.ZodString;
|
|
1165
1178
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1277,6 +1290,11 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
1277
1290
|
frontchat?: {
|
|
1278
1291
|
snippetId: string;
|
|
1279
1292
|
} | undefined;
|
|
1293
|
+
onetrust?: {
|
|
1294
|
+
domainScript: string;
|
|
1295
|
+
categoryId?: string | undefined;
|
|
1296
|
+
scriptSource?: string | undefined;
|
|
1297
|
+
} | undefined;
|
|
1280
1298
|
telemetry?: {
|
|
1281
1299
|
enabled?: boolean | undefined;
|
|
1282
1300
|
} | undefined;
|
|
@@ -1347,6 +1365,11 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
1347
1365
|
frontchat?: {
|
|
1348
1366
|
snippetId: string;
|
|
1349
1367
|
} | undefined;
|
|
1368
|
+
onetrust?: {
|
|
1369
|
+
domainScript: string;
|
|
1370
|
+
categoryId?: string | undefined;
|
|
1371
|
+
scriptSource?: string | undefined;
|
|
1372
|
+
} | undefined;
|
|
1350
1373
|
telemetry?: {
|
|
1351
1374
|
enabled?: boolean | undefined;
|
|
1352
1375
|
} | undefined;
|
|
@@ -1824,6 +1847,11 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
1824
1847
|
frontchat?: {
|
|
1825
1848
|
snippetId: string;
|
|
1826
1849
|
} | undefined;
|
|
1850
|
+
onetrust?: {
|
|
1851
|
+
domainScript: string;
|
|
1852
|
+
categoryId?: string | undefined;
|
|
1853
|
+
scriptSource?: string | undefined;
|
|
1854
|
+
} | undefined;
|
|
1827
1855
|
telemetry?: {
|
|
1828
1856
|
enabled?: boolean | undefined;
|
|
1829
1857
|
} | undefined;
|
|
@@ -2200,6 +2228,11 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
2200
2228
|
frontchat?: {
|
|
2201
2229
|
snippetId: string;
|
|
2202
2230
|
} | undefined;
|
|
2231
|
+
onetrust?: {
|
|
2232
|
+
domainScript: string;
|
|
2233
|
+
categoryId?: string | undefined;
|
|
2234
|
+
scriptSource?: string | undefined;
|
|
2235
|
+
} | undefined;
|
|
2203
2236
|
telemetry?: {
|
|
2204
2237
|
enabled?: boolean | undefined;
|
|
2205
2238
|
} | undefined;
|
|
@@ -1160,6 +1160,19 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1160
1160
|
}, {
|
|
1161
1161
|
projectToken: string;
|
|
1162
1162
|
}>>;
|
|
1163
|
+
onetrust: z.ZodOptional<z.ZodObject<{
|
|
1164
|
+
domainScript: z.ZodString;
|
|
1165
|
+
categoryId: z.ZodOptional<z.ZodString>;
|
|
1166
|
+
scriptSource: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1167
|
+
}, "strip", z.ZodTypeAny, {
|
|
1168
|
+
domainScript: string;
|
|
1169
|
+
categoryId?: string | undefined;
|
|
1170
|
+
scriptSource?: string | undefined;
|
|
1171
|
+
}, {
|
|
1172
|
+
domainScript: string;
|
|
1173
|
+
categoryId?: string | undefined;
|
|
1174
|
+
scriptSource?: string | undefined;
|
|
1175
|
+
}>>;
|
|
1163
1176
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
1164
1177
|
id: z.ZodString;
|
|
1165
1178
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1277,6 +1290,11 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1277
1290
|
frontchat?: {
|
|
1278
1291
|
snippetId: string;
|
|
1279
1292
|
} | undefined;
|
|
1293
|
+
onetrust?: {
|
|
1294
|
+
domainScript: string;
|
|
1295
|
+
categoryId?: string | undefined;
|
|
1296
|
+
scriptSource?: string | undefined;
|
|
1297
|
+
} | undefined;
|
|
1280
1298
|
telemetry?: {
|
|
1281
1299
|
enabled?: boolean | undefined;
|
|
1282
1300
|
} | undefined;
|
|
@@ -1347,6 +1365,11 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1347
1365
|
frontchat?: {
|
|
1348
1366
|
snippetId: string;
|
|
1349
1367
|
} | undefined;
|
|
1368
|
+
onetrust?: {
|
|
1369
|
+
domainScript: string;
|
|
1370
|
+
categoryId?: string | undefined;
|
|
1371
|
+
scriptSource?: string | undefined;
|
|
1372
|
+
} | undefined;
|
|
1350
1373
|
telemetry?: {
|
|
1351
1374
|
enabled?: boolean | undefined;
|
|
1352
1375
|
} | undefined;
|
|
@@ -1824,6 +1847,11 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1824
1847
|
frontchat?: {
|
|
1825
1848
|
snippetId: string;
|
|
1826
1849
|
} | undefined;
|
|
1850
|
+
onetrust?: {
|
|
1851
|
+
domainScript: string;
|
|
1852
|
+
categoryId?: string | undefined;
|
|
1853
|
+
scriptSource?: string | undefined;
|
|
1854
|
+
} | undefined;
|
|
1827
1855
|
telemetry?: {
|
|
1828
1856
|
enabled?: boolean | undefined;
|
|
1829
1857
|
} | undefined;
|
|
@@ -2200,6 +2228,11 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2200
2228
|
frontchat?: {
|
|
2201
2229
|
snippetId: string;
|
|
2202
2230
|
} | undefined;
|
|
2231
|
+
onetrust?: {
|
|
2232
|
+
domainScript: string;
|
|
2233
|
+
categoryId?: string | undefined;
|
|
2234
|
+
scriptSource?: string | undefined;
|
|
2235
|
+
} | undefined;
|
|
2203
2236
|
telemetry?: {
|
|
2204
2237
|
enabled?: boolean | undefined;
|
|
2205
2238
|
} | undefined;
|
|
@@ -1160,6 +1160,19 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1160
1160
|
}, {
|
|
1161
1161
|
projectToken: string;
|
|
1162
1162
|
}>>;
|
|
1163
|
+
onetrust: z.ZodOptional<z.ZodObject<{
|
|
1164
|
+
domainScript: z.ZodString;
|
|
1165
|
+
categoryId: z.ZodOptional<z.ZodString>;
|
|
1166
|
+
scriptSource: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1167
|
+
}, "strip", z.ZodTypeAny, {
|
|
1168
|
+
domainScript: string;
|
|
1169
|
+
categoryId?: string | undefined;
|
|
1170
|
+
scriptSource?: string | undefined;
|
|
1171
|
+
}, {
|
|
1172
|
+
domainScript: string;
|
|
1173
|
+
categoryId?: string | undefined;
|
|
1174
|
+
scriptSource?: string | undefined;
|
|
1175
|
+
}>>;
|
|
1163
1176
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
1164
1177
|
id: z.ZodString;
|
|
1165
1178
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1277,6 +1290,11 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1277
1290
|
frontchat?: {
|
|
1278
1291
|
snippetId: string;
|
|
1279
1292
|
} | undefined;
|
|
1293
|
+
onetrust?: {
|
|
1294
|
+
domainScript: string;
|
|
1295
|
+
categoryId?: string | undefined;
|
|
1296
|
+
scriptSource?: string | undefined;
|
|
1297
|
+
} | undefined;
|
|
1280
1298
|
telemetry?: {
|
|
1281
1299
|
enabled?: boolean | undefined;
|
|
1282
1300
|
} | undefined;
|
|
@@ -1347,6 +1365,11 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1347
1365
|
frontchat?: {
|
|
1348
1366
|
snippetId: string;
|
|
1349
1367
|
} | undefined;
|
|
1368
|
+
onetrust?: {
|
|
1369
|
+
domainScript: string;
|
|
1370
|
+
categoryId?: string | undefined;
|
|
1371
|
+
scriptSource?: string | undefined;
|
|
1372
|
+
} | undefined;
|
|
1350
1373
|
telemetry?: {
|
|
1351
1374
|
enabled?: boolean | undefined;
|
|
1352
1375
|
} | undefined;
|
|
@@ -1824,6 +1847,11 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1824
1847
|
frontchat?: {
|
|
1825
1848
|
snippetId: string;
|
|
1826
1849
|
} | undefined;
|
|
1850
|
+
onetrust?: {
|
|
1851
|
+
domainScript: string;
|
|
1852
|
+
categoryId?: string | undefined;
|
|
1853
|
+
scriptSource?: string | undefined;
|
|
1854
|
+
} | undefined;
|
|
1827
1855
|
telemetry?: {
|
|
1828
1856
|
enabled?: boolean | undefined;
|
|
1829
1857
|
} | undefined;
|
|
@@ -2200,6 +2228,11 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
2200
2228
|
frontchat?: {
|
|
2201
2229
|
snippetId: string;
|
|
2202
2230
|
} | undefined;
|
|
2231
|
+
onetrust?: {
|
|
2232
|
+
domainScript: string;
|
|
2233
|
+
categoryId?: string | undefined;
|
|
2234
|
+
scriptSource?: string | undefined;
|
|
2235
|
+
} | undefined;
|
|
2203
2236
|
telemetry?: {
|
|
2204
2237
|
enabled?: boolean | undefined;
|
|
2205
2238
|
} | undefined;
|
|
@@ -1160,6 +1160,19 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1160
1160
|
}, {
|
|
1161
1161
|
projectToken: string;
|
|
1162
1162
|
}>>;
|
|
1163
|
+
onetrust: z.ZodOptional<z.ZodObject<{
|
|
1164
|
+
domainScript: z.ZodString;
|
|
1165
|
+
categoryId: z.ZodOptional<z.ZodString>;
|
|
1166
|
+
scriptSource: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1167
|
+
}, "strip", z.ZodTypeAny, {
|
|
1168
|
+
domainScript: string;
|
|
1169
|
+
categoryId?: string | undefined;
|
|
1170
|
+
scriptSource?: string | undefined;
|
|
1171
|
+
}, {
|
|
1172
|
+
domainScript: string;
|
|
1173
|
+
categoryId?: string | undefined;
|
|
1174
|
+
scriptSource?: string | undefined;
|
|
1175
|
+
}>>;
|
|
1163
1176
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
1164
1177
|
id: z.ZodString;
|
|
1165
1178
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1277,6 +1290,11 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1277
1290
|
frontchat?: {
|
|
1278
1291
|
snippetId: string;
|
|
1279
1292
|
} | undefined;
|
|
1293
|
+
onetrust?: {
|
|
1294
|
+
domainScript: string;
|
|
1295
|
+
categoryId?: string | undefined;
|
|
1296
|
+
scriptSource?: string | undefined;
|
|
1297
|
+
} | undefined;
|
|
1280
1298
|
telemetry?: {
|
|
1281
1299
|
enabled?: boolean | undefined;
|
|
1282
1300
|
} | undefined;
|
|
@@ -1347,6 +1365,11 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1347
1365
|
frontchat?: {
|
|
1348
1366
|
snippetId: string;
|
|
1349
1367
|
} | undefined;
|
|
1368
|
+
onetrust?: {
|
|
1369
|
+
domainScript: string;
|
|
1370
|
+
categoryId?: string | undefined;
|
|
1371
|
+
scriptSource?: string | undefined;
|
|
1372
|
+
} | undefined;
|
|
1350
1373
|
telemetry?: {
|
|
1351
1374
|
enabled?: boolean | undefined;
|
|
1352
1375
|
} | undefined;
|
|
@@ -1824,6 +1847,11 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1824
1847
|
frontchat?: {
|
|
1825
1848
|
snippetId: string;
|
|
1826
1849
|
} | undefined;
|
|
1850
|
+
onetrust?: {
|
|
1851
|
+
domainScript: string;
|
|
1852
|
+
categoryId?: string | undefined;
|
|
1853
|
+
scriptSource?: string | undefined;
|
|
1854
|
+
} | undefined;
|
|
1827
1855
|
telemetry?: {
|
|
1828
1856
|
enabled?: boolean | undefined;
|
|
1829
1857
|
} | undefined;
|
|
@@ -2200,6 +2228,11 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
2200
2228
|
frontchat?: {
|
|
2201
2229
|
snippetId: string;
|
|
2202
2230
|
} | undefined;
|
|
2231
|
+
onetrust?: {
|
|
2232
|
+
domainScript: string;
|
|
2233
|
+
categoryId?: string | undefined;
|
|
2234
|
+
scriptSource?: string | undefined;
|
|
2235
|
+
} | undefined;
|
|
2203
2236
|
telemetry?: {
|
|
2204
2237
|
enabled?: boolean | undefined;
|
|
2205
2238
|
} | undefined;
|
|
@@ -1159,6 +1159,19 @@ export declare const standardConfigSchema: {
|
|
|
1159
1159
|
}, {
|
|
1160
1160
|
projectToken: string;
|
|
1161
1161
|
}>>;
|
|
1162
|
+
onetrust: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1163
|
+
domainScript: import("zod").ZodString;
|
|
1164
|
+
categoryId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1165
|
+
scriptSource: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
1166
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1167
|
+
domainScript: string;
|
|
1168
|
+
categoryId?: string | undefined;
|
|
1169
|
+
scriptSource?: string | undefined;
|
|
1170
|
+
}, {
|
|
1171
|
+
domainScript: string;
|
|
1172
|
+
categoryId?: string | undefined;
|
|
1173
|
+
scriptSource?: string | undefined;
|
|
1174
|
+
}>>;
|
|
1162
1175
|
pirsch: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1163
1176
|
id: import("zod").ZodString;
|
|
1164
1177
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -1276,6 +1289,11 @@ export declare const standardConfigSchema: {
|
|
|
1276
1289
|
frontchat?: {
|
|
1277
1290
|
snippetId: string;
|
|
1278
1291
|
} | undefined;
|
|
1292
|
+
onetrust?: {
|
|
1293
|
+
domainScript: string;
|
|
1294
|
+
categoryId?: string | undefined;
|
|
1295
|
+
scriptSource?: string | undefined;
|
|
1296
|
+
} | undefined;
|
|
1279
1297
|
telemetry?: {
|
|
1280
1298
|
enabled?: boolean | undefined;
|
|
1281
1299
|
} | undefined;
|
|
@@ -1346,6 +1364,11 @@ export declare const standardConfigSchema: {
|
|
|
1346
1364
|
frontchat?: {
|
|
1347
1365
|
snippetId: string;
|
|
1348
1366
|
} | undefined;
|
|
1367
|
+
onetrust?: {
|
|
1368
|
+
domainScript: string;
|
|
1369
|
+
categoryId?: string | undefined;
|
|
1370
|
+
scriptSource?: string | undefined;
|
|
1371
|
+
} | undefined;
|
|
1349
1372
|
telemetry?: {
|
|
1350
1373
|
enabled?: boolean | undefined;
|
|
1351
1374
|
} | undefined;
|
|
@@ -1160,6 +1160,19 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
1160
1160
|
}, {
|
|
1161
1161
|
projectToken: string;
|
|
1162
1162
|
}>>;
|
|
1163
|
+
onetrust: z.ZodOptional<z.ZodObject<{
|
|
1164
|
+
domainScript: z.ZodString;
|
|
1165
|
+
categoryId: z.ZodOptional<z.ZodString>;
|
|
1166
|
+
scriptSource: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1167
|
+
}, "strip", z.ZodTypeAny, {
|
|
1168
|
+
domainScript: string;
|
|
1169
|
+
categoryId?: string | undefined;
|
|
1170
|
+
scriptSource?: string | undefined;
|
|
1171
|
+
}, {
|
|
1172
|
+
domainScript: string;
|
|
1173
|
+
categoryId?: string | undefined;
|
|
1174
|
+
scriptSource?: string | undefined;
|
|
1175
|
+
}>>;
|
|
1163
1176
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
1164
1177
|
id: z.ZodString;
|
|
1165
1178
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1277,6 +1290,11 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
1277
1290
|
frontchat?: {
|
|
1278
1291
|
snippetId: string;
|
|
1279
1292
|
} | undefined;
|
|
1293
|
+
onetrust?: {
|
|
1294
|
+
domainScript: string;
|
|
1295
|
+
categoryId?: string | undefined;
|
|
1296
|
+
scriptSource?: string | undefined;
|
|
1297
|
+
} | undefined;
|
|
1280
1298
|
telemetry?: {
|
|
1281
1299
|
enabled?: boolean | undefined;
|
|
1282
1300
|
} | undefined;
|
|
@@ -1347,6 +1365,11 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
1347
1365
|
frontchat?: {
|
|
1348
1366
|
snippetId: string;
|
|
1349
1367
|
} | undefined;
|
|
1368
|
+
onetrust?: {
|
|
1369
|
+
domainScript: string;
|
|
1370
|
+
categoryId?: string | undefined;
|
|
1371
|
+
scriptSource?: string | undefined;
|
|
1372
|
+
} | undefined;
|
|
1350
1373
|
telemetry?: {
|
|
1351
1374
|
enabled?: boolean | undefined;
|
|
1352
1375
|
} | undefined;
|
|
@@ -1824,6 +1847,11 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
1824
1847
|
frontchat?: {
|
|
1825
1848
|
snippetId: string;
|
|
1826
1849
|
} | undefined;
|
|
1850
|
+
onetrust?: {
|
|
1851
|
+
domainScript: string;
|
|
1852
|
+
categoryId?: string | undefined;
|
|
1853
|
+
scriptSource?: string | undefined;
|
|
1854
|
+
} | undefined;
|
|
1827
1855
|
telemetry?: {
|
|
1828
1856
|
enabled?: boolean | undefined;
|
|
1829
1857
|
} | undefined;
|
|
@@ -2200,6 +2228,11 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
2200
2228
|
frontchat?: {
|
|
2201
2229
|
snippetId: string;
|
|
2202
2230
|
} | undefined;
|
|
2231
|
+
onetrust?: {
|
|
2232
|
+
domainScript: string;
|
|
2233
|
+
categoryId?: string | undefined;
|
|
2234
|
+
scriptSource?: string | undefined;
|
|
2235
|
+
} | undefined;
|
|
2203
2236
|
telemetry?: {
|
|
2204
2237
|
enabled?: boolean | undefined;
|
|
2205
2238
|
} | undefined;
|
|
@@ -1160,6 +1160,19 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1160
1160
|
}, {
|
|
1161
1161
|
projectToken: string;
|
|
1162
1162
|
}>>;
|
|
1163
|
+
onetrust: z.ZodOptional<z.ZodObject<{
|
|
1164
|
+
domainScript: z.ZodString;
|
|
1165
|
+
categoryId: z.ZodOptional<z.ZodString>;
|
|
1166
|
+
scriptSource: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1167
|
+
}, "strip", z.ZodTypeAny, {
|
|
1168
|
+
domainScript: string;
|
|
1169
|
+
categoryId?: string | undefined;
|
|
1170
|
+
scriptSource?: string | undefined;
|
|
1171
|
+
}, {
|
|
1172
|
+
domainScript: string;
|
|
1173
|
+
categoryId?: string | undefined;
|
|
1174
|
+
scriptSource?: string | undefined;
|
|
1175
|
+
}>>;
|
|
1163
1176
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
1164
1177
|
id: z.ZodString;
|
|
1165
1178
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1277,6 +1290,11 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1277
1290
|
frontchat?: {
|
|
1278
1291
|
snippetId: string;
|
|
1279
1292
|
} | undefined;
|
|
1293
|
+
onetrust?: {
|
|
1294
|
+
domainScript: string;
|
|
1295
|
+
categoryId?: string | undefined;
|
|
1296
|
+
scriptSource?: string | undefined;
|
|
1297
|
+
} | undefined;
|
|
1280
1298
|
telemetry?: {
|
|
1281
1299
|
enabled?: boolean | undefined;
|
|
1282
1300
|
} | undefined;
|
|
@@ -1347,6 +1365,11 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1347
1365
|
frontchat?: {
|
|
1348
1366
|
snippetId: string;
|
|
1349
1367
|
} | undefined;
|
|
1368
|
+
onetrust?: {
|
|
1369
|
+
domainScript: string;
|
|
1370
|
+
categoryId?: string | undefined;
|
|
1371
|
+
scriptSource?: string | undefined;
|
|
1372
|
+
} | undefined;
|
|
1350
1373
|
telemetry?: {
|
|
1351
1374
|
enabled?: boolean | undefined;
|
|
1352
1375
|
} | undefined;
|
|
@@ -1824,6 +1847,11 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1824
1847
|
frontchat?: {
|
|
1825
1848
|
snippetId: string;
|
|
1826
1849
|
} | undefined;
|
|
1850
|
+
onetrust?: {
|
|
1851
|
+
domainScript: string;
|
|
1852
|
+
categoryId?: string | undefined;
|
|
1853
|
+
scriptSource?: string | undefined;
|
|
1854
|
+
} | undefined;
|
|
1827
1855
|
telemetry?: {
|
|
1828
1856
|
enabled?: boolean | undefined;
|
|
1829
1857
|
} | undefined;
|
|
@@ -2200,6 +2228,11 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
2200
2228
|
frontchat?: {
|
|
2201
2229
|
snippetId: string;
|
|
2202
2230
|
} | undefined;
|
|
2231
|
+
onetrust?: {
|
|
2232
|
+
domainScript: string;
|
|
2233
|
+
categoryId?: string | undefined;
|
|
2234
|
+
scriptSource?: string | undefined;
|
|
2235
|
+
} | undefined;
|
|
2203
2236
|
telemetry?: {
|
|
2204
2237
|
enabled?: boolean | undefined;
|
|
2205
2238
|
} | undefined;
|