@lokalise/polyglot-sdk 19.1.0 → 20.0.0
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 +22 -22
- package/dist/index.js +20 -20
- package/dist/index.js.map +1 -1
- package/dist/sdk/PolyglotClient.d.ts +7 -7
- package/dist/sdk/PolyglotClient.js +6 -6
- package/dist/sdk/helpers/htmlEscaping.d.ts +1 -1
- package/dist/sdk/helpers/htmlEscaping.js +2 -2
- package/dist/sdk/helpers/nonTranslatableContentHelper.d.ts +1 -1
- package/dist/sdk/helpers/nonTranslatableContentHelper.js +1 -1
- package/dist/sdk/helpers/nonTranslatableContentWrappers.d.ts +1 -1
- package/dist/sdk/helpers/nonTranslatableContentWrappers.js +2 -2
- package/dist/sdk/schemas/common/asyncRequestSchemas.d.ts +1 -1
- package/dist/sdk/schemas/common/commonSchemas.d.ts +38 -21
- package/dist/sdk/schemas/common/commonSchemas.js +24 -5
- package/dist/sdk/schemas/common/commonSchemas.js.map +1 -1
- package/dist/sdk/schemas/common/errorSchemas.d.ts +16 -21
- package/dist/sdk/schemas/common/errorSchemas.js +1 -1
- package/dist/sdk/schemas/common/translationContextSchemas.d.ts +0 -11
- package/dist/sdk/schemas/common/translationContextSchemas.js +2 -6
- package/dist/sdk/schemas/common/translationContextSchemas.js.map +1 -1
- package/dist/sdk/schemas/lqa/commonSchemas.d.ts +1 -1
- package/dist/sdk/schemas/lqa/lqaAsyncSchemas.d.ts +21 -20
- package/dist/sdk/schemas/lqa/lqaAsyncSchemas.js +8 -7
- package/dist/sdk/schemas/lqa/lqaAsyncSchemas.js.map +1 -1
- package/dist/sdk/schemas/lqa/lqaSyncSchemas.d.ts +12 -11
- package/dist/sdk/schemas/lqa/lqaSyncSchemas.js +7 -6
- package/dist/sdk/schemas/lqa/lqaSyncSchemas.js.map +1 -1
- package/dist/sdk/schemas/translation/generateVariants.d.ts +15 -14
- package/dist/sdk/schemas/translation/generateVariants.js +3 -3
- package/dist/sdk/schemas/translation/rewriteTextSchemas.d.ts +37 -35
- package/dist/sdk/schemas/translation/rewriteTextSchemas.js +4 -4
- package/dist/sdk/schemas/translation/sharedSchemas.d.ts +117 -4
- package/dist/sdk/schemas/translation/sharedSchemas.js +21 -5
- package/dist/sdk/schemas/translation/sharedSchemas.js.map +1 -1
- package/dist/sdk/schemas/translation/translateAsyncSchemas.d.ts +306 -41
- package/dist/sdk/schemas/translation/translateAsyncSchemas.js +5 -5
- package/dist/sdk/schemas/translation/translateSyncSchemas.d.ts +254 -21
- package/dist/sdk/schemas/translation/translateSyncSchemas.js +4 -4
- package/dist/sdk/schemas/translation/translateTextSegmentSchemas.d.ts +21 -31
- package/dist/sdk/schemas/translation/translateTextSegmentSchemas.js +4 -4
- package/dist/sdk/schemas/translation/translateTextSegmentSchemas.js.map +1 -1
- package/dist/sdk/validation/isSegmentUnderLengthLimit.d.ts +1 -1
- package/dist/sdk/validation/isSegmentUnderLengthLimit.js +3 -3
- package/dist/sdk/validation/requestSizeLimit.d.ts +2 -2
- package/dist/sdk/validation/requestSizeLimit.js +2 -2
- package/package.json +8 -8
|
@@ -4,15 +4,16 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
4
4
|
ownerId: z.ZodOptional<z.ZodString>;
|
|
5
5
|
sourceLocale: z.ZodEffects<z.ZodString, string, string>;
|
|
6
6
|
targetLocale: z.ZodEffects<z.ZodString, string, string>;
|
|
7
|
-
integration: z.ZodOptional<z.ZodNativeEnum<{
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
7
|
+
integration: z.ZodOptional<z.ZodEffects<z.ZodNativeEnum<{
|
|
8
|
+
CHAT_GPT4: "ChatGPT-4";
|
|
9
|
+
FINETUNED_OPENAI: "FT-OpenAI";
|
|
10
|
+
CLAUDE: "Claude";
|
|
11
|
+
GPT: "GPT";
|
|
12
|
+
GEMINI: "Gemini";
|
|
13
|
+
DEEPL: "DeepL";
|
|
14
|
+
GOOGLE_TRANSLATE: "GoogleTranslate";
|
|
15
|
+
MICROSOFT_TRANSLATOR: "MicrosoftTranslator";
|
|
16
|
+
}>, "FT-OpenAI" | "Claude" | "GPT" | "Gemini" | "DeepL" | "GoogleTranslate" | "MicrosoftTranslator", "FT-OpenAI" | "Claude" | "GPT" | "Gemini" | "ChatGPT-4" | "DeepL" | "GoogleTranslate" | "MicrosoftTranslator">>;
|
|
16
17
|
forceIntegration: z.ZodOptional<z.ZodBoolean>;
|
|
17
18
|
context: z.ZodOptional<z.ZodObject<{
|
|
18
19
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -237,7 +238,7 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
237
238
|
description: string;
|
|
238
239
|
}>>;
|
|
239
240
|
characterLimit: z.ZodOptional<z.ZodNumber>;
|
|
240
|
-
segments: z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
241
|
+
segments: z.ZodEffects<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
241
242
|
id: z.ZodString;
|
|
242
243
|
tmMatch: z.ZodOptional<z.ZodObject<{
|
|
243
244
|
sourceValue: z.ZodString;
|
|
@@ -249,10 +250,46 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
249
250
|
sourceValue: string;
|
|
250
251
|
translatedValue: string;
|
|
251
252
|
}>>;
|
|
253
|
+
translationExamples: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
254
|
+
sourceValue: z.ZodString;
|
|
255
|
+
translatedValue: z.ZodString;
|
|
256
|
+
}, "strip", z.ZodTypeAny, {
|
|
257
|
+
sourceValue: string;
|
|
258
|
+
translatedValue: string;
|
|
259
|
+
}, {
|
|
260
|
+
sourceValue: string;
|
|
261
|
+
translatedValue: string;
|
|
262
|
+
}>, "many">>;
|
|
252
263
|
value: z.ZodString;
|
|
253
264
|
}, "strip", z.ZodTypeAny, {
|
|
254
265
|
value: string;
|
|
255
266
|
id: string;
|
|
267
|
+
translationExamples?: {
|
|
268
|
+
sourceValue: string;
|
|
269
|
+
translatedValue: string;
|
|
270
|
+
}[] | undefined;
|
|
271
|
+
tmMatch?: {
|
|
272
|
+
sourceValue: string;
|
|
273
|
+
translatedValue: string;
|
|
274
|
+
} | undefined;
|
|
275
|
+
}, {
|
|
276
|
+
value: string;
|
|
277
|
+
id: string;
|
|
278
|
+
translationExamples?: {
|
|
279
|
+
sourceValue: string;
|
|
280
|
+
translatedValue: string;
|
|
281
|
+
}[] | undefined;
|
|
282
|
+
tmMatch?: {
|
|
283
|
+
sourceValue: string;
|
|
284
|
+
translatedValue: string;
|
|
285
|
+
} | undefined;
|
|
286
|
+
}>, {
|
|
287
|
+
value: string;
|
|
288
|
+
id: string;
|
|
289
|
+
translationExamples?: {
|
|
290
|
+
sourceValue: string;
|
|
291
|
+
translatedValue: string;
|
|
292
|
+
}[] | undefined;
|
|
256
293
|
tmMatch?: {
|
|
257
294
|
sourceValue: string;
|
|
258
295
|
translatedValue: string;
|
|
@@ -260,6 +297,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
260
297
|
}, {
|
|
261
298
|
value: string;
|
|
262
299
|
id: string;
|
|
300
|
+
translationExamples?: {
|
|
301
|
+
sourceValue: string;
|
|
302
|
+
translatedValue: string;
|
|
303
|
+
}[] | undefined;
|
|
263
304
|
tmMatch?: {
|
|
264
305
|
sourceValue: string;
|
|
265
306
|
translatedValue: string;
|
|
@@ -267,6 +308,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
267
308
|
}>, "atleastone">, [{
|
|
268
309
|
value: string;
|
|
269
310
|
id: string;
|
|
311
|
+
translationExamples?: {
|
|
312
|
+
sourceValue: string;
|
|
313
|
+
translatedValue: string;
|
|
314
|
+
}[] | undefined;
|
|
270
315
|
tmMatch?: {
|
|
271
316
|
sourceValue: string;
|
|
272
317
|
translatedValue: string;
|
|
@@ -274,6 +319,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
274
319
|
}, ...{
|
|
275
320
|
value: string;
|
|
276
321
|
id: string;
|
|
322
|
+
translationExamples?: {
|
|
323
|
+
sourceValue: string;
|
|
324
|
+
translatedValue: string;
|
|
325
|
+
}[] | undefined;
|
|
277
326
|
tmMatch?: {
|
|
278
327
|
sourceValue: string;
|
|
279
328
|
translatedValue: string;
|
|
@@ -281,6 +330,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
281
330
|
}[]], [{
|
|
282
331
|
value: string;
|
|
283
332
|
id: string;
|
|
333
|
+
translationExamples?: {
|
|
334
|
+
sourceValue: string;
|
|
335
|
+
translatedValue: string;
|
|
336
|
+
}[] | undefined;
|
|
284
337
|
tmMatch?: {
|
|
285
338
|
sourceValue: string;
|
|
286
339
|
translatedValue: string;
|
|
@@ -288,6 +341,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
288
341
|
}, ...{
|
|
289
342
|
value: string;
|
|
290
343
|
id: string;
|
|
344
|
+
translationExamples?: {
|
|
345
|
+
sourceValue: string;
|
|
346
|
+
translatedValue: string;
|
|
347
|
+
}[] | undefined;
|
|
291
348
|
tmMatch?: {
|
|
292
349
|
sourceValue: string;
|
|
293
350
|
translatedValue: string;
|
|
@@ -298,6 +355,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
298
355
|
segments: [{
|
|
299
356
|
value: string;
|
|
300
357
|
id: string;
|
|
358
|
+
translationExamples?: {
|
|
359
|
+
sourceValue: string;
|
|
360
|
+
translatedValue: string;
|
|
361
|
+
}[] | undefined;
|
|
301
362
|
tmMatch?: {
|
|
302
363
|
sourceValue: string;
|
|
303
364
|
translatedValue: string;
|
|
@@ -305,6 +366,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
305
366
|
}, ...{
|
|
306
367
|
value: string;
|
|
307
368
|
id: string;
|
|
369
|
+
translationExamples?: {
|
|
370
|
+
sourceValue: string;
|
|
371
|
+
translatedValue: string;
|
|
372
|
+
}[] | undefined;
|
|
308
373
|
tmMatch?: {
|
|
309
374
|
sourceValue: string;
|
|
310
375
|
translatedValue: string;
|
|
@@ -319,6 +384,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
319
384
|
segments: [{
|
|
320
385
|
value: string;
|
|
321
386
|
id: string;
|
|
387
|
+
translationExamples?: {
|
|
388
|
+
sourceValue: string;
|
|
389
|
+
translatedValue: string;
|
|
390
|
+
}[] | undefined;
|
|
322
391
|
tmMatch?: {
|
|
323
392
|
sourceValue: string;
|
|
324
393
|
translatedValue: string;
|
|
@@ -326,6 +395,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
326
395
|
}, ...{
|
|
327
396
|
value: string;
|
|
328
397
|
id: string;
|
|
398
|
+
translationExamples?: {
|
|
399
|
+
sourceValue: string;
|
|
400
|
+
translatedValue: string;
|
|
401
|
+
}[] | undefined;
|
|
329
402
|
tmMatch?: {
|
|
330
403
|
sourceValue: string;
|
|
331
404
|
translatedValue: string;
|
|
@@ -340,6 +413,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
340
413
|
segments: [{
|
|
341
414
|
value: string;
|
|
342
415
|
id: string;
|
|
416
|
+
translationExamples?: {
|
|
417
|
+
sourceValue: string;
|
|
418
|
+
translatedValue: string;
|
|
419
|
+
}[] | undefined;
|
|
343
420
|
tmMatch?: {
|
|
344
421
|
sourceValue: string;
|
|
345
422
|
translatedValue: string;
|
|
@@ -347,6 +424,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
347
424
|
}, ...{
|
|
348
425
|
value: string;
|
|
349
426
|
id: string;
|
|
427
|
+
translationExamples?: {
|
|
428
|
+
sourceValue: string;
|
|
429
|
+
translatedValue: string;
|
|
430
|
+
}[] | undefined;
|
|
350
431
|
tmMatch?: {
|
|
351
432
|
sourceValue: string;
|
|
352
433
|
translatedValue: string;
|
|
@@ -361,6 +442,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
361
442
|
segments: [{
|
|
362
443
|
value: string;
|
|
363
444
|
id: string;
|
|
445
|
+
translationExamples?: {
|
|
446
|
+
sourceValue: string;
|
|
447
|
+
translatedValue: string;
|
|
448
|
+
}[] | undefined;
|
|
364
449
|
tmMatch?: {
|
|
365
450
|
sourceValue: string;
|
|
366
451
|
translatedValue: string;
|
|
@@ -368,6 +453,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
368
453
|
}, ...{
|
|
369
454
|
value: string;
|
|
370
455
|
id: string;
|
|
456
|
+
translationExamples?: {
|
|
457
|
+
sourceValue: string;
|
|
458
|
+
translatedValue: string;
|
|
459
|
+
}[] | undefined;
|
|
371
460
|
tmMatch?: {
|
|
372
461
|
sourceValue: string;
|
|
373
462
|
translatedValue: string;
|
|
@@ -382,6 +471,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
382
471
|
segments: [{
|
|
383
472
|
value: string;
|
|
384
473
|
id: string;
|
|
474
|
+
translationExamples?: {
|
|
475
|
+
sourceValue: string;
|
|
476
|
+
translatedValue: string;
|
|
477
|
+
}[] | undefined;
|
|
385
478
|
tmMatch?: {
|
|
386
479
|
sourceValue: string;
|
|
387
480
|
translatedValue: string;
|
|
@@ -389,6 +482,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
389
482
|
}, ...{
|
|
390
483
|
value: string;
|
|
391
484
|
id: string;
|
|
485
|
+
translationExamples?: {
|
|
486
|
+
sourceValue: string;
|
|
487
|
+
translatedValue: string;
|
|
488
|
+
}[] | undefined;
|
|
392
489
|
tmMatch?: {
|
|
393
490
|
sourceValue: string;
|
|
394
491
|
translatedValue: string;
|
|
@@ -403,6 +500,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
403
500
|
segments: [{
|
|
404
501
|
value: string;
|
|
405
502
|
id: string;
|
|
503
|
+
translationExamples?: {
|
|
504
|
+
sourceValue: string;
|
|
505
|
+
translatedValue: string;
|
|
506
|
+
}[] | undefined;
|
|
406
507
|
tmMatch?: {
|
|
407
508
|
sourceValue: string;
|
|
408
509
|
translatedValue: string;
|
|
@@ -410,6 +511,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
410
511
|
}, ...{
|
|
411
512
|
value: string;
|
|
412
513
|
id: string;
|
|
514
|
+
translationExamples?: {
|
|
515
|
+
sourceValue: string;
|
|
516
|
+
translatedValue: string;
|
|
517
|
+
}[] | undefined;
|
|
413
518
|
tmMatch?: {
|
|
414
519
|
sourceValue: string;
|
|
415
520
|
translatedValue: string;
|
|
@@ -427,6 +532,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
427
532
|
segments: [{
|
|
428
533
|
value: string;
|
|
429
534
|
id: string;
|
|
535
|
+
translationExamples?: {
|
|
536
|
+
sourceValue: string;
|
|
537
|
+
translatedValue: string;
|
|
538
|
+
}[] | undefined;
|
|
430
539
|
tmMatch?: {
|
|
431
540
|
sourceValue: string;
|
|
432
541
|
translatedValue: string;
|
|
@@ -434,6 +543,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
434
543
|
}, ...{
|
|
435
544
|
value: string;
|
|
436
545
|
id: string;
|
|
546
|
+
translationExamples?: {
|
|
547
|
+
sourceValue: string;
|
|
548
|
+
translatedValue: string;
|
|
549
|
+
}[] | undefined;
|
|
437
550
|
tmMatch?: {
|
|
438
551
|
sourceValue: string;
|
|
439
552
|
translatedValue: string;
|
|
@@ -448,6 +561,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
448
561
|
segments: [{
|
|
449
562
|
value: string;
|
|
450
563
|
id: string;
|
|
564
|
+
translationExamples?: {
|
|
565
|
+
sourceValue: string;
|
|
566
|
+
translatedValue: string;
|
|
567
|
+
}[] | undefined;
|
|
451
568
|
tmMatch?: {
|
|
452
569
|
sourceValue: string;
|
|
453
570
|
translatedValue: string;
|
|
@@ -455,6 +572,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
455
572
|
}, ...{
|
|
456
573
|
value: string;
|
|
457
574
|
id: string;
|
|
575
|
+
translationExamples?: {
|
|
576
|
+
sourceValue: string;
|
|
577
|
+
translatedValue: string;
|
|
578
|
+
}[] | undefined;
|
|
458
579
|
tmMatch?: {
|
|
459
580
|
sourceValue: string;
|
|
460
581
|
translatedValue: string;
|
|
@@ -495,7 +616,7 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
495
616
|
translatedValue: string;
|
|
496
617
|
}[] | undefined;
|
|
497
618
|
} | undefined;
|
|
498
|
-
integration?: "FT-OpenAI" | "Claude" | "
|
|
619
|
+
integration?: "FT-OpenAI" | "Claude" | "GPT" | "Gemini" | "DeepL" | "GoogleTranslate" | "MicrosoftTranslator" | undefined;
|
|
499
620
|
forceIntegration?: boolean | undefined;
|
|
500
621
|
metadata?: Record<string, string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
501
622
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
@@ -530,6 +651,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
530
651
|
segments: [{
|
|
531
652
|
value: string;
|
|
532
653
|
id: string;
|
|
654
|
+
translationExamples?: {
|
|
655
|
+
sourceValue: string;
|
|
656
|
+
translatedValue: string;
|
|
657
|
+
}[] | undefined;
|
|
533
658
|
tmMatch?: {
|
|
534
659
|
sourceValue: string;
|
|
535
660
|
translatedValue: string;
|
|
@@ -537,6 +662,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
537
662
|
}, ...{
|
|
538
663
|
value: string;
|
|
539
664
|
id: string;
|
|
665
|
+
translationExamples?: {
|
|
666
|
+
sourceValue: string;
|
|
667
|
+
translatedValue: string;
|
|
668
|
+
}[] | undefined;
|
|
540
669
|
tmMatch?: {
|
|
541
670
|
sourceValue: string;
|
|
542
671
|
translatedValue: string;
|
|
@@ -551,6 +680,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
551
680
|
segments: [{
|
|
552
681
|
value: string;
|
|
553
682
|
id: string;
|
|
683
|
+
translationExamples?: {
|
|
684
|
+
sourceValue: string;
|
|
685
|
+
translatedValue: string;
|
|
686
|
+
}[] | undefined;
|
|
554
687
|
tmMatch?: {
|
|
555
688
|
sourceValue: string;
|
|
556
689
|
translatedValue: string;
|
|
@@ -558,6 +691,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
558
691
|
}, ...{
|
|
559
692
|
value: string;
|
|
560
693
|
id: string;
|
|
694
|
+
translationExamples?: {
|
|
695
|
+
sourceValue: string;
|
|
696
|
+
translatedValue: string;
|
|
697
|
+
}[] | undefined;
|
|
561
698
|
tmMatch?: {
|
|
562
699
|
sourceValue: string;
|
|
563
700
|
translatedValue: string;
|
|
@@ -598,7 +735,7 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
598
735
|
translatedValue: string;
|
|
599
736
|
}[] | undefined;
|
|
600
737
|
} | undefined;
|
|
601
|
-
integration?: "FT-OpenAI" | "Claude" | "
|
|
738
|
+
integration?: "FT-OpenAI" | "Claude" | "GPT" | "Gemini" | "ChatGPT-4" | "DeepL" | "GoogleTranslate" | "MicrosoftTranslator" | undefined;
|
|
602
739
|
forceIntegration?: boolean | undefined;
|
|
603
740
|
metadata?: Record<string, string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
604
741
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
@@ -633,6 +770,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
633
770
|
segments: [{
|
|
634
771
|
value: string;
|
|
635
772
|
id: string;
|
|
773
|
+
translationExamples?: {
|
|
774
|
+
sourceValue: string;
|
|
775
|
+
translatedValue: string;
|
|
776
|
+
}[] | undefined;
|
|
636
777
|
tmMatch?: {
|
|
637
778
|
sourceValue: string;
|
|
638
779
|
translatedValue: string;
|
|
@@ -640,6 +781,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
640
781
|
}, ...{
|
|
641
782
|
value: string;
|
|
642
783
|
id: string;
|
|
784
|
+
translationExamples?: {
|
|
785
|
+
sourceValue: string;
|
|
786
|
+
translatedValue: string;
|
|
787
|
+
}[] | undefined;
|
|
643
788
|
tmMatch?: {
|
|
644
789
|
sourceValue: string;
|
|
645
790
|
translatedValue: string;
|
|
@@ -654,6 +799,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
654
799
|
segments: [{
|
|
655
800
|
value: string;
|
|
656
801
|
id: string;
|
|
802
|
+
translationExamples?: {
|
|
803
|
+
sourceValue: string;
|
|
804
|
+
translatedValue: string;
|
|
805
|
+
}[] | undefined;
|
|
657
806
|
tmMatch?: {
|
|
658
807
|
sourceValue: string;
|
|
659
808
|
translatedValue: string;
|
|
@@ -661,6 +810,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
661
810
|
}, ...{
|
|
662
811
|
value: string;
|
|
663
812
|
id: string;
|
|
813
|
+
translationExamples?: {
|
|
814
|
+
sourceValue: string;
|
|
815
|
+
translatedValue: string;
|
|
816
|
+
}[] | undefined;
|
|
664
817
|
tmMatch?: {
|
|
665
818
|
sourceValue: string;
|
|
666
819
|
translatedValue: string;
|
|
@@ -701,7 +854,7 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
701
854
|
translatedValue: string;
|
|
702
855
|
}[] | undefined;
|
|
703
856
|
} | undefined;
|
|
704
|
-
integration?: "FT-OpenAI" | "Claude" | "
|
|
857
|
+
integration?: "FT-OpenAI" | "Claude" | "GPT" | "Gemini" | "DeepL" | "GoogleTranslate" | "MicrosoftTranslator" | undefined;
|
|
705
858
|
forceIntegration?: boolean | undefined;
|
|
706
859
|
metadata?: Record<string, string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
707
860
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
@@ -736,6 +889,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
736
889
|
segments: [{
|
|
737
890
|
value: string;
|
|
738
891
|
id: string;
|
|
892
|
+
translationExamples?: {
|
|
893
|
+
sourceValue: string;
|
|
894
|
+
translatedValue: string;
|
|
895
|
+
}[] | undefined;
|
|
739
896
|
tmMatch?: {
|
|
740
897
|
sourceValue: string;
|
|
741
898
|
translatedValue: string;
|
|
@@ -743,6 +900,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
743
900
|
}, ...{
|
|
744
901
|
value: string;
|
|
745
902
|
id: string;
|
|
903
|
+
translationExamples?: {
|
|
904
|
+
sourceValue: string;
|
|
905
|
+
translatedValue: string;
|
|
906
|
+
}[] | undefined;
|
|
746
907
|
tmMatch?: {
|
|
747
908
|
sourceValue: string;
|
|
748
909
|
translatedValue: string;
|
|
@@ -757,6 +918,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
757
918
|
segments: [{
|
|
758
919
|
value: string;
|
|
759
920
|
id: string;
|
|
921
|
+
translationExamples?: {
|
|
922
|
+
sourceValue: string;
|
|
923
|
+
translatedValue: string;
|
|
924
|
+
}[] | undefined;
|
|
760
925
|
tmMatch?: {
|
|
761
926
|
sourceValue: string;
|
|
762
927
|
translatedValue: string;
|
|
@@ -764,6 +929,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
764
929
|
}, ...{
|
|
765
930
|
value: string;
|
|
766
931
|
id: string;
|
|
932
|
+
translationExamples?: {
|
|
933
|
+
sourceValue: string;
|
|
934
|
+
translatedValue: string;
|
|
935
|
+
}[] | undefined;
|
|
767
936
|
tmMatch?: {
|
|
768
937
|
sourceValue: string;
|
|
769
938
|
translatedValue: string;
|
|
@@ -804,7 +973,7 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
804
973
|
translatedValue: string;
|
|
805
974
|
}[] | undefined;
|
|
806
975
|
} | undefined;
|
|
807
|
-
integration?: "FT-OpenAI" | "Claude" | "
|
|
976
|
+
integration?: "FT-OpenAI" | "Claude" | "GPT" | "Gemini" | "ChatGPT-4" | "DeepL" | "GoogleTranslate" | "MicrosoftTranslator" | undefined;
|
|
808
977
|
forceIntegration?: boolean | undefined;
|
|
809
978
|
metadata?: Record<string, string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
810
979
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
@@ -839,6 +1008,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
839
1008
|
segments: [{
|
|
840
1009
|
value: string;
|
|
841
1010
|
id: string;
|
|
1011
|
+
translationExamples?: {
|
|
1012
|
+
sourceValue: string;
|
|
1013
|
+
translatedValue: string;
|
|
1014
|
+
}[] | undefined;
|
|
842
1015
|
tmMatch?: {
|
|
843
1016
|
sourceValue: string;
|
|
844
1017
|
translatedValue: string;
|
|
@@ -846,6 +1019,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
846
1019
|
}, ...{
|
|
847
1020
|
value: string;
|
|
848
1021
|
id: string;
|
|
1022
|
+
translationExamples?: {
|
|
1023
|
+
sourceValue: string;
|
|
1024
|
+
translatedValue: string;
|
|
1025
|
+
}[] | undefined;
|
|
849
1026
|
tmMatch?: {
|
|
850
1027
|
sourceValue: string;
|
|
851
1028
|
translatedValue: string;
|
|
@@ -860,6 +1037,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
860
1037
|
segments: [{
|
|
861
1038
|
value: string;
|
|
862
1039
|
id: string;
|
|
1040
|
+
translationExamples?: {
|
|
1041
|
+
sourceValue: string;
|
|
1042
|
+
translatedValue: string;
|
|
1043
|
+
}[] | undefined;
|
|
863
1044
|
tmMatch?: {
|
|
864
1045
|
sourceValue: string;
|
|
865
1046
|
translatedValue: string;
|
|
@@ -867,6 +1048,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
867
1048
|
}, ...{
|
|
868
1049
|
value: string;
|
|
869
1050
|
id: string;
|
|
1051
|
+
translationExamples?: {
|
|
1052
|
+
sourceValue: string;
|
|
1053
|
+
translatedValue: string;
|
|
1054
|
+
}[] | undefined;
|
|
870
1055
|
tmMatch?: {
|
|
871
1056
|
sourceValue: string;
|
|
872
1057
|
translatedValue: string;
|
|
@@ -907,7 +1092,7 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
907
1092
|
translatedValue: string;
|
|
908
1093
|
}[] | undefined;
|
|
909
1094
|
} | undefined;
|
|
910
|
-
integration?: "FT-OpenAI" | "Claude" | "
|
|
1095
|
+
integration?: "FT-OpenAI" | "Claude" | "GPT" | "Gemini" | "DeepL" | "GoogleTranslate" | "MicrosoftTranslator" | undefined;
|
|
911
1096
|
forceIntegration?: boolean | undefined;
|
|
912
1097
|
metadata?: Record<string, string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
913
1098
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
@@ -942,6 +1127,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
942
1127
|
segments: [{
|
|
943
1128
|
value: string;
|
|
944
1129
|
id: string;
|
|
1130
|
+
translationExamples?: {
|
|
1131
|
+
sourceValue: string;
|
|
1132
|
+
translatedValue: string;
|
|
1133
|
+
}[] | undefined;
|
|
945
1134
|
tmMatch?: {
|
|
946
1135
|
sourceValue: string;
|
|
947
1136
|
translatedValue: string;
|
|
@@ -949,6 +1138,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
949
1138
|
}, ...{
|
|
950
1139
|
value: string;
|
|
951
1140
|
id: string;
|
|
1141
|
+
translationExamples?: {
|
|
1142
|
+
sourceValue: string;
|
|
1143
|
+
translatedValue: string;
|
|
1144
|
+
}[] | undefined;
|
|
952
1145
|
tmMatch?: {
|
|
953
1146
|
sourceValue: string;
|
|
954
1147
|
translatedValue: string;
|
|
@@ -963,6 +1156,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
963
1156
|
segments: [{
|
|
964
1157
|
value: string;
|
|
965
1158
|
id: string;
|
|
1159
|
+
translationExamples?: {
|
|
1160
|
+
sourceValue: string;
|
|
1161
|
+
translatedValue: string;
|
|
1162
|
+
}[] | undefined;
|
|
966
1163
|
tmMatch?: {
|
|
967
1164
|
sourceValue: string;
|
|
968
1165
|
translatedValue: string;
|
|
@@ -970,6 +1167,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
970
1167
|
}, ...{
|
|
971
1168
|
value: string;
|
|
972
1169
|
id: string;
|
|
1170
|
+
translationExamples?: {
|
|
1171
|
+
sourceValue: string;
|
|
1172
|
+
translatedValue: string;
|
|
1173
|
+
}[] | undefined;
|
|
973
1174
|
tmMatch?: {
|
|
974
1175
|
sourceValue: string;
|
|
975
1176
|
translatedValue: string;
|
|
@@ -1010,7 +1211,7 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
1010
1211
|
translatedValue: string;
|
|
1011
1212
|
}[] | undefined;
|
|
1012
1213
|
} | undefined;
|
|
1013
|
-
integration?: "FT-OpenAI" | "Claude" | "
|
|
1214
|
+
integration?: "FT-OpenAI" | "Claude" | "GPT" | "Gemini" | "ChatGPT-4" | "DeepL" | "GoogleTranslate" | "MicrosoftTranslator" | undefined;
|
|
1014
1215
|
forceIntegration?: boolean | undefined;
|
|
1015
1216
|
metadata?: Record<string, string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
1016
1217
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
@@ -1045,6 +1246,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
1045
1246
|
segments: [{
|
|
1046
1247
|
value: string;
|
|
1047
1248
|
id: string;
|
|
1249
|
+
translationExamples?: {
|
|
1250
|
+
sourceValue: string;
|
|
1251
|
+
translatedValue: string;
|
|
1252
|
+
}[] | undefined;
|
|
1048
1253
|
tmMatch?: {
|
|
1049
1254
|
sourceValue: string;
|
|
1050
1255
|
translatedValue: string;
|
|
@@ -1052,6 +1257,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
1052
1257
|
}, ...{
|
|
1053
1258
|
value: string;
|
|
1054
1259
|
id: string;
|
|
1260
|
+
translationExamples?: {
|
|
1261
|
+
sourceValue: string;
|
|
1262
|
+
translatedValue: string;
|
|
1263
|
+
}[] | undefined;
|
|
1055
1264
|
tmMatch?: {
|
|
1056
1265
|
sourceValue: string;
|
|
1057
1266
|
translatedValue: string;
|
|
@@ -1066,6 +1275,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
1066
1275
|
segments: [{
|
|
1067
1276
|
value: string;
|
|
1068
1277
|
id: string;
|
|
1278
|
+
translationExamples?: {
|
|
1279
|
+
sourceValue: string;
|
|
1280
|
+
translatedValue: string;
|
|
1281
|
+
}[] | undefined;
|
|
1069
1282
|
tmMatch?: {
|
|
1070
1283
|
sourceValue: string;
|
|
1071
1284
|
translatedValue: string;
|
|
@@ -1073,6 +1286,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
1073
1286
|
}, ...{
|
|
1074
1287
|
value: string;
|
|
1075
1288
|
id: string;
|
|
1289
|
+
translationExamples?: {
|
|
1290
|
+
sourceValue: string;
|
|
1291
|
+
translatedValue: string;
|
|
1292
|
+
}[] | undefined;
|
|
1076
1293
|
tmMatch?: {
|
|
1077
1294
|
sourceValue: string;
|
|
1078
1295
|
translatedValue: string;
|
|
@@ -1113,7 +1330,7 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
1113
1330
|
translatedValue: string;
|
|
1114
1331
|
}[] | undefined;
|
|
1115
1332
|
} | undefined;
|
|
1116
|
-
integration?: "FT-OpenAI" | "Claude" | "
|
|
1333
|
+
integration?: "FT-OpenAI" | "Claude" | "GPT" | "Gemini" | "DeepL" | "GoogleTranslate" | "MicrosoftTranslator" | undefined;
|
|
1117
1334
|
forceIntegration?: boolean | undefined;
|
|
1118
1335
|
metadata?: Record<string, string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
1119
1336
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
@@ -1148,6 +1365,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
1148
1365
|
segments: [{
|
|
1149
1366
|
value: string;
|
|
1150
1367
|
id: string;
|
|
1368
|
+
translationExamples?: {
|
|
1369
|
+
sourceValue: string;
|
|
1370
|
+
translatedValue: string;
|
|
1371
|
+
}[] | undefined;
|
|
1151
1372
|
tmMatch?: {
|
|
1152
1373
|
sourceValue: string;
|
|
1153
1374
|
translatedValue: string;
|
|
@@ -1155,6 +1376,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
1155
1376
|
}, ...{
|
|
1156
1377
|
value: string;
|
|
1157
1378
|
id: string;
|
|
1379
|
+
translationExamples?: {
|
|
1380
|
+
sourceValue: string;
|
|
1381
|
+
translatedValue: string;
|
|
1382
|
+
}[] | undefined;
|
|
1158
1383
|
tmMatch?: {
|
|
1159
1384
|
sourceValue: string;
|
|
1160
1385
|
translatedValue: string;
|
|
@@ -1169,6 +1394,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
1169
1394
|
segments: [{
|
|
1170
1395
|
value: string;
|
|
1171
1396
|
id: string;
|
|
1397
|
+
translationExamples?: {
|
|
1398
|
+
sourceValue: string;
|
|
1399
|
+
translatedValue: string;
|
|
1400
|
+
}[] | undefined;
|
|
1172
1401
|
tmMatch?: {
|
|
1173
1402
|
sourceValue: string;
|
|
1174
1403
|
translatedValue: string;
|
|
@@ -1176,6 +1405,10 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
1176
1405
|
}, ...{
|
|
1177
1406
|
value: string;
|
|
1178
1407
|
id: string;
|
|
1408
|
+
translationExamples?: {
|
|
1409
|
+
sourceValue: string;
|
|
1410
|
+
translatedValue: string;
|
|
1411
|
+
}[] | undefined;
|
|
1179
1412
|
tmMatch?: {
|
|
1180
1413
|
sourceValue: string;
|
|
1181
1414
|
translatedValue: string;
|
|
@@ -1216,7 +1449,7 @@ export declare const TRANSLATE_SYNC_BODY_SCHEMA: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
1216
1449
|
translatedValue: string;
|
|
1217
1450
|
}[] | undefined;
|
|
1218
1451
|
} | undefined;
|
|
1219
|
-
integration?: "FT-OpenAI" | "Claude" | "
|
|
1452
|
+
integration?: "FT-OpenAI" | "Claude" | "GPT" | "Gemini" | "ChatGPT-4" | "DeepL" | "GoogleTranslate" | "MicrosoftTranslator" | undefined;
|
|
1220
1453
|
forceIntegration?: boolean | undefined;
|
|
1221
1454
|
metadata?: Record<string, string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
1222
1455
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
@@ -1285,15 +1518,15 @@ export declare const TRANSLATE_SYNC_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
1285
1518
|
}[] | undefined;
|
|
1286
1519
|
polyglotRefId?: string | undefined;
|
|
1287
1520
|
}>, "many">;
|
|
1288
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodObject<
|
|
1521
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1289
1522
|
message: z.ZodString;
|
|
1290
1523
|
errorCode: z.ZodString;
|
|
1291
1524
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1292
|
-
}
|
|
1525
|
+
} & {
|
|
1293
1526
|
contentUnitId: z.ZodString;
|
|
1294
1527
|
segmentId: z.ZodString;
|
|
1295
1528
|
integration: z.ZodString;
|
|
1296
|
-
}
|
|
1529
|
+
}, "strip", z.ZodTypeAny, {
|
|
1297
1530
|
message: string;
|
|
1298
1531
|
errorCode: string;
|
|
1299
1532
|
integration: string;
|