@lokalise/polyglot-sdk 21.0.1 → 22.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 +10 -10
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/sdk/PolyglotClient.js.map +1 -1
- package/dist/sdk/schemas/common/asyncRequestSchemas.d.ts +4 -14
- package/dist/sdk/schemas/common/asyncRequestSchemas.js +1 -2
- package/dist/sdk/schemas/common/asyncRequestSchemas.js.map +1 -1
- package/dist/sdk/schemas/common/commonSchemas.d.ts +19 -68
- package/dist/sdk/schemas/common/commonSchemas.js +6 -9
- package/dist/sdk/schemas/common/commonSchemas.js.map +1 -1
- package/dist/sdk/schemas/common/errorSchemas.d.ts +6 -51
- package/dist/sdk/schemas/common/errorSchemas.js +1 -1
- package/dist/sdk/schemas/common/errorSchemas.js.map +1 -1
- package/dist/sdk/schemas/common/translationContextSchemas.d.ts +142 -438
- package/dist/sdk/schemas/common/translationContextSchemas.js +1 -1
- package/dist/sdk/schemas/common/translationContextSchemas.js.map +1 -1
- package/dist/sdk/schemas/lqa/commonSchemas.d.ts +38 -264
- package/dist/sdk/schemas/lqa/commonSchemas.js +1 -1
- package/dist/sdk/schemas/lqa/commonSchemas.js.map +1 -1
- package/dist/sdk/schemas/lqa/lqaAsyncSchemas.d.ts +87 -817
- package/dist/sdk/schemas/lqa/lqaAsyncSchemas.js +4 -4
- package/dist/sdk/schemas/lqa/lqaAsyncSchemas.js.map +1 -1
- package/dist/sdk/schemas/lqa/lqaSyncSchemas.d.ts +76 -685
- package/dist/sdk/schemas/lqa/lqaSyncSchemas.js +2 -2
- package/dist/sdk/schemas/lqa/lqaSyncSchemas.js.map +1 -1
- package/dist/sdk/schemas/translation/generateVariants.d.ts +67 -524
- package/dist/sdk/schemas/translation/generateVariants.js +16 -6
- package/dist/sdk/schemas/translation/generateVariants.js.map +1 -1
- package/dist/sdk/schemas/translation/rewriteTextSchemas.d.ts +233 -1512
- package/dist/sdk/schemas/translation/rewriteTextSchemas.js +22 -4
- package/dist/sdk/schemas/translation/rewriteTextSchemas.js.map +1 -1
- package/dist/sdk/schemas/translation/sharedSchemas.d.ts +70 -451
- package/dist/sdk/schemas/translation/sharedSchemas.js +5 -12
- package/dist/sdk/schemas/translation/sharedSchemas.js.map +1 -1
- package/dist/sdk/schemas/translation/translateAsyncSchemas.d.ts +117 -2123
- package/dist/sdk/schemas/translation/translateAsyncSchemas.js +15 -6
- package/dist/sdk/schemas/translation/translateAsyncSchemas.js.map +1 -1
- package/dist/sdk/schemas/translation/translateSyncSchemas.d.ts +111 -1683
- package/dist/sdk/schemas/translation/translateSyncSchemas.js +16 -6
- package/dist/sdk/schemas/translation/translateSyncSchemas.js.map +1 -1
- package/dist/sdk/schemas/translation/translateTextSegmentSchemas.d.ts +87 -1079
- package/dist/sdk/schemas/translation/translateTextSegmentSchemas.js +4 -4
- package/dist/sdk/schemas/translation/translateTextSegmentSchemas.js.map +1 -1
- package/package.json +10 -13
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import z from 'zod';
|
|
1
|
+
import z from 'zod/v4';
|
|
2
2
|
import type { ObjectValues } from '../../types/common.ts';
|
|
3
3
|
export declare const LqaIssueSeverityEnum: {
|
|
4
4
|
readonly NEUTRAL: "neutral";
|
|
@@ -9,52 +9,28 @@ export declare const LqaIssueSeverityEnum: {
|
|
|
9
9
|
export type LqaIssueSeverityEnum = ObjectValues<typeof LqaIssueSeverityEnum>;
|
|
10
10
|
export declare const LQA_TRANSLATION_ID_SCHEMA: z.ZodString;
|
|
11
11
|
export declare const LQA_CONTENT_UNIT_ID_SCHEMA: z.ZodString;
|
|
12
|
-
export declare const LQA_SEGMENT_SCHEMA: z.
|
|
13
|
-
sourceValue: z.
|
|
12
|
+
export declare const LQA_SEGMENT_SCHEMA: z.ZodPipe<z.ZodObject<{
|
|
13
|
+
sourceValue: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
14
14
|
translations: z.ZodArray<z.ZodObject<{
|
|
15
15
|
id: z.ZodString;
|
|
16
|
-
locale: z.
|
|
17
|
-
value: z.
|
|
18
|
-
},
|
|
19
|
-
value: string;
|
|
20
|
-
id: string;
|
|
21
|
-
locale: string;
|
|
22
|
-
}, {
|
|
23
|
-
value: string;
|
|
24
|
-
id: string;
|
|
25
|
-
locale: string;
|
|
26
|
-
}>, "atleastone">;
|
|
16
|
+
locale: z.ZodString;
|
|
17
|
+
value: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
18
|
+
}, z.core.$strip>>;
|
|
27
19
|
tmMatch: z.ZodOptional<z.ZodObject<{
|
|
28
|
-
sourceValue: z.
|
|
29
|
-
translatedValue: z.
|
|
30
|
-
},
|
|
31
|
-
sourceValue: string;
|
|
32
|
-
translatedValue: string;
|
|
33
|
-
}, {
|
|
34
|
-
sourceValue: string;
|
|
35
|
-
translatedValue: string;
|
|
36
|
-
}>>;
|
|
20
|
+
sourceValue: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
21
|
+
translatedValue: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
22
|
+
}, z.core.$strip>>;
|
|
37
23
|
translationExamples: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
38
|
-
sourceValue: z.
|
|
39
|
-
translatedValue: z.
|
|
40
|
-
},
|
|
41
|
-
|
|
42
|
-
translatedValue: string;
|
|
43
|
-
}, {
|
|
44
|
-
sourceValue: string;
|
|
45
|
-
translatedValue: string;
|
|
46
|
-
}>, "many">>;
|
|
47
|
-
}, "strip", z.ZodTypeAny, {
|
|
24
|
+
sourceValue: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
25
|
+
translatedValue: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
26
|
+
}, z.core.$strip>>>;
|
|
27
|
+
}, z.core.$strip>, z.ZodTransform<{
|
|
48
28
|
sourceValue: string;
|
|
49
|
-
translations:
|
|
50
|
-
value: string;
|
|
29
|
+
translations: {
|
|
51
30
|
id: string;
|
|
52
31
|
locale: string;
|
|
53
|
-
}, ...{
|
|
54
32
|
value: string;
|
|
55
|
-
|
|
56
|
-
locale: string;
|
|
57
|
-
}[]];
|
|
33
|
+
}[];
|
|
58
34
|
tmMatch?: {
|
|
59
35
|
sourceValue: string;
|
|
60
36
|
translatedValue: string;
|
|
@@ -65,15 +41,11 @@ export declare const LQA_SEGMENT_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
65
41
|
}[] | undefined;
|
|
66
42
|
}, {
|
|
67
43
|
sourceValue: string;
|
|
68
|
-
translations:
|
|
69
|
-
value: string;
|
|
44
|
+
translations: {
|
|
70
45
|
id: string;
|
|
71
46
|
locale: string;
|
|
72
|
-
}, ...{
|
|
73
47
|
value: string;
|
|
74
|
-
|
|
75
|
-
locale: string;
|
|
76
|
-
}[]];
|
|
48
|
+
}[];
|
|
77
49
|
tmMatch?: {
|
|
78
50
|
sourceValue: string;
|
|
79
51
|
translatedValue: string;
|
|
@@ -82,100 +54,34 @@ export declare const LQA_SEGMENT_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
82
54
|
sourceValue: string;
|
|
83
55
|
translatedValue: string;
|
|
84
56
|
}[] | undefined;
|
|
85
|
-
}
|
|
86
|
-
sourceValue: string;
|
|
87
|
-
translations: [{
|
|
88
|
-
value: string;
|
|
89
|
-
id: string;
|
|
90
|
-
locale: string;
|
|
91
|
-
}, ...{
|
|
92
|
-
value: string;
|
|
93
|
-
id: string;
|
|
94
|
-
locale: string;
|
|
95
|
-
}[]];
|
|
96
|
-
tmMatch?: {
|
|
97
|
-
sourceValue: string;
|
|
98
|
-
translatedValue: string;
|
|
99
|
-
} | undefined;
|
|
100
|
-
translationExamples?: {
|
|
101
|
-
sourceValue: string;
|
|
102
|
-
translatedValue: string;
|
|
103
|
-
}[] | undefined;
|
|
104
|
-
}, {
|
|
105
|
-
sourceValue: string;
|
|
106
|
-
translations: [{
|
|
107
|
-
value: string;
|
|
108
|
-
id: string;
|
|
109
|
-
locale: string;
|
|
110
|
-
}, ...{
|
|
111
|
-
value: string;
|
|
112
|
-
id: string;
|
|
113
|
-
locale: string;
|
|
114
|
-
}[]];
|
|
115
|
-
tmMatch?: {
|
|
116
|
-
sourceValue: string;
|
|
117
|
-
translatedValue: string;
|
|
118
|
-
} | undefined;
|
|
119
|
-
translationExamples?: {
|
|
120
|
-
sourceValue: string;
|
|
121
|
-
translatedValue: string;
|
|
122
|
-
}[] | undefined;
|
|
123
|
-
}>;
|
|
57
|
+
}>>;
|
|
124
58
|
export declare const LQA_CONTENT_UNIT_SCHEMA: z.ZodObject<{
|
|
125
59
|
id: z.ZodString;
|
|
126
60
|
context: z.ZodOptional<z.ZodObject<{
|
|
127
|
-
description: z.ZodOptional<z.
|
|
128
|
-
},
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
description?: string | undefined;
|
|
132
|
-
}>>;
|
|
133
|
-
segments: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
134
|
-
sourceValue: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
61
|
+
description: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
|
|
62
|
+
}, z.core.$strip>>;
|
|
63
|
+
segments: z.ZodArray<z.ZodPipe<z.ZodObject<{
|
|
64
|
+
sourceValue: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
135
65
|
translations: z.ZodArray<z.ZodObject<{
|
|
136
66
|
id: z.ZodString;
|
|
137
|
-
locale: z.
|
|
138
|
-
value: z.
|
|
139
|
-
},
|
|
140
|
-
value: string;
|
|
141
|
-
id: string;
|
|
142
|
-
locale: string;
|
|
143
|
-
}, {
|
|
144
|
-
value: string;
|
|
145
|
-
id: string;
|
|
146
|
-
locale: string;
|
|
147
|
-
}>, "atleastone">;
|
|
67
|
+
locale: z.ZodString;
|
|
68
|
+
value: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
69
|
+
}, z.core.$strip>>;
|
|
148
70
|
tmMatch: z.ZodOptional<z.ZodObject<{
|
|
149
|
-
sourceValue: z.
|
|
150
|
-
translatedValue: z.
|
|
151
|
-
},
|
|
152
|
-
sourceValue: string;
|
|
153
|
-
translatedValue: string;
|
|
154
|
-
}, {
|
|
155
|
-
sourceValue: string;
|
|
156
|
-
translatedValue: string;
|
|
157
|
-
}>>;
|
|
71
|
+
sourceValue: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
72
|
+
translatedValue: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
73
|
+
}, z.core.$strip>>;
|
|
158
74
|
translationExamples: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
159
|
-
sourceValue: z.
|
|
160
|
-
translatedValue: z.
|
|
161
|
-
},
|
|
162
|
-
|
|
163
|
-
translatedValue: string;
|
|
164
|
-
}, {
|
|
165
|
-
sourceValue: string;
|
|
166
|
-
translatedValue: string;
|
|
167
|
-
}>, "many">>;
|
|
168
|
-
}, "strip", z.ZodTypeAny, {
|
|
75
|
+
sourceValue: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
76
|
+
translatedValue: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
77
|
+
}, z.core.$strip>>>;
|
|
78
|
+
}, z.core.$strip>, z.ZodTransform<{
|
|
169
79
|
sourceValue: string;
|
|
170
|
-
translations:
|
|
171
|
-
value: string;
|
|
80
|
+
translations: {
|
|
172
81
|
id: string;
|
|
173
82
|
locale: string;
|
|
174
|
-
}, ...{
|
|
175
83
|
value: string;
|
|
176
|
-
|
|
177
|
-
locale: string;
|
|
178
|
-
}[]];
|
|
84
|
+
}[];
|
|
179
85
|
tmMatch?: {
|
|
180
86
|
sourceValue: string;
|
|
181
87
|
translatedValue: string;
|
|
@@ -186,15 +92,11 @@ export declare const LQA_CONTENT_UNIT_SCHEMA: z.ZodObject<{
|
|
|
186
92
|
}[] | undefined;
|
|
187
93
|
}, {
|
|
188
94
|
sourceValue: string;
|
|
189
|
-
translations:
|
|
190
|
-
value: string;
|
|
95
|
+
translations: {
|
|
191
96
|
id: string;
|
|
192
97
|
locale: string;
|
|
193
|
-
}, ...{
|
|
194
98
|
value: string;
|
|
195
|
-
|
|
196
|
-
locale: string;
|
|
197
|
-
}[]];
|
|
99
|
+
}[];
|
|
198
100
|
tmMatch?: {
|
|
199
101
|
sourceValue: string;
|
|
200
102
|
translatedValue: string;
|
|
@@ -203,136 +105,8 @@ export declare const LQA_CONTENT_UNIT_SCHEMA: z.ZodObject<{
|
|
|
203
105
|
sourceValue: string;
|
|
204
106
|
translatedValue: string;
|
|
205
107
|
}[] | undefined;
|
|
206
|
-
}
|
|
207
|
-
sourceValue: string;
|
|
208
|
-
translations: [{
|
|
209
|
-
value: string;
|
|
210
|
-
id: string;
|
|
211
|
-
locale: string;
|
|
212
|
-
}, ...{
|
|
213
|
-
value: string;
|
|
214
|
-
id: string;
|
|
215
|
-
locale: string;
|
|
216
|
-
}[]];
|
|
217
|
-
tmMatch?: {
|
|
218
|
-
sourceValue: string;
|
|
219
|
-
translatedValue: string;
|
|
220
|
-
} | undefined;
|
|
221
|
-
translationExamples?: {
|
|
222
|
-
sourceValue: string;
|
|
223
|
-
translatedValue: string;
|
|
224
|
-
}[] | undefined;
|
|
225
|
-
}, {
|
|
226
|
-
sourceValue: string;
|
|
227
|
-
translations: [{
|
|
228
|
-
value: string;
|
|
229
|
-
id: string;
|
|
230
|
-
locale: string;
|
|
231
|
-
}, ...{
|
|
232
|
-
value: string;
|
|
233
|
-
id: string;
|
|
234
|
-
locale: string;
|
|
235
|
-
}[]];
|
|
236
|
-
tmMatch?: {
|
|
237
|
-
sourceValue: string;
|
|
238
|
-
translatedValue: string;
|
|
239
|
-
} | undefined;
|
|
240
|
-
translationExamples?: {
|
|
241
|
-
sourceValue: string;
|
|
242
|
-
translatedValue: string;
|
|
243
|
-
}[] | undefined;
|
|
244
|
-
}>, "atleastone">;
|
|
108
|
+
}>>>;
|
|
245
109
|
characterLimit: z.ZodOptional<z.ZodNumber>;
|
|
246
|
-
},
|
|
247
|
-
segments: [{
|
|
248
|
-
sourceValue: string;
|
|
249
|
-
translations: [{
|
|
250
|
-
value: string;
|
|
251
|
-
id: string;
|
|
252
|
-
locale: string;
|
|
253
|
-
}, ...{
|
|
254
|
-
value: string;
|
|
255
|
-
id: string;
|
|
256
|
-
locale: string;
|
|
257
|
-
}[]];
|
|
258
|
-
tmMatch?: {
|
|
259
|
-
sourceValue: string;
|
|
260
|
-
translatedValue: string;
|
|
261
|
-
} | undefined;
|
|
262
|
-
translationExamples?: {
|
|
263
|
-
sourceValue: string;
|
|
264
|
-
translatedValue: string;
|
|
265
|
-
}[] | undefined;
|
|
266
|
-
}, ...{
|
|
267
|
-
sourceValue: string;
|
|
268
|
-
translations: [{
|
|
269
|
-
value: string;
|
|
270
|
-
id: string;
|
|
271
|
-
locale: string;
|
|
272
|
-
}, ...{
|
|
273
|
-
value: string;
|
|
274
|
-
id: string;
|
|
275
|
-
locale: string;
|
|
276
|
-
}[]];
|
|
277
|
-
tmMatch?: {
|
|
278
|
-
sourceValue: string;
|
|
279
|
-
translatedValue: string;
|
|
280
|
-
} | undefined;
|
|
281
|
-
translationExamples?: {
|
|
282
|
-
sourceValue: string;
|
|
283
|
-
translatedValue: string;
|
|
284
|
-
}[] | undefined;
|
|
285
|
-
}[]];
|
|
286
|
-
id: string;
|
|
287
|
-
context?: {
|
|
288
|
-
description?: string | undefined;
|
|
289
|
-
} | undefined;
|
|
290
|
-
characterLimit?: number | undefined;
|
|
291
|
-
}, {
|
|
292
|
-
segments: [{
|
|
293
|
-
sourceValue: string;
|
|
294
|
-
translations: [{
|
|
295
|
-
value: string;
|
|
296
|
-
id: string;
|
|
297
|
-
locale: string;
|
|
298
|
-
}, ...{
|
|
299
|
-
value: string;
|
|
300
|
-
id: string;
|
|
301
|
-
locale: string;
|
|
302
|
-
}[]];
|
|
303
|
-
tmMatch?: {
|
|
304
|
-
sourceValue: string;
|
|
305
|
-
translatedValue: string;
|
|
306
|
-
} | undefined;
|
|
307
|
-
translationExamples?: {
|
|
308
|
-
sourceValue: string;
|
|
309
|
-
translatedValue: string;
|
|
310
|
-
}[] | undefined;
|
|
311
|
-
}, ...{
|
|
312
|
-
sourceValue: string;
|
|
313
|
-
translations: [{
|
|
314
|
-
value: string;
|
|
315
|
-
id: string;
|
|
316
|
-
locale: string;
|
|
317
|
-
}, ...{
|
|
318
|
-
value: string;
|
|
319
|
-
id: string;
|
|
320
|
-
locale: string;
|
|
321
|
-
}[]];
|
|
322
|
-
tmMatch?: {
|
|
323
|
-
sourceValue: string;
|
|
324
|
-
translatedValue: string;
|
|
325
|
-
} | undefined;
|
|
326
|
-
translationExamples?: {
|
|
327
|
-
sourceValue: string;
|
|
328
|
-
translatedValue: string;
|
|
329
|
-
}[] | undefined;
|
|
330
|
-
}[]];
|
|
331
|
-
id: string;
|
|
332
|
-
context?: {
|
|
333
|
-
description?: string | undefined;
|
|
334
|
-
} | undefined;
|
|
335
|
-
characterLimit?: number | undefined;
|
|
336
|
-
}>;
|
|
110
|
+
}, z.core.$strip>;
|
|
337
111
|
export type LqaAsyncContentUnit = z.infer<typeof LQA_CONTENT_UNIT_SCHEMA>;
|
|
338
112
|
export type LqaAsyncSegment = z.infer<typeof LQA_SEGMENT_SCHEMA>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import z from 'zod';
|
|
1
|
+
import z from 'zod/v4';
|
|
2
2
|
import { removeUnicodeNullCharacters } from "../../helpers/removeUnicodeNullCharacters.js";
|
|
3
3
|
import { isSegmentUnderLengthLimit } from "../../validation/isSegmentUnderLengthLimit.js";
|
|
4
4
|
import { CONTENT_ID_PROP_SCHEMA, LOCALE_SCHEMA, SEGMENT_VALUE_MAX_LENGTH_DEFAULT, TM_MATCH_SCHEMA, TRANSLATION_EXAMPLE_SCHEMA, } from "../common/commonSchemas.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"commonSchemas.js","sourceRoot":"","sources":["../../../../src/sdk/schemas/lqa/commonSchemas.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"commonSchemas.js","sourceRoot":"","sources":["../../../../src/sdk/schemas/lqa/commonSchemas.ts"],"names":[],"mappings":"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"}
|