@keywordsai/keywordsai-sdk 0.0.7 → 0.0.9
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/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/types/logTypes.d.ts +921 -0
- package/dist/types/logTypes.js +5 -0
- package/dist/types/logTypes.js.map +1 -1
- package/package.json +4 -2
- package/dist/exporters/index.d.ts +0 -1
- package/dist/exporters/index.js +0 -2
- package/dist/exporters/index.js.map +0 -1
- package/dist/exporters/vercelExporter.d.ts +0 -42
- package/dist/exporters/vercelExporter.js +0 -548
- package/dist/exporters/vercelExporter.js.map +0 -1
package/dist/types/logTypes.d.ts
CHANGED
|
@@ -158,6 +158,19 @@ declare const MessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
158
158
|
};
|
|
159
159
|
}>, z.ZodObject<{
|
|
160
160
|
type: z.ZodString;
|
|
161
|
+
} & {
|
|
162
|
+
file: z.ZodString;
|
|
163
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
164
|
+
}, "strip", z.ZodTypeAny, {
|
|
165
|
+
type: string;
|
|
166
|
+
file: string;
|
|
167
|
+
providerData?: Record<string, any> | undefined;
|
|
168
|
+
}, {
|
|
169
|
+
type: string;
|
|
170
|
+
file: string;
|
|
171
|
+
providerData?: Record<string, any> | undefined;
|
|
172
|
+
}>, z.ZodObject<{
|
|
173
|
+
type: z.ZodString;
|
|
161
174
|
} & {
|
|
162
175
|
id: z.ZodOptional<z.ZodString>;
|
|
163
176
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -240,6 +253,10 @@ declare const MessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
240
253
|
url: string;
|
|
241
254
|
detail?: string | undefined;
|
|
242
255
|
};
|
|
256
|
+
} | {
|
|
257
|
+
type: string;
|
|
258
|
+
file: string;
|
|
259
|
+
providerData?: Record<string, any> | undefined;
|
|
243
260
|
} | {
|
|
244
261
|
type: string;
|
|
245
262
|
id?: string | undefined;
|
|
@@ -271,6 +288,10 @@ declare const MessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
271
288
|
url: string;
|
|
272
289
|
detail?: string | undefined;
|
|
273
290
|
};
|
|
291
|
+
} | {
|
|
292
|
+
type: string;
|
|
293
|
+
file: string;
|
|
294
|
+
providerData?: Record<string, any> | undefined;
|
|
274
295
|
} | {
|
|
275
296
|
type: string;
|
|
276
297
|
id?: string | undefined;
|
|
@@ -392,6 +413,10 @@ declare const MessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
392
413
|
url: string;
|
|
393
414
|
detail?: string | undefined;
|
|
394
415
|
};
|
|
416
|
+
} | {
|
|
417
|
+
type: string;
|
|
418
|
+
file: string;
|
|
419
|
+
providerData?: Record<string, any> | undefined;
|
|
395
420
|
} | {
|
|
396
421
|
type: string;
|
|
397
422
|
id?: string | undefined;
|
|
@@ -436,6 +461,10 @@ declare const MessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
436
461
|
url: string;
|
|
437
462
|
detail?: string | undefined;
|
|
438
463
|
};
|
|
464
|
+
} | {
|
|
465
|
+
type: string;
|
|
466
|
+
file: string;
|
|
467
|
+
providerData?: Record<string, any> | undefined;
|
|
439
468
|
} | {
|
|
440
469
|
type: string;
|
|
441
470
|
id?: string | undefined;
|
|
@@ -493,6 +522,10 @@ declare const MessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
493
522
|
url: string;
|
|
494
523
|
detail?: string | undefined;
|
|
495
524
|
};
|
|
525
|
+
} | {
|
|
526
|
+
type: string;
|
|
527
|
+
file: string;
|
|
528
|
+
providerData?: Record<string, any> | undefined;
|
|
496
529
|
} | {
|
|
497
530
|
type: string;
|
|
498
531
|
id?: string | undefined;
|
|
@@ -538,6 +571,10 @@ declare const MessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
538
571
|
url: string;
|
|
539
572
|
detail?: string | undefined;
|
|
540
573
|
};
|
|
574
|
+
} | {
|
|
575
|
+
type: string;
|
|
576
|
+
file: string;
|
|
577
|
+
providerData?: Record<string, any> | undefined;
|
|
541
578
|
} | {
|
|
542
579
|
type: string;
|
|
543
580
|
id?: string | undefined;
|
|
@@ -582,6 +619,10 @@ declare const MessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
582
619
|
url: string;
|
|
583
620
|
detail?: string | undefined;
|
|
584
621
|
};
|
|
622
|
+
} | {
|
|
623
|
+
type: string;
|
|
624
|
+
file: string;
|
|
625
|
+
providerData?: Record<string, any> | undefined;
|
|
585
626
|
} | {
|
|
586
627
|
type: string;
|
|
587
628
|
id?: string | undefined;
|
|
@@ -888,6 +929,19 @@ declare const BasicLLMParamsSchema: z.ZodObject<{
|
|
|
888
929
|
};
|
|
889
930
|
}>, z.ZodObject<{
|
|
890
931
|
type: z.ZodString;
|
|
932
|
+
} & {
|
|
933
|
+
file: z.ZodString;
|
|
934
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
935
|
+
}, "strip", z.ZodTypeAny, {
|
|
936
|
+
type: string;
|
|
937
|
+
file: string;
|
|
938
|
+
providerData?: Record<string, any> | undefined;
|
|
939
|
+
}, {
|
|
940
|
+
type: string;
|
|
941
|
+
file: string;
|
|
942
|
+
providerData?: Record<string, any> | undefined;
|
|
943
|
+
}>, z.ZodObject<{
|
|
944
|
+
type: z.ZodString;
|
|
891
945
|
} & {
|
|
892
946
|
id: z.ZodOptional<z.ZodString>;
|
|
893
947
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -970,6 +1024,10 @@ declare const BasicLLMParamsSchema: z.ZodObject<{
|
|
|
970
1024
|
url: string;
|
|
971
1025
|
detail?: string | undefined;
|
|
972
1026
|
};
|
|
1027
|
+
} | {
|
|
1028
|
+
type: string;
|
|
1029
|
+
file: string;
|
|
1030
|
+
providerData?: Record<string, any> | undefined;
|
|
973
1031
|
} | {
|
|
974
1032
|
type: string;
|
|
975
1033
|
id?: string | undefined;
|
|
@@ -1001,6 +1059,10 @@ declare const BasicLLMParamsSchema: z.ZodObject<{
|
|
|
1001
1059
|
url: string;
|
|
1002
1060
|
detail?: string | undefined;
|
|
1003
1061
|
};
|
|
1062
|
+
} | {
|
|
1063
|
+
type: string;
|
|
1064
|
+
file: string;
|
|
1065
|
+
providerData?: Record<string, any> | undefined;
|
|
1004
1066
|
} | {
|
|
1005
1067
|
type: string;
|
|
1006
1068
|
id?: string | undefined;
|
|
@@ -1122,6 +1184,10 @@ declare const BasicLLMParamsSchema: z.ZodObject<{
|
|
|
1122
1184
|
url: string;
|
|
1123
1185
|
detail?: string | undefined;
|
|
1124
1186
|
};
|
|
1187
|
+
} | {
|
|
1188
|
+
type: string;
|
|
1189
|
+
file: string;
|
|
1190
|
+
providerData?: Record<string, any> | undefined;
|
|
1125
1191
|
} | {
|
|
1126
1192
|
type: string;
|
|
1127
1193
|
id?: string | undefined;
|
|
@@ -1166,6 +1232,10 @@ declare const BasicLLMParamsSchema: z.ZodObject<{
|
|
|
1166
1232
|
url: string;
|
|
1167
1233
|
detail?: string | undefined;
|
|
1168
1234
|
};
|
|
1235
|
+
} | {
|
|
1236
|
+
type: string;
|
|
1237
|
+
file: string;
|
|
1238
|
+
providerData?: Record<string, any> | undefined;
|
|
1169
1239
|
} | {
|
|
1170
1240
|
type: string;
|
|
1171
1241
|
id?: string | undefined;
|
|
@@ -1223,6 +1293,10 @@ declare const BasicLLMParamsSchema: z.ZodObject<{
|
|
|
1223
1293
|
url: string;
|
|
1224
1294
|
detail?: string | undefined;
|
|
1225
1295
|
};
|
|
1296
|
+
} | {
|
|
1297
|
+
type: string;
|
|
1298
|
+
file: string;
|
|
1299
|
+
providerData?: Record<string, any> | undefined;
|
|
1226
1300
|
} | {
|
|
1227
1301
|
type: string;
|
|
1228
1302
|
id?: string | undefined;
|
|
@@ -1268,6 +1342,10 @@ declare const BasicLLMParamsSchema: z.ZodObject<{
|
|
|
1268
1342
|
url: string;
|
|
1269
1343
|
detail?: string | undefined;
|
|
1270
1344
|
};
|
|
1345
|
+
} | {
|
|
1346
|
+
type: string;
|
|
1347
|
+
file: string;
|
|
1348
|
+
providerData?: Record<string, any> | undefined;
|
|
1271
1349
|
} | {
|
|
1272
1350
|
type: string;
|
|
1273
1351
|
id?: string | undefined;
|
|
@@ -1312,6 +1390,10 @@ declare const BasicLLMParamsSchema: z.ZodObject<{
|
|
|
1312
1390
|
url: string;
|
|
1313
1391
|
detail?: string | undefined;
|
|
1314
1392
|
};
|
|
1393
|
+
} | {
|
|
1394
|
+
type: string;
|
|
1395
|
+
file: string;
|
|
1396
|
+
providerData?: Record<string, any> | undefined;
|
|
1315
1397
|
} | {
|
|
1316
1398
|
type: string;
|
|
1317
1399
|
id?: string | undefined;
|
|
@@ -1441,6 +1523,10 @@ declare const BasicLLMParamsSchema: z.ZodObject<{
|
|
|
1441
1523
|
url: string;
|
|
1442
1524
|
detail?: string | undefined;
|
|
1443
1525
|
};
|
|
1526
|
+
} | {
|
|
1527
|
+
type: string;
|
|
1528
|
+
file: string;
|
|
1529
|
+
providerData?: Record<string, any> | undefined;
|
|
1444
1530
|
} | {
|
|
1445
1531
|
type: string;
|
|
1446
1532
|
id?: string | undefined;
|
|
@@ -1486,6 +1572,10 @@ declare const BasicLLMParamsSchema: z.ZodObject<{
|
|
|
1486
1572
|
url: string;
|
|
1487
1573
|
detail?: string | undefined;
|
|
1488
1574
|
};
|
|
1575
|
+
} | {
|
|
1576
|
+
type: string;
|
|
1577
|
+
file: string;
|
|
1578
|
+
providerData?: Record<string, any> | undefined;
|
|
1489
1579
|
} | {
|
|
1490
1580
|
type: string;
|
|
1491
1581
|
id?: string | undefined;
|
|
@@ -1565,6 +1655,10 @@ declare const BasicLLMParamsSchema: z.ZodObject<{
|
|
|
1565
1655
|
url: string;
|
|
1566
1656
|
detail?: string | undefined;
|
|
1567
1657
|
};
|
|
1658
|
+
} | {
|
|
1659
|
+
type: string;
|
|
1660
|
+
file: string;
|
|
1661
|
+
providerData?: Record<string, any> | undefined;
|
|
1568
1662
|
} | {
|
|
1569
1663
|
type: string;
|
|
1570
1664
|
id?: string | undefined;
|
|
@@ -1742,6 +1836,19 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
1742
1836
|
};
|
|
1743
1837
|
}>, z.ZodObject<{
|
|
1744
1838
|
type: z.ZodString;
|
|
1839
|
+
} & {
|
|
1840
|
+
file: z.ZodString;
|
|
1841
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1842
|
+
}, "strip", z.ZodTypeAny, {
|
|
1843
|
+
type: string;
|
|
1844
|
+
file: string;
|
|
1845
|
+
providerData?: Record<string, any> | undefined;
|
|
1846
|
+
}, {
|
|
1847
|
+
type: string;
|
|
1848
|
+
file: string;
|
|
1849
|
+
providerData?: Record<string, any> | undefined;
|
|
1850
|
+
}>, z.ZodObject<{
|
|
1851
|
+
type: z.ZodString;
|
|
1745
1852
|
} & {
|
|
1746
1853
|
id: z.ZodOptional<z.ZodString>;
|
|
1747
1854
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1824,6 +1931,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
1824
1931
|
url: string;
|
|
1825
1932
|
detail?: string | undefined;
|
|
1826
1933
|
};
|
|
1934
|
+
} | {
|
|
1935
|
+
type: string;
|
|
1936
|
+
file: string;
|
|
1937
|
+
providerData?: Record<string, any> | undefined;
|
|
1827
1938
|
} | {
|
|
1828
1939
|
type: string;
|
|
1829
1940
|
id?: string | undefined;
|
|
@@ -1855,6 +1966,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
1855
1966
|
url: string;
|
|
1856
1967
|
detail?: string | undefined;
|
|
1857
1968
|
};
|
|
1969
|
+
} | {
|
|
1970
|
+
type: string;
|
|
1971
|
+
file: string;
|
|
1972
|
+
providerData?: Record<string, any> | undefined;
|
|
1858
1973
|
} | {
|
|
1859
1974
|
type: string;
|
|
1860
1975
|
id?: string | undefined;
|
|
@@ -1976,6 +2091,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
1976
2091
|
url: string;
|
|
1977
2092
|
detail?: string | undefined;
|
|
1978
2093
|
};
|
|
2094
|
+
} | {
|
|
2095
|
+
type: string;
|
|
2096
|
+
file: string;
|
|
2097
|
+
providerData?: Record<string, any> | undefined;
|
|
1979
2098
|
} | {
|
|
1980
2099
|
type: string;
|
|
1981
2100
|
id?: string | undefined;
|
|
@@ -2020,6 +2139,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2020
2139
|
url: string;
|
|
2021
2140
|
detail?: string | undefined;
|
|
2022
2141
|
};
|
|
2142
|
+
} | {
|
|
2143
|
+
type: string;
|
|
2144
|
+
file: string;
|
|
2145
|
+
providerData?: Record<string, any> | undefined;
|
|
2023
2146
|
} | {
|
|
2024
2147
|
type: string;
|
|
2025
2148
|
id?: string | undefined;
|
|
@@ -2077,6 +2200,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2077
2200
|
url: string;
|
|
2078
2201
|
detail?: string | undefined;
|
|
2079
2202
|
};
|
|
2203
|
+
} | {
|
|
2204
|
+
type: string;
|
|
2205
|
+
file: string;
|
|
2206
|
+
providerData?: Record<string, any> | undefined;
|
|
2080
2207
|
} | {
|
|
2081
2208
|
type: string;
|
|
2082
2209
|
id?: string | undefined;
|
|
@@ -2122,6 +2249,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2122
2249
|
url: string;
|
|
2123
2250
|
detail?: string | undefined;
|
|
2124
2251
|
};
|
|
2252
|
+
} | {
|
|
2253
|
+
type: string;
|
|
2254
|
+
file: string;
|
|
2255
|
+
providerData?: Record<string, any> | undefined;
|
|
2125
2256
|
} | {
|
|
2126
2257
|
type: string;
|
|
2127
2258
|
id?: string | undefined;
|
|
@@ -2166,6 +2297,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2166
2297
|
url: string;
|
|
2167
2298
|
detail?: string | undefined;
|
|
2168
2299
|
};
|
|
2300
|
+
} | {
|
|
2301
|
+
type: string;
|
|
2302
|
+
file: string;
|
|
2303
|
+
providerData?: Record<string, any> | undefined;
|
|
2169
2304
|
} | {
|
|
2170
2305
|
type: string;
|
|
2171
2306
|
id?: string | undefined;
|
|
@@ -2261,6 +2396,19 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2261
2396
|
};
|
|
2262
2397
|
}>, z.ZodObject<{
|
|
2263
2398
|
type: z.ZodString;
|
|
2399
|
+
} & {
|
|
2400
|
+
file: z.ZodString;
|
|
2401
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2402
|
+
}, "strip", z.ZodTypeAny, {
|
|
2403
|
+
type: string;
|
|
2404
|
+
file: string;
|
|
2405
|
+
providerData?: Record<string, any> | undefined;
|
|
2406
|
+
}, {
|
|
2407
|
+
type: string;
|
|
2408
|
+
file: string;
|
|
2409
|
+
providerData?: Record<string, any> | undefined;
|
|
2410
|
+
}>, z.ZodObject<{
|
|
2411
|
+
type: z.ZodString;
|
|
2264
2412
|
} & {
|
|
2265
2413
|
id: z.ZodOptional<z.ZodString>;
|
|
2266
2414
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2343,6 +2491,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2343
2491
|
url: string;
|
|
2344
2492
|
detail?: string | undefined;
|
|
2345
2493
|
};
|
|
2494
|
+
} | {
|
|
2495
|
+
type: string;
|
|
2496
|
+
file: string;
|
|
2497
|
+
providerData?: Record<string, any> | undefined;
|
|
2346
2498
|
} | {
|
|
2347
2499
|
type: string;
|
|
2348
2500
|
id?: string | undefined;
|
|
@@ -2374,6 +2526,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2374
2526
|
url: string;
|
|
2375
2527
|
detail?: string | undefined;
|
|
2376
2528
|
};
|
|
2529
|
+
} | {
|
|
2530
|
+
type: string;
|
|
2531
|
+
file: string;
|
|
2532
|
+
providerData?: Record<string, any> | undefined;
|
|
2377
2533
|
} | {
|
|
2378
2534
|
type: string;
|
|
2379
2535
|
id?: string | undefined;
|
|
@@ -2495,6 +2651,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2495
2651
|
url: string;
|
|
2496
2652
|
detail?: string | undefined;
|
|
2497
2653
|
};
|
|
2654
|
+
} | {
|
|
2655
|
+
type: string;
|
|
2656
|
+
file: string;
|
|
2657
|
+
providerData?: Record<string, any> | undefined;
|
|
2498
2658
|
} | {
|
|
2499
2659
|
type: string;
|
|
2500
2660
|
id?: string | undefined;
|
|
@@ -2539,6 +2699,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2539
2699
|
url: string;
|
|
2540
2700
|
detail?: string | undefined;
|
|
2541
2701
|
};
|
|
2702
|
+
} | {
|
|
2703
|
+
type: string;
|
|
2704
|
+
file: string;
|
|
2705
|
+
providerData?: Record<string, any> | undefined;
|
|
2542
2706
|
} | {
|
|
2543
2707
|
type: string;
|
|
2544
2708
|
id?: string | undefined;
|
|
@@ -2596,6 +2760,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2596
2760
|
url: string;
|
|
2597
2761
|
detail?: string | undefined;
|
|
2598
2762
|
};
|
|
2763
|
+
} | {
|
|
2764
|
+
type: string;
|
|
2765
|
+
file: string;
|
|
2766
|
+
providerData?: Record<string, any> | undefined;
|
|
2599
2767
|
} | {
|
|
2600
2768
|
type: string;
|
|
2601
2769
|
id?: string | undefined;
|
|
@@ -2641,6 +2809,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2641
2809
|
url: string;
|
|
2642
2810
|
detail?: string | undefined;
|
|
2643
2811
|
};
|
|
2812
|
+
} | {
|
|
2813
|
+
type: string;
|
|
2814
|
+
file: string;
|
|
2815
|
+
providerData?: Record<string, any> | undefined;
|
|
2644
2816
|
} | {
|
|
2645
2817
|
type: string;
|
|
2646
2818
|
id?: string | undefined;
|
|
@@ -2685,6 +2857,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2685
2857
|
url: string;
|
|
2686
2858
|
detail?: string | undefined;
|
|
2687
2859
|
};
|
|
2860
|
+
} | {
|
|
2861
|
+
type: string;
|
|
2862
|
+
file: string;
|
|
2863
|
+
providerData?: Record<string, any> | undefined;
|
|
2688
2864
|
} | {
|
|
2689
2865
|
type: string;
|
|
2690
2866
|
id?: string | undefined;
|
|
@@ -2780,6 +2956,19 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2780
2956
|
};
|
|
2781
2957
|
}>, z.ZodObject<{
|
|
2782
2958
|
type: z.ZodString;
|
|
2959
|
+
} & {
|
|
2960
|
+
file: z.ZodString;
|
|
2961
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2962
|
+
}, "strip", z.ZodTypeAny, {
|
|
2963
|
+
type: string;
|
|
2964
|
+
file: string;
|
|
2965
|
+
providerData?: Record<string, any> | undefined;
|
|
2966
|
+
}, {
|
|
2967
|
+
type: string;
|
|
2968
|
+
file: string;
|
|
2969
|
+
providerData?: Record<string, any> | undefined;
|
|
2970
|
+
}>, z.ZodObject<{
|
|
2971
|
+
type: z.ZodString;
|
|
2783
2972
|
} & {
|
|
2784
2973
|
id: z.ZodOptional<z.ZodString>;
|
|
2785
2974
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2862,6 +3051,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2862
3051
|
url: string;
|
|
2863
3052
|
detail?: string | undefined;
|
|
2864
3053
|
};
|
|
3054
|
+
} | {
|
|
3055
|
+
type: string;
|
|
3056
|
+
file: string;
|
|
3057
|
+
providerData?: Record<string, any> | undefined;
|
|
2865
3058
|
} | {
|
|
2866
3059
|
type: string;
|
|
2867
3060
|
id?: string | undefined;
|
|
@@ -2893,6 +3086,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
2893
3086
|
url: string;
|
|
2894
3087
|
detail?: string | undefined;
|
|
2895
3088
|
};
|
|
3089
|
+
} | {
|
|
3090
|
+
type: string;
|
|
3091
|
+
file: string;
|
|
3092
|
+
providerData?: Record<string, any> | undefined;
|
|
2896
3093
|
} | {
|
|
2897
3094
|
type: string;
|
|
2898
3095
|
id?: string | undefined;
|
|
@@ -3014,6 +3211,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
3014
3211
|
url: string;
|
|
3015
3212
|
detail?: string | undefined;
|
|
3016
3213
|
};
|
|
3214
|
+
} | {
|
|
3215
|
+
type: string;
|
|
3216
|
+
file: string;
|
|
3217
|
+
providerData?: Record<string, any> | undefined;
|
|
3017
3218
|
} | {
|
|
3018
3219
|
type: string;
|
|
3019
3220
|
id?: string | undefined;
|
|
@@ -3058,6 +3259,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
3058
3259
|
url: string;
|
|
3059
3260
|
detail?: string | undefined;
|
|
3060
3261
|
};
|
|
3262
|
+
} | {
|
|
3263
|
+
type: string;
|
|
3264
|
+
file: string;
|
|
3265
|
+
providerData?: Record<string, any> | undefined;
|
|
3061
3266
|
} | {
|
|
3062
3267
|
type: string;
|
|
3063
3268
|
id?: string | undefined;
|
|
@@ -3115,6 +3320,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
3115
3320
|
url: string;
|
|
3116
3321
|
detail?: string | undefined;
|
|
3117
3322
|
};
|
|
3323
|
+
} | {
|
|
3324
|
+
type: string;
|
|
3325
|
+
file: string;
|
|
3326
|
+
providerData?: Record<string, any> | undefined;
|
|
3118
3327
|
} | {
|
|
3119
3328
|
type: string;
|
|
3120
3329
|
id?: string | undefined;
|
|
@@ -3160,6 +3369,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
3160
3369
|
url: string;
|
|
3161
3370
|
detail?: string | undefined;
|
|
3162
3371
|
};
|
|
3372
|
+
} | {
|
|
3373
|
+
type: string;
|
|
3374
|
+
file: string;
|
|
3375
|
+
providerData?: Record<string, any> | undefined;
|
|
3163
3376
|
} | {
|
|
3164
3377
|
type: string;
|
|
3165
3378
|
id?: string | undefined;
|
|
@@ -3204,6 +3417,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
3204
3417
|
url: string;
|
|
3205
3418
|
detail?: string | undefined;
|
|
3206
3419
|
};
|
|
3420
|
+
} | {
|
|
3421
|
+
type: string;
|
|
3422
|
+
file: string;
|
|
3423
|
+
providerData?: Record<string, any> | undefined;
|
|
3207
3424
|
} | {
|
|
3208
3425
|
type: string;
|
|
3209
3426
|
id?: string | undefined;
|
|
@@ -3579,6 +3796,19 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
3579
3796
|
};
|
|
3580
3797
|
}>, z.ZodObject<{
|
|
3581
3798
|
type: z.ZodString;
|
|
3799
|
+
} & {
|
|
3800
|
+
file: z.ZodString;
|
|
3801
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3802
|
+
}, "strip", z.ZodTypeAny, {
|
|
3803
|
+
type: string;
|
|
3804
|
+
file: string;
|
|
3805
|
+
providerData?: Record<string, any> | undefined;
|
|
3806
|
+
}, {
|
|
3807
|
+
type: string;
|
|
3808
|
+
file: string;
|
|
3809
|
+
providerData?: Record<string, any> | undefined;
|
|
3810
|
+
}>, z.ZodObject<{
|
|
3811
|
+
type: z.ZodString;
|
|
3582
3812
|
} & {
|
|
3583
3813
|
id: z.ZodOptional<z.ZodString>;
|
|
3584
3814
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3661,6 +3891,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
3661
3891
|
url: string;
|
|
3662
3892
|
detail?: string | undefined;
|
|
3663
3893
|
};
|
|
3894
|
+
} | {
|
|
3895
|
+
type: string;
|
|
3896
|
+
file: string;
|
|
3897
|
+
providerData?: Record<string, any> | undefined;
|
|
3664
3898
|
} | {
|
|
3665
3899
|
type: string;
|
|
3666
3900
|
id?: string | undefined;
|
|
@@ -3692,6 +3926,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
3692
3926
|
url: string;
|
|
3693
3927
|
detail?: string | undefined;
|
|
3694
3928
|
};
|
|
3929
|
+
} | {
|
|
3930
|
+
type: string;
|
|
3931
|
+
file: string;
|
|
3932
|
+
providerData?: Record<string, any> | undefined;
|
|
3695
3933
|
} | {
|
|
3696
3934
|
type: string;
|
|
3697
3935
|
id?: string | undefined;
|
|
@@ -3813,6 +4051,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
3813
4051
|
url: string;
|
|
3814
4052
|
detail?: string | undefined;
|
|
3815
4053
|
};
|
|
4054
|
+
} | {
|
|
4055
|
+
type: string;
|
|
4056
|
+
file: string;
|
|
4057
|
+
providerData?: Record<string, any> | undefined;
|
|
3816
4058
|
} | {
|
|
3817
4059
|
type: string;
|
|
3818
4060
|
id?: string | undefined;
|
|
@@ -3857,6 +4099,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
3857
4099
|
url: string;
|
|
3858
4100
|
detail?: string | undefined;
|
|
3859
4101
|
};
|
|
4102
|
+
} | {
|
|
4103
|
+
type: string;
|
|
4104
|
+
file: string;
|
|
4105
|
+
providerData?: Record<string, any> | undefined;
|
|
3860
4106
|
} | {
|
|
3861
4107
|
type: string;
|
|
3862
4108
|
id?: string | undefined;
|
|
@@ -3914,6 +4160,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
3914
4160
|
url: string;
|
|
3915
4161
|
detail?: string | undefined;
|
|
3916
4162
|
};
|
|
4163
|
+
} | {
|
|
4164
|
+
type: string;
|
|
4165
|
+
file: string;
|
|
4166
|
+
providerData?: Record<string, any> | undefined;
|
|
3917
4167
|
} | {
|
|
3918
4168
|
type: string;
|
|
3919
4169
|
id?: string | undefined;
|
|
@@ -3959,6 +4209,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
3959
4209
|
url: string;
|
|
3960
4210
|
detail?: string | undefined;
|
|
3961
4211
|
};
|
|
4212
|
+
} | {
|
|
4213
|
+
type: string;
|
|
4214
|
+
file: string;
|
|
4215
|
+
providerData?: Record<string, any> | undefined;
|
|
3962
4216
|
} | {
|
|
3963
4217
|
type: string;
|
|
3964
4218
|
id?: string | undefined;
|
|
@@ -4003,6 +4257,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
4003
4257
|
url: string;
|
|
4004
4258
|
detail?: string | undefined;
|
|
4005
4259
|
};
|
|
4260
|
+
} | {
|
|
4261
|
+
type: string;
|
|
4262
|
+
file: string;
|
|
4263
|
+
providerData?: Record<string, any> | undefined;
|
|
4006
4264
|
} | {
|
|
4007
4265
|
type: string;
|
|
4008
4266
|
id?: string | undefined;
|
|
@@ -4135,6 +4393,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
4135
4393
|
url: string;
|
|
4136
4394
|
detail?: string | undefined;
|
|
4137
4395
|
};
|
|
4396
|
+
} | {
|
|
4397
|
+
type: string;
|
|
4398
|
+
file: string;
|
|
4399
|
+
providerData?: Record<string, any> | undefined;
|
|
4138
4400
|
} | {
|
|
4139
4401
|
type: string;
|
|
4140
4402
|
id?: string | undefined;
|
|
@@ -4180,6 +4442,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
4180
4442
|
url: string;
|
|
4181
4443
|
detail?: string | undefined;
|
|
4182
4444
|
};
|
|
4445
|
+
} | {
|
|
4446
|
+
type: string;
|
|
4447
|
+
file: string;
|
|
4448
|
+
providerData?: Record<string, any> | undefined;
|
|
4183
4449
|
} | {
|
|
4184
4450
|
type: string;
|
|
4185
4451
|
id?: string | undefined;
|
|
@@ -4225,6 +4491,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
4225
4491
|
url: string;
|
|
4226
4492
|
detail?: string | undefined;
|
|
4227
4493
|
};
|
|
4494
|
+
} | {
|
|
4495
|
+
type: string;
|
|
4496
|
+
file: string;
|
|
4497
|
+
providerData?: Record<string, any> | undefined;
|
|
4228
4498
|
} | {
|
|
4229
4499
|
type: string;
|
|
4230
4500
|
id?: string | undefined;
|
|
@@ -4270,6 +4540,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
4270
4540
|
url: string;
|
|
4271
4541
|
detail?: string | undefined;
|
|
4272
4542
|
};
|
|
4543
|
+
} | {
|
|
4544
|
+
type: string;
|
|
4545
|
+
file: string;
|
|
4546
|
+
providerData?: Record<string, any> | undefined;
|
|
4273
4547
|
} | {
|
|
4274
4548
|
type: string;
|
|
4275
4549
|
id?: string | undefined;
|
|
@@ -4315,6 +4589,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
4315
4589
|
url: string;
|
|
4316
4590
|
detail?: string | undefined;
|
|
4317
4591
|
};
|
|
4592
|
+
} | {
|
|
4593
|
+
type: string;
|
|
4594
|
+
file: string;
|
|
4595
|
+
providerData?: Record<string, any> | undefined;
|
|
4318
4596
|
} | {
|
|
4319
4597
|
type: string;
|
|
4320
4598
|
id?: string | undefined;
|
|
@@ -4360,6 +4638,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
4360
4638
|
url: string;
|
|
4361
4639
|
detail?: string | undefined;
|
|
4362
4640
|
};
|
|
4641
|
+
} | {
|
|
4642
|
+
type: string;
|
|
4643
|
+
file: string;
|
|
4644
|
+
providerData?: Record<string, any> | undefined;
|
|
4363
4645
|
} | {
|
|
4364
4646
|
type: string;
|
|
4365
4647
|
id?: string | undefined;
|
|
@@ -4534,6 +4816,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
4534
4816
|
url: string;
|
|
4535
4817
|
detail?: string | undefined;
|
|
4536
4818
|
};
|
|
4819
|
+
} | {
|
|
4820
|
+
type: string;
|
|
4821
|
+
file: string;
|
|
4822
|
+
providerData?: Record<string, any> | undefined;
|
|
4537
4823
|
} | {
|
|
4538
4824
|
type: string;
|
|
4539
4825
|
id?: string | undefined;
|
|
@@ -4579,6 +4865,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
4579
4865
|
url: string;
|
|
4580
4866
|
detail?: string | undefined;
|
|
4581
4867
|
};
|
|
4868
|
+
} | {
|
|
4869
|
+
type: string;
|
|
4870
|
+
file: string;
|
|
4871
|
+
providerData?: Record<string, any> | undefined;
|
|
4582
4872
|
} | {
|
|
4583
4873
|
type: string;
|
|
4584
4874
|
id?: string | undefined;
|
|
@@ -4690,6 +4980,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
4690
4980
|
url: string;
|
|
4691
4981
|
detail?: string | undefined;
|
|
4692
4982
|
};
|
|
4983
|
+
} | {
|
|
4984
|
+
type: string;
|
|
4985
|
+
file: string;
|
|
4986
|
+
providerData?: Record<string, any> | undefined;
|
|
4693
4987
|
} | {
|
|
4694
4988
|
type: string;
|
|
4695
4989
|
id?: string | undefined;
|
|
@@ -4748,6 +5042,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
4748
5042
|
url: string;
|
|
4749
5043
|
detail?: string | undefined;
|
|
4750
5044
|
};
|
|
5045
|
+
} | {
|
|
5046
|
+
type: string;
|
|
5047
|
+
file: string;
|
|
5048
|
+
providerData?: Record<string, any> | undefined;
|
|
4751
5049
|
} | {
|
|
4752
5050
|
type: string;
|
|
4753
5051
|
id?: string | undefined;
|
|
@@ -4806,6 +5104,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
4806
5104
|
url: string;
|
|
4807
5105
|
detail?: string | undefined;
|
|
4808
5106
|
};
|
|
5107
|
+
} | {
|
|
5108
|
+
type: string;
|
|
5109
|
+
file: string;
|
|
5110
|
+
providerData?: Record<string, any> | undefined;
|
|
4809
5111
|
} | {
|
|
4810
5112
|
type: string;
|
|
4811
5113
|
id?: string | undefined;
|
|
@@ -4998,6 +5300,10 @@ declare const KeywordsAIParamsSchema: z.ZodObject<{
|
|
|
4998
5300
|
url: string;
|
|
4999
5301
|
detail?: string | undefined;
|
|
5000
5302
|
};
|
|
5303
|
+
} | {
|
|
5304
|
+
type: string;
|
|
5305
|
+
file: string;
|
|
5306
|
+
providerData?: Record<string, any> | undefined;
|
|
5001
5307
|
} | {
|
|
5002
5308
|
type: string;
|
|
5003
5309
|
id?: string | undefined;
|
|
@@ -5144,6 +5450,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
5144
5450
|
};
|
|
5145
5451
|
}>, z.ZodObject<{
|
|
5146
5452
|
type: z.ZodString;
|
|
5453
|
+
} & {
|
|
5454
|
+
file: z.ZodString;
|
|
5455
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5456
|
+
}, "strip", z.ZodTypeAny, {
|
|
5457
|
+
type: string;
|
|
5458
|
+
file: string;
|
|
5459
|
+
providerData?: Record<string, any> | undefined;
|
|
5460
|
+
}, {
|
|
5461
|
+
type: string;
|
|
5462
|
+
file: string;
|
|
5463
|
+
providerData?: Record<string, any> | undefined;
|
|
5464
|
+
}>, z.ZodObject<{
|
|
5465
|
+
type: z.ZodString;
|
|
5147
5466
|
} & {
|
|
5148
5467
|
id: z.ZodOptional<z.ZodString>;
|
|
5149
5468
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -5226,6 +5545,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
5226
5545
|
url: string;
|
|
5227
5546
|
detail?: string | undefined;
|
|
5228
5547
|
};
|
|
5548
|
+
} | {
|
|
5549
|
+
type: string;
|
|
5550
|
+
file: string;
|
|
5551
|
+
providerData?: Record<string, any> | undefined;
|
|
5229
5552
|
} | {
|
|
5230
5553
|
type: string;
|
|
5231
5554
|
id?: string | undefined;
|
|
@@ -5257,6 +5580,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
5257
5580
|
url: string;
|
|
5258
5581
|
detail?: string | undefined;
|
|
5259
5582
|
};
|
|
5583
|
+
} | {
|
|
5584
|
+
type: string;
|
|
5585
|
+
file: string;
|
|
5586
|
+
providerData?: Record<string, any> | undefined;
|
|
5260
5587
|
} | {
|
|
5261
5588
|
type: string;
|
|
5262
5589
|
id?: string | undefined;
|
|
@@ -5378,6 +5705,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
5378
5705
|
url: string;
|
|
5379
5706
|
detail?: string | undefined;
|
|
5380
5707
|
};
|
|
5708
|
+
} | {
|
|
5709
|
+
type: string;
|
|
5710
|
+
file: string;
|
|
5711
|
+
providerData?: Record<string, any> | undefined;
|
|
5381
5712
|
} | {
|
|
5382
5713
|
type: string;
|
|
5383
5714
|
id?: string | undefined;
|
|
@@ -5422,6 +5753,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
5422
5753
|
url: string;
|
|
5423
5754
|
detail?: string | undefined;
|
|
5424
5755
|
};
|
|
5756
|
+
} | {
|
|
5757
|
+
type: string;
|
|
5758
|
+
file: string;
|
|
5759
|
+
providerData?: Record<string, any> | undefined;
|
|
5425
5760
|
} | {
|
|
5426
5761
|
type: string;
|
|
5427
5762
|
id?: string | undefined;
|
|
@@ -5479,6 +5814,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
5479
5814
|
url: string;
|
|
5480
5815
|
detail?: string | undefined;
|
|
5481
5816
|
};
|
|
5817
|
+
} | {
|
|
5818
|
+
type: string;
|
|
5819
|
+
file: string;
|
|
5820
|
+
providerData?: Record<string, any> | undefined;
|
|
5482
5821
|
} | {
|
|
5483
5822
|
type: string;
|
|
5484
5823
|
id?: string | undefined;
|
|
@@ -5524,6 +5863,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
5524
5863
|
url: string;
|
|
5525
5864
|
detail?: string | undefined;
|
|
5526
5865
|
};
|
|
5866
|
+
} | {
|
|
5867
|
+
type: string;
|
|
5868
|
+
file: string;
|
|
5869
|
+
providerData?: Record<string, any> | undefined;
|
|
5527
5870
|
} | {
|
|
5528
5871
|
type: string;
|
|
5529
5872
|
id?: string | undefined;
|
|
@@ -5568,6 +5911,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
5568
5911
|
url: string;
|
|
5569
5912
|
detail?: string | undefined;
|
|
5570
5913
|
};
|
|
5914
|
+
} | {
|
|
5915
|
+
type: string;
|
|
5916
|
+
file: string;
|
|
5917
|
+
providerData?: Record<string, any> | undefined;
|
|
5571
5918
|
} | {
|
|
5572
5919
|
type: string;
|
|
5573
5920
|
id?: string | undefined;
|
|
@@ -5663,6 +6010,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
5663
6010
|
};
|
|
5664
6011
|
}>, z.ZodObject<{
|
|
5665
6012
|
type: z.ZodString;
|
|
6013
|
+
} & {
|
|
6014
|
+
file: z.ZodString;
|
|
6015
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6016
|
+
}, "strip", z.ZodTypeAny, {
|
|
6017
|
+
type: string;
|
|
6018
|
+
file: string;
|
|
6019
|
+
providerData?: Record<string, any> | undefined;
|
|
6020
|
+
}, {
|
|
6021
|
+
type: string;
|
|
6022
|
+
file: string;
|
|
6023
|
+
providerData?: Record<string, any> | undefined;
|
|
6024
|
+
}>, z.ZodObject<{
|
|
6025
|
+
type: z.ZodString;
|
|
5666
6026
|
} & {
|
|
5667
6027
|
id: z.ZodOptional<z.ZodString>;
|
|
5668
6028
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -5745,6 +6105,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
5745
6105
|
url: string;
|
|
5746
6106
|
detail?: string | undefined;
|
|
5747
6107
|
};
|
|
6108
|
+
} | {
|
|
6109
|
+
type: string;
|
|
6110
|
+
file: string;
|
|
6111
|
+
providerData?: Record<string, any> | undefined;
|
|
5748
6112
|
} | {
|
|
5749
6113
|
type: string;
|
|
5750
6114
|
id?: string | undefined;
|
|
@@ -5776,6 +6140,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
5776
6140
|
url: string;
|
|
5777
6141
|
detail?: string | undefined;
|
|
5778
6142
|
};
|
|
6143
|
+
} | {
|
|
6144
|
+
type: string;
|
|
6145
|
+
file: string;
|
|
6146
|
+
providerData?: Record<string, any> | undefined;
|
|
5779
6147
|
} | {
|
|
5780
6148
|
type: string;
|
|
5781
6149
|
id?: string | undefined;
|
|
@@ -5897,6 +6265,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
5897
6265
|
url: string;
|
|
5898
6266
|
detail?: string | undefined;
|
|
5899
6267
|
};
|
|
6268
|
+
} | {
|
|
6269
|
+
type: string;
|
|
6270
|
+
file: string;
|
|
6271
|
+
providerData?: Record<string, any> | undefined;
|
|
5900
6272
|
} | {
|
|
5901
6273
|
type: string;
|
|
5902
6274
|
id?: string | undefined;
|
|
@@ -5941,6 +6313,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
5941
6313
|
url: string;
|
|
5942
6314
|
detail?: string | undefined;
|
|
5943
6315
|
};
|
|
6316
|
+
} | {
|
|
6317
|
+
type: string;
|
|
6318
|
+
file: string;
|
|
6319
|
+
providerData?: Record<string, any> | undefined;
|
|
5944
6320
|
} | {
|
|
5945
6321
|
type: string;
|
|
5946
6322
|
id?: string | undefined;
|
|
@@ -5998,6 +6374,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
5998
6374
|
url: string;
|
|
5999
6375
|
detail?: string | undefined;
|
|
6000
6376
|
};
|
|
6377
|
+
} | {
|
|
6378
|
+
type: string;
|
|
6379
|
+
file: string;
|
|
6380
|
+
providerData?: Record<string, any> | undefined;
|
|
6001
6381
|
} | {
|
|
6002
6382
|
type: string;
|
|
6003
6383
|
id?: string | undefined;
|
|
@@ -6043,6 +6423,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
6043
6423
|
url: string;
|
|
6044
6424
|
detail?: string | undefined;
|
|
6045
6425
|
};
|
|
6426
|
+
} | {
|
|
6427
|
+
type: string;
|
|
6428
|
+
file: string;
|
|
6429
|
+
providerData?: Record<string, any> | undefined;
|
|
6046
6430
|
} | {
|
|
6047
6431
|
type: string;
|
|
6048
6432
|
id?: string | undefined;
|
|
@@ -6087,6 +6471,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
6087
6471
|
url: string;
|
|
6088
6472
|
detail?: string | undefined;
|
|
6089
6473
|
};
|
|
6474
|
+
} | {
|
|
6475
|
+
type: string;
|
|
6476
|
+
file: string;
|
|
6477
|
+
providerData?: Record<string, any> | undefined;
|
|
6090
6478
|
} | {
|
|
6091
6479
|
type: string;
|
|
6092
6480
|
id?: string | undefined;
|
|
@@ -6182,6 +6570,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
6182
6570
|
};
|
|
6183
6571
|
}>, z.ZodObject<{
|
|
6184
6572
|
type: z.ZodString;
|
|
6573
|
+
} & {
|
|
6574
|
+
file: z.ZodString;
|
|
6575
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6576
|
+
}, "strip", z.ZodTypeAny, {
|
|
6577
|
+
type: string;
|
|
6578
|
+
file: string;
|
|
6579
|
+
providerData?: Record<string, any> | undefined;
|
|
6580
|
+
}, {
|
|
6581
|
+
type: string;
|
|
6582
|
+
file: string;
|
|
6583
|
+
providerData?: Record<string, any> | undefined;
|
|
6584
|
+
}>, z.ZodObject<{
|
|
6585
|
+
type: z.ZodString;
|
|
6185
6586
|
} & {
|
|
6186
6587
|
id: z.ZodOptional<z.ZodString>;
|
|
6187
6588
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -6264,6 +6665,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
6264
6665
|
url: string;
|
|
6265
6666
|
detail?: string | undefined;
|
|
6266
6667
|
};
|
|
6668
|
+
} | {
|
|
6669
|
+
type: string;
|
|
6670
|
+
file: string;
|
|
6671
|
+
providerData?: Record<string, any> | undefined;
|
|
6267
6672
|
} | {
|
|
6268
6673
|
type: string;
|
|
6269
6674
|
id?: string | undefined;
|
|
@@ -6295,6 +6700,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
6295
6700
|
url: string;
|
|
6296
6701
|
detail?: string | undefined;
|
|
6297
6702
|
};
|
|
6703
|
+
} | {
|
|
6704
|
+
type: string;
|
|
6705
|
+
file: string;
|
|
6706
|
+
providerData?: Record<string, any> | undefined;
|
|
6298
6707
|
} | {
|
|
6299
6708
|
type: string;
|
|
6300
6709
|
id?: string | undefined;
|
|
@@ -6416,6 +6825,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
6416
6825
|
url: string;
|
|
6417
6826
|
detail?: string | undefined;
|
|
6418
6827
|
};
|
|
6828
|
+
} | {
|
|
6829
|
+
type: string;
|
|
6830
|
+
file: string;
|
|
6831
|
+
providerData?: Record<string, any> | undefined;
|
|
6419
6832
|
} | {
|
|
6420
6833
|
type: string;
|
|
6421
6834
|
id?: string | undefined;
|
|
@@ -6460,6 +6873,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
6460
6873
|
url: string;
|
|
6461
6874
|
detail?: string | undefined;
|
|
6462
6875
|
};
|
|
6876
|
+
} | {
|
|
6877
|
+
type: string;
|
|
6878
|
+
file: string;
|
|
6879
|
+
providerData?: Record<string, any> | undefined;
|
|
6463
6880
|
} | {
|
|
6464
6881
|
type: string;
|
|
6465
6882
|
id?: string | undefined;
|
|
@@ -6517,6 +6934,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
6517
6934
|
url: string;
|
|
6518
6935
|
detail?: string | undefined;
|
|
6519
6936
|
};
|
|
6937
|
+
} | {
|
|
6938
|
+
type: string;
|
|
6939
|
+
file: string;
|
|
6940
|
+
providerData?: Record<string, any> | undefined;
|
|
6520
6941
|
} | {
|
|
6521
6942
|
type: string;
|
|
6522
6943
|
id?: string | undefined;
|
|
@@ -6562,6 +6983,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
6562
6983
|
url: string;
|
|
6563
6984
|
detail?: string | undefined;
|
|
6564
6985
|
};
|
|
6986
|
+
} | {
|
|
6987
|
+
type: string;
|
|
6988
|
+
file: string;
|
|
6989
|
+
providerData?: Record<string, any> | undefined;
|
|
6565
6990
|
} | {
|
|
6566
6991
|
type: string;
|
|
6567
6992
|
id?: string | undefined;
|
|
@@ -6606,6 +7031,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
6606
7031
|
url: string;
|
|
6607
7032
|
detail?: string | undefined;
|
|
6608
7033
|
};
|
|
7034
|
+
} | {
|
|
7035
|
+
type: string;
|
|
7036
|
+
file: string;
|
|
7037
|
+
providerData?: Record<string, any> | undefined;
|
|
6609
7038
|
} | {
|
|
6610
7039
|
type: string;
|
|
6611
7040
|
id?: string | undefined;
|
|
@@ -6981,6 +7410,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
6981
7410
|
};
|
|
6982
7411
|
}>, z.ZodObject<{
|
|
6983
7412
|
type: z.ZodString;
|
|
7413
|
+
} & {
|
|
7414
|
+
file: z.ZodString;
|
|
7415
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7416
|
+
}, "strip", z.ZodTypeAny, {
|
|
7417
|
+
type: string;
|
|
7418
|
+
file: string;
|
|
7419
|
+
providerData?: Record<string, any> | undefined;
|
|
7420
|
+
}, {
|
|
7421
|
+
type: string;
|
|
7422
|
+
file: string;
|
|
7423
|
+
providerData?: Record<string, any> | undefined;
|
|
7424
|
+
}>, z.ZodObject<{
|
|
7425
|
+
type: z.ZodString;
|
|
6984
7426
|
} & {
|
|
6985
7427
|
id: z.ZodOptional<z.ZodString>;
|
|
6986
7428
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -7063,6 +7505,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7063
7505
|
url: string;
|
|
7064
7506
|
detail?: string | undefined;
|
|
7065
7507
|
};
|
|
7508
|
+
} | {
|
|
7509
|
+
type: string;
|
|
7510
|
+
file: string;
|
|
7511
|
+
providerData?: Record<string, any> | undefined;
|
|
7066
7512
|
} | {
|
|
7067
7513
|
type: string;
|
|
7068
7514
|
id?: string | undefined;
|
|
@@ -7094,6 +7540,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7094
7540
|
url: string;
|
|
7095
7541
|
detail?: string | undefined;
|
|
7096
7542
|
};
|
|
7543
|
+
} | {
|
|
7544
|
+
type: string;
|
|
7545
|
+
file: string;
|
|
7546
|
+
providerData?: Record<string, any> | undefined;
|
|
7097
7547
|
} | {
|
|
7098
7548
|
type: string;
|
|
7099
7549
|
id?: string | undefined;
|
|
@@ -7215,6 +7665,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7215
7665
|
url: string;
|
|
7216
7666
|
detail?: string | undefined;
|
|
7217
7667
|
};
|
|
7668
|
+
} | {
|
|
7669
|
+
type: string;
|
|
7670
|
+
file: string;
|
|
7671
|
+
providerData?: Record<string, any> | undefined;
|
|
7218
7672
|
} | {
|
|
7219
7673
|
type: string;
|
|
7220
7674
|
id?: string | undefined;
|
|
@@ -7259,6 +7713,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7259
7713
|
url: string;
|
|
7260
7714
|
detail?: string | undefined;
|
|
7261
7715
|
};
|
|
7716
|
+
} | {
|
|
7717
|
+
type: string;
|
|
7718
|
+
file: string;
|
|
7719
|
+
providerData?: Record<string, any> | undefined;
|
|
7262
7720
|
} | {
|
|
7263
7721
|
type: string;
|
|
7264
7722
|
id?: string | undefined;
|
|
@@ -7316,6 +7774,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7316
7774
|
url: string;
|
|
7317
7775
|
detail?: string | undefined;
|
|
7318
7776
|
};
|
|
7777
|
+
} | {
|
|
7778
|
+
type: string;
|
|
7779
|
+
file: string;
|
|
7780
|
+
providerData?: Record<string, any> | undefined;
|
|
7319
7781
|
} | {
|
|
7320
7782
|
type: string;
|
|
7321
7783
|
id?: string | undefined;
|
|
@@ -7361,6 +7823,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7361
7823
|
url: string;
|
|
7362
7824
|
detail?: string | undefined;
|
|
7363
7825
|
};
|
|
7826
|
+
} | {
|
|
7827
|
+
type: string;
|
|
7828
|
+
file: string;
|
|
7829
|
+
providerData?: Record<string, any> | undefined;
|
|
7364
7830
|
} | {
|
|
7365
7831
|
type: string;
|
|
7366
7832
|
id?: string | undefined;
|
|
@@ -7405,6 +7871,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7405
7871
|
url: string;
|
|
7406
7872
|
detail?: string | undefined;
|
|
7407
7873
|
};
|
|
7874
|
+
} | {
|
|
7875
|
+
type: string;
|
|
7876
|
+
file: string;
|
|
7877
|
+
providerData?: Record<string, any> | undefined;
|
|
7408
7878
|
} | {
|
|
7409
7879
|
type: string;
|
|
7410
7880
|
id?: string | undefined;
|
|
@@ -7524,6 +7994,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7524
7994
|
};
|
|
7525
7995
|
}>, z.ZodObject<{
|
|
7526
7996
|
type: z.ZodString;
|
|
7997
|
+
} & {
|
|
7998
|
+
file: z.ZodString;
|
|
7999
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8000
|
+
}, "strip", z.ZodTypeAny, {
|
|
8001
|
+
type: string;
|
|
8002
|
+
file: string;
|
|
8003
|
+
providerData?: Record<string, any> | undefined;
|
|
8004
|
+
}, {
|
|
8005
|
+
type: string;
|
|
8006
|
+
file: string;
|
|
8007
|
+
providerData?: Record<string, any> | undefined;
|
|
8008
|
+
}>, z.ZodObject<{
|
|
8009
|
+
type: z.ZodString;
|
|
7527
8010
|
} & {
|
|
7528
8011
|
id: z.ZodOptional<z.ZodString>;
|
|
7529
8012
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -7606,6 +8089,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7606
8089
|
url: string;
|
|
7607
8090
|
detail?: string | undefined;
|
|
7608
8091
|
};
|
|
8092
|
+
} | {
|
|
8093
|
+
type: string;
|
|
8094
|
+
file: string;
|
|
8095
|
+
providerData?: Record<string, any> | undefined;
|
|
7609
8096
|
} | {
|
|
7610
8097
|
type: string;
|
|
7611
8098
|
id?: string | undefined;
|
|
@@ -7637,6 +8124,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7637
8124
|
url: string;
|
|
7638
8125
|
detail?: string | undefined;
|
|
7639
8126
|
};
|
|
8127
|
+
} | {
|
|
8128
|
+
type: string;
|
|
8129
|
+
file: string;
|
|
8130
|
+
providerData?: Record<string, any> | undefined;
|
|
7640
8131
|
} | {
|
|
7641
8132
|
type: string;
|
|
7642
8133
|
id?: string | undefined;
|
|
@@ -7758,6 +8249,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7758
8249
|
url: string;
|
|
7759
8250
|
detail?: string | undefined;
|
|
7760
8251
|
};
|
|
8252
|
+
} | {
|
|
8253
|
+
type: string;
|
|
8254
|
+
file: string;
|
|
8255
|
+
providerData?: Record<string, any> | undefined;
|
|
7761
8256
|
} | {
|
|
7762
8257
|
type: string;
|
|
7763
8258
|
id?: string | undefined;
|
|
@@ -7802,6 +8297,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7802
8297
|
url: string;
|
|
7803
8298
|
detail?: string | undefined;
|
|
7804
8299
|
};
|
|
8300
|
+
} | {
|
|
8301
|
+
type: string;
|
|
8302
|
+
file: string;
|
|
8303
|
+
providerData?: Record<string, any> | undefined;
|
|
7805
8304
|
} | {
|
|
7806
8305
|
type: string;
|
|
7807
8306
|
id?: string | undefined;
|
|
@@ -7859,6 +8358,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7859
8358
|
url: string;
|
|
7860
8359
|
detail?: string | undefined;
|
|
7861
8360
|
};
|
|
8361
|
+
} | {
|
|
8362
|
+
type: string;
|
|
8363
|
+
file: string;
|
|
8364
|
+
providerData?: Record<string, any> | undefined;
|
|
7862
8365
|
} | {
|
|
7863
8366
|
type: string;
|
|
7864
8367
|
id?: string | undefined;
|
|
@@ -7904,6 +8407,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7904
8407
|
url: string;
|
|
7905
8408
|
detail?: string | undefined;
|
|
7906
8409
|
};
|
|
8410
|
+
} | {
|
|
8411
|
+
type: string;
|
|
8412
|
+
file: string;
|
|
8413
|
+
providerData?: Record<string, any> | undefined;
|
|
7907
8414
|
} | {
|
|
7908
8415
|
type: string;
|
|
7909
8416
|
id?: string | undefined;
|
|
@@ -7948,6 +8455,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
7948
8455
|
url: string;
|
|
7949
8456
|
detail?: string | undefined;
|
|
7950
8457
|
};
|
|
8458
|
+
} | {
|
|
8459
|
+
type: string;
|
|
8460
|
+
file: string;
|
|
8461
|
+
providerData?: Record<string, any> | undefined;
|
|
7951
8462
|
} | {
|
|
7952
8463
|
type: string;
|
|
7953
8464
|
id?: string | undefined;
|
|
@@ -8146,6 +8657,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
8146
8657
|
};
|
|
8147
8658
|
}>, z.ZodObject<{
|
|
8148
8659
|
type: z.ZodString;
|
|
8660
|
+
} & {
|
|
8661
|
+
file: z.ZodString;
|
|
8662
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8663
|
+
}, "strip", z.ZodTypeAny, {
|
|
8664
|
+
type: string;
|
|
8665
|
+
file: string;
|
|
8666
|
+
providerData?: Record<string, any> | undefined;
|
|
8667
|
+
}, {
|
|
8668
|
+
type: string;
|
|
8669
|
+
file: string;
|
|
8670
|
+
providerData?: Record<string, any> | undefined;
|
|
8671
|
+
}>, z.ZodObject<{
|
|
8672
|
+
type: z.ZodString;
|
|
8149
8673
|
} & {
|
|
8150
8674
|
id: z.ZodOptional<z.ZodString>;
|
|
8151
8675
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -8228,6 +8752,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
8228
8752
|
url: string;
|
|
8229
8753
|
detail?: string | undefined;
|
|
8230
8754
|
};
|
|
8755
|
+
} | {
|
|
8756
|
+
type: string;
|
|
8757
|
+
file: string;
|
|
8758
|
+
providerData?: Record<string, any> | undefined;
|
|
8231
8759
|
} | {
|
|
8232
8760
|
type: string;
|
|
8233
8761
|
id?: string | undefined;
|
|
@@ -8259,6 +8787,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
8259
8787
|
url: string;
|
|
8260
8788
|
detail?: string | undefined;
|
|
8261
8789
|
};
|
|
8790
|
+
} | {
|
|
8791
|
+
type: string;
|
|
8792
|
+
file: string;
|
|
8793
|
+
providerData?: Record<string, any> | undefined;
|
|
8262
8794
|
} | {
|
|
8263
8795
|
type: string;
|
|
8264
8796
|
id?: string | undefined;
|
|
@@ -8380,6 +8912,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
8380
8912
|
url: string;
|
|
8381
8913
|
detail?: string | undefined;
|
|
8382
8914
|
};
|
|
8915
|
+
} | {
|
|
8916
|
+
type: string;
|
|
8917
|
+
file: string;
|
|
8918
|
+
providerData?: Record<string, any> | undefined;
|
|
8383
8919
|
} | {
|
|
8384
8920
|
type: string;
|
|
8385
8921
|
id?: string | undefined;
|
|
@@ -8424,6 +8960,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
8424
8960
|
url: string;
|
|
8425
8961
|
detail?: string | undefined;
|
|
8426
8962
|
};
|
|
8963
|
+
} | {
|
|
8964
|
+
type: string;
|
|
8965
|
+
file: string;
|
|
8966
|
+
providerData?: Record<string, any> | undefined;
|
|
8427
8967
|
} | {
|
|
8428
8968
|
type: string;
|
|
8429
8969
|
id?: string | undefined;
|
|
@@ -8481,6 +9021,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
8481
9021
|
url: string;
|
|
8482
9022
|
detail?: string | undefined;
|
|
8483
9023
|
};
|
|
9024
|
+
} | {
|
|
9025
|
+
type: string;
|
|
9026
|
+
file: string;
|
|
9027
|
+
providerData?: Record<string, any> | undefined;
|
|
8484
9028
|
} | {
|
|
8485
9029
|
type: string;
|
|
8486
9030
|
id?: string | undefined;
|
|
@@ -8526,6 +9070,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
8526
9070
|
url: string;
|
|
8527
9071
|
detail?: string | undefined;
|
|
8528
9072
|
};
|
|
9073
|
+
} | {
|
|
9074
|
+
type: string;
|
|
9075
|
+
file: string;
|
|
9076
|
+
providerData?: Record<string, any> | undefined;
|
|
8529
9077
|
} | {
|
|
8530
9078
|
type: string;
|
|
8531
9079
|
id?: string | undefined;
|
|
@@ -8570,6 +9118,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
8570
9118
|
url: string;
|
|
8571
9119
|
detail?: string | undefined;
|
|
8572
9120
|
};
|
|
9121
|
+
} | {
|
|
9122
|
+
type: string;
|
|
9123
|
+
file: string;
|
|
9124
|
+
providerData?: Record<string, any> | undefined;
|
|
8573
9125
|
} | {
|
|
8574
9126
|
type: string;
|
|
8575
9127
|
id?: string | undefined;
|
|
@@ -8665,6 +9217,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
8665
9217
|
};
|
|
8666
9218
|
}>, z.ZodObject<{
|
|
8667
9219
|
type: z.ZodString;
|
|
9220
|
+
} & {
|
|
9221
|
+
file: z.ZodString;
|
|
9222
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9223
|
+
}, "strip", z.ZodTypeAny, {
|
|
9224
|
+
type: string;
|
|
9225
|
+
file: string;
|
|
9226
|
+
providerData?: Record<string, any> | undefined;
|
|
9227
|
+
}, {
|
|
9228
|
+
type: string;
|
|
9229
|
+
file: string;
|
|
9230
|
+
providerData?: Record<string, any> | undefined;
|
|
9231
|
+
}>, z.ZodObject<{
|
|
9232
|
+
type: z.ZodString;
|
|
8668
9233
|
} & {
|
|
8669
9234
|
id: z.ZodOptional<z.ZodString>;
|
|
8670
9235
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -8747,6 +9312,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
8747
9312
|
url: string;
|
|
8748
9313
|
detail?: string | undefined;
|
|
8749
9314
|
};
|
|
9315
|
+
} | {
|
|
9316
|
+
type: string;
|
|
9317
|
+
file: string;
|
|
9318
|
+
providerData?: Record<string, any> | undefined;
|
|
8750
9319
|
} | {
|
|
8751
9320
|
type: string;
|
|
8752
9321
|
id?: string | undefined;
|
|
@@ -8778,6 +9347,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
8778
9347
|
url: string;
|
|
8779
9348
|
detail?: string | undefined;
|
|
8780
9349
|
};
|
|
9350
|
+
} | {
|
|
9351
|
+
type: string;
|
|
9352
|
+
file: string;
|
|
9353
|
+
providerData?: Record<string, any> | undefined;
|
|
8781
9354
|
} | {
|
|
8782
9355
|
type: string;
|
|
8783
9356
|
id?: string | undefined;
|
|
@@ -8899,6 +9472,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
8899
9472
|
url: string;
|
|
8900
9473
|
detail?: string | undefined;
|
|
8901
9474
|
};
|
|
9475
|
+
} | {
|
|
9476
|
+
type: string;
|
|
9477
|
+
file: string;
|
|
9478
|
+
providerData?: Record<string, any> | undefined;
|
|
8902
9479
|
} | {
|
|
8903
9480
|
type: string;
|
|
8904
9481
|
id?: string | undefined;
|
|
@@ -8943,6 +9520,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
8943
9520
|
url: string;
|
|
8944
9521
|
detail?: string | undefined;
|
|
8945
9522
|
};
|
|
9523
|
+
} | {
|
|
9524
|
+
type: string;
|
|
9525
|
+
file: string;
|
|
9526
|
+
providerData?: Record<string, any> | undefined;
|
|
8946
9527
|
} | {
|
|
8947
9528
|
type: string;
|
|
8948
9529
|
id?: string | undefined;
|
|
@@ -9000,6 +9581,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
9000
9581
|
url: string;
|
|
9001
9582
|
detail?: string | undefined;
|
|
9002
9583
|
};
|
|
9584
|
+
} | {
|
|
9585
|
+
type: string;
|
|
9586
|
+
file: string;
|
|
9587
|
+
providerData?: Record<string, any> | undefined;
|
|
9003
9588
|
} | {
|
|
9004
9589
|
type: string;
|
|
9005
9590
|
id?: string | undefined;
|
|
@@ -9045,6 +9630,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
9045
9630
|
url: string;
|
|
9046
9631
|
detail?: string | undefined;
|
|
9047
9632
|
};
|
|
9633
|
+
} | {
|
|
9634
|
+
type: string;
|
|
9635
|
+
file: string;
|
|
9636
|
+
providerData?: Record<string, any> | undefined;
|
|
9048
9637
|
} | {
|
|
9049
9638
|
type: string;
|
|
9050
9639
|
id?: string | undefined;
|
|
@@ -9089,6 +9678,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
9089
9678
|
url: string;
|
|
9090
9679
|
detail?: string | undefined;
|
|
9091
9680
|
};
|
|
9681
|
+
} | {
|
|
9682
|
+
type: string;
|
|
9683
|
+
file: string;
|
|
9684
|
+
providerData?: Record<string, any> | undefined;
|
|
9092
9685
|
} | {
|
|
9093
9686
|
type: string;
|
|
9094
9687
|
id?: string | undefined;
|
|
@@ -9184,6 +9777,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
9184
9777
|
};
|
|
9185
9778
|
}>, z.ZodObject<{
|
|
9186
9779
|
type: z.ZodString;
|
|
9780
|
+
} & {
|
|
9781
|
+
file: z.ZodString;
|
|
9782
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9783
|
+
}, "strip", z.ZodTypeAny, {
|
|
9784
|
+
type: string;
|
|
9785
|
+
file: string;
|
|
9786
|
+
providerData?: Record<string, any> | undefined;
|
|
9787
|
+
}, {
|
|
9788
|
+
type: string;
|
|
9789
|
+
file: string;
|
|
9790
|
+
providerData?: Record<string, any> | undefined;
|
|
9791
|
+
}>, z.ZodObject<{
|
|
9792
|
+
type: z.ZodString;
|
|
9187
9793
|
} & {
|
|
9188
9794
|
id: z.ZodOptional<z.ZodString>;
|
|
9189
9795
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -9266,6 +9872,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
9266
9872
|
url: string;
|
|
9267
9873
|
detail?: string | undefined;
|
|
9268
9874
|
};
|
|
9875
|
+
} | {
|
|
9876
|
+
type: string;
|
|
9877
|
+
file: string;
|
|
9878
|
+
providerData?: Record<string, any> | undefined;
|
|
9269
9879
|
} | {
|
|
9270
9880
|
type: string;
|
|
9271
9881
|
id?: string | undefined;
|
|
@@ -9297,6 +9907,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
9297
9907
|
url: string;
|
|
9298
9908
|
detail?: string | undefined;
|
|
9299
9909
|
};
|
|
9910
|
+
} | {
|
|
9911
|
+
type: string;
|
|
9912
|
+
file: string;
|
|
9913
|
+
providerData?: Record<string, any> | undefined;
|
|
9300
9914
|
} | {
|
|
9301
9915
|
type: string;
|
|
9302
9916
|
id?: string | undefined;
|
|
@@ -9418,6 +10032,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
9418
10032
|
url: string;
|
|
9419
10033
|
detail?: string | undefined;
|
|
9420
10034
|
};
|
|
10035
|
+
} | {
|
|
10036
|
+
type: string;
|
|
10037
|
+
file: string;
|
|
10038
|
+
providerData?: Record<string, any> | undefined;
|
|
9421
10039
|
} | {
|
|
9422
10040
|
type: string;
|
|
9423
10041
|
id?: string | undefined;
|
|
@@ -9462,6 +10080,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
9462
10080
|
url: string;
|
|
9463
10081
|
detail?: string | undefined;
|
|
9464
10082
|
};
|
|
10083
|
+
} | {
|
|
10084
|
+
type: string;
|
|
10085
|
+
file: string;
|
|
10086
|
+
providerData?: Record<string, any> | undefined;
|
|
9465
10087
|
} | {
|
|
9466
10088
|
type: string;
|
|
9467
10089
|
id?: string | undefined;
|
|
@@ -9519,6 +10141,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
9519
10141
|
url: string;
|
|
9520
10142
|
detail?: string | undefined;
|
|
9521
10143
|
};
|
|
10144
|
+
} | {
|
|
10145
|
+
type: string;
|
|
10146
|
+
file: string;
|
|
10147
|
+
providerData?: Record<string, any> | undefined;
|
|
9522
10148
|
} | {
|
|
9523
10149
|
type: string;
|
|
9524
10150
|
id?: string | undefined;
|
|
@@ -9564,6 +10190,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
9564
10190
|
url: string;
|
|
9565
10191
|
detail?: string | undefined;
|
|
9566
10192
|
};
|
|
10193
|
+
} | {
|
|
10194
|
+
type: string;
|
|
10195
|
+
file: string;
|
|
10196
|
+
providerData?: Record<string, any> | undefined;
|
|
9567
10197
|
} | {
|
|
9568
10198
|
type: string;
|
|
9569
10199
|
id?: string | undefined;
|
|
@@ -9608,6 +10238,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
9608
10238
|
url: string;
|
|
9609
10239
|
detail?: string | undefined;
|
|
9610
10240
|
};
|
|
10241
|
+
} | {
|
|
10242
|
+
type: string;
|
|
10243
|
+
file: string;
|
|
10244
|
+
providerData?: Record<string, any> | undefined;
|
|
9611
10245
|
} | {
|
|
9612
10246
|
type: string;
|
|
9613
10247
|
id?: string | undefined;
|
|
@@ -9983,6 +10617,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
9983
10617
|
};
|
|
9984
10618
|
}>, z.ZodObject<{
|
|
9985
10619
|
type: z.ZodString;
|
|
10620
|
+
} & {
|
|
10621
|
+
file: z.ZodString;
|
|
10622
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10623
|
+
}, "strip", z.ZodTypeAny, {
|
|
10624
|
+
type: string;
|
|
10625
|
+
file: string;
|
|
10626
|
+
providerData?: Record<string, any> | undefined;
|
|
10627
|
+
}, {
|
|
10628
|
+
type: string;
|
|
10629
|
+
file: string;
|
|
10630
|
+
providerData?: Record<string, any> | undefined;
|
|
10631
|
+
}>, z.ZodObject<{
|
|
10632
|
+
type: z.ZodString;
|
|
9986
10633
|
} & {
|
|
9987
10634
|
id: z.ZodOptional<z.ZodString>;
|
|
9988
10635
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -10065,6 +10712,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10065
10712
|
url: string;
|
|
10066
10713
|
detail?: string | undefined;
|
|
10067
10714
|
};
|
|
10715
|
+
} | {
|
|
10716
|
+
type: string;
|
|
10717
|
+
file: string;
|
|
10718
|
+
providerData?: Record<string, any> | undefined;
|
|
10068
10719
|
} | {
|
|
10069
10720
|
type: string;
|
|
10070
10721
|
id?: string | undefined;
|
|
@@ -10096,6 +10747,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10096
10747
|
url: string;
|
|
10097
10748
|
detail?: string | undefined;
|
|
10098
10749
|
};
|
|
10750
|
+
} | {
|
|
10751
|
+
type: string;
|
|
10752
|
+
file: string;
|
|
10753
|
+
providerData?: Record<string, any> | undefined;
|
|
10099
10754
|
} | {
|
|
10100
10755
|
type: string;
|
|
10101
10756
|
id?: string | undefined;
|
|
@@ -10217,6 +10872,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10217
10872
|
url: string;
|
|
10218
10873
|
detail?: string | undefined;
|
|
10219
10874
|
};
|
|
10875
|
+
} | {
|
|
10876
|
+
type: string;
|
|
10877
|
+
file: string;
|
|
10878
|
+
providerData?: Record<string, any> | undefined;
|
|
10220
10879
|
} | {
|
|
10221
10880
|
type: string;
|
|
10222
10881
|
id?: string | undefined;
|
|
@@ -10261,6 +10920,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10261
10920
|
url: string;
|
|
10262
10921
|
detail?: string | undefined;
|
|
10263
10922
|
};
|
|
10923
|
+
} | {
|
|
10924
|
+
type: string;
|
|
10925
|
+
file: string;
|
|
10926
|
+
providerData?: Record<string, any> | undefined;
|
|
10264
10927
|
} | {
|
|
10265
10928
|
type: string;
|
|
10266
10929
|
id?: string | undefined;
|
|
@@ -10318,6 +10981,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10318
10981
|
url: string;
|
|
10319
10982
|
detail?: string | undefined;
|
|
10320
10983
|
};
|
|
10984
|
+
} | {
|
|
10985
|
+
type: string;
|
|
10986
|
+
file: string;
|
|
10987
|
+
providerData?: Record<string, any> | undefined;
|
|
10321
10988
|
} | {
|
|
10322
10989
|
type: string;
|
|
10323
10990
|
id?: string | undefined;
|
|
@@ -10363,6 +11030,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10363
11030
|
url: string;
|
|
10364
11031
|
detail?: string | undefined;
|
|
10365
11032
|
};
|
|
11033
|
+
} | {
|
|
11034
|
+
type: string;
|
|
11035
|
+
file: string;
|
|
11036
|
+
providerData?: Record<string, any> | undefined;
|
|
10366
11037
|
} | {
|
|
10367
11038
|
type: string;
|
|
10368
11039
|
id?: string | undefined;
|
|
@@ -10407,6 +11078,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10407
11078
|
url: string;
|
|
10408
11079
|
detail?: string | undefined;
|
|
10409
11080
|
};
|
|
11081
|
+
} | {
|
|
11082
|
+
type: string;
|
|
11083
|
+
file: string;
|
|
11084
|
+
providerData?: Record<string, any> | undefined;
|
|
10410
11085
|
} | {
|
|
10411
11086
|
type: string;
|
|
10412
11087
|
id?: string | undefined;
|
|
@@ -10526,6 +11201,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10526
11201
|
};
|
|
10527
11202
|
}>, z.ZodObject<{
|
|
10528
11203
|
type: z.ZodString;
|
|
11204
|
+
} & {
|
|
11205
|
+
file: z.ZodString;
|
|
11206
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11207
|
+
}, "strip", z.ZodTypeAny, {
|
|
11208
|
+
type: string;
|
|
11209
|
+
file: string;
|
|
11210
|
+
providerData?: Record<string, any> | undefined;
|
|
11211
|
+
}, {
|
|
11212
|
+
type: string;
|
|
11213
|
+
file: string;
|
|
11214
|
+
providerData?: Record<string, any> | undefined;
|
|
11215
|
+
}>, z.ZodObject<{
|
|
11216
|
+
type: z.ZodString;
|
|
10529
11217
|
} & {
|
|
10530
11218
|
id: z.ZodOptional<z.ZodString>;
|
|
10531
11219
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -10608,6 +11296,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10608
11296
|
url: string;
|
|
10609
11297
|
detail?: string | undefined;
|
|
10610
11298
|
};
|
|
11299
|
+
} | {
|
|
11300
|
+
type: string;
|
|
11301
|
+
file: string;
|
|
11302
|
+
providerData?: Record<string, any> | undefined;
|
|
10611
11303
|
} | {
|
|
10612
11304
|
type: string;
|
|
10613
11305
|
id?: string | undefined;
|
|
@@ -10639,6 +11331,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10639
11331
|
url: string;
|
|
10640
11332
|
detail?: string | undefined;
|
|
10641
11333
|
};
|
|
11334
|
+
} | {
|
|
11335
|
+
type: string;
|
|
11336
|
+
file: string;
|
|
11337
|
+
providerData?: Record<string, any> | undefined;
|
|
10642
11338
|
} | {
|
|
10643
11339
|
type: string;
|
|
10644
11340
|
id?: string | undefined;
|
|
@@ -10760,6 +11456,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10760
11456
|
url: string;
|
|
10761
11457
|
detail?: string | undefined;
|
|
10762
11458
|
};
|
|
11459
|
+
} | {
|
|
11460
|
+
type: string;
|
|
11461
|
+
file: string;
|
|
11462
|
+
providerData?: Record<string, any> | undefined;
|
|
10763
11463
|
} | {
|
|
10764
11464
|
type: string;
|
|
10765
11465
|
id?: string | undefined;
|
|
@@ -10804,6 +11504,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10804
11504
|
url: string;
|
|
10805
11505
|
detail?: string | undefined;
|
|
10806
11506
|
};
|
|
11507
|
+
} | {
|
|
11508
|
+
type: string;
|
|
11509
|
+
file: string;
|
|
11510
|
+
providerData?: Record<string, any> | undefined;
|
|
10807
11511
|
} | {
|
|
10808
11512
|
type: string;
|
|
10809
11513
|
id?: string | undefined;
|
|
@@ -10861,6 +11565,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10861
11565
|
url: string;
|
|
10862
11566
|
detail?: string | undefined;
|
|
10863
11567
|
};
|
|
11568
|
+
} | {
|
|
11569
|
+
type: string;
|
|
11570
|
+
file: string;
|
|
11571
|
+
providerData?: Record<string, any> | undefined;
|
|
10864
11572
|
} | {
|
|
10865
11573
|
type: string;
|
|
10866
11574
|
id?: string | undefined;
|
|
@@ -10906,6 +11614,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10906
11614
|
url: string;
|
|
10907
11615
|
detail?: string | undefined;
|
|
10908
11616
|
};
|
|
11617
|
+
} | {
|
|
11618
|
+
type: string;
|
|
11619
|
+
file: string;
|
|
11620
|
+
providerData?: Record<string, any> | undefined;
|
|
10909
11621
|
} | {
|
|
10910
11622
|
type: string;
|
|
10911
11623
|
id?: string | undefined;
|
|
@@ -10950,6 +11662,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
10950
11662
|
url: string;
|
|
10951
11663
|
detail?: string | undefined;
|
|
10952
11664
|
};
|
|
11665
|
+
} | {
|
|
11666
|
+
type: string;
|
|
11667
|
+
file: string;
|
|
11668
|
+
providerData?: Record<string, any> | undefined;
|
|
10953
11669
|
} | {
|
|
10954
11670
|
type: string;
|
|
10955
11671
|
id?: string | undefined;
|
|
@@ -11148,6 +11864,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
11148
11864
|
};
|
|
11149
11865
|
}>, z.ZodObject<{
|
|
11150
11866
|
type: z.ZodString;
|
|
11867
|
+
} & {
|
|
11868
|
+
file: z.ZodString;
|
|
11869
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11870
|
+
}, "strip", z.ZodTypeAny, {
|
|
11871
|
+
type: string;
|
|
11872
|
+
file: string;
|
|
11873
|
+
providerData?: Record<string, any> | undefined;
|
|
11874
|
+
}, {
|
|
11875
|
+
type: string;
|
|
11876
|
+
file: string;
|
|
11877
|
+
providerData?: Record<string, any> | undefined;
|
|
11878
|
+
}>, z.ZodObject<{
|
|
11879
|
+
type: z.ZodString;
|
|
11151
11880
|
} & {
|
|
11152
11881
|
id: z.ZodOptional<z.ZodString>;
|
|
11153
11882
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -11230,6 +11959,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
11230
11959
|
url: string;
|
|
11231
11960
|
detail?: string | undefined;
|
|
11232
11961
|
};
|
|
11962
|
+
} | {
|
|
11963
|
+
type: string;
|
|
11964
|
+
file: string;
|
|
11965
|
+
providerData?: Record<string, any> | undefined;
|
|
11233
11966
|
} | {
|
|
11234
11967
|
type: string;
|
|
11235
11968
|
id?: string | undefined;
|
|
@@ -11261,6 +11994,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
11261
11994
|
url: string;
|
|
11262
11995
|
detail?: string | undefined;
|
|
11263
11996
|
};
|
|
11997
|
+
} | {
|
|
11998
|
+
type: string;
|
|
11999
|
+
file: string;
|
|
12000
|
+
providerData?: Record<string, any> | undefined;
|
|
11264
12001
|
} | {
|
|
11265
12002
|
type: string;
|
|
11266
12003
|
id?: string | undefined;
|
|
@@ -11382,6 +12119,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
11382
12119
|
url: string;
|
|
11383
12120
|
detail?: string | undefined;
|
|
11384
12121
|
};
|
|
12122
|
+
} | {
|
|
12123
|
+
type: string;
|
|
12124
|
+
file: string;
|
|
12125
|
+
providerData?: Record<string, any> | undefined;
|
|
11385
12126
|
} | {
|
|
11386
12127
|
type: string;
|
|
11387
12128
|
id?: string | undefined;
|
|
@@ -11426,6 +12167,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
11426
12167
|
url: string;
|
|
11427
12168
|
detail?: string | undefined;
|
|
11428
12169
|
};
|
|
12170
|
+
} | {
|
|
12171
|
+
type: string;
|
|
12172
|
+
file: string;
|
|
12173
|
+
providerData?: Record<string, any> | undefined;
|
|
11429
12174
|
} | {
|
|
11430
12175
|
type: string;
|
|
11431
12176
|
id?: string | undefined;
|
|
@@ -11483,6 +12228,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
11483
12228
|
url: string;
|
|
11484
12229
|
detail?: string | undefined;
|
|
11485
12230
|
};
|
|
12231
|
+
} | {
|
|
12232
|
+
type: string;
|
|
12233
|
+
file: string;
|
|
12234
|
+
providerData?: Record<string, any> | undefined;
|
|
11486
12235
|
} | {
|
|
11487
12236
|
type: string;
|
|
11488
12237
|
id?: string | undefined;
|
|
@@ -11528,6 +12277,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
11528
12277
|
url: string;
|
|
11529
12278
|
detail?: string | undefined;
|
|
11530
12279
|
};
|
|
12280
|
+
} | {
|
|
12281
|
+
type: string;
|
|
12282
|
+
file: string;
|
|
12283
|
+
providerData?: Record<string, any> | undefined;
|
|
11531
12284
|
} | {
|
|
11532
12285
|
type: string;
|
|
11533
12286
|
id?: string | undefined;
|
|
@@ -11572,6 +12325,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
11572
12325
|
url: string;
|
|
11573
12326
|
detail?: string | undefined;
|
|
11574
12327
|
};
|
|
12328
|
+
} | {
|
|
12329
|
+
type: string;
|
|
12330
|
+
file: string;
|
|
12331
|
+
providerData?: Record<string, any> | undefined;
|
|
11575
12332
|
} | {
|
|
11576
12333
|
type: string;
|
|
11577
12334
|
id?: string | undefined;
|
|
@@ -11667,6 +12424,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
11667
12424
|
};
|
|
11668
12425
|
}>, z.ZodObject<{
|
|
11669
12426
|
type: z.ZodString;
|
|
12427
|
+
} & {
|
|
12428
|
+
file: z.ZodString;
|
|
12429
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12430
|
+
}, "strip", z.ZodTypeAny, {
|
|
12431
|
+
type: string;
|
|
12432
|
+
file: string;
|
|
12433
|
+
providerData?: Record<string, any> | undefined;
|
|
12434
|
+
}, {
|
|
12435
|
+
type: string;
|
|
12436
|
+
file: string;
|
|
12437
|
+
providerData?: Record<string, any> | undefined;
|
|
12438
|
+
}>, z.ZodObject<{
|
|
12439
|
+
type: z.ZodString;
|
|
11670
12440
|
} & {
|
|
11671
12441
|
id: z.ZodOptional<z.ZodString>;
|
|
11672
12442
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -11749,6 +12519,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
11749
12519
|
url: string;
|
|
11750
12520
|
detail?: string | undefined;
|
|
11751
12521
|
};
|
|
12522
|
+
} | {
|
|
12523
|
+
type: string;
|
|
12524
|
+
file: string;
|
|
12525
|
+
providerData?: Record<string, any> | undefined;
|
|
11752
12526
|
} | {
|
|
11753
12527
|
type: string;
|
|
11754
12528
|
id?: string | undefined;
|
|
@@ -11780,6 +12554,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
11780
12554
|
url: string;
|
|
11781
12555
|
detail?: string | undefined;
|
|
11782
12556
|
};
|
|
12557
|
+
} | {
|
|
12558
|
+
type: string;
|
|
12559
|
+
file: string;
|
|
12560
|
+
providerData?: Record<string, any> | undefined;
|
|
11783
12561
|
} | {
|
|
11784
12562
|
type: string;
|
|
11785
12563
|
id?: string | undefined;
|
|
@@ -11901,6 +12679,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
11901
12679
|
url: string;
|
|
11902
12680
|
detail?: string | undefined;
|
|
11903
12681
|
};
|
|
12682
|
+
} | {
|
|
12683
|
+
type: string;
|
|
12684
|
+
file: string;
|
|
12685
|
+
providerData?: Record<string, any> | undefined;
|
|
11904
12686
|
} | {
|
|
11905
12687
|
type: string;
|
|
11906
12688
|
id?: string | undefined;
|
|
@@ -11945,6 +12727,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
11945
12727
|
url: string;
|
|
11946
12728
|
detail?: string | undefined;
|
|
11947
12729
|
};
|
|
12730
|
+
} | {
|
|
12731
|
+
type: string;
|
|
12732
|
+
file: string;
|
|
12733
|
+
providerData?: Record<string, any> | undefined;
|
|
11948
12734
|
} | {
|
|
11949
12735
|
type: string;
|
|
11950
12736
|
id?: string | undefined;
|
|
@@ -12002,6 +12788,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
12002
12788
|
url: string;
|
|
12003
12789
|
detail?: string | undefined;
|
|
12004
12790
|
};
|
|
12791
|
+
} | {
|
|
12792
|
+
type: string;
|
|
12793
|
+
file: string;
|
|
12794
|
+
providerData?: Record<string, any> | undefined;
|
|
12005
12795
|
} | {
|
|
12006
12796
|
type: string;
|
|
12007
12797
|
id?: string | undefined;
|
|
@@ -12047,6 +12837,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
12047
12837
|
url: string;
|
|
12048
12838
|
detail?: string | undefined;
|
|
12049
12839
|
};
|
|
12840
|
+
} | {
|
|
12841
|
+
type: string;
|
|
12842
|
+
file: string;
|
|
12843
|
+
providerData?: Record<string, any> | undefined;
|
|
12050
12844
|
} | {
|
|
12051
12845
|
type: string;
|
|
12052
12846
|
id?: string | undefined;
|
|
@@ -12091,6 +12885,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
12091
12885
|
url: string;
|
|
12092
12886
|
detail?: string | undefined;
|
|
12093
12887
|
};
|
|
12888
|
+
} | {
|
|
12889
|
+
type: string;
|
|
12890
|
+
file: string;
|
|
12891
|
+
providerData?: Record<string, any> | undefined;
|
|
12094
12892
|
} | {
|
|
12095
12893
|
type: string;
|
|
12096
12894
|
id?: string | undefined;
|
|
@@ -12186,6 +12984,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
12186
12984
|
};
|
|
12187
12985
|
}>, z.ZodObject<{
|
|
12188
12986
|
type: z.ZodString;
|
|
12987
|
+
} & {
|
|
12988
|
+
file: z.ZodString;
|
|
12989
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12990
|
+
}, "strip", z.ZodTypeAny, {
|
|
12991
|
+
type: string;
|
|
12992
|
+
file: string;
|
|
12993
|
+
providerData?: Record<string, any> | undefined;
|
|
12994
|
+
}, {
|
|
12995
|
+
type: string;
|
|
12996
|
+
file: string;
|
|
12997
|
+
providerData?: Record<string, any> | undefined;
|
|
12998
|
+
}>, z.ZodObject<{
|
|
12999
|
+
type: z.ZodString;
|
|
12189
13000
|
} & {
|
|
12190
13001
|
id: z.ZodOptional<z.ZodString>;
|
|
12191
13002
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -12268,6 +13079,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
12268
13079
|
url: string;
|
|
12269
13080
|
detail?: string | undefined;
|
|
12270
13081
|
};
|
|
13082
|
+
} | {
|
|
13083
|
+
type: string;
|
|
13084
|
+
file: string;
|
|
13085
|
+
providerData?: Record<string, any> | undefined;
|
|
12271
13086
|
} | {
|
|
12272
13087
|
type: string;
|
|
12273
13088
|
id?: string | undefined;
|
|
@@ -12299,6 +13114,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
12299
13114
|
url: string;
|
|
12300
13115
|
detail?: string | undefined;
|
|
12301
13116
|
};
|
|
13117
|
+
} | {
|
|
13118
|
+
type: string;
|
|
13119
|
+
file: string;
|
|
13120
|
+
providerData?: Record<string, any> | undefined;
|
|
12302
13121
|
} | {
|
|
12303
13122
|
type: string;
|
|
12304
13123
|
id?: string | undefined;
|
|
@@ -12420,6 +13239,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
12420
13239
|
url: string;
|
|
12421
13240
|
detail?: string | undefined;
|
|
12422
13241
|
};
|
|
13242
|
+
} | {
|
|
13243
|
+
type: string;
|
|
13244
|
+
file: string;
|
|
13245
|
+
providerData?: Record<string, any> | undefined;
|
|
12423
13246
|
} | {
|
|
12424
13247
|
type: string;
|
|
12425
13248
|
id?: string | undefined;
|
|
@@ -12464,6 +13287,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
12464
13287
|
url: string;
|
|
12465
13288
|
detail?: string | undefined;
|
|
12466
13289
|
};
|
|
13290
|
+
} | {
|
|
13291
|
+
type: string;
|
|
13292
|
+
file: string;
|
|
13293
|
+
providerData?: Record<string, any> | undefined;
|
|
12467
13294
|
} | {
|
|
12468
13295
|
type: string;
|
|
12469
13296
|
id?: string | undefined;
|
|
@@ -12521,6 +13348,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
12521
13348
|
url: string;
|
|
12522
13349
|
detail?: string | undefined;
|
|
12523
13350
|
};
|
|
13351
|
+
} | {
|
|
13352
|
+
type: string;
|
|
13353
|
+
file: string;
|
|
13354
|
+
providerData?: Record<string, any> | undefined;
|
|
12524
13355
|
} | {
|
|
12525
13356
|
type: string;
|
|
12526
13357
|
id?: string | undefined;
|
|
@@ -12566,6 +13397,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
12566
13397
|
url: string;
|
|
12567
13398
|
detail?: string | undefined;
|
|
12568
13399
|
};
|
|
13400
|
+
} | {
|
|
13401
|
+
type: string;
|
|
13402
|
+
file: string;
|
|
13403
|
+
providerData?: Record<string, any> | undefined;
|
|
12569
13404
|
} | {
|
|
12570
13405
|
type: string;
|
|
12571
13406
|
id?: string | undefined;
|
|
@@ -12610,6 +13445,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
12610
13445
|
url: string;
|
|
12611
13446
|
detail?: string | undefined;
|
|
12612
13447
|
};
|
|
13448
|
+
} | {
|
|
13449
|
+
type: string;
|
|
13450
|
+
file: string;
|
|
13451
|
+
providerData?: Record<string, any> | undefined;
|
|
12613
13452
|
} | {
|
|
12614
13453
|
type: string;
|
|
12615
13454
|
id?: string | undefined;
|
|
@@ -12985,6 +13824,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
12985
13824
|
};
|
|
12986
13825
|
}>, z.ZodObject<{
|
|
12987
13826
|
type: z.ZodString;
|
|
13827
|
+
} & {
|
|
13828
|
+
file: z.ZodString;
|
|
13829
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13830
|
+
}, "strip", z.ZodTypeAny, {
|
|
13831
|
+
type: string;
|
|
13832
|
+
file: string;
|
|
13833
|
+
providerData?: Record<string, any> | undefined;
|
|
13834
|
+
}, {
|
|
13835
|
+
type: string;
|
|
13836
|
+
file: string;
|
|
13837
|
+
providerData?: Record<string, any> | undefined;
|
|
13838
|
+
}>, z.ZodObject<{
|
|
13839
|
+
type: z.ZodString;
|
|
12988
13840
|
} & {
|
|
12989
13841
|
id: z.ZodOptional<z.ZodString>;
|
|
12990
13842
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -13067,6 +13919,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13067
13919
|
url: string;
|
|
13068
13920
|
detail?: string | undefined;
|
|
13069
13921
|
};
|
|
13922
|
+
} | {
|
|
13923
|
+
type: string;
|
|
13924
|
+
file: string;
|
|
13925
|
+
providerData?: Record<string, any> | undefined;
|
|
13070
13926
|
} | {
|
|
13071
13927
|
type: string;
|
|
13072
13928
|
id?: string | undefined;
|
|
@@ -13098,6 +13954,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13098
13954
|
url: string;
|
|
13099
13955
|
detail?: string | undefined;
|
|
13100
13956
|
};
|
|
13957
|
+
} | {
|
|
13958
|
+
type: string;
|
|
13959
|
+
file: string;
|
|
13960
|
+
providerData?: Record<string, any> | undefined;
|
|
13101
13961
|
} | {
|
|
13102
13962
|
type: string;
|
|
13103
13963
|
id?: string | undefined;
|
|
@@ -13219,6 +14079,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13219
14079
|
url: string;
|
|
13220
14080
|
detail?: string | undefined;
|
|
13221
14081
|
};
|
|
14082
|
+
} | {
|
|
14083
|
+
type: string;
|
|
14084
|
+
file: string;
|
|
14085
|
+
providerData?: Record<string, any> | undefined;
|
|
13222
14086
|
} | {
|
|
13223
14087
|
type: string;
|
|
13224
14088
|
id?: string | undefined;
|
|
@@ -13263,6 +14127,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13263
14127
|
url: string;
|
|
13264
14128
|
detail?: string | undefined;
|
|
13265
14129
|
};
|
|
14130
|
+
} | {
|
|
14131
|
+
type: string;
|
|
14132
|
+
file: string;
|
|
14133
|
+
providerData?: Record<string, any> | undefined;
|
|
13266
14134
|
} | {
|
|
13267
14135
|
type: string;
|
|
13268
14136
|
id?: string | undefined;
|
|
@@ -13320,6 +14188,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13320
14188
|
url: string;
|
|
13321
14189
|
detail?: string | undefined;
|
|
13322
14190
|
};
|
|
14191
|
+
} | {
|
|
14192
|
+
type: string;
|
|
14193
|
+
file: string;
|
|
14194
|
+
providerData?: Record<string, any> | undefined;
|
|
13323
14195
|
} | {
|
|
13324
14196
|
type: string;
|
|
13325
14197
|
id?: string | undefined;
|
|
@@ -13365,6 +14237,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13365
14237
|
url: string;
|
|
13366
14238
|
detail?: string | undefined;
|
|
13367
14239
|
};
|
|
14240
|
+
} | {
|
|
14241
|
+
type: string;
|
|
14242
|
+
file: string;
|
|
14243
|
+
providerData?: Record<string, any> | undefined;
|
|
13368
14244
|
} | {
|
|
13369
14245
|
type: string;
|
|
13370
14246
|
id?: string | undefined;
|
|
@@ -13409,6 +14285,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13409
14285
|
url: string;
|
|
13410
14286
|
detail?: string | undefined;
|
|
13411
14287
|
};
|
|
14288
|
+
} | {
|
|
14289
|
+
type: string;
|
|
14290
|
+
file: string;
|
|
14291
|
+
providerData?: Record<string, any> | undefined;
|
|
13412
14292
|
} | {
|
|
13413
14293
|
type: string;
|
|
13414
14294
|
id?: string | undefined;
|
|
@@ -13528,6 +14408,19 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13528
14408
|
};
|
|
13529
14409
|
}>, z.ZodObject<{
|
|
13530
14410
|
type: z.ZodString;
|
|
14411
|
+
} & {
|
|
14412
|
+
file: z.ZodString;
|
|
14413
|
+
providerData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
14414
|
+
}, "strip", z.ZodTypeAny, {
|
|
14415
|
+
type: string;
|
|
14416
|
+
file: string;
|
|
14417
|
+
providerData?: Record<string, any> | undefined;
|
|
14418
|
+
}, {
|
|
14419
|
+
type: string;
|
|
14420
|
+
file: string;
|
|
14421
|
+
providerData?: Record<string, any> | undefined;
|
|
14422
|
+
}>, z.ZodObject<{
|
|
14423
|
+
type: z.ZodString;
|
|
13531
14424
|
} & {
|
|
13532
14425
|
id: z.ZodOptional<z.ZodString>;
|
|
13533
14426
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -13610,6 +14503,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13610
14503
|
url: string;
|
|
13611
14504
|
detail?: string | undefined;
|
|
13612
14505
|
};
|
|
14506
|
+
} | {
|
|
14507
|
+
type: string;
|
|
14508
|
+
file: string;
|
|
14509
|
+
providerData?: Record<string, any> | undefined;
|
|
13613
14510
|
} | {
|
|
13614
14511
|
type: string;
|
|
13615
14512
|
id?: string | undefined;
|
|
@@ -13641,6 +14538,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13641
14538
|
url: string;
|
|
13642
14539
|
detail?: string | undefined;
|
|
13643
14540
|
};
|
|
14541
|
+
} | {
|
|
14542
|
+
type: string;
|
|
14543
|
+
file: string;
|
|
14544
|
+
providerData?: Record<string, any> | undefined;
|
|
13644
14545
|
} | {
|
|
13645
14546
|
type: string;
|
|
13646
14547
|
id?: string | undefined;
|
|
@@ -13762,6 +14663,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13762
14663
|
url: string;
|
|
13763
14664
|
detail?: string | undefined;
|
|
13764
14665
|
};
|
|
14666
|
+
} | {
|
|
14667
|
+
type: string;
|
|
14668
|
+
file: string;
|
|
14669
|
+
providerData?: Record<string, any> | undefined;
|
|
13765
14670
|
} | {
|
|
13766
14671
|
type: string;
|
|
13767
14672
|
id?: string | undefined;
|
|
@@ -13806,6 +14711,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13806
14711
|
url: string;
|
|
13807
14712
|
detail?: string | undefined;
|
|
13808
14713
|
};
|
|
14714
|
+
} | {
|
|
14715
|
+
type: string;
|
|
14716
|
+
file: string;
|
|
14717
|
+
providerData?: Record<string, any> | undefined;
|
|
13809
14718
|
} | {
|
|
13810
14719
|
type: string;
|
|
13811
14720
|
id?: string | undefined;
|
|
@@ -13863,6 +14772,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13863
14772
|
url: string;
|
|
13864
14773
|
detail?: string | undefined;
|
|
13865
14774
|
};
|
|
14775
|
+
} | {
|
|
14776
|
+
type: string;
|
|
14777
|
+
file: string;
|
|
14778
|
+
providerData?: Record<string, any> | undefined;
|
|
13866
14779
|
} | {
|
|
13867
14780
|
type: string;
|
|
13868
14781
|
id?: string | undefined;
|
|
@@ -13908,6 +14821,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13908
14821
|
url: string;
|
|
13909
14822
|
detail?: string | undefined;
|
|
13910
14823
|
};
|
|
14824
|
+
} | {
|
|
14825
|
+
type: string;
|
|
14826
|
+
file: string;
|
|
14827
|
+
providerData?: Record<string, any> | undefined;
|
|
13911
14828
|
} | {
|
|
13912
14829
|
type: string;
|
|
13913
14830
|
id?: string | undefined;
|
|
@@ -13952,6 +14869,10 @@ export declare const KeywordsPayloadSchema: z.ZodObject<{
|
|
|
13952
14869
|
url: string;
|
|
13953
14870
|
detail?: string | undefined;
|
|
13954
14871
|
};
|
|
14872
|
+
} | {
|
|
14873
|
+
type: string;
|
|
14874
|
+
file: string;
|
|
14875
|
+
providerData?: Record<string, any> | undefined;
|
|
13955
14876
|
} | {
|
|
13956
14877
|
type: string;
|
|
13957
14878
|
id?: string | undefined;
|