@mintlify/validation 0.1.576 → 0.1.580
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/config.d.ts +0 -5
- package/dist/mint-config/schemas/v1/integrations.d.ts +0 -3
- package/dist/mint-config/schemas/v1/integrations.js +0 -5
- package/dist/mint-config/schemas/v2/index.d.ts +0 -152
- package/dist/mint-config/schemas/v2/properties/integrations.d.ts +0 -13
- package/dist/mint-config/schemas/v2/properties/integrations.js +0 -7
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +0 -19
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +0 -19
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +0 -19
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +0 -19
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +0 -19
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +0 -19
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +0 -13
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +0 -19
- package/dist/mint-config/upgrades/upgradeToDocsConfig.js +2 -8
- package/dist/mint-config/validateConfig.d.ts +0 -44
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -818,15 +818,12 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
818
818
|
integrations: z.ZodOptional<z.ZodObject<{
|
|
819
819
|
intercom: z.ZodOptional<z.ZodString>;
|
|
820
820
|
frontchat: z.ZodOptional<z.ZodString>;
|
|
821
|
-
osano: z.ZodOptional<z.ZodString>;
|
|
822
821
|
}, "strip", z.ZodTypeAny, {
|
|
823
822
|
intercom?: string | undefined;
|
|
824
823
|
frontchat?: string | undefined;
|
|
825
|
-
osano?: string | undefined;
|
|
826
824
|
}, {
|
|
827
825
|
intercom?: string | undefined;
|
|
828
826
|
frontchat?: string | undefined;
|
|
829
|
-
osano?: string | undefined;
|
|
830
827
|
}>>;
|
|
831
828
|
isWhiteLabeled: z.ZodOptional<z.ZodBoolean>;
|
|
832
829
|
search: z.ZodOptional<z.ZodObject<{
|
|
@@ -1102,7 +1099,6 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1102
1099
|
integrations?: {
|
|
1103
1100
|
intercom?: string | undefined;
|
|
1104
1101
|
frontchat?: string | undefined;
|
|
1105
|
-
osano?: string | undefined;
|
|
1106
1102
|
} | undefined;
|
|
1107
1103
|
isWhiteLabeled?: boolean | undefined;
|
|
1108
1104
|
search?: {
|
|
@@ -1346,7 +1342,6 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1346
1342
|
integrations?: {
|
|
1347
1343
|
intercom?: string | undefined;
|
|
1348
1344
|
frontchat?: string | undefined;
|
|
1349
|
-
osano?: string | undefined;
|
|
1350
1345
|
} | undefined;
|
|
1351
1346
|
isWhiteLabeled?: boolean | undefined;
|
|
1352
1347
|
search?: {
|
|
@@ -2,13 +2,10 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const integrationsSchema: z.ZodObject<{
|
|
3
3
|
intercom: z.ZodOptional<z.ZodString>;
|
|
4
4
|
frontchat: z.ZodOptional<z.ZodString>;
|
|
5
|
-
osano: z.ZodOptional<z.ZodString>;
|
|
6
5
|
}, "strip", z.ZodTypeAny, {
|
|
7
6
|
intercom?: string | undefined;
|
|
8
7
|
frontchat?: string | undefined;
|
|
9
|
-
osano?: string | undefined;
|
|
10
8
|
}, {
|
|
11
9
|
intercom?: string | undefined;
|
|
12
10
|
frontchat?: string | undefined;
|
|
13
|
-
osano?: string | undefined;
|
|
14
11
|
}>;
|
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
const intercomSchema = z.string().min(6, 'Must be a valid Intercom app ID');
|
|
3
3
|
const frontchatSchema = z.string().min(6, 'Must be a valid Front chat snippet id');
|
|
4
|
-
const osanoSchema = z
|
|
5
|
-
.string()
|
|
6
|
-
.startsWith('https://cmp.osano.com/', 'A valid Osano script source must start with https://cmp.osano.com/')
|
|
7
|
-
.endsWith('/osano.js', 'A valid Osano script source must end with /osano.js');
|
|
8
4
|
export const integrationsSchema = z.object({
|
|
9
5
|
intercom: intercomSchema.optional(),
|
|
10
6
|
frontchat: frontchatSchema.optional(),
|
|
11
|
-
osano: osanoSchema.optional(),
|
|
12
7
|
});
|
|
@@ -1046,13 +1046,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1046
1046
|
}, {
|
|
1047
1047
|
projectToken: string;
|
|
1048
1048
|
}>>;
|
|
1049
|
-
osano: z.ZodOptional<z.ZodObject<{
|
|
1050
|
-
scriptSource: z.ZodString;
|
|
1051
|
-
}, "strip", z.ZodTypeAny, {
|
|
1052
|
-
scriptSource: string;
|
|
1053
|
-
}, {
|
|
1054
|
-
scriptSource: string;
|
|
1055
|
-
}>>;
|
|
1056
1049
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
1057
1050
|
id: z.ZodString;
|
|
1058
1051
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1163,9 +1156,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1163
1156
|
frontchat?: {
|
|
1164
1157
|
snippetId: string;
|
|
1165
1158
|
} | undefined;
|
|
1166
|
-
osano?: {
|
|
1167
|
-
scriptSource: string;
|
|
1168
|
-
} | undefined;
|
|
1169
1159
|
telemetry?: {
|
|
1170
1160
|
enabled?: boolean | undefined;
|
|
1171
1161
|
} | undefined;
|
|
@@ -1232,9 +1222,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1232
1222
|
frontchat?: {
|
|
1233
1223
|
snippetId: string;
|
|
1234
1224
|
} | undefined;
|
|
1235
|
-
osano?: {
|
|
1236
|
-
scriptSource: string;
|
|
1237
|
-
} | undefined;
|
|
1238
1225
|
telemetry?: {
|
|
1239
1226
|
enabled?: boolean | undefined;
|
|
1240
1227
|
} | undefined;
|
|
@@ -1660,9 +1647,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1660
1647
|
frontchat?: {
|
|
1661
1648
|
snippetId: string;
|
|
1662
1649
|
} | undefined;
|
|
1663
|
-
osano?: {
|
|
1664
|
-
scriptSource: string;
|
|
1665
|
-
} | undefined;
|
|
1666
1650
|
telemetry?: {
|
|
1667
1651
|
enabled?: boolean | undefined;
|
|
1668
1652
|
} | undefined;
|
|
@@ -1985,9 +1969,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1985
1969
|
frontchat?: {
|
|
1986
1970
|
snippetId: string;
|
|
1987
1971
|
} | undefined;
|
|
1988
|
-
osano?: {
|
|
1989
|
-
scriptSource: string;
|
|
1990
|
-
} | undefined;
|
|
1991
1972
|
telemetry?: {
|
|
1992
1973
|
enabled?: boolean | undefined;
|
|
1993
1974
|
} | undefined;
|
|
@@ -3150,13 +3131,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3150
3131
|
}, {
|
|
3151
3132
|
projectToken: string;
|
|
3152
3133
|
}>>;
|
|
3153
|
-
osano: z.ZodOptional<z.ZodObject<{
|
|
3154
|
-
scriptSource: z.ZodString;
|
|
3155
|
-
}, "strip", z.ZodTypeAny, {
|
|
3156
|
-
scriptSource: string;
|
|
3157
|
-
}, {
|
|
3158
|
-
scriptSource: string;
|
|
3159
|
-
}>>;
|
|
3160
3134
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
3161
3135
|
id: z.ZodString;
|
|
3162
3136
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3267,9 +3241,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3267
3241
|
frontchat?: {
|
|
3268
3242
|
snippetId: string;
|
|
3269
3243
|
} | undefined;
|
|
3270
|
-
osano?: {
|
|
3271
|
-
scriptSource: string;
|
|
3272
|
-
} | undefined;
|
|
3273
3244
|
telemetry?: {
|
|
3274
3245
|
enabled?: boolean | undefined;
|
|
3275
3246
|
} | undefined;
|
|
@@ -3336,9 +3307,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3336
3307
|
frontchat?: {
|
|
3337
3308
|
snippetId: string;
|
|
3338
3309
|
} | undefined;
|
|
3339
|
-
osano?: {
|
|
3340
|
-
scriptSource: string;
|
|
3341
|
-
} | undefined;
|
|
3342
3310
|
telemetry?: {
|
|
3343
3311
|
enabled?: boolean | undefined;
|
|
3344
3312
|
} | undefined;
|
|
@@ -3764,9 +3732,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3764
3732
|
frontchat?: {
|
|
3765
3733
|
snippetId: string;
|
|
3766
3734
|
} | undefined;
|
|
3767
|
-
osano?: {
|
|
3768
|
-
scriptSource: string;
|
|
3769
|
-
} | undefined;
|
|
3770
3735
|
telemetry?: {
|
|
3771
3736
|
enabled?: boolean | undefined;
|
|
3772
3737
|
} | undefined;
|
|
@@ -4089,9 +4054,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4089
4054
|
frontchat?: {
|
|
4090
4055
|
snippetId: string;
|
|
4091
4056
|
} | undefined;
|
|
4092
|
-
osano?: {
|
|
4093
|
-
scriptSource: string;
|
|
4094
|
-
} | undefined;
|
|
4095
4057
|
telemetry?: {
|
|
4096
4058
|
enabled?: boolean | undefined;
|
|
4097
4059
|
} | undefined;
|
|
@@ -5254,13 +5216,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5254
5216
|
}, {
|
|
5255
5217
|
projectToken: string;
|
|
5256
5218
|
}>>;
|
|
5257
|
-
osano: z.ZodOptional<z.ZodObject<{
|
|
5258
|
-
scriptSource: z.ZodString;
|
|
5259
|
-
}, "strip", z.ZodTypeAny, {
|
|
5260
|
-
scriptSource: string;
|
|
5261
|
-
}, {
|
|
5262
|
-
scriptSource: string;
|
|
5263
|
-
}>>;
|
|
5264
5219
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
5265
5220
|
id: z.ZodString;
|
|
5266
5221
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5371,9 +5326,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5371
5326
|
frontchat?: {
|
|
5372
5327
|
snippetId: string;
|
|
5373
5328
|
} | undefined;
|
|
5374
|
-
osano?: {
|
|
5375
|
-
scriptSource: string;
|
|
5376
|
-
} | undefined;
|
|
5377
5329
|
telemetry?: {
|
|
5378
5330
|
enabled?: boolean | undefined;
|
|
5379
5331
|
} | undefined;
|
|
@@ -5440,9 +5392,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5440
5392
|
frontchat?: {
|
|
5441
5393
|
snippetId: string;
|
|
5442
5394
|
} | undefined;
|
|
5443
|
-
osano?: {
|
|
5444
|
-
scriptSource: string;
|
|
5445
|
-
} | undefined;
|
|
5446
5395
|
telemetry?: {
|
|
5447
5396
|
enabled?: boolean | undefined;
|
|
5448
5397
|
} | undefined;
|
|
@@ -5868,9 +5817,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5868
5817
|
frontchat?: {
|
|
5869
5818
|
snippetId: string;
|
|
5870
5819
|
} | undefined;
|
|
5871
|
-
osano?: {
|
|
5872
|
-
scriptSource: string;
|
|
5873
|
-
} | undefined;
|
|
5874
5820
|
telemetry?: {
|
|
5875
5821
|
enabled?: boolean | undefined;
|
|
5876
5822
|
} | undefined;
|
|
@@ -6193,9 +6139,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6193
6139
|
frontchat?: {
|
|
6194
6140
|
snippetId: string;
|
|
6195
6141
|
} | undefined;
|
|
6196
|
-
osano?: {
|
|
6197
|
-
scriptSource: string;
|
|
6198
|
-
} | undefined;
|
|
6199
6142
|
telemetry?: {
|
|
6200
6143
|
enabled?: boolean | undefined;
|
|
6201
6144
|
} | undefined;
|
|
@@ -7358,13 +7301,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7358
7301
|
}, {
|
|
7359
7302
|
projectToken: string;
|
|
7360
7303
|
}>>;
|
|
7361
|
-
osano: z.ZodOptional<z.ZodObject<{
|
|
7362
|
-
scriptSource: z.ZodString;
|
|
7363
|
-
}, "strip", z.ZodTypeAny, {
|
|
7364
|
-
scriptSource: string;
|
|
7365
|
-
}, {
|
|
7366
|
-
scriptSource: string;
|
|
7367
|
-
}>>;
|
|
7368
7304
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
7369
7305
|
id: z.ZodString;
|
|
7370
7306
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7475,9 +7411,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7475
7411
|
frontchat?: {
|
|
7476
7412
|
snippetId: string;
|
|
7477
7413
|
} | undefined;
|
|
7478
|
-
osano?: {
|
|
7479
|
-
scriptSource: string;
|
|
7480
|
-
} | undefined;
|
|
7481
7414
|
telemetry?: {
|
|
7482
7415
|
enabled?: boolean | undefined;
|
|
7483
7416
|
} | undefined;
|
|
@@ -7544,9 +7477,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7544
7477
|
frontchat?: {
|
|
7545
7478
|
snippetId: string;
|
|
7546
7479
|
} | undefined;
|
|
7547
|
-
osano?: {
|
|
7548
|
-
scriptSource: string;
|
|
7549
|
-
} | undefined;
|
|
7550
7480
|
telemetry?: {
|
|
7551
7481
|
enabled?: boolean | undefined;
|
|
7552
7482
|
} | undefined;
|
|
@@ -7972,9 +7902,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7972
7902
|
frontchat?: {
|
|
7973
7903
|
snippetId: string;
|
|
7974
7904
|
} | undefined;
|
|
7975
|
-
osano?: {
|
|
7976
|
-
scriptSource: string;
|
|
7977
|
-
} | undefined;
|
|
7978
7905
|
telemetry?: {
|
|
7979
7906
|
enabled?: boolean | undefined;
|
|
7980
7907
|
} | undefined;
|
|
@@ -8297,9 +8224,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8297
8224
|
frontchat?: {
|
|
8298
8225
|
snippetId: string;
|
|
8299
8226
|
} | undefined;
|
|
8300
|
-
osano?: {
|
|
8301
|
-
scriptSource: string;
|
|
8302
|
-
} | undefined;
|
|
8303
8227
|
telemetry?: {
|
|
8304
8228
|
enabled?: boolean | undefined;
|
|
8305
8229
|
} | undefined;
|
|
@@ -9462,13 +9386,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9462
9386
|
}, {
|
|
9463
9387
|
projectToken: string;
|
|
9464
9388
|
}>>;
|
|
9465
|
-
osano: z.ZodOptional<z.ZodObject<{
|
|
9466
|
-
scriptSource: z.ZodString;
|
|
9467
|
-
}, "strip", z.ZodTypeAny, {
|
|
9468
|
-
scriptSource: string;
|
|
9469
|
-
}, {
|
|
9470
|
-
scriptSource: string;
|
|
9471
|
-
}>>;
|
|
9472
9389
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
9473
9390
|
id: z.ZodString;
|
|
9474
9391
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9579,9 +9496,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9579
9496
|
frontchat?: {
|
|
9580
9497
|
snippetId: string;
|
|
9581
9498
|
} | undefined;
|
|
9582
|
-
osano?: {
|
|
9583
|
-
scriptSource: string;
|
|
9584
|
-
} | undefined;
|
|
9585
9499
|
telemetry?: {
|
|
9586
9500
|
enabled?: boolean | undefined;
|
|
9587
9501
|
} | undefined;
|
|
@@ -9648,9 +9562,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9648
9562
|
frontchat?: {
|
|
9649
9563
|
snippetId: string;
|
|
9650
9564
|
} | undefined;
|
|
9651
|
-
osano?: {
|
|
9652
|
-
scriptSource: string;
|
|
9653
|
-
} | undefined;
|
|
9654
9565
|
telemetry?: {
|
|
9655
9566
|
enabled?: boolean | undefined;
|
|
9656
9567
|
} | undefined;
|
|
@@ -10076,9 +9987,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10076
9987
|
frontchat?: {
|
|
10077
9988
|
snippetId: string;
|
|
10078
9989
|
} | undefined;
|
|
10079
|
-
osano?: {
|
|
10080
|
-
scriptSource: string;
|
|
10081
|
-
} | undefined;
|
|
10082
9990
|
telemetry?: {
|
|
10083
9991
|
enabled?: boolean | undefined;
|
|
10084
9992
|
} | undefined;
|
|
@@ -10401,9 +10309,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10401
10309
|
frontchat?: {
|
|
10402
10310
|
snippetId: string;
|
|
10403
10311
|
} | undefined;
|
|
10404
|
-
osano?: {
|
|
10405
|
-
scriptSource: string;
|
|
10406
|
-
} | undefined;
|
|
10407
10312
|
telemetry?: {
|
|
10408
10313
|
enabled?: boolean | undefined;
|
|
10409
10314
|
} | undefined;
|
|
@@ -11566,13 +11471,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11566
11471
|
}, {
|
|
11567
11472
|
projectToken: string;
|
|
11568
11473
|
}>>;
|
|
11569
|
-
osano: z.ZodOptional<z.ZodObject<{
|
|
11570
|
-
scriptSource: z.ZodString;
|
|
11571
|
-
}, "strip", z.ZodTypeAny, {
|
|
11572
|
-
scriptSource: string;
|
|
11573
|
-
}, {
|
|
11574
|
-
scriptSource: string;
|
|
11575
|
-
}>>;
|
|
11576
11474
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
11577
11475
|
id: z.ZodString;
|
|
11578
11476
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11683,9 +11581,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11683
11581
|
frontchat?: {
|
|
11684
11582
|
snippetId: string;
|
|
11685
11583
|
} | undefined;
|
|
11686
|
-
osano?: {
|
|
11687
|
-
scriptSource: string;
|
|
11688
|
-
} | undefined;
|
|
11689
11584
|
telemetry?: {
|
|
11690
11585
|
enabled?: boolean | undefined;
|
|
11691
11586
|
} | undefined;
|
|
@@ -11752,9 +11647,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11752
11647
|
frontchat?: {
|
|
11753
11648
|
snippetId: string;
|
|
11754
11649
|
} | undefined;
|
|
11755
|
-
osano?: {
|
|
11756
|
-
scriptSource: string;
|
|
11757
|
-
} | undefined;
|
|
11758
11650
|
telemetry?: {
|
|
11759
11651
|
enabled?: boolean | undefined;
|
|
11760
11652
|
} | undefined;
|
|
@@ -12180,9 +12072,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12180
12072
|
frontchat?: {
|
|
12181
12073
|
snippetId: string;
|
|
12182
12074
|
} | undefined;
|
|
12183
|
-
osano?: {
|
|
12184
|
-
scriptSource: string;
|
|
12185
|
-
} | undefined;
|
|
12186
12075
|
telemetry?: {
|
|
12187
12076
|
enabled?: boolean | undefined;
|
|
12188
12077
|
} | undefined;
|
|
@@ -12505,9 +12394,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12505
12394
|
frontchat?: {
|
|
12506
12395
|
snippetId: string;
|
|
12507
12396
|
} | undefined;
|
|
12508
|
-
osano?: {
|
|
12509
|
-
scriptSource: string;
|
|
12510
|
-
} | undefined;
|
|
12511
12397
|
telemetry?: {
|
|
12512
12398
|
enabled?: boolean | undefined;
|
|
12513
12399
|
} | undefined;
|
|
@@ -13670,13 +13556,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13670
13556
|
}, {
|
|
13671
13557
|
projectToken: string;
|
|
13672
13558
|
}>>;
|
|
13673
|
-
osano: z.ZodOptional<z.ZodObject<{
|
|
13674
|
-
scriptSource: z.ZodString;
|
|
13675
|
-
}, "strip", z.ZodTypeAny, {
|
|
13676
|
-
scriptSource: string;
|
|
13677
|
-
}, {
|
|
13678
|
-
scriptSource: string;
|
|
13679
|
-
}>>;
|
|
13680
13559
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
13681
13560
|
id: z.ZodString;
|
|
13682
13561
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13787,9 +13666,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13787
13666
|
frontchat?: {
|
|
13788
13667
|
snippetId: string;
|
|
13789
13668
|
} | undefined;
|
|
13790
|
-
osano?: {
|
|
13791
|
-
scriptSource: string;
|
|
13792
|
-
} | undefined;
|
|
13793
13669
|
telemetry?: {
|
|
13794
13670
|
enabled?: boolean | undefined;
|
|
13795
13671
|
} | undefined;
|
|
@@ -13856,9 +13732,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13856
13732
|
frontchat?: {
|
|
13857
13733
|
snippetId: string;
|
|
13858
13734
|
} | undefined;
|
|
13859
|
-
osano?: {
|
|
13860
|
-
scriptSource: string;
|
|
13861
|
-
} | undefined;
|
|
13862
13735
|
telemetry?: {
|
|
13863
13736
|
enabled?: boolean | undefined;
|
|
13864
13737
|
} | undefined;
|
|
@@ -14284,9 +14157,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14284
14157
|
frontchat?: {
|
|
14285
14158
|
snippetId: string;
|
|
14286
14159
|
} | undefined;
|
|
14287
|
-
osano?: {
|
|
14288
|
-
scriptSource: string;
|
|
14289
|
-
} | undefined;
|
|
14290
14160
|
telemetry?: {
|
|
14291
14161
|
enabled?: boolean | undefined;
|
|
14292
14162
|
} | undefined;
|
|
@@ -14609,9 +14479,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14609
14479
|
frontchat?: {
|
|
14610
14480
|
snippetId: string;
|
|
14611
14481
|
} | undefined;
|
|
14612
|
-
osano?: {
|
|
14613
|
-
scriptSource: string;
|
|
14614
|
-
} | undefined;
|
|
14615
14482
|
telemetry?: {
|
|
14616
14483
|
enabled?: boolean | undefined;
|
|
14617
14484
|
} | undefined;
|
|
@@ -15775,13 +15642,6 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
15775
15642
|
}, {
|
|
15776
15643
|
projectToken: string;
|
|
15777
15644
|
}>>;
|
|
15778
|
-
osano: z.ZodOptional<z.ZodObject<{
|
|
15779
|
-
scriptSource: z.ZodString;
|
|
15780
|
-
}, "strip", z.ZodTypeAny, {
|
|
15781
|
-
scriptSource: string;
|
|
15782
|
-
}, {
|
|
15783
|
-
scriptSource: string;
|
|
15784
|
-
}>>;
|
|
15785
15645
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
15786
15646
|
id: z.ZodString;
|
|
15787
15647
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15892,9 +15752,6 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
15892
15752
|
frontchat?: {
|
|
15893
15753
|
snippetId: string;
|
|
15894
15754
|
} | undefined;
|
|
15895
|
-
osano?: {
|
|
15896
|
-
scriptSource: string;
|
|
15897
|
-
} | undefined;
|
|
15898
15755
|
telemetry?: {
|
|
15899
15756
|
enabled?: boolean | undefined;
|
|
15900
15757
|
} | undefined;
|
|
@@ -15961,9 +15818,6 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
15961
15818
|
frontchat?: {
|
|
15962
15819
|
snippetId: string;
|
|
15963
15820
|
} | undefined;
|
|
15964
|
-
osano?: {
|
|
15965
|
-
scriptSource: string;
|
|
15966
|
-
} | undefined;
|
|
15967
15821
|
telemetry?: {
|
|
15968
15822
|
enabled?: boolean | undefined;
|
|
15969
15823
|
} | undefined;
|
|
@@ -16389,9 +16243,6 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
16389
16243
|
frontchat?: {
|
|
16390
16244
|
snippetId: string;
|
|
16391
16245
|
} | undefined;
|
|
16392
|
-
osano?: {
|
|
16393
|
-
scriptSource: string;
|
|
16394
|
-
} | undefined;
|
|
16395
16246
|
telemetry?: {
|
|
16396
16247
|
enabled?: boolean | undefined;
|
|
16397
16248
|
} | undefined;
|
|
@@ -16714,9 +16565,6 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
16714
16565
|
frontchat?: {
|
|
16715
16566
|
snippetId: string;
|
|
16716
16567
|
} | undefined;
|
|
16717
|
-
osano?: {
|
|
16718
|
-
scriptSource: string;
|
|
16719
|
-
} | undefined;
|
|
16720
16568
|
telemetry?: {
|
|
16721
16569
|
enabled?: boolean | undefined;
|
|
16722
16570
|
} | undefined;
|
|
@@ -104,13 +104,6 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
104
104
|
}, {
|
|
105
105
|
projectToken: string;
|
|
106
106
|
}>>;
|
|
107
|
-
osano: z.ZodOptional<z.ZodObject<{
|
|
108
|
-
scriptSource: z.ZodString;
|
|
109
|
-
}, "strip", z.ZodTypeAny, {
|
|
110
|
-
scriptSource: string;
|
|
111
|
-
}, {
|
|
112
|
-
scriptSource: string;
|
|
113
|
-
}>>;
|
|
114
107
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
115
108
|
id: z.ZodString;
|
|
116
109
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -221,9 +214,6 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
221
214
|
frontchat?: {
|
|
222
215
|
snippetId: string;
|
|
223
216
|
} | undefined;
|
|
224
|
-
osano?: {
|
|
225
|
-
scriptSource: string;
|
|
226
|
-
} | undefined;
|
|
227
217
|
telemetry?: {
|
|
228
218
|
enabled?: boolean | undefined;
|
|
229
219
|
} | undefined;
|
|
@@ -290,9 +280,6 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
290
280
|
frontchat?: {
|
|
291
281
|
snippetId: string;
|
|
292
282
|
} | undefined;
|
|
293
|
-
osano?: {
|
|
294
|
-
scriptSource: string;
|
|
295
|
-
} | undefined;
|
|
296
283
|
telemetry?: {
|
|
297
284
|
enabled?: boolean | undefined;
|
|
298
285
|
} | undefined;
|
|
@@ -62,12 +62,6 @@ const intercomSchema = z.object({
|
|
|
62
62
|
const frontchatSchema = z.object({
|
|
63
63
|
snippetId: z.string().min(6, 'Must be a valid Front chat snippet id'),
|
|
64
64
|
});
|
|
65
|
-
const osanoSchema = z.object({
|
|
66
|
-
scriptSource: z
|
|
67
|
-
.string()
|
|
68
|
-
.startsWith('https://cmp.osano.com/', 'A valid Osano script source must start with https://cmp.osano.com/')
|
|
69
|
-
.endsWith('/osano.js', 'A valid Osano script source must end with /osano.js'),
|
|
70
|
-
});
|
|
71
65
|
const telemetrySchema = z.object({
|
|
72
66
|
enabled: z.boolean().optional(),
|
|
73
67
|
});
|
|
@@ -91,7 +85,6 @@ export const integrationsSchema = z
|
|
|
91
85
|
koala: koalaConfigSchema.optional(),
|
|
92
86
|
logrocket: logrocketConfigSchema.optional(),
|
|
93
87
|
mixpanel: mixpanelConfigSchema.optional(),
|
|
94
|
-
osano: osanoSchema.optional(),
|
|
95
88
|
pirsch: pirschConfigSchema.optional(),
|
|
96
89
|
posthog: postHogConfigSchema.optional(),
|
|
97
90
|
plausible: plausibleConfigSchema.optional(),
|
|
@@ -1043,13 +1043,6 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1043
1043
|
}, {
|
|
1044
1044
|
projectToken: string;
|
|
1045
1045
|
}>>;
|
|
1046
|
-
osano: z.ZodOptional<z.ZodObject<{
|
|
1047
|
-
scriptSource: z.ZodString;
|
|
1048
|
-
}, "strip", z.ZodTypeAny, {
|
|
1049
|
-
scriptSource: string;
|
|
1050
|
-
}, {
|
|
1051
|
-
scriptSource: string;
|
|
1052
|
-
}>>;
|
|
1053
1046
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
1054
1047
|
id: z.ZodString;
|
|
1055
1048
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1160,9 +1153,6 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1160
1153
|
frontchat?: {
|
|
1161
1154
|
snippetId: string;
|
|
1162
1155
|
} | undefined;
|
|
1163
|
-
osano?: {
|
|
1164
|
-
scriptSource: string;
|
|
1165
|
-
} | undefined;
|
|
1166
1156
|
telemetry?: {
|
|
1167
1157
|
enabled?: boolean | undefined;
|
|
1168
1158
|
} | undefined;
|
|
@@ -1229,9 +1219,6 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1229
1219
|
frontchat?: {
|
|
1230
1220
|
snippetId: string;
|
|
1231
1221
|
} | undefined;
|
|
1232
|
-
osano?: {
|
|
1233
|
-
scriptSource: string;
|
|
1234
|
-
} | undefined;
|
|
1235
1222
|
telemetry?: {
|
|
1236
1223
|
enabled?: boolean | undefined;
|
|
1237
1224
|
} | undefined;
|
|
@@ -1657,9 +1644,6 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1657
1644
|
frontchat?: {
|
|
1658
1645
|
snippetId: string;
|
|
1659
1646
|
} | undefined;
|
|
1660
|
-
osano?: {
|
|
1661
|
-
scriptSource: string;
|
|
1662
|
-
} | undefined;
|
|
1663
1647
|
telemetry?: {
|
|
1664
1648
|
enabled?: boolean | undefined;
|
|
1665
1649
|
} | undefined;
|
|
@@ -1982,9 +1966,6 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1982
1966
|
frontchat?: {
|
|
1983
1967
|
snippetId: string;
|
|
1984
1968
|
} | undefined;
|
|
1985
|
-
osano?: {
|
|
1986
|
-
scriptSource: string;
|
|
1987
|
-
} | undefined;
|
|
1988
1969
|
telemetry?: {
|
|
1989
1970
|
enabled?: boolean | undefined;
|
|
1990
1971
|
} | undefined;
|
|
@@ -1043,13 +1043,6 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1043
1043
|
}, {
|
|
1044
1044
|
projectToken: string;
|
|
1045
1045
|
}>>;
|
|
1046
|
-
osano: z.ZodOptional<z.ZodObject<{
|
|
1047
|
-
scriptSource: z.ZodString;
|
|
1048
|
-
}, "strip", z.ZodTypeAny, {
|
|
1049
|
-
scriptSource: string;
|
|
1050
|
-
}, {
|
|
1051
|
-
scriptSource: string;
|
|
1052
|
-
}>>;
|
|
1053
1046
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
1054
1047
|
id: z.ZodString;
|
|
1055
1048
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1160,9 +1153,6 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1160
1153
|
frontchat?: {
|
|
1161
1154
|
snippetId: string;
|
|
1162
1155
|
} | undefined;
|
|
1163
|
-
osano?: {
|
|
1164
|
-
scriptSource: string;
|
|
1165
|
-
} | undefined;
|
|
1166
1156
|
telemetry?: {
|
|
1167
1157
|
enabled?: boolean | undefined;
|
|
1168
1158
|
} | undefined;
|
|
@@ -1229,9 +1219,6 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1229
1219
|
frontchat?: {
|
|
1230
1220
|
snippetId: string;
|
|
1231
1221
|
} | undefined;
|
|
1232
|
-
osano?: {
|
|
1233
|
-
scriptSource: string;
|
|
1234
|
-
} | undefined;
|
|
1235
1222
|
telemetry?: {
|
|
1236
1223
|
enabled?: boolean | undefined;
|
|
1237
1224
|
} | undefined;
|
|
@@ -1657,9 +1644,6 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1657
1644
|
frontchat?: {
|
|
1658
1645
|
snippetId: string;
|
|
1659
1646
|
} | undefined;
|
|
1660
|
-
osano?: {
|
|
1661
|
-
scriptSource: string;
|
|
1662
|
-
} | undefined;
|
|
1663
1647
|
telemetry?: {
|
|
1664
1648
|
enabled?: boolean | undefined;
|
|
1665
1649
|
} | undefined;
|
|
@@ -1982,9 +1966,6 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1982
1966
|
frontchat?: {
|
|
1983
1967
|
snippetId: string;
|
|
1984
1968
|
} | undefined;
|
|
1985
|
-
osano?: {
|
|
1986
|
-
scriptSource: string;
|
|
1987
|
-
} | undefined;
|
|
1988
1969
|
telemetry?: {
|
|
1989
1970
|
enabled?: boolean | undefined;
|
|
1990
1971
|
} | undefined;
|
|
@@ -1043,13 +1043,6 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1043
1043
|
}, {
|
|
1044
1044
|
projectToken: string;
|
|
1045
1045
|
}>>;
|
|
1046
|
-
osano: z.ZodOptional<z.ZodObject<{
|
|
1047
|
-
scriptSource: z.ZodString;
|
|
1048
|
-
}, "strip", z.ZodTypeAny, {
|
|
1049
|
-
scriptSource: string;
|
|
1050
|
-
}, {
|
|
1051
|
-
scriptSource: string;
|
|
1052
|
-
}>>;
|
|
1053
1046
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
1054
1047
|
id: z.ZodString;
|
|
1055
1048
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1160,9 +1153,6 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1160
1153
|
frontchat?: {
|
|
1161
1154
|
snippetId: string;
|
|
1162
1155
|
} | undefined;
|
|
1163
|
-
osano?: {
|
|
1164
|
-
scriptSource: string;
|
|
1165
|
-
} | undefined;
|
|
1166
1156
|
telemetry?: {
|
|
1167
1157
|
enabled?: boolean | undefined;
|
|
1168
1158
|
} | undefined;
|
|
@@ -1229,9 +1219,6 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1229
1219
|
frontchat?: {
|
|
1230
1220
|
snippetId: string;
|
|
1231
1221
|
} | undefined;
|
|
1232
|
-
osano?: {
|
|
1233
|
-
scriptSource: string;
|
|
1234
|
-
} | undefined;
|
|
1235
1222
|
telemetry?: {
|
|
1236
1223
|
enabled?: boolean | undefined;
|
|
1237
1224
|
} | undefined;
|
|
@@ -1657,9 +1644,6 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1657
1644
|
frontchat?: {
|
|
1658
1645
|
snippetId: string;
|
|
1659
1646
|
} | undefined;
|
|
1660
|
-
osano?: {
|
|
1661
|
-
scriptSource: string;
|
|
1662
|
-
} | undefined;
|
|
1663
1647
|
telemetry?: {
|
|
1664
1648
|
enabled?: boolean | undefined;
|
|
1665
1649
|
} | undefined;
|
|
@@ -1982,9 +1966,6 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1982
1966
|
frontchat?: {
|
|
1983
1967
|
snippetId: string;
|
|
1984
1968
|
} | undefined;
|
|
1985
|
-
osano?: {
|
|
1986
|
-
scriptSource: string;
|
|
1987
|
-
} | undefined;
|
|
1988
1969
|
telemetry?: {
|
|
1989
1970
|
enabled?: boolean | undefined;
|
|
1990
1971
|
} | undefined;
|