@alicloud/aidge20260428 3.1.0 → 3.1.1
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/client.d.ts +40 -32
- package/dist/client.js +43 -32
- package/dist/client.js.map +1 -1
- package/dist/models/ImageTranslationStandardRequest.d.ts +17 -6
- package/dist/models/ImageTranslationStandardRequest.js +2 -0
- package/dist/models/ImageTranslationStandardRequest.js.map +1 -1
- package/dist/models/ImageTranslationStandardResponseBody.d.ts +365 -4
- package/dist/models/ImageTranslationStandardResponseBody.js +224 -1
- package/dist/models/ImageTranslationStandardResponseBody.js.map +1 -1
- package/dist/models/TextTranslateRequest.d.ts +11 -5
- package/dist/models/TextTranslateRequest.js.map +1 -1
- package/dist/models/TextTranslateResponseBody.d.ts +4 -4
- package/dist/models/TextTranslateShrinkRequest.d.ts +11 -5
- package/dist/models/TextTranslateShrinkRequest.js.map +1 -1
- package/dist/models/model.d.ts +6 -0
- package/dist/models/model.js +18 -6
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +44 -32
- package/src/models/ImageTranslationStandardRequest.ts +19 -6
- package/src/models/ImageTranslationStandardResponseBody.ts +534 -4
- package/src/models/TextTranslateRequest.ts +11 -5
- package/src/models/TextTranslateResponseBody.ts +4 -4
- package/src/models/TextTranslateShrinkRequest.ts +11 -5
- package/src/models/model.ts +6 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImageTranslationStandardRequest.js","sourceRoot":"","sources":["../../src/models/ImageTranslationStandardRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,+BAAgC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"ImageTranslationStandardRequest.js","sourceRoot":"","sources":["../../src/models/ImageTranslationStandardRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,+BAAgC,SAAQ,KAAK,CAAC,KAAK;IAkE9D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,UAAU;YACpB,QAAQ,EAAE,UAAU;YACpB,oBAAoB,EAAE,sBAAsB;YAC5C,cAAc,EAAE,gBAAgB;YAChC,cAAc,EAAE,gBAAgB;YAChC,4BAA4B,EAAE,8BAA8B;YAC5D,cAAc,EAAE,gBAAgB;SACjC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,QAAQ;YAClB,QAAQ,EAAE,QAAQ;YAClB,oBAAoB,EAAE,SAAS;YAC/B,cAAc,EAAE,QAAQ;YACxB,cAAc,EAAE,QAAQ;YACxB,4BAA4B,EAAE,SAAS;YACvC,cAAc,EAAE,SAAS;SAC1B,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjGD,0EAiGC"}
|
|
@@ -1,5 +1,366 @@
|
|
|
1
1
|
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class ImageTranslationStandardResponseBodyDataEditInfoGoodsRects extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* The rotation angle.
|
|
6
|
+
*/
|
|
7
|
+
degree?: number;
|
|
8
|
+
/**
|
|
9
|
+
* @remarks
|
|
10
|
+
* The height.
|
|
11
|
+
*/
|
|
12
|
+
height?: number;
|
|
13
|
+
/**
|
|
14
|
+
* @remarks
|
|
15
|
+
* The left coordinate.
|
|
16
|
+
*/
|
|
17
|
+
left?: number;
|
|
18
|
+
/**
|
|
19
|
+
* @remarks
|
|
20
|
+
* The top coordinate.
|
|
21
|
+
*/
|
|
22
|
+
top?: number;
|
|
23
|
+
/**
|
|
24
|
+
* @remarks
|
|
25
|
+
* The width.
|
|
26
|
+
*/
|
|
27
|
+
width?: number;
|
|
28
|
+
static names(): {
|
|
29
|
+
[key: string]: string;
|
|
30
|
+
};
|
|
31
|
+
static types(): {
|
|
32
|
+
[key: string]: any;
|
|
33
|
+
};
|
|
34
|
+
validate(): void;
|
|
35
|
+
constructor(map?: {
|
|
36
|
+
[key: string]: any;
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
export declare class ImageTranslationStandardResponseBodyDataEditInfoTextAreasTextsImageRect extends $dara.Model {
|
|
40
|
+
/**
|
|
41
|
+
* @remarks
|
|
42
|
+
* The rotation angle.
|
|
43
|
+
*/
|
|
44
|
+
degree?: number;
|
|
45
|
+
/**
|
|
46
|
+
* @remarks
|
|
47
|
+
* The height.
|
|
48
|
+
*/
|
|
49
|
+
height?: number;
|
|
50
|
+
/**
|
|
51
|
+
* @remarks
|
|
52
|
+
* The left coordinate.
|
|
53
|
+
*/
|
|
54
|
+
left?: number;
|
|
55
|
+
/**
|
|
56
|
+
* @remarks
|
|
57
|
+
* The top coordinate.
|
|
58
|
+
*/
|
|
59
|
+
top?: number;
|
|
60
|
+
/**
|
|
61
|
+
* @remarks
|
|
62
|
+
* The width.
|
|
63
|
+
*/
|
|
64
|
+
width?: number;
|
|
65
|
+
static names(): {
|
|
66
|
+
[key: string]: string;
|
|
67
|
+
};
|
|
68
|
+
static types(): {
|
|
69
|
+
[key: string]: any;
|
|
70
|
+
};
|
|
71
|
+
validate(): void;
|
|
72
|
+
constructor(map?: {
|
|
73
|
+
[key: string]: any;
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
export declare class ImageTranslationStandardResponseBodyDataEditInfoTextAreasTextsTextRect extends $dara.Model {
|
|
77
|
+
/**
|
|
78
|
+
* @remarks
|
|
79
|
+
* The rotation angle.
|
|
80
|
+
*/
|
|
81
|
+
degree?: number;
|
|
82
|
+
/**
|
|
83
|
+
* @remarks
|
|
84
|
+
* The height.
|
|
85
|
+
*/
|
|
86
|
+
height?: number;
|
|
87
|
+
/**
|
|
88
|
+
* @remarks
|
|
89
|
+
* The left coordinate.
|
|
90
|
+
*/
|
|
91
|
+
left?: number;
|
|
92
|
+
/**
|
|
93
|
+
* @remarks
|
|
94
|
+
* The top coordinate.
|
|
95
|
+
*/
|
|
96
|
+
top?: number;
|
|
97
|
+
/**
|
|
98
|
+
* @remarks
|
|
99
|
+
* The width.
|
|
100
|
+
*/
|
|
101
|
+
width?: number;
|
|
102
|
+
static names(): {
|
|
103
|
+
[key: string]: string;
|
|
104
|
+
};
|
|
105
|
+
static types(): {
|
|
106
|
+
[key: string]: any;
|
|
107
|
+
};
|
|
108
|
+
validate(): void;
|
|
109
|
+
constructor(map?: {
|
|
110
|
+
[key: string]: any;
|
|
111
|
+
});
|
|
112
|
+
}
|
|
113
|
+
export declare class ImageTranslationStandardResponseBodyDataEditInfoTextAreasTexts extends $dara.Model {
|
|
114
|
+
/**
|
|
115
|
+
* @remarks
|
|
116
|
+
* The color.
|
|
117
|
+
*
|
|
118
|
+
* @example
|
|
119
|
+
* #9d7746
|
|
120
|
+
*/
|
|
121
|
+
color?: string;
|
|
122
|
+
/**
|
|
123
|
+
* @remarks
|
|
124
|
+
* The font size.
|
|
125
|
+
*
|
|
126
|
+
* @example
|
|
127
|
+
* 42
|
|
128
|
+
*/
|
|
129
|
+
fontsize?: number;
|
|
130
|
+
/**
|
|
131
|
+
* @remarks
|
|
132
|
+
* The horizontal layout.
|
|
133
|
+
*
|
|
134
|
+
* @example
|
|
135
|
+
* left
|
|
136
|
+
*/
|
|
137
|
+
horizontalLayout?: string;
|
|
138
|
+
/**
|
|
139
|
+
* @remarks
|
|
140
|
+
* The image area.
|
|
141
|
+
*/
|
|
142
|
+
imageRect?: ImageTranslationStandardResponseBodyDataEditInfoTextAreasTextsImageRect;
|
|
143
|
+
/**
|
|
144
|
+
* @remarks
|
|
145
|
+
* The language.
|
|
146
|
+
*
|
|
147
|
+
* @example
|
|
148
|
+
* zh
|
|
149
|
+
*/
|
|
150
|
+
language?: string;
|
|
151
|
+
/**
|
|
152
|
+
* @remarks
|
|
153
|
+
* The line count.
|
|
154
|
+
*
|
|
155
|
+
* @example
|
|
156
|
+
* 1
|
|
157
|
+
*/
|
|
158
|
+
lineCount?: number;
|
|
159
|
+
/**
|
|
160
|
+
* @remarks
|
|
161
|
+
* The OVIS error message.
|
|
162
|
+
*
|
|
163
|
+
* @example
|
|
164
|
+
* desc
|
|
165
|
+
*/
|
|
166
|
+
ovisErrMsg?: string;
|
|
167
|
+
/**
|
|
168
|
+
* @remarks
|
|
169
|
+
* The text area.
|
|
170
|
+
*/
|
|
171
|
+
textRect?: ImageTranslationStandardResponseBodyDataEditInfoTextAreasTextsTextRect;
|
|
172
|
+
/**
|
|
173
|
+
* @remarks
|
|
174
|
+
* Indicates whether the text is valid.
|
|
175
|
+
*
|
|
176
|
+
* @example
|
|
177
|
+
* true
|
|
178
|
+
*/
|
|
179
|
+
valid?: boolean;
|
|
180
|
+
/**
|
|
181
|
+
* @remarks
|
|
182
|
+
* The text value.
|
|
183
|
+
*
|
|
184
|
+
* @example
|
|
185
|
+
* Solid wood wardrobe.
|
|
186
|
+
*/
|
|
187
|
+
value?: string;
|
|
188
|
+
/**
|
|
189
|
+
* @remarks
|
|
190
|
+
* The vertical layout.
|
|
191
|
+
*
|
|
192
|
+
* @example
|
|
193
|
+
* center
|
|
194
|
+
*/
|
|
195
|
+
verticalLayout?: string;
|
|
196
|
+
static names(): {
|
|
197
|
+
[key: string]: string;
|
|
198
|
+
};
|
|
199
|
+
static types(): {
|
|
200
|
+
[key: string]: any;
|
|
201
|
+
};
|
|
202
|
+
validate(): void;
|
|
203
|
+
constructor(map?: {
|
|
204
|
+
[key: string]: any;
|
|
205
|
+
});
|
|
206
|
+
}
|
|
207
|
+
export declare class ImageTranslationStandardResponseBodyDataEditInfoTextAreas extends $dara.Model {
|
|
208
|
+
/**
|
|
209
|
+
* @remarks
|
|
210
|
+
* The color.
|
|
211
|
+
*
|
|
212
|
+
* @example
|
|
213
|
+
* #000000
|
|
214
|
+
*/
|
|
215
|
+
color?: string;
|
|
216
|
+
/**
|
|
217
|
+
* @remarks
|
|
218
|
+
* The content.
|
|
219
|
+
*
|
|
220
|
+
* @example
|
|
221
|
+
* SOLIDWOOD WARDROBE
|
|
222
|
+
*/
|
|
223
|
+
content?: string;
|
|
224
|
+
/**
|
|
225
|
+
* @remarks
|
|
226
|
+
* The font size.
|
|
227
|
+
*
|
|
228
|
+
* @example
|
|
229
|
+
* 36
|
|
230
|
+
*/
|
|
231
|
+
fontsize?: number;
|
|
232
|
+
/**
|
|
233
|
+
* @remarks
|
|
234
|
+
* The horizontal layout.
|
|
235
|
+
*
|
|
236
|
+
* @example
|
|
237
|
+
* left
|
|
238
|
+
*/
|
|
239
|
+
horizontalLayout?: string;
|
|
240
|
+
/**
|
|
241
|
+
* @remarks
|
|
242
|
+
* The line count.
|
|
243
|
+
*
|
|
244
|
+
* @example
|
|
245
|
+
* 2
|
|
246
|
+
*/
|
|
247
|
+
lineCount?: number;
|
|
248
|
+
/**
|
|
249
|
+
* @remarks
|
|
250
|
+
* The list of texts.
|
|
251
|
+
*/
|
|
252
|
+
texts?: ImageTranslationStandardResponseBodyDataEditInfoTextAreasTexts[];
|
|
253
|
+
/**
|
|
254
|
+
* @remarks
|
|
255
|
+
* The vertical layout.
|
|
256
|
+
*
|
|
257
|
+
* @example
|
|
258
|
+
* center
|
|
259
|
+
*/
|
|
260
|
+
verticalLayout?: string;
|
|
261
|
+
static names(): {
|
|
262
|
+
[key: string]: string;
|
|
263
|
+
};
|
|
264
|
+
static types(): {
|
|
265
|
+
[key: string]: any;
|
|
266
|
+
};
|
|
267
|
+
validate(): void;
|
|
268
|
+
constructor(map?: {
|
|
269
|
+
[key: string]: any;
|
|
270
|
+
});
|
|
271
|
+
}
|
|
272
|
+
export declare class ImageTranslationStandardResponseBodyDataEditInfo extends $dara.Model {
|
|
273
|
+
/**
|
|
274
|
+
* @remarks
|
|
275
|
+
* The list of fonts used.
|
|
276
|
+
*
|
|
277
|
+
* @example
|
|
278
|
+
* ["NotoSansSC-Bold"]
|
|
279
|
+
*/
|
|
280
|
+
font?: string[];
|
|
281
|
+
/**
|
|
282
|
+
* @remarks
|
|
283
|
+
* The product area rectangle.
|
|
284
|
+
*/
|
|
285
|
+
goodsRects?: ImageTranslationStandardResponseBodyDataEditInfoGoodsRects;
|
|
286
|
+
/**
|
|
287
|
+
* @remarks
|
|
288
|
+
* The product image URL.
|
|
289
|
+
*
|
|
290
|
+
* @example
|
|
291
|
+
* https://xiuxiu-pro.meitudata.com/posters/34d78f9157e5560a4d612949ca6f6485.jpg
|
|
292
|
+
*/
|
|
293
|
+
goodsUrl?: string;
|
|
294
|
+
/**
|
|
295
|
+
* @remarks
|
|
296
|
+
* The list of target languages.
|
|
297
|
+
*
|
|
298
|
+
* @example
|
|
299
|
+
* ["zh"]
|
|
300
|
+
*/
|
|
301
|
+
languages?: string[];
|
|
302
|
+
/**
|
|
303
|
+
* @remarks
|
|
304
|
+
* The original image URL.
|
|
305
|
+
*
|
|
306
|
+
* @example
|
|
307
|
+
* https://xiuxiu-pro.meitudata.com/posters/34d78f9157e5560a4d612949ca6f6485.jpg
|
|
308
|
+
*/
|
|
309
|
+
pictUrl?: string;
|
|
310
|
+
/**
|
|
311
|
+
* @remarks
|
|
312
|
+
* The repaired image URL.
|
|
313
|
+
*
|
|
314
|
+
* @example
|
|
315
|
+
* http://dashscope-a717.oss-cn-beijing.aliyuncs.com/xxx.png
|
|
316
|
+
*/
|
|
317
|
+
repairedUrl?: string;
|
|
318
|
+
/**
|
|
319
|
+
* @remarks
|
|
320
|
+
* The list of repaired image URLs.
|
|
321
|
+
*
|
|
322
|
+
* @example
|
|
323
|
+
* ["http://dashscope-a717.oss-cn-beijing.aliyuncs.com/xxx.png"]
|
|
324
|
+
*/
|
|
325
|
+
repairedUrls?: string[];
|
|
326
|
+
/**
|
|
327
|
+
* @remarks
|
|
328
|
+
* The list of result image IDs.
|
|
329
|
+
*
|
|
330
|
+
* @example
|
|
331
|
+
* ["c18ab570-81aa-11f1-a14a-5ee00dcfdc3c"]
|
|
332
|
+
*/
|
|
333
|
+
resultImageIds?: string[];
|
|
334
|
+
/**
|
|
335
|
+
* @remarks
|
|
336
|
+
* The list of result image URLs.
|
|
337
|
+
*
|
|
338
|
+
* @example
|
|
339
|
+
* ["http://dashscope-a717.oss-cn-beijing.aliyuncs.com/xxx.jpg"]
|
|
340
|
+
*/
|
|
341
|
+
resultUrls?: string[];
|
|
342
|
+
/**
|
|
343
|
+
* @remarks
|
|
344
|
+
* The list of text areas.
|
|
345
|
+
*/
|
|
346
|
+
textAreas?: ImageTranslationStandardResponseBodyDataEditInfoTextAreas[];
|
|
347
|
+
static names(): {
|
|
348
|
+
[key: string]: string;
|
|
349
|
+
};
|
|
350
|
+
static types(): {
|
|
351
|
+
[key: string]: any;
|
|
352
|
+
};
|
|
353
|
+
validate(): void;
|
|
354
|
+
constructor(map?: {
|
|
355
|
+
[key: string]: any;
|
|
356
|
+
});
|
|
357
|
+
}
|
|
2
358
|
export declare class ImageTranslationStandardResponseBodyData extends $dara.Model {
|
|
359
|
+
/**
|
|
360
|
+
* @remarks
|
|
361
|
+
* The edit information.
|
|
362
|
+
*/
|
|
363
|
+
editInfo?: ImageTranslationStandardResponseBodyDataEditInfo;
|
|
3
364
|
/**
|
|
4
365
|
* @remarks
|
|
5
366
|
* The URL of the image generated after image translation.
|
|
@@ -32,7 +393,7 @@ export declare class ImageTranslationStandardResponseBodyData extends $dara.Mode
|
|
|
32
393
|
export declare class ImageTranslationStandardResponseBody extends $dara.Model {
|
|
33
394
|
/**
|
|
34
395
|
* @remarks
|
|
35
|
-
* The response code. A value of 200 indicates a successful call. For other response codes,
|
|
396
|
+
* The response code. A value of 200 indicates a successful call. For other response codes, refer to the error code information.
|
|
36
397
|
*
|
|
37
398
|
* @example
|
|
38
399
|
* 200
|
|
@@ -45,7 +406,7 @@ export declare class ImageTranslationStandardResponseBody extends $dara.Model {
|
|
|
45
406
|
data?: ImageTranslationStandardResponseBodyData;
|
|
46
407
|
/**
|
|
47
408
|
* @remarks
|
|
48
|
-
* The error message. "Success"
|
|
409
|
+
* The error message. Returns "Success" for successful calls and specific error information for exceptions.
|
|
49
410
|
*
|
|
50
411
|
* @example
|
|
51
412
|
* Success
|
|
@@ -53,7 +414,7 @@ export declare class ImageTranslationStandardResponseBody extends $dara.Model {
|
|
|
53
414
|
message?: string;
|
|
54
415
|
/**
|
|
55
416
|
* @remarks
|
|
56
|
-
* The request ID,
|
|
417
|
+
* The request ID, used to identify a unique request call.
|
|
57
418
|
*
|
|
58
419
|
* @example
|
|
59
420
|
* 1CEC4D94-905A-1ED1-A7B4-1BFEFFB3D850
|
|
@@ -61,7 +422,7 @@ export declare class ImageTranslationStandardResponseBody extends $dara.Model {
|
|
|
61
422
|
requestId?: string;
|
|
62
423
|
/**
|
|
63
424
|
* @remarks
|
|
64
|
-
* Indicates whether the call
|
|
425
|
+
* Indicates whether the call is successful. A value of true indicates success. A value of false indicates failure.
|
|
65
426
|
*
|
|
66
427
|
* @example
|
|
67
428
|
* true
|
|
@@ -33,23 +33,246 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.ImageTranslationStandardResponseBody = exports.ImageTranslationStandardResponseBodyData = void 0;
|
|
36
|
+
exports.ImageTranslationStandardResponseBody = exports.ImageTranslationStandardResponseBodyData = exports.ImageTranslationStandardResponseBodyDataEditInfo = exports.ImageTranslationStandardResponseBodyDataEditInfoTextAreas = exports.ImageTranslationStandardResponseBodyDataEditInfoTextAreasTexts = exports.ImageTranslationStandardResponseBodyDataEditInfoTextAreasTextsTextRect = exports.ImageTranslationStandardResponseBodyDataEditInfoTextAreasTextsImageRect = exports.ImageTranslationStandardResponseBodyDataEditInfoGoodsRects = void 0;
|
|
37
37
|
// This file is auto-generated, don't edit it
|
|
38
38
|
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class ImageTranslationStandardResponseBodyDataEditInfoGoodsRects extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
degree: 'Degree',
|
|
43
|
+
height: 'Height',
|
|
44
|
+
left: 'Left',
|
|
45
|
+
top: 'Top',
|
|
46
|
+
width: 'Width',
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
static types() {
|
|
50
|
+
return {
|
|
51
|
+
degree: 'number',
|
|
52
|
+
height: 'number',
|
|
53
|
+
left: 'number',
|
|
54
|
+
top: 'number',
|
|
55
|
+
width: 'number',
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
validate() {
|
|
59
|
+
super.validate();
|
|
60
|
+
}
|
|
61
|
+
constructor(map) {
|
|
62
|
+
super(map);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.ImageTranslationStandardResponseBodyDataEditInfoGoodsRects = ImageTranslationStandardResponseBodyDataEditInfoGoodsRects;
|
|
66
|
+
class ImageTranslationStandardResponseBodyDataEditInfoTextAreasTextsImageRect extends $dara.Model {
|
|
67
|
+
static names() {
|
|
68
|
+
return {
|
|
69
|
+
degree: 'Degree',
|
|
70
|
+
height: 'Height',
|
|
71
|
+
left: 'Left',
|
|
72
|
+
top: 'Top',
|
|
73
|
+
width: 'Width',
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
static types() {
|
|
77
|
+
return {
|
|
78
|
+
degree: 'number',
|
|
79
|
+
height: 'number',
|
|
80
|
+
left: 'number',
|
|
81
|
+
top: 'number',
|
|
82
|
+
width: 'number',
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
validate() {
|
|
86
|
+
super.validate();
|
|
87
|
+
}
|
|
88
|
+
constructor(map) {
|
|
89
|
+
super(map);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
exports.ImageTranslationStandardResponseBodyDataEditInfoTextAreasTextsImageRect = ImageTranslationStandardResponseBodyDataEditInfoTextAreasTextsImageRect;
|
|
93
|
+
class ImageTranslationStandardResponseBodyDataEditInfoTextAreasTextsTextRect extends $dara.Model {
|
|
94
|
+
static names() {
|
|
95
|
+
return {
|
|
96
|
+
degree: 'Degree',
|
|
97
|
+
height: 'Height',
|
|
98
|
+
left: 'Left',
|
|
99
|
+
top: 'Top',
|
|
100
|
+
width: 'Width',
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
static types() {
|
|
104
|
+
return {
|
|
105
|
+
degree: 'number',
|
|
106
|
+
height: 'number',
|
|
107
|
+
left: 'number',
|
|
108
|
+
top: 'number',
|
|
109
|
+
width: 'number',
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
validate() {
|
|
113
|
+
super.validate();
|
|
114
|
+
}
|
|
115
|
+
constructor(map) {
|
|
116
|
+
super(map);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
exports.ImageTranslationStandardResponseBodyDataEditInfoTextAreasTextsTextRect = ImageTranslationStandardResponseBodyDataEditInfoTextAreasTextsTextRect;
|
|
120
|
+
class ImageTranslationStandardResponseBodyDataEditInfoTextAreasTexts extends $dara.Model {
|
|
121
|
+
static names() {
|
|
122
|
+
return {
|
|
123
|
+
color: 'Color',
|
|
124
|
+
fontsize: 'Fontsize',
|
|
125
|
+
horizontalLayout: 'HorizontalLayout',
|
|
126
|
+
imageRect: 'ImageRect',
|
|
127
|
+
language: 'Language',
|
|
128
|
+
lineCount: 'LineCount',
|
|
129
|
+
ovisErrMsg: 'OvisErrMsg',
|
|
130
|
+
textRect: 'TextRect',
|
|
131
|
+
valid: 'Valid',
|
|
132
|
+
value: 'Value',
|
|
133
|
+
verticalLayout: 'VerticalLayout',
|
|
134
|
+
};
|
|
135
|
+
}
|
|
136
|
+
static types() {
|
|
137
|
+
return {
|
|
138
|
+
color: 'string',
|
|
139
|
+
fontsize: 'number',
|
|
140
|
+
horizontalLayout: 'string',
|
|
141
|
+
imageRect: ImageTranslationStandardResponseBodyDataEditInfoTextAreasTextsImageRect,
|
|
142
|
+
language: 'string',
|
|
143
|
+
lineCount: 'number',
|
|
144
|
+
ovisErrMsg: 'string',
|
|
145
|
+
textRect: ImageTranslationStandardResponseBodyDataEditInfoTextAreasTextsTextRect,
|
|
146
|
+
valid: 'boolean',
|
|
147
|
+
value: 'string',
|
|
148
|
+
verticalLayout: 'string',
|
|
149
|
+
};
|
|
150
|
+
}
|
|
151
|
+
validate() {
|
|
152
|
+
if (this.imageRect && typeof this.imageRect.validate === 'function') {
|
|
153
|
+
this.imageRect.validate();
|
|
154
|
+
}
|
|
155
|
+
if (this.textRect && typeof this.textRect.validate === 'function') {
|
|
156
|
+
this.textRect.validate();
|
|
157
|
+
}
|
|
158
|
+
super.validate();
|
|
159
|
+
}
|
|
160
|
+
constructor(map) {
|
|
161
|
+
super(map);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
exports.ImageTranslationStandardResponseBodyDataEditInfoTextAreasTexts = ImageTranslationStandardResponseBodyDataEditInfoTextAreasTexts;
|
|
165
|
+
class ImageTranslationStandardResponseBodyDataEditInfoTextAreas extends $dara.Model {
|
|
166
|
+
static names() {
|
|
167
|
+
return {
|
|
168
|
+
color: 'Color',
|
|
169
|
+
content: 'Content',
|
|
170
|
+
fontsize: 'Fontsize',
|
|
171
|
+
horizontalLayout: 'HorizontalLayout',
|
|
172
|
+
lineCount: 'LineCount',
|
|
173
|
+
texts: 'Texts',
|
|
174
|
+
verticalLayout: 'VerticalLayout',
|
|
175
|
+
};
|
|
176
|
+
}
|
|
177
|
+
static types() {
|
|
178
|
+
return {
|
|
179
|
+
color: 'string',
|
|
180
|
+
content: 'string',
|
|
181
|
+
fontsize: 'number',
|
|
182
|
+
horizontalLayout: 'string',
|
|
183
|
+
lineCount: 'number',
|
|
184
|
+
texts: { 'type': 'array', 'itemType': ImageTranslationStandardResponseBodyDataEditInfoTextAreasTexts },
|
|
185
|
+
verticalLayout: 'string',
|
|
186
|
+
};
|
|
187
|
+
}
|
|
188
|
+
validate() {
|
|
189
|
+
if (Array.isArray(this.texts)) {
|
|
190
|
+
$dara.Model.validateArray(this.texts);
|
|
191
|
+
}
|
|
192
|
+
super.validate();
|
|
193
|
+
}
|
|
194
|
+
constructor(map) {
|
|
195
|
+
super(map);
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
exports.ImageTranslationStandardResponseBodyDataEditInfoTextAreas = ImageTranslationStandardResponseBodyDataEditInfoTextAreas;
|
|
199
|
+
class ImageTranslationStandardResponseBodyDataEditInfo extends $dara.Model {
|
|
200
|
+
static names() {
|
|
201
|
+
return {
|
|
202
|
+
font: 'Font',
|
|
203
|
+
goodsRects: 'GoodsRects',
|
|
204
|
+
goodsUrl: 'GoodsUrl',
|
|
205
|
+
languages: 'Languages',
|
|
206
|
+
pictUrl: 'PictUrl',
|
|
207
|
+
repairedUrl: 'RepairedUrl',
|
|
208
|
+
repairedUrls: 'RepairedUrls',
|
|
209
|
+
resultImageIds: 'ResultImageIds',
|
|
210
|
+
resultUrls: 'ResultUrls',
|
|
211
|
+
textAreas: 'TextAreas',
|
|
212
|
+
};
|
|
213
|
+
}
|
|
214
|
+
static types() {
|
|
215
|
+
return {
|
|
216
|
+
font: { 'type': 'array', 'itemType': 'string' },
|
|
217
|
+
goodsRects: ImageTranslationStandardResponseBodyDataEditInfoGoodsRects,
|
|
218
|
+
goodsUrl: 'string',
|
|
219
|
+
languages: { 'type': 'array', 'itemType': 'string' },
|
|
220
|
+
pictUrl: 'string',
|
|
221
|
+
repairedUrl: 'string',
|
|
222
|
+
repairedUrls: { 'type': 'array', 'itemType': 'string' },
|
|
223
|
+
resultImageIds: { 'type': 'array', 'itemType': 'string' },
|
|
224
|
+
resultUrls: { 'type': 'array', 'itemType': 'string' },
|
|
225
|
+
textAreas: { 'type': 'array', 'itemType': ImageTranslationStandardResponseBodyDataEditInfoTextAreas },
|
|
226
|
+
};
|
|
227
|
+
}
|
|
228
|
+
validate() {
|
|
229
|
+
if (Array.isArray(this.font)) {
|
|
230
|
+
$dara.Model.validateArray(this.font);
|
|
231
|
+
}
|
|
232
|
+
if (this.goodsRects && typeof this.goodsRects.validate === 'function') {
|
|
233
|
+
this.goodsRects.validate();
|
|
234
|
+
}
|
|
235
|
+
if (Array.isArray(this.languages)) {
|
|
236
|
+
$dara.Model.validateArray(this.languages);
|
|
237
|
+
}
|
|
238
|
+
if (Array.isArray(this.repairedUrls)) {
|
|
239
|
+
$dara.Model.validateArray(this.repairedUrls);
|
|
240
|
+
}
|
|
241
|
+
if (Array.isArray(this.resultImageIds)) {
|
|
242
|
+
$dara.Model.validateArray(this.resultImageIds);
|
|
243
|
+
}
|
|
244
|
+
if (Array.isArray(this.resultUrls)) {
|
|
245
|
+
$dara.Model.validateArray(this.resultUrls);
|
|
246
|
+
}
|
|
247
|
+
if (Array.isArray(this.textAreas)) {
|
|
248
|
+
$dara.Model.validateArray(this.textAreas);
|
|
249
|
+
}
|
|
250
|
+
super.validate();
|
|
251
|
+
}
|
|
252
|
+
constructor(map) {
|
|
253
|
+
super(map);
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
exports.ImageTranslationStandardResponseBodyDataEditInfo = ImageTranslationStandardResponseBodyDataEditInfo;
|
|
39
257
|
class ImageTranslationStandardResponseBodyData extends $dara.Model {
|
|
40
258
|
static names() {
|
|
41
259
|
return {
|
|
260
|
+
editInfo: 'EditInfo',
|
|
42
261
|
imageUrl: 'ImageUrl',
|
|
43
262
|
usageMap: 'UsageMap',
|
|
44
263
|
};
|
|
45
264
|
}
|
|
46
265
|
static types() {
|
|
47
266
|
return {
|
|
267
|
+
editInfo: ImageTranslationStandardResponseBodyDataEditInfo,
|
|
48
268
|
imageUrl: 'string',
|
|
49
269
|
usageMap: { 'type': 'map', 'keyType': 'string', 'valueType': 'number' },
|
|
50
270
|
};
|
|
51
271
|
}
|
|
52
272
|
validate() {
|
|
273
|
+
if (this.editInfo && typeof this.editInfo.validate === 'function') {
|
|
274
|
+
this.editInfo.validate();
|
|
275
|
+
}
|
|
53
276
|
if (this.usageMap) {
|
|
54
277
|
$dara.Model.validateMap(this.usageMap);
|
|
55
278
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImageTranslationStandardResponseBody.js","sourceRoot":"","sources":["../../src/models/ImageTranslationStandardResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,wCAAyC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"ImageTranslationStandardResponseBody.js","sourceRoot":"","sources":["../../src/models/ImageTranslationStandardResponseBody.ts"],"names":[],"mappings":"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"}
|