@lokalise/ragnarok-api-contracts 2.5.0 → 3.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.
|
@@ -3,121 +3,76 @@ declare const GET_EVALUATION_PARAMS_SCHEMA: z.ZodObject<{
|
|
|
3
3
|
evaluationId: z.ZodUUID;
|
|
4
4
|
}, z.core.$strip>;
|
|
5
5
|
export type GetEvaluationParams = z.infer<typeof GET_EVALUATION_PARAMS_SCHEMA>;
|
|
6
|
-
export declare const getEvaluation:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
metricsMetadata: z.ZodObject<{
|
|
15
|
-
exactMatch: z.ZodObject<{
|
|
16
|
-
betterWhen: z.ZodEnum<{
|
|
17
|
-
higher: "higher";
|
|
18
|
-
lower: "lower";
|
|
19
|
-
}>;
|
|
20
|
-
}, z.core.$strip>;
|
|
21
|
-
ter: z.ZodObject<{
|
|
22
|
-
betterWhen: z.ZodEnum<{
|
|
23
|
-
higher: "higher";
|
|
24
|
-
lower: "lower";
|
|
25
|
-
}>;
|
|
26
|
-
}, z.core.$strip>;
|
|
27
|
-
bleu: z.ZodObject<{
|
|
28
|
-
betterWhen: z.ZodEnum<{
|
|
29
|
-
higher: "higher";
|
|
30
|
-
lower: "lower";
|
|
31
|
-
}>;
|
|
32
|
-
}, z.core.$strip>;
|
|
33
|
-
meteor: z.ZodObject<{
|
|
34
|
-
betterWhen: z.ZodEnum<{
|
|
35
|
-
higher: "higher";
|
|
36
|
-
lower: "lower";
|
|
37
|
-
}>;
|
|
38
|
-
}, z.core.$strip>;
|
|
6
|
+
export declare const getEvaluation: {
|
|
7
|
+
readonly method: "get";
|
|
8
|
+
readonly pathResolver: ({ evaluationId }: {
|
|
9
|
+
evaluationId: string;
|
|
10
|
+
}) => string;
|
|
11
|
+
readonly description: "Retrieve evaluation by id";
|
|
12
|
+
readonly requestPathParamsSchema: z.ZodObject<{
|
|
13
|
+
evaluationId: z.ZodUUID;
|
|
39
14
|
}, z.core.$strip>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
}, z.core.$strip
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
lower: "lower";
|
|
78
|
-
}>;
|
|
79
|
-
}, z.core.$strip>;
|
|
80
|
-
ter: z.ZodObject<{
|
|
81
|
-
betterWhen: z.ZodEnum<{
|
|
82
|
-
higher: "higher";
|
|
83
|
-
lower: "lower";
|
|
84
|
-
}>;
|
|
85
|
-
}, z.core.$strip>;
|
|
86
|
-
bleu: z.ZodObject<{
|
|
87
|
-
betterWhen: z.ZodEnum<{
|
|
88
|
-
higher: "higher";
|
|
89
|
-
lower: "lower";
|
|
90
|
-
}>;
|
|
91
|
-
}, z.core.$strip>;
|
|
92
|
-
meteor: z.ZodObject<{
|
|
93
|
-
betterWhen: z.ZodEnum<{
|
|
94
|
-
higher: "higher";
|
|
95
|
-
lower: "lower";
|
|
96
|
-
}>;
|
|
97
|
-
}, z.core.$strip>;
|
|
98
|
-
}, z.core.$strip>;
|
|
99
|
-
results: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
100
|
-
configurationName: z.ZodString;
|
|
101
|
-
global: z.ZodObject<{
|
|
102
|
-
exactMatch: z.ZodOptional<z.ZodNumber>;
|
|
103
|
-
ter: z.ZodOptional<z.ZodNumber>;
|
|
104
|
-
bleu: z.ZodOptional<z.ZodNumber>;
|
|
105
|
-
meteor: z.ZodOptional<z.ZodNumber>;
|
|
15
|
+
readonly requestHeaderSchema: z.ZodObject<{
|
|
16
|
+
authorization: z.ZodString;
|
|
17
|
+
}, z.core.$strip>;
|
|
18
|
+
readonly responsesByStatusCode: {
|
|
19
|
+
readonly 200: z.ZodObject<{
|
|
20
|
+
id: z.ZodUUID;
|
|
21
|
+
ownerId: z.ZodString;
|
|
22
|
+
status: z.ZodEnum<{
|
|
23
|
+
completed: "completed";
|
|
24
|
+
failed: "failed";
|
|
25
|
+
pending: "pending";
|
|
26
|
+
}>;
|
|
27
|
+
metricsMetadata: z.ZodObject<{
|
|
28
|
+
exactMatch: z.ZodObject<{
|
|
29
|
+
betterWhen: z.ZodEnum<{
|
|
30
|
+
higher: "higher";
|
|
31
|
+
lower: "lower";
|
|
32
|
+
}>;
|
|
33
|
+
}, z.core.$strip>;
|
|
34
|
+
ter: z.ZodObject<{
|
|
35
|
+
betterWhen: z.ZodEnum<{
|
|
36
|
+
higher: "higher";
|
|
37
|
+
lower: "lower";
|
|
38
|
+
}>;
|
|
39
|
+
}, z.core.$strip>;
|
|
40
|
+
bleu: z.ZodObject<{
|
|
41
|
+
betterWhen: z.ZodEnum<{
|
|
42
|
+
higher: "higher";
|
|
43
|
+
lower: "lower";
|
|
44
|
+
}>;
|
|
45
|
+
}, z.core.$strip>;
|
|
46
|
+
meteor: z.ZodObject<{
|
|
47
|
+
betterWhen: z.ZodEnum<{
|
|
48
|
+
higher: "higher";
|
|
49
|
+
lower: "lower";
|
|
50
|
+
}>;
|
|
51
|
+
}, z.core.$strip>;
|
|
106
52
|
}, z.core.$strip>;
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
metrics: z.ZodObject<{
|
|
53
|
+
results: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
54
|
+
configurationName: z.ZodString;
|
|
55
|
+
global: z.ZodObject<{
|
|
111
56
|
exactMatch: z.ZodOptional<z.ZodNumber>;
|
|
112
57
|
ter: z.ZodOptional<z.ZodNumber>;
|
|
113
58
|
bleu: z.ZodOptional<z.ZodNumber>;
|
|
114
59
|
meteor: z.ZodOptional<z.ZodNumber>;
|
|
115
60
|
}, z.core.$strip>;
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
61
|
+
resultsByLocalePair: z.ZodArray<z.ZodObject<{
|
|
62
|
+
sourceLocale: z.ZodString;
|
|
63
|
+
targetLocale: z.ZodString;
|
|
64
|
+
metrics: z.ZodObject<{
|
|
65
|
+
exactMatch: z.ZodOptional<z.ZodNumber>;
|
|
66
|
+
ter: z.ZodOptional<z.ZodNumber>;
|
|
67
|
+
bleu: z.ZodOptional<z.ZodNumber>;
|
|
68
|
+
meteor: z.ZodOptional<z.ZodNumber>;
|
|
69
|
+
}, z.core.$strip>;
|
|
70
|
+
}, z.core.$strip>>;
|
|
71
|
+
}, z.core.$strip>>>;
|
|
72
|
+
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
73
|
+
}, z.core.$strip>;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
121
76
|
export declare const DATASET_INPUT_SCHEMA: z.ZodObject<{
|
|
122
77
|
fileUrl: z.ZodURL;
|
|
123
78
|
}, z.core.$strip>;
|
|
@@ -170,149 +125,174 @@ declare const SCHEDULE_EVALUATION_BODY_SCHEMA: z.ZodObject<{
|
|
|
170
125
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
171
126
|
}, z.core.$strip>;
|
|
172
127
|
export type ScheduleEvaluationInput = z.infer<typeof SCHEDULE_EVALUATION_BODY_SCHEMA>;
|
|
173
|
-
export declare const postScheduleEvaluation:
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
128
|
+
export declare const postScheduleEvaluation: {
|
|
129
|
+
readonly method: "post";
|
|
130
|
+
readonly pathResolver: () => string;
|
|
131
|
+
readonly description: "Schedule evaluation";
|
|
132
|
+
readonly requestHeaderSchema: z.ZodObject<{
|
|
133
|
+
authorization: z.ZodString;
|
|
134
|
+
'idempotency-key': z.ZodOptional<z.ZodString>;
|
|
181
135
|
}, z.core.$strip>;
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
readonly CLAUDE: "Claude";
|
|
187
|
-
readonly CLAUDE_BEDROCK: "Claude-Bedrock";
|
|
188
|
-
readonly GPT: "GPT";
|
|
189
|
-
readonly GEMINI: "Gemini";
|
|
190
|
-
readonly DEEPL: "DeepL";
|
|
191
|
-
readonly GOOGLE_TRANSLATE: "GoogleTranslate";
|
|
192
|
-
}>>;
|
|
193
|
-
isForced: z.ZodDefault<z.ZodBoolean>;
|
|
136
|
+
readonly requestBodySchema: z.ZodObject<{
|
|
137
|
+
ownerId: z.ZodString;
|
|
138
|
+
datasets: z.ZodArray<z.ZodObject<{
|
|
139
|
+
fileUrl: z.ZodURL;
|
|
194
140
|
}, z.core.$strip>>;
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
141
|
+
webhook: z.ZodObject<{
|
|
142
|
+
url: z.ZodURL;
|
|
143
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
144
|
+
}, z.core.$strip>;
|
|
145
|
+
runConfigurations: z.ZodArray<z.ZodObject<{
|
|
146
|
+
name: z.ZodString;
|
|
147
|
+
integration: z.ZodOptional<z.ZodObject<{
|
|
148
|
+
engine: z.ZodOptional<z.ZodEnum<{
|
|
149
|
+
readonly CLAUDE: "Claude";
|
|
150
|
+
readonly CLAUDE_BEDROCK: "Claude-Bedrock";
|
|
151
|
+
readonly GPT: "GPT";
|
|
152
|
+
readonly GEMINI: "Gemini";
|
|
153
|
+
readonly DEEPL: "DeepL";
|
|
154
|
+
readonly GOOGLE_TRANSLATE: "GoogleTranslate";
|
|
155
|
+
}>>;
|
|
156
|
+
isForced: z.ZodDefault<z.ZodBoolean>;
|
|
157
|
+
}, z.core.$strip>>;
|
|
158
|
+
useExamples: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
159
|
+
useStyleguide: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
160
|
+
useGlossary: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
161
|
+
useDescriptions: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
162
|
+
}, z.core.$strip>>;
|
|
163
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
209
164
|
}, z.core.$strip>;
|
|
210
|
-
|
|
165
|
+
readonly responsesByStatusCode: {
|
|
166
|
+
readonly 202: z.ZodObject<{
|
|
167
|
+
evaluationId: z.ZodUUID;
|
|
168
|
+
}, z.core.$strip>;
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
declare const PaginationCursorSchema: z.ZodObject<{
|
|
172
|
+
id: z.ZodString;
|
|
173
|
+
exactMatch: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
174
|
+
ter: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
175
|
+
meteor: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
176
|
+
}, z.core.$strip>;
|
|
177
|
+
export type PaginationCursor = z.infer<typeof PaginationCursorSchema>;
|
|
178
|
+
export declare const PaginationCursorCodec: z.ZodCodec<z.ZodString, z.ZodObject<{
|
|
179
|
+
id: z.ZodString;
|
|
180
|
+
exactMatch: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
181
|
+
ter: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
182
|
+
meteor: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
183
|
+
}, z.core.$strip>>;
|
|
211
184
|
declare const GET_EVALUATION_ITEMS_PARAMS_SCHEMA: z.ZodObject<{
|
|
212
185
|
evaluationId: z.ZodUUID;
|
|
213
186
|
}, z.core.$strip>;
|
|
214
187
|
export type GetEvaluationItemsParams = z.infer<typeof GET_EVALUATION_ITEMS_PARAMS_SCHEMA>;
|
|
188
|
+
declare const SORT_FIELDS: readonly ["id", "exactMatch", "ter", "meteor"];
|
|
189
|
+
export type ItemSortBy = (typeof SORT_FIELDS)[number];
|
|
190
|
+
export type ItemSort = {
|
|
191
|
+
by: ItemSortBy;
|
|
192
|
+
order: 'asc' | 'desc';
|
|
193
|
+
};
|
|
215
194
|
declare const GET_EVALUATION_ITEMS_QUERY_SCHEMA: z.ZodObject<{
|
|
216
|
-
before: z.ZodOptional<z.ZodString>;
|
|
217
|
-
after: z.ZodOptional<z.ZodString>;
|
|
218
|
-
'filter-target-locale': z.ZodOptional<z.ZodString>;
|
|
219
195
|
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
196
|
+
before: z.ZodOptional<z.ZodCodec<z.ZodString, z.ZodObject<{
|
|
197
|
+
id: z.ZodString;
|
|
198
|
+
exactMatch: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
199
|
+
ter: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
200
|
+
meteor: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
201
|
+
}, z.core.$strip>>>;
|
|
202
|
+
after: z.ZodOptional<z.ZodCodec<z.ZodString, z.ZodObject<{
|
|
203
|
+
id: z.ZodString;
|
|
204
|
+
exactMatch: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
205
|
+
ter: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
206
|
+
meteor: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
207
|
+
}, z.core.$strip>>>;
|
|
208
|
+
sort: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
209
|
+
[x: string]: string;
|
|
210
|
+
}>>>, z.ZodTransform<ItemSort, string>>;
|
|
211
|
+
'sort-config-name': z.ZodOptional<z.ZodString>;
|
|
212
|
+
'filter-target-locale': z.ZodOptional<z.ZodString>;
|
|
220
213
|
}, z.core.$strip>;
|
|
221
214
|
export type GetEvaluationItemsQuery = z.infer<typeof GET_EVALUATION_ITEMS_QUERY_SCHEMA>;
|
|
222
|
-
export
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
translations: z.ZodArray<z.ZodObject<{
|
|
236
|
-
configurationName: z.ZodString;
|
|
237
|
-
status: z.ZodEnum<{
|
|
238
|
-
translating: "translating";
|
|
239
|
-
translated: "translated";
|
|
240
|
-
scoring: "scoring";
|
|
241
|
-
scored: "scored";
|
|
242
|
-
completed: "completed";
|
|
243
|
-
failed: "failed";
|
|
244
|
-
}>;
|
|
245
|
-
actualTranslation: z.ZodNullable<z.ZodString>;
|
|
246
|
-
actualScore: z.ZodNullable<z.ZodNumber>;
|
|
247
|
-
metrics: z.ZodNullable<z.ZodObject<{
|
|
248
|
-
exactMatch: z.ZodOptional<z.ZodNumber>;
|
|
249
|
-
ter: z.ZodOptional<z.ZodNumber>;
|
|
250
|
-
meteor: z.ZodOptional<z.ZodNumber>;
|
|
251
|
-
}, z.core.$strip>>;
|
|
252
|
-
error: z.ZodNullable<z.ZodObject<{
|
|
253
|
-
message: z.ZodString;
|
|
254
|
-
errorCode: z.ZodString;
|
|
255
|
-
details: z.ZodOptional<z.ZodAny>;
|
|
256
|
-
}, z.core.$strip>>;
|
|
257
|
-
}, z.core.$strip>>;
|
|
258
|
-
}, z.core.$strip>>;
|
|
259
|
-
meta: z.ZodObject<{
|
|
260
|
-
count: z.ZodNumber;
|
|
261
|
-
cursor: z.ZodOptional<z.ZodString>;
|
|
262
|
-
hasMore: z.ZodOptional<z.ZodBoolean>;
|
|
215
|
+
export type EvaluationItemsSort = {
|
|
216
|
+
by: ItemSortBy;
|
|
217
|
+
order: 'asc' | 'desc';
|
|
218
|
+
configName?: string;
|
|
219
|
+
};
|
|
220
|
+
export declare const getEvaluationItems: {
|
|
221
|
+
readonly method: "get";
|
|
222
|
+
readonly pathResolver: ({ evaluationId }: {
|
|
223
|
+
evaluationId: string;
|
|
224
|
+
}) => string;
|
|
225
|
+
readonly description: "Retrieve evaluation items with translations and per-item metrics";
|
|
226
|
+
readonly requestPathParamsSchema: z.ZodObject<{
|
|
227
|
+
evaluationId: z.ZodUUID;
|
|
263
228
|
}, z.core.$strip>;
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
}, z.core.$strip
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
229
|
+
readonly requestQuerySchema: z.ZodObject<{
|
|
230
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
231
|
+
before: z.ZodOptional<z.ZodCodec<z.ZodString, z.ZodObject<{
|
|
232
|
+
id: z.ZodString;
|
|
233
|
+
exactMatch: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
234
|
+
ter: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
235
|
+
meteor: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
236
|
+
}, z.core.$strip>>>;
|
|
237
|
+
after: z.ZodOptional<z.ZodCodec<z.ZodString, z.ZodObject<{
|
|
238
|
+
id: z.ZodString;
|
|
239
|
+
exactMatch: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
240
|
+
ter: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
241
|
+
meteor: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
242
|
+
}, z.core.$strip>>>;
|
|
243
|
+
sort: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
244
|
+
[x: string]: string;
|
|
245
|
+
}>>>, z.ZodTransform<ItemSort, string>>;
|
|
246
|
+
'sort-config-name': z.ZodOptional<z.ZodString>;
|
|
247
|
+
'filter-target-locale': z.ZodOptional<z.ZodString>;
|
|
248
|
+
}, z.core.$strip>;
|
|
249
|
+
readonly requestHeaderSchema: z.ZodObject<{
|
|
250
|
+
authorization: z.ZodString;
|
|
251
|
+
}, z.core.$strip>;
|
|
252
|
+
readonly responsesByStatusCode: {
|
|
253
|
+
readonly 200: z.ZodObject<{
|
|
254
|
+
data: z.ZodArray<z.ZodObject<{
|
|
255
|
+
itemId: z.ZodUUID;
|
|
256
|
+
externalId: z.ZodString;
|
|
257
|
+
sourceLocale: z.ZodString;
|
|
258
|
+
targetLocale: z.ZodString;
|
|
284
259
|
sourceValue: z.ZodString;
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
translating: "translating";
|
|
291
|
-
translated: "translated";
|
|
292
|
-
scoring: "scoring";
|
|
293
|
-
scored: "scored";
|
|
294
|
-
completed: "completed";
|
|
295
|
-
failed: "failed";
|
|
296
|
-
}>;
|
|
297
|
-
actualTranslation: z.ZodNullable<z.ZodString>;
|
|
298
|
-
actualScore: z.ZodNullable<z.ZodNumber>;
|
|
299
|
-
metrics: z.ZodNullable<z.ZodObject<{
|
|
300
|
-
exactMatch: z.ZodOptional<z.ZodNumber>;
|
|
301
|
-
ter: z.ZodOptional<z.ZodNumber>;
|
|
302
|
-
meteor: z.ZodOptional<z.ZodNumber>;
|
|
260
|
+
referenceTranslation: z.ZodString;
|
|
261
|
+
description: z.ZodNullable<z.ZodString>;
|
|
262
|
+
translationExamples: z.ZodArray<z.ZodObject<{
|
|
263
|
+
sourceValue: z.ZodString;
|
|
264
|
+
translatedValue: z.ZodString;
|
|
303
265
|
}, z.core.$strip>>;
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
266
|
+
translations: z.ZodArray<z.ZodObject<{
|
|
267
|
+
configurationName: z.ZodString;
|
|
268
|
+
status: z.ZodEnum<{
|
|
269
|
+
translating: "translating";
|
|
270
|
+
translated: "translated";
|
|
271
|
+
scoring: "scoring";
|
|
272
|
+
scored: "scored";
|
|
273
|
+
completed: "completed";
|
|
274
|
+
failed: "failed";
|
|
275
|
+
}>;
|
|
276
|
+
actualTranslation: z.ZodNullable<z.ZodString>;
|
|
277
|
+
actualScore: z.ZodNullable<z.ZodNumber>;
|
|
278
|
+
metrics: z.ZodNullable<z.ZodObject<{
|
|
279
|
+
exactMatch: z.ZodOptional<z.ZodNumber>;
|
|
280
|
+
ter: z.ZodOptional<z.ZodNumber>;
|
|
281
|
+
meteor: z.ZodOptional<z.ZodNumber>;
|
|
282
|
+
}, z.core.$strip>>;
|
|
283
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
284
|
+
message: z.ZodString;
|
|
285
|
+
errorCode: z.ZodString;
|
|
286
|
+
details: z.ZodOptional<z.ZodAny>;
|
|
287
|
+
}, z.core.$strip>>;
|
|
308
288
|
}, z.core.$strip>>;
|
|
309
289
|
}, z.core.$strip>>;
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
290
|
+
meta: z.ZodObject<{
|
|
291
|
+
resultCount: z.ZodNumber;
|
|
292
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
293
|
+
hasMore: z.ZodBoolean;
|
|
294
|
+
}, z.core.$strip>;
|
|
315
295
|
}, z.core.$strip>;
|
|
316
|
-
}
|
|
317
|
-
}
|
|
296
|
+
};
|
|
297
|
+
};
|
|
318
298
|
export {};
|
|
@@ -1,19 +1,17 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { buildRestContract } from '@lokalise/api-contracts';
|
|
1
|
+
import { defineApiContract } from '@lokalise/api-contracts';
|
|
3
2
|
import { z } from 'zod';
|
|
4
3
|
import { AUTH_HEADERS, INTEGRATION_INPUT_SCHEMA, LOCALE_SCHEMA, METADATA_SCHEMA, WEBHOOK_SCHEMA, } from "./common.js";
|
|
5
4
|
import { EVALUATION_ITEM_DETAIL_SCHEMA, EVALUATION_SCHEMA } from "./objects.js";
|
|
6
5
|
const GET_EVALUATION_PARAMS_SCHEMA = z.object({
|
|
7
6
|
evaluationId: z.uuid().describe('The unique identifier of the evaluation to retrieve.'),
|
|
8
7
|
});
|
|
9
|
-
export const getEvaluation =
|
|
8
|
+
export const getEvaluation = defineApiContract({
|
|
10
9
|
method: 'get',
|
|
11
10
|
pathResolver: ({ evaluationId }) => `/v1/evaluations/${evaluationId}`,
|
|
12
11
|
description: 'Retrieve evaluation by id',
|
|
13
12
|
requestPathParamsSchema: GET_EVALUATION_PARAMS_SCHEMA,
|
|
14
13
|
requestHeaderSchema: AUTH_HEADERS,
|
|
15
|
-
|
|
16
|
-
responseSchemasByStatusCode: {
|
|
14
|
+
responsesByStatusCode: {
|
|
17
15
|
200: EVALUATION_SCHEMA,
|
|
18
16
|
},
|
|
19
17
|
});
|
|
@@ -81,35 +79,84 @@ const SCHEDULE_EVALUATION_RESPONSE_SCHEMA = z.object({
|
|
|
81
79
|
.uuid()
|
|
82
80
|
.describe('The unique identifier of the scheduled evaluation. Use it to retrieve the evaluation results later.'),
|
|
83
81
|
});
|
|
84
|
-
export const postScheduleEvaluation =
|
|
82
|
+
export const postScheduleEvaluation = defineApiContract({
|
|
85
83
|
method: 'post',
|
|
86
84
|
pathResolver: () => '/v1/evaluations',
|
|
87
85
|
description: 'Schedule evaluation',
|
|
88
86
|
requestHeaderSchema: SCHEDULE_EVALUATION_HEADERS,
|
|
89
87
|
requestBodySchema: SCHEDULE_EVALUATION_BODY_SCHEMA,
|
|
90
|
-
|
|
91
|
-
responseSchemasByStatusCode: {
|
|
88
|
+
responsesByStatusCode: {
|
|
92
89
|
202: SCHEDULE_EVALUATION_RESPONSE_SCHEMA,
|
|
93
90
|
},
|
|
94
91
|
});
|
|
92
|
+
const PaginationCursorSchema = z.object({
|
|
93
|
+
id: z.string(),
|
|
94
|
+
exactMatch: z.number().nullable().optional(),
|
|
95
|
+
ter: z.number().nullable().optional(),
|
|
96
|
+
meteor: z.number().nullable().optional(),
|
|
97
|
+
});
|
|
98
|
+
export const PaginationCursorCodec = z.codec(z.string(), PaginationCursorSchema, {
|
|
99
|
+
decode: (token) => JSON.parse(Buffer.from(token, 'base64url').toString()),
|
|
100
|
+
encode: (cursor) => Buffer.from(JSON.stringify(cursor)).toString('base64url'),
|
|
101
|
+
});
|
|
95
102
|
// === Get Evaluation Items ===
|
|
96
103
|
const GET_EVALUATION_ITEMS_PARAMS_SCHEMA = z.object({
|
|
97
104
|
evaluationId: z.uuid().describe('The unique identifier of the evaluation'),
|
|
98
105
|
});
|
|
99
|
-
const
|
|
100
|
-
|
|
106
|
+
const SORT_FIELDS = ['id', 'exactMatch', 'ter', 'meteor'];
|
|
107
|
+
const SORT_ENUM_VALUES = SORT_FIELDS.flatMap((field) => [field, `-${field}`]);
|
|
108
|
+
const GET_EVALUATION_ITEMS_QUERY_SCHEMA = z
|
|
109
|
+
.object({
|
|
101
110
|
limit: z.coerce.number().int().min(1).max(200).optional().default(50).describe('Page size'),
|
|
111
|
+
before: PaginationCursorCodec.optional(),
|
|
112
|
+
after: PaginationCursorCodec.optional(),
|
|
113
|
+
sort: z
|
|
114
|
+
.enum(SORT_ENUM_VALUES)
|
|
115
|
+
.optional()
|
|
116
|
+
.default('id')
|
|
117
|
+
.transform((value) => ({
|
|
118
|
+
by: (value.startsWith('-') ? value.slice(1) : value),
|
|
119
|
+
order: value.startsWith('-') ? 'desc' : 'asc',
|
|
120
|
+
}))
|
|
121
|
+
.describe('Sort field and direction. Prefix with `-` for descending, e.g. `-ter`. Valid fields: id, exactMatch, ter, meteor'),
|
|
122
|
+
'sort-config-name': z
|
|
123
|
+
.string()
|
|
124
|
+
.optional()
|
|
125
|
+
.describe('Configuration name whose metrics are used for sorting'),
|
|
126
|
+
'filter-target-locale': LOCALE_SCHEMA.optional().describe('Filter by target locale (BCP-47)'),
|
|
127
|
+
})
|
|
128
|
+
.refine((data) => data.sort.by === 'id' || data['sort-config-name'] !== undefined, {
|
|
129
|
+
message: 'sort-config-name is required when sort-by is a metric field',
|
|
130
|
+
path: ['sort-config-name'],
|
|
131
|
+
})
|
|
132
|
+
.refine((data) => {
|
|
133
|
+
if (data.sort.by === 'id') {
|
|
134
|
+
return true;
|
|
135
|
+
}
|
|
136
|
+
return [data.after, data.before]
|
|
137
|
+
.filter((c) => c !== undefined)
|
|
138
|
+
.every((cursor) => data.sort.by in cursor);
|
|
139
|
+
}, { message: 'cursor must contain the sort field' });
|
|
140
|
+
const EVALUATION_ITEMS_RESPONSE_SCHEMA = z.object({
|
|
141
|
+
data: z.array(EVALUATION_ITEM_DETAIL_SCHEMA),
|
|
142
|
+
meta: z.object({
|
|
143
|
+
resultCount: z.number().describe('Number of items returned in this page'),
|
|
144
|
+
cursor: z
|
|
145
|
+
.string()
|
|
146
|
+
.optional()
|
|
147
|
+
.describe('Opaque cursor pointing at the last item on the current page. Pass as `after` or `before` to navigate to the next or previous page.'),
|
|
148
|
+
hasMore: z.boolean().describe('Whether there are more items to fetch'),
|
|
149
|
+
}),
|
|
102
150
|
});
|
|
103
|
-
export const getEvaluationItems =
|
|
151
|
+
export const getEvaluationItems = defineApiContract({
|
|
104
152
|
method: 'get',
|
|
105
153
|
pathResolver: ({ evaluationId }) => `/v1/evaluations/${evaluationId}/items`,
|
|
106
154
|
description: 'Retrieve evaluation items with translations and per-item metrics',
|
|
107
155
|
requestPathParamsSchema: GET_EVALUATION_ITEMS_PARAMS_SCHEMA,
|
|
108
156
|
requestQuerySchema: GET_EVALUATION_ITEMS_QUERY_SCHEMA,
|
|
109
157
|
requestHeaderSchema: AUTH_HEADERS,
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
200: paginatedResponseSchema(EVALUATION_ITEM_DETAIL_SCHEMA),
|
|
158
|
+
responsesByStatusCode: {
|
|
159
|
+
200: EVALUATION_ITEMS_RESPONSE_SCHEMA,
|
|
113
160
|
},
|
|
114
161
|
});
|
|
115
162
|
//# sourceMappingURL=evaluation-contracts.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"evaluation-contracts.js","sourceRoot":"","sources":["../src/evaluation-contracts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"evaluation-contracts.js","sourceRoot":"","sources":["../src/evaluation-contracts.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lokalise/ragnarok-api-contracts",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Lokalise",
|
|
6
6
|
"url": "https://lokalise.com"
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"postversion": "biome check --write package.json"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@biomejs/biome": "^2.4.
|
|
38
|
+
"@biomejs/biome": "^2.4.13",
|
|
39
39
|
"@lokalise/api-common": "^6.1.2",
|
|
40
40
|
"@lokalise/biome-config": "^3.1.0",
|
|
41
41
|
"@lokalise/tsconfig": "^3.0.0",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"zod": "^4.0.0"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@lokalise/api-contracts": "^6.
|
|
49
|
+
"@lokalise/api-contracts": "^6.9.0",
|
|
50
50
|
"@lokalise/supported-languages": "^3.2.0"
|
|
51
51
|
}
|
|
52
52
|
}
|