groupdocs-parser-cloud 23.10.0 → 26.2.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/LICENSE +1 -1
- package/lib/{api_client.d.ts → src/api_client.d.ts} +17 -17
- package/lib/{api_client.js → src/api_client.js} +135 -125
- package/lib/{api_error.d.ts → src/api_error.d.ts} +56 -56
- package/lib/{api_error.js → src/api_error.js} +81 -80
- package/lib/{auth.d.ts → src/auth.d.ts} +23 -22
- package/lib/{auth.js → src/auth.js} +96 -71
- package/lib/{configuration.d.ts → src/configuration.d.ts} +39 -39
- package/lib/{configuration.js → src/configuration.js} +56 -55
- package/lib/{model.d.ts → src/model.d.ts} +2248 -2206
- package/lib/{model.js → src/model.js} +2216 -2169
- package/lib/{package_version.d.ts → src/package_version.d.ts} +4 -4
- package/lib/{package_version.js → src/package_version.js} +30 -29
- package/lib/{parser_api.d.ts → src/parser_api.d.ts} +274 -270
- package/lib/{parser_api.js → src/parser_api.js} +930 -893
- package/lib/{serializer.d.ts → src/serializer.d.ts} +14 -14
- package/lib/{serializer.js → src/serializer.js} +171 -170
- package/lib/test/api/test_auth_api.d.ts +1 -0
- package/lib/test/api/test_auth_api.js +45 -0
- package/lib/test/api/test_barcode_api.d.ts +1 -0
- package/lib/test/api/test_barcode_api.js +64 -0
- package/lib/test/api/test_file_api.d.ts +1 -0
- package/lib/test/api/test_file_api.js +95 -0
- package/lib/test/api/test_folder_api.d.ts +1 -0
- package/lib/test/api/test_folder_api.js +84 -0
- package/lib/test/api/test_formats_api.d.ts +1 -0
- package/lib/test/api/test_formats_api.js +60 -0
- package/lib/test/api/test_parser_container_api.d.ts +1 -0
- package/lib/test/api/test_parser_container_api.js +134 -0
- package/lib/test/api/test_parser_image_api.d.ts +1 -0
- package/lib/test/api/test_parser_image_api.js +179 -0
- package/lib/test/api/test_parser_info_api.d.ts +1 -0
- package/lib/test/api/test_parser_info_api.js +112 -0
- package/lib/test/api/test_parser_parse_api.d.ts +1 -0
- package/lib/test/api/test_parser_parse_api.js +184 -0
- package/lib/test/api/test_parser_template_api.d.ts +1 -0
- package/lib/test/api/test_parser_template_api.js +168 -0
- package/lib/test/api/test_parser_text_api.d.ts +1 -0
- package/lib/test/api/test_parser_text_api.js +180 -0
- package/lib/test/api/test_storage_api.d.ts +1 -0
- package/lib/test/api/test_storage_api.js +76 -0
- package/lib/test/test_context.d.ts +30 -0
- package/lib/test/test_context.js +156 -0
- package/lib/test/test_coverage.d.ts +1 -0
- package/lib/test/test_coverage.js +77 -0
- package/lib/test/test_file.d.ts +50 -0
- package/lib/test/test_file.js +92 -0
- package/lib/tsconfig.tsbuildinfo +1 -0
- package/package.json +16 -14
|
@@ -1,2206 +1,2248 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
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
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
declare
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
/**
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
/**
|
|
1918
|
-
*
|
|
1919
|
-
*/
|
|
1920
|
-
|
|
1921
|
-
/**
|
|
1922
|
-
*
|
|
1923
|
-
*/
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
/**
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
/**
|
|
1936
|
-
*
|
|
1937
|
-
*/
|
|
1938
|
-
|
|
1939
|
-
/**
|
|
1940
|
-
*
|
|
1941
|
-
*/
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
/**
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
/**
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
/**
|
|
1980
|
-
*
|
|
1981
|
-
*/
|
|
1982
|
-
|
|
1983
|
-
/**
|
|
1984
|
-
*
|
|
1985
|
-
*/
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
/**
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
/**
|
|
2002
|
-
*
|
|
2003
|
-
*/
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
/**
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
/**
|
|
2016
|
-
*
|
|
2017
|
-
*/
|
|
2018
|
-
|
|
2019
|
-
/**
|
|
2020
|
-
*
|
|
2021
|
-
*/
|
|
2022
|
-
|
|
2023
|
-
/**
|
|
2024
|
-
*
|
|
2025
|
-
*/
|
|
2026
|
-
|
|
2027
|
-
constructor(
|
|
2028
|
-
}
|
|
2029
|
-
/**
|
|
2030
|
-
* Request model for
|
|
2031
|
-
*/
|
|
2032
|
-
export declare class
|
|
2033
|
-
/**
|
|
2034
|
-
* Folder path e.g. '/
|
|
2035
|
-
*/
|
|
2036
|
-
path: string;
|
|
2037
|
-
/**
|
|
2038
|
-
* Storage name
|
|
2039
|
-
*/
|
|
2040
|
-
storageName: string;
|
|
2041
|
-
constructor(path: string, storageName?: string);
|
|
2042
|
-
}
|
|
2043
|
-
/**
|
|
2044
|
-
* Request model for
|
|
2045
|
-
*/
|
|
2046
|
-
export declare class
|
|
2047
|
-
/**
|
|
2048
|
-
* Folder path
|
|
2049
|
-
*/
|
|
2050
|
-
|
|
2051
|
-
/**
|
|
2052
|
-
*
|
|
2053
|
-
*/
|
|
2054
|
-
|
|
2055
|
-
/**
|
|
2056
|
-
*
|
|
2057
|
-
*/
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
/**
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
/**
|
|
2070
|
-
*
|
|
2071
|
-
*/
|
|
2072
|
-
|
|
2073
|
-
constructor(
|
|
2074
|
-
}
|
|
2075
|
-
/**
|
|
2076
|
-
* Request model for
|
|
2077
|
-
*/
|
|
2078
|
-
export declare class
|
|
2079
|
-
/**
|
|
2080
|
-
*
|
|
2081
|
-
*/
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
/**
|
|
2162
|
-
*
|
|
2163
|
-
*/
|
|
2164
|
-
|
|
2165
|
-
constructor(
|
|
2166
|
-
}
|
|
2167
|
-
/**
|
|
2168
|
-
* Request model for
|
|
2169
|
-
*/
|
|
2170
|
-
export declare class
|
|
2171
|
-
/**
|
|
2172
|
-
* Storage name
|
|
2173
|
-
*/
|
|
2174
|
-
storageName: string;
|
|
2175
|
-
constructor(storageName
|
|
2176
|
-
}
|
|
2177
|
-
/**
|
|
2178
|
-
* Request model for
|
|
2179
|
-
*/
|
|
2180
|
-
export declare class
|
|
2181
|
-
/**
|
|
2182
|
-
*
|
|
2183
|
-
*/
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Represents an barcode.
|
|
3
|
+
*/
|
|
4
|
+
export declare class Barcode {
|
|
5
|
+
/**
|
|
6
|
+
* Attribute type map
|
|
7
|
+
*/
|
|
8
|
+
static attributeTypeMap: Array<{
|
|
9
|
+
name: string;
|
|
10
|
+
baseName: string;
|
|
11
|
+
type: string;
|
|
12
|
+
}>;
|
|
13
|
+
/**
|
|
14
|
+
* Returns attribute type map
|
|
15
|
+
*/
|
|
16
|
+
static getAttributeTypeMap(): {
|
|
17
|
+
name: string;
|
|
18
|
+
baseName: string;
|
|
19
|
+
type: string;
|
|
20
|
+
}[];
|
|
21
|
+
/**
|
|
22
|
+
* Gets the name of the barcode type.
|
|
23
|
+
*/
|
|
24
|
+
codeTypeName: string;
|
|
25
|
+
/**
|
|
26
|
+
* Gets the document page information such as page index and page size.
|
|
27
|
+
*/
|
|
28
|
+
page: BarcodePage;
|
|
29
|
+
/**
|
|
30
|
+
* Gets the rectangular area.
|
|
31
|
+
*/
|
|
32
|
+
rectangle: Rectangle;
|
|
33
|
+
/**
|
|
34
|
+
* Gets the barcode value.
|
|
35
|
+
*/
|
|
36
|
+
value: string;
|
|
37
|
+
/**
|
|
38
|
+
* Gets or sets the barcode download URL.
|
|
39
|
+
*/
|
|
40
|
+
downloadUrl: string;
|
|
41
|
+
constructor(init?: Partial<Barcode>);
|
|
42
|
+
}
|
|
43
|
+
export declare class BarcodePage {
|
|
44
|
+
/**
|
|
45
|
+
* Attribute type map
|
|
46
|
+
*/
|
|
47
|
+
static attributeTypeMap: Array<{
|
|
48
|
+
name: string;
|
|
49
|
+
baseName: string;
|
|
50
|
+
type: string;
|
|
51
|
+
}>;
|
|
52
|
+
/**
|
|
53
|
+
* Returns attribute type map
|
|
54
|
+
*/
|
|
55
|
+
static getAttributeTypeMap(): {
|
|
56
|
+
name: string;
|
|
57
|
+
baseName: string;
|
|
58
|
+
type: string;
|
|
59
|
+
}[];
|
|
60
|
+
/**
|
|
61
|
+
* Gets the page index.
|
|
62
|
+
*/
|
|
63
|
+
index: number;
|
|
64
|
+
/**
|
|
65
|
+
* Gets the page size.
|
|
66
|
+
*/
|
|
67
|
+
size: Size;
|
|
68
|
+
constructor(init?: Partial<BarcodePage>);
|
|
69
|
+
}
|
|
70
|
+
export declare class BarcodesResult {
|
|
71
|
+
/**
|
|
72
|
+
* Attribute type map
|
|
73
|
+
*/
|
|
74
|
+
static attributeTypeMap: Array<{
|
|
75
|
+
name: string;
|
|
76
|
+
baseName: string;
|
|
77
|
+
type: string;
|
|
78
|
+
}>;
|
|
79
|
+
/**
|
|
80
|
+
* Returns attribute type map
|
|
81
|
+
*/
|
|
82
|
+
static getAttributeTypeMap(): {
|
|
83
|
+
name: string;
|
|
84
|
+
baseName: string;
|
|
85
|
+
type: string;
|
|
86
|
+
}[];
|
|
87
|
+
/**
|
|
88
|
+
* Gets or sets a collection of barcodes.
|
|
89
|
+
*/
|
|
90
|
+
barcodes: Array<Barcode>;
|
|
91
|
+
constructor(init?: Partial<BarcodesResult>);
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* Represents a container item like Zip archive entity, email attachment, PDF Portfolio item and so on.
|
|
95
|
+
*/
|
|
96
|
+
export declare class ContainerItem {
|
|
97
|
+
/**
|
|
98
|
+
* Attribute type map
|
|
99
|
+
*/
|
|
100
|
+
static attributeTypeMap: Array<{
|
|
101
|
+
name: string;
|
|
102
|
+
baseName: string;
|
|
103
|
+
type: string;
|
|
104
|
+
}>;
|
|
105
|
+
/**
|
|
106
|
+
* Returns attribute type map
|
|
107
|
+
*/
|
|
108
|
+
static getAttributeTypeMap(): {
|
|
109
|
+
name: string;
|
|
110
|
+
baseName: string;
|
|
111
|
+
type: string;
|
|
112
|
+
}[];
|
|
113
|
+
/**
|
|
114
|
+
* Gets or sets the name of the item.
|
|
115
|
+
*/
|
|
116
|
+
name: string;
|
|
117
|
+
/**
|
|
118
|
+
* Gets or sets the full path of the item.
|
|
119
|
+
*/
|
|
120
|
+
filePath: string;
|
|
121
|
+
/**
|
|
122
|
+
* Gets or sets the directory of the item.
|
|
123
|
+
*/
|
|
124
|
+
directory: string;
|
|
125
|
+
/**
|
|
126
|
+
* Gets or sets the collection of metadata items.
|
|
127
|
+
*/
|
|
128
|
+
metadata: {
|
|
129
|
+
[key: string]: string;
|
|
130
|
+
};
|
|
131
|
+
constructor(init?: Partial<ContainerItem>);
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* Container item info.
|
|
135
|
+
*/
|
|
136
|
+
export declare class ContainerItemInfo {
|
|
137
|
+
/**
|
|
138
|
+
* Attribute type map
|
|
139
|
+
*/
|
|
140
|
+
static attributeTypeMap: Array<{
|
|
141
|
+
name: string;
|
|
142
|
+
baseName: string;
|
|
143
|
+
type: string;
|
|
144
|
+
}>;
|
|
145
|
+
/**
|
|
146
|
+
* Returns attribute type map
|
|
147
|
+
*/
|
|
148
|
+
static getAttributeTypeMap(): {
|
|
149
|
+
name: string;
|
|
150
|
+
baseName: string;
|
|
151
|
+
type: string;
|
|
152
|
+
}[];
|
|
153
|
+
/**
|
|
154
|
+
* The relative path of the container.
|
|
155
|
+
*/
|
|
156
|
+
relativePath: string;
|
|
157
|
+
/**
|
|
158
|
+
* Password for processing password-protected container item.
|
|
159
|
+
*/
|
|
160
|
+
password: string;
|
|
161
|
+
constructor(init?: Partial<ContainerItemInfo>);
|
|
162
|
+
}
|
|
163
|
+
/**
|
|
164
|
+
* Container result.
|
|
165
|
+
*/
|
|
166
|
+
export declare class ContainerResult {
|
|
167
|
+
/**
|
|
168
|
+
* Attribute type map
|
|
169
|
+
*/
|
|
170
|
+
static attributeTypeMap: Array<{
|
|
171
|
+
name: string;
|
|
172
|
+
baseName: string;
|
|
173
|
+
type: string;
|
|
174
|
+
}>;
|
|
175
|
+
/**
|
|
176
|
+
* Returns attribute type map
|
|
177
|
+
*/
|
|
178
|
+
static getAttributeTypeMap(): {
|
|
179
|
+
name: string;
|
|
180
|
+
baseName: string;
|
|
181
|
+
type: string;
|
|
182
|
+
}[];
|
|
183
|
+
/**
|
|
184
|
+
* Gets or sets the collection of a container items like Zip archive entity, email attachment, PDF Portfolio item and so on.
|
|
185
|
+
*/
|
|
186
|
+
containerItems: Array<ContainerItem>;
|
|
187
|
+
constructor(init?: Partial<ContainerResult>);
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* Class for rectangle coordinates.
|
|
191
|
+
*/
|
|
192
|
+
export declare class Coordinates {
|
|
193
|
+
/**
|
|
194
|
+
* Attribute type map
|
|
195
|
+
*/
|
|
196
|
+
static attributeTypeMap: Array<{
|
|
197
|
+
name: string;
|
|
198
|
+
baseName: string;
|
|
199
|
+
type: string;
|
|
200
|
+
}>;
|
|
201
|
+
/**
|
|
202
|
+
* Returns attribute type map
|
|
203
|
+
*/
|
|
204
|
+
static getAttributeTypeMap(): {
|
|
205
|
+
name: string;
|
|
206
|
+
baseName: string;
|
|
207
|
+
type: string;
|
|
208
|
+
}[];
|
|
209
|
+
/**
|
|
210
|
+
* Gets or sets the y-coordinate of the top edge of the rectangular area.
|
|
211
|
+
*/
|
|
212
|
+
top: number;
|
|
213
|
+
/**
|
|
214
|
+
* Gets or sets the y-coordinate of the bottom edge of the rectangular area.
|
|
215
|
+
*/
|
|
216
|
+
bottom: number;
|
|
217
|
+
/**
|
|
218
|
+
* Gets or sets the x-coordinate of the left edge of the rectangular area.
|
|
219
|
+
*/
|
|
220
|
+
left: number;
|
|
221
|
+
/**
|
|
222
|
+
* Gets or sets the x-coordinate of the right edge of the rectangular area.
|
|
223
|
+
*/
|
|
224
|
+
right: number;
|
|
225
|
+
constructor(init?: Partial<Coordinates>);
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* Template methods options.
|
|
229
|
+
*/
|
|
230
|
+
export declare class CreateTemplateOptions {
|
|
231
|
+
/**
|
|
232
|
+
* Attribute type map
|
|
233
|
+
*/
|
|
234
|
+
static attributeTypeMap: Array<{
|
|
235
|
+
name: string;
|
|
236
|
+
baseName: string;
|
|
237
|
+
type: string;
|
|
238
|
+
}>;
|
|
239
|
+
/**
|
|
240
|
+
* Returns attribute type map
|
|
241
|
+
*/
|
|
242
|
+
static getAttributeTypeMap(): {
|
|
243
|
+
name: string;
|
|
244
|
+
baseName: string;
|
|
245
|
+
type: string;
|
|
246
|
+
}[];
|
|
247
|
+
/**
|
|
248
|
+
* Gets or sets the template.
|
|
249
|
+
*/
|
|
250
|
+
template: Template;
|
|
251
|
+
/**
|
|
252
|
+
* Gets or sets the template path.
|
|
253
|
+
*/
|
|
254
|
+
templatePath: string;
|
|
255
|
+
/**
|
|
256
|
+
* Gets or sets the name of the storage.
|
|
257
|
+
*/
|
|
258
|
+
storageName: string;
|
|
259
|
+
constructor(init?: Partial<CreateTemplateOptions>);
|
|
260
|
+
}
|
|
261
|
+
/**
|
|
262
|
+
* Provides parameters for the table detection algorithms.
|
|
263
|
+
*/
|
|
264
|
+
export declare class DetectorParameters {
|
|
265
|
+
/**
|
|
266
|
+
* Attribute type map
|
|
267
|
+
*/
|
|
268
|
+
static attributeTypeMap: Array<{
|
|
269
|
+
name: string;
|
|
270
|
+
baseName: string;
|
|
271
|
+
type: string;
|
|
272
|
+
}>;
|
|
273
|
+
/**
|
|
274
|
+
* Returns attribute type map
|
|
275
|
+
*/
|
|
276
|
+
static getAttributeTypeMap(): {
|
|
277
|
+
name: string;
|
|
278
|
+
baseName: string;
|
|
279
|
+
type: string;
|
|
280
|
+
}[];
|
|
281
|
+
/**
|
|
282
|
+
* Gets or sets the minimum number of the table rows.
|
|
283
|
+
*/
|
|
284
|
+
minRowCount: number;
|
|
285
|
+
/**
|
|
286
|
+
* Gets or sets the minimum number of the table columns.
|
|
287
|
+
*/
|
|
288
|
+
minColumnCount: number;
|
|
289
|
+
/**
|
|
290
|
+
* Gets or sets the minimum space between the table columns.
|
|
291
|
+
*/
|
|
292
|
+
minVerticalSpace: number;
|
|
293
|
+
/**
|
|
294
|
+
* Gets or sets the value that indicates whether the table has merged cells.
|
|
295
|
+
*/
|
|
296
|
+
hasMergedCells: boolean;
|
|
297
|
+
/**
|
|
298
|
+
* Gets or sets the rectangular area that contains the table.
|
|
299
|
+
*/
|
|
300
|
+
rectangle: Rectangle;
|
|
301
|
+
/**
|
|
302
|
+
* Gets or sets the table columns separators.
|
|
303
|
+
*/
|
|
304
|
+
verticalSeparators: Array<number>;
|
|
305
|
+
constructor(init?: Partial<DetectorParameters>);
|
|
306
|
+
}
|
|
307
|
+
/**
|
|
308
|
+
* Class for disc space information.
|
|
309
|
+
*/
|
|
310
|
+
export declare class DiscUsage {
|
|
311
|
+
/**
|
|
312
|
+
* Attribute type map
|
|
313
|
+
*/
|
|
314
|
+
static attributeTypeMap: Array<{
|
|
315
|
+
name: string;
|
|
316
|
+
baseName: string;
|
|
317
|
+
type: string;
|
|
318
|
+
}>;
|
|
319
|
+
/**
|
|
320
|
+
* Returns attribute type map
|
|
321
|
+
*/
|
|
322
|
+
static getAttributeTypeMap(): {
|
|
323
|
+
name: string;
|
|
324
|
+
baseName: string;
|
|
325
|
+
type: string;
|
|
326
|
+
}[];
|
|
327
|
+
/**
|
|
328
|
+
* Application used disc space.
|
|
329
|
+
*/
|
|
330
|
+
usedSize: number;
|
|
331
|
+
/**
|
|
332
|
+
* Total disc space.
|
|
333
|
+
*/
|
|
334
|
+
totalSize: number;
|
|
335
|
+
constructor(init?: Partial<DiscUsage>);
|
|
336
|
+
}
|
|
337
|
+
/**
|
|
338
|
+
* The error details
|
|
339
|
+
*/
|
|
340
|
+
export declare class ErrorDetails {
|
|
341
|
+
/**
|
|
342
|
+
* Attribute type map
|
|
343
|
+
*/
|
|
344
|
+
static attributeTypeMap: Array<{
|
|
345
|
+
name: string;
|
|
346
|
+
baseName: string;
|
|
347
|
+
type: string;
|
|
348
|
+
}>;
|
|
349
|
+
/**
|
|
350
|
+
* Returns attribute type map
|
|
351
|
+
*/
|
|
352
|
+
static getAttributeTypeMap(): {
|
|
353
|
+
name: string;
|
|
354
|
+
baseName: string;
|
|
355
|
+
type: string;
|
|
356
|
+
}[];
|
|
357
|
+
/**
|
|
358
|
+
* The request id
|
|
359
|
+
*/
|
|
360
|
+
requestId: string;
|
|
361
|
+
/**
|
|
362
|
+
* Date
|
|
363
|
+
*/
|
|
364
|
+
date: Date;
|
|
365
|
+
constructor(init?: Partial<ErrorDetails>);
|
|
366
|
+
}
|
|
367
|
+
/**
|
|
368
|
+
* Field of document template
|
|
369
|
+
*/
|
|
370
|
+
export declare class Field {
|
|
371
|
+
/**
|
|
372
|
+
* Attribute type map
|
|
373
|
+
*/
|
|
374
|
+
static attributeTypeMap: Array<{
|
|
375
|
+
name: string;
|
|
376
|
+
baseName: string;
|
|
377
|
+
type: string;
|
|
378
|
+
}>;
|
|
379
|
+
/**
|
|
380
|
+
* Returns attribute type map
|
|
381
|
+
*/
|
|
382
|
+
static getAttributeTypeMap(): {
|
|
383
|
+
name: string;
|
|
384
|
+
baseName: string;
|
|
385
|
+
type: string;
|
|
386
|
+
}[];
|
|
387
|
+
/**
|
|
388
|
+
* A unique template field name.
|
|
389
|
+
*/
|
|
390
|
+
fieldName: string;
|
|
391
|
+
/**
|
|
392
|
+
* The page index. An integer value that represents the index of the page where the template item is located; null if the template item is located on any page.
|
|
393
|
+
*/
|
|
394
|
+
pageIndex: number;
|
|
395
|
+
/**
|
|
396
|
+
* Defines the way how to find the field on a page.
|
|
397
|
+
*/
|
|
398
|
+
fieldPosition: FieldPosition;
|
|
399
|
+
constructor(init?: Partial<Field>);
|
|
400
|
+
}
|
|
401
|
+
/**
|
|
402
|
+
* Class for document field data.
|
|
403
|
+
*/
|
|
404
|
+
export declare class FieldData {
|
|
405
|
+
/**
|
|
406
|
+
* Attribute type map
|
|
407
|
+
*/
|
|
408
|
+
static attributeTypeMap: Array<{
|
|
409
|
+
name: string;
|
|
410
|
+
baseName: string;
|
|
411
|
+
type: string;
|
|
412
|
+
}>;
|
|
413
|
+
/**
|
|
414
|
+
* Returns attribute type map
|
|
415
|
+
*/
|
|
416
|
+
static getAttributeTypeMap(): {
|
|
417
|
+
name: string;
|
|
418
|
+
baseName: string;
|
|
419
|
+
type: string;
|
|
420
|
+
}[];
|
|
421
|
+
/**
|
|
422
|
+
* Gets or sets the field name.
|
|
423
|
+
*/
|
|
424
|
+
name: string;
|
|
425
|
+
/**
|
|
426
|
+
* Gets or sets the index of the page.
|
|
427
|
+
*/
|
|
428
|
+
pageIndex: number;
|
|
429
|
+
/**
|
|
430
|
+
* Gets or sets the value of the field.
|
|
431
|
+
*/
|
|
432
|
+
pageArea: PageArea;
|
|
433
|
+
/**
|
|
434
|
+
* Gets or sets the linked data field.
|
|
435
|
+
*/
|
|
436
|
+
linkedField: FieldData;
|
|
437
|
+
constructor(init?: Partial<FieldData>);
|
|
438
|
+
}
|
|
439
|
+
/**
|
|
440
|
+
* Field position class.
|
|
441
|
+
*/
|
|
442
|
+
export declare class FieldPosition {
|
|
443
|
+
/**
|
|
444
|
+
* Attribute type map
|
|
445
|
+
*/
|
|
446
|
+
static attributeTypeMap: Array<{
|
|
447
|
+
name: string;
|
|
448
|
+
baseName: string;
|
|
449
|
+
type: string;
|
|
450
|
+
}>;
|
|
451
|
+
/**
|
|
452
|
+
* Returns attribute type map
|
|
453
|
+
*/
|
|
454
|
+
static getAttributeTypeMap(): {
|
|
455
|
+
name: string;
|
|
456
|
+
baseName: string;
|
|
457
|
+
type: string;
|
|
458
|
+
}[];
|
|
459
|
+
/**
|
|
460
|
+
* Provides a template field position.
|
|
461
|
+
*/
|
|
462
|
+
fieldPositionType: string;
|
|
463
|
+
/**
|
|
464
|
+
* Rectangular area on the page that bounds the field value.
|
|
465
|
+
*/
|
|
466
|
+
rectangle: Rectangle;
|
|
467
|
+
/**
|
|
468
|
+
* Gets or sets the regular expression.
|
|
469
|
+
*/
|
|
470
|
+
regex: string;
|
|
471
|
+
/**
|
|
472
|
+
* Gets or sets the value that indicates whether a text case isn't ignored.
|
|
473
|
+
*/
|
|
474
|
+
matchCase: boolean;
|
|
475
|
+
/**
|
|
476
|
+
* Gets or sets the name of the linked field.
|
|
477
|
+
*/
|
|
478
|
+
linkedFieldName: string;
|
|
479
|
+
/**
|
|
480
|
+
* Gets or sets the value that indicates whether a field is searched by the left from the linked field.
|
|
481
|
+
*/
|
|
482
|
+
isLeftLinked: boolean;
|
|
483
|
+
/**
|
|
484
|
+
* Gets or sets a value indicating whether this instance is right linked.
|
|
485
|
+
*/
|
|
486
|
+
isRightLinked: boolean;
|
|
487
|
+
/**
|
|
488
|
+
* Gets or sets a value indicating whether this instance is top linked.
|
|
489
|
+
*/
|
|
490
|
+
isTopLinked: boolean;
|
|
491
|
+
/**
|
|
492
|
+
* Gets or sets a value indicating whether this instance is bottom linked.
|
|
493
|
+
*/
|
|
494
|
+
isBottomLinked: boolean;
|
|
495
|
+
/**
|
|
496
|
+
* Gets or sets the size of the area where a field is searched.
|
|
497
|
+
*/
|
|
498
|
+
searchArea: Size;
|
|
499
|
+
/**
|
|
500
|
+
* Gets or sets Gets the value that indicates whether SearchArea is scaled by the linked field size.
|
|
501
|
+
*/
|
|
502
|
+
autoScale: boolean;
|
|
503
|
+
constructor(init?: Partial<FieldPosition>);
|
|
504
|
+
}
|
|
505
|
+
/**
|
|
506
|
+
* File info
|
|
507
|
+
*/
|
|
508
|
+
export declare class FileInfo {
|
|
509
|
+
/**
|
|
510
|
+
* Attribute type map
|
|
511
|
+
*/
|
|
512
|
+
static attributeTypeMap: Array<{
|
|
513
|
+
name: string;
|
|
514
|
+
baseName: string;
|
|
515
|
+
type: string;
|
|
516
|
+
}>;
|
|
517
|
+
/**
|
|
518
|
+
* Returns attribute type map
|
|
519
|
+
*/
|
|
520
|
+
static getAttributeTypeMap(): {
|
|
521
|
+
name: string;
|
|
522
|
+
baseName: string;
|
|
523
|
+
type: string;
|
|
524
|
+
}[];
|
|
525
|
+
/**
|
|
526
|
+
* File path in storage
|
|
527
|
+
*/
|
|
528
|
+
filePath: string;
|
|
529
|
+
/**
|
|
530
|
+
* Storage name
|
|
531
|
+
*/
|
|
532
|
+
storageName: string;
|
|
533
|
+
/**
|
|
534
|
+
* Password to open file
|
|
535
|
+
*/
|
|
536
|
+
password: string;
|
|
537
|
+
constructor(init?: Partial<FileInfo>);
|
|
538
|
+
}
|
|
539
|
+
/**
|
|
540
|
+
* Represents the file type.
|
|
541
|
+
*/
|
|
542
|
+
export declare class FileType {
|
|
543
|
+
/**
|
|
544
|
+
* Attribute type map
|
|
545
|
+
*/
|
|
546
|
+
static attributeTypeMap: Array<{
|
|
547
|
+
name: string;
|
|
548
|
+
baseName: string;
|
|
549
|
+
type: string;
|
|
550
|
+
}>;
|
|
551
|
+
/**
|
|
552
|
+
* Returns attribute type map
|
|
553
|
+
*/
|
|
554
|
+
static getAttributeTypeMap(): {
|
|
555
|
+
name: string;
|
|
556
|
+
baseName: string;
|
|
557
|
+
type: string;
|
|
558
|
+
}[];
|
|
559
|
+
/**
|
|
560
|
+
* Gets or sets the file type name e.g. \"Microsoft Word Document\".
|
|
561
|
+
*/
|
|
562
|
+
fileFormat: string;
|
|
563
|
+
/**
|
|
564
|
+
* Gets or sets the filename suffix (including the period \".\") e.g. \".doc\".
|
|
565
|
+
*/
|
|
566
|
+
extension: string;
|
|
567
|
+
constructor(init?: Partial<FileType>);
|
|
568
|
+
}
|
|
569
|
+
/**
|
|
570
|
+
* File versions FileVersion.
|
|
571
|
+
*/
|
|
572
|
+
export declare class FileVersions {
|
|
573
|
+
/**
|
|
574
|
+
* Attribute type map
|
|
575
|
+
*/
|
|
576
|
+
static attributeTypeMap: Array<{
|
|
577
|
+
name: string;
|
|
578
|
+
baseName: string;
|
|
579
|
+
type: string;
|
|
580
|
+
}>;
|
|
581
|
+
/**
|
|
582
|
+
* Returns attribute type map
|
|
583
|
+
*/
|
|
584
|
+
static getAttributeTypeMap(): {
|
|
585
|
+
name: string;
|
|
586
|
+
baseName: string;
|
|
587
|
+
type: string;
|
|
588
|
+
}[];
|
|
589
|
+
/**
|
|
590
|
+
* File versions FileVersion.
|
|
591
|
+
*/
|
|
592
|
+
value: Array<FileVersion>;
|
|
593
|
+
constructor(init?: Partial<FileVersions>);
|
|
594
|
+
}
|
|
595
|
+
/**
|
|
596
|
+
* Files list
|
|
597
|
+
*/
|
|
598
|
+
export declare class FilesList {
|
|
599
|
+
/**
|
|
600
|
+
* Attribute type map
|
|
601
|
+
*/
|
|
602
|
+
static attributeTypeMap: Array<{
|
|
603
|
+
name: string;
|
|
604
|
+
baseName: string;
|
|
605
|
+
type: string;
|
|
606
|
+
}>;
|
|
607
|
+
/**
|
|
608
|
+
* Returns attribute type map
|
|
609
|
+
*/
|
|
610
|
+
static getAttributeTypeMap(): {
|
|
611
|
+
name: string;
|
|
612
|
+
baseName: string;
|
|
613
|
+
type: string;
|
|
614
|
+
}[];
|
|
615
|
+
/**
|
|
616
|
+
* Files and folders contained by folder StorageFile.
|
|
617
|
+
*/
|
|
618
|
+
value: Array<StorageFile>;
|
|
619
|
+
constructor(init?: Partial<FilesList>);
|
|
620
|
+
}
|
|
621
|
+
/**
|
|
622
|
+
* File upload result
|
|
623
|
+
*/
|
|
624
|
+
export declare class FilesUploadResult {
|
|
625
|
+
/**
|
|
626
|
+
* Attribute type map
|
|
627
|
+
*/
|
|
628
|
+
static attributeTypeMap: Array<{
|
|
629
|
+
name: string;
|
|
630
|
+
baseName: string;
|
|
631
|
+
type: string;
|
|
632
|
+
}>;
|
|
633
|
+
/**
|
|
634
|
+
* Returns attribute type map
|
|
635
|
+
*/
|
|
636
|
+
static getAttributeTypeMap(): {
|
|
637
|
+
name: string;
|
|
638
|
+
baseName: string;
|
|
639
|
+
type: string;
|
|
640
|
+
}[];
|
|
641
|
+
/**
|
|
642
|
+
* List of uploaded file names
|
|
643
|
+
*/
|
|
644
|
+
uploaded: Array<string>;
|
|
645
|
+
/**
|
|
646
|
+
* List of errors.
|
|
647
|
+
*/
|
|
648
|
+
errors: Array<Error>;
|
|
649
|
+
constructor(init?: Partial<FilesUploadResult>);
|
|
650
|
+
}
|
|
651
|
+
/**
|
|
652
|
+
* File-format
|
|
653
|
+
*/
|
|
654
|
+
export declare class Format {
|
|
655
|
+
/**
|
|
656
|
+
* Attribute type map
|
|
657
|
+
*/
|
|
658
|
+
static attributeTypeMap: Array<{
|
|
659
|
+
name: string;
|
|
660
|
+
baseName: string;
|
|
661
|
+
type: string;
|
|
662
|
+
}>;
|
|
663
|
+
/**
|
|
664
|
+
* Returns attribute type map
|
|
665
|
+
*/
|
|
666
|
+
static getAttributeTypeMap(): {
|
|
667
|
+
name: string;
|
|
668
|
+
baseName: string;
|
|
669
|
+
type: string;
|
|
670
|
+
}[];
|
|
671
|
+
/**
|
|
672
|
+
* File extension
|
|
673
|
+
*/
|
|
674
|
+
extension: string;
|
|
675
|
+
/**
|
|
676
|
+
* File format
|
|
677
|
+
*/
|
|
678
|
+
fileFormat: string;
|
|
679
|
+
constructor(init?: Partial<Format>);
|
|
680
|
+
}
|
|
681
|
+
/**
|
|
682
|
+
* Describes object which contains list of supported file formats.
|
|
683
|
+
*/
|
|
684
|
+
export declare class FormatsResult {
|
|
685
|
+
/**
|
|
686
|
+
* Attribute type map
|
|
687
|
+
*/
|
|
688
|
+
static attributeTypeMap: Array<{
|
|
689
|
+
name: string;
|
|
690
|
+
baseName: string;
|
|
691
|
+
type: string;
|
|
692
|
+
}>;
|
|
693
|
+
/**
|
|
694
|
+
* Returns attribute type map
|
|
695
|
+
*/
|
|
696
|
+
static getAttributeTypeMap(): {
|
|
697
|
+
name: string;
|
|
698
|
+
baseName: string;
|
|
699
|
+
type: string;
|
|
700
|
+
}[];
|
|
701
|
+
/**
|
|
702
|
+
* Supported file formats.
|
|
703
|
+
*/
|
|
704
|
+
formats: Array<Format>;
|
|
705
|
+
constructor(init?: Partial<FormatsResult>);
|
|
706
|
+
}
|
|
707
|
+
/**
|
|
708
|
+
* Provides the options which are used for formatted text extraction.
|
|
709
|
+
*/
|
|
710
|
+
export declare class FormattedTextOptions {
|
|
711
|
+
/**
|
|
712
|
+
* Attribute type map
|
|
713
|
+
*/
|
|
714
|
+
static attributeTypeMap: Array<{
|
|
715
|
+
name: string;
|
|
716
|
+
baseName: string;
|
|
717
|
+
type: string;
|
|
718
|
+
}>;
|
|
719
|
+
/**
|
|
720
|
+
* Returns attribute type map
|
|
721
|
+
*/
|
|
722
|
+
static getAttributeTypeMap(): {
|
|
723
|
+
name: string;
|
|
724
|
+
baseName: string;
|
|
725
|
+
type: string;
|
|
726
|
+
}[];
|
|
727
|
+
/**
|
|
728
|
+
* Gets or sets the formatted text extraction mode.
|
|
729
|
+
*/
|
|
730
|
+
mode: string;
|
|
731
|
+
constructor(init?: Partial<FormattedTextOptions>);
|
|
732
|
+
}
|
|
733
|
+
/**
|
|
734
|
+
* Represents an image.
|
|
735
|
+
*/
|
|
736
|
+
export declare class Image {
|
|
737
|
+
/**
|
|
738
|
+
* Attribute type map
|
|
739
|
+
*/
|
|
740
|
+
static attributeTypeMap: Array<{
|
|
741
|
+
name: string;
|
|
742
|
+
baseName: string;
|
|
743
|
+
type: string;
|
|
744
|
+
}>;
|
|
745
|
+
/**
|
|
746
|
+
* Returns attribute type map
|
|
747
|
+
*/
|
|
748
|
+
static getAttributeTypeMap(): {
|
|
749
|
+
name: string;
|
|
750
|
+
baseName: string;
|
|
751
|
+
type: string;
|
|
752
|
+
}[];
|
|
753
|
+
/**
|
|
754
|
+
* Gets or sets The path of the image, located in the storage.
|
|
755
|
+
*/
|
|
756
|
+
path: string;
|
|
757
|
+
/**
|
|
758
|
+
* Gets or sets the image download URL.
|
|
759
|
+
*/
|
|
760
|
+
downloadUrl: string;
|
|
761
|
+
/**
|
|
762
|
+
* Gets or sets the index of the page.
|
|
763
|
+
*/
|
|
764
|
+
pageIndex: number;
|
|
765
|
+
/**
|
|
766
|
+
* Gets or sets the rotation of the image in degrees.
|
|
767
|
+
*/
|
|
768
|
+
rotation: number;
|
|
769
|
+
/**
|
|
770
|
+
* Gets or sets the image file format.
|
|
771
|
+
*/
|
|
772
|
+
fileFormat: string;
|
|
773
|
+
/**
|
|
774
|
+
* Gets or sets the rectangle area of the image.
|
|
775
|
+
*/
|
|
776
|
+
rectangle: Rectangle;
|
|
777
|
+
constructor(init?: Partial<Image>);
|
|
778
|
+
}
|
|
779
|
+
/**
|
|
780
|
+
* Represents page object with image collection.
|
|
781
|
+
*/
|
|
782
|
+
export declare class ImagePage {
|
|
783
|
+
/**
|
|
784
|
+
* Attribute type map
|
|
785
|
+
*/
|
|
786
|
+
static attributeTypeMap: Array<{
|
|
787
|
+
name: string;
|
|
788
|
+
baseName: string;
|
|
789
|
+
type: string;
|
|
790
|
+
}>;
|
|
791
|
+
/**
|
|
792
|
+
* Returns attribute type map
|
|
793
|
+
*/
|
|
794
|
+
static getAttributeTypeMap(): {
|
|
795
|
+
name: string;
|
|
796
|
+
baseName: string;
|
|
797
|
+
type: string;
|
|
798
|
+
}[];
|
|
799
|
+
/**
|
|
800
|
+
* The index of the page.
|
|
801
|
+
*/
|
|
802
|
+
pageIndex: number;
|
|
803
|
+
/**
|
|
804
|
+
* collection of the page images.
|
|
805
|
+
*/
|
|
806
|
+
images: Array<Image>;
|
|
807
|
+
constructor(init?: Partial<ImagePage>);
|
|
808
|
+
}
|
|
809
|
+
/**
|
|
810
|
+
* Images result.
|
|
811
|
+
*/
|
|
812
|
+
export declare class ImagesResult {
|
|
813
|
+
/**
|
|
814
|
+
* Attribute type map
|
|
815
|
+
*/
|
|
816
|
+
static attributeTypeMap: Array<{
|
|
817
|
+
name: string;
|
|
818
|
+
baseName: string;
|
|
819
|
+
type: string;
|
|
820
|
+
}>;
|
|
821
|
+
/**
|
|
822
|
+
* Returns attribute type map
|
|
823
|
+
*/
|
|
824
|
+
static getAttributeTypeMap(): {
|
|
825
|
+
name: string;
|
|
826
|
+
baseName: string;
|
|
827
|
+
type: string;
|
|
828
|
+
}[];
|
|
829
|
+
/**
|
|
830
|
+
* Gets or sets a collection of images.
|
|
831
|
+
*/
|
|
832
|
+
images: Array<Image>;
|
|
833
|
+
/**
|
|
834
|
+
* Collection of the extracted pages with images.
|
|
835
|
+
*/
|
|
836
|
+
pages: Array<ImagePage>;
|
|
837
|
+
constructor(init?: Partial<ImagesResult>);
|
|
838
|
+
}
|
|
839
|
+
/**
|
|
840
|
+
* Info result.
|
|
841
|
+
*/
|
|
842
|
+
export declare class InfoResult {
|
|
843
|
+
/**
|
|
844
|
+
* Attribute type map
|
|
845
|
+
*/
|
|
846
|
+
static attributeTypeMap: Array<{
|
|
847
|
+
name: string;
|
|
848
|
+
baseName: string;
|
|
849
|
+
type: string;
|
|
850
|
+
}>;
|
|
851
|
+
/**
|
|
852
|
+
* Returns attribute type map
|
|
853
|
+
*/
|
|
854
|
+
static getAttributeTypeMap(): {
|
|
855
|
+
name: string;
|
|
856
|
+
baseName: string;
|
|
857
|
+
type: string;
|
|
858
|
+
}[];
|
|
859
|
+
/**
|
|
860
|
+
* Gets or sets the type of the file.
|
|
861
|
+
*/
|
|
862
|
+
fileType: FileType;
|
|
863
|
+
/**
|
|
864
|
+
* Gets or sets the size of the document in bytes.
|
|
865
|
+
*/
|
|
866
|
+
size: number;
|
|
867
|
+
/**
|
|
868
|
+
* Gets or sets the total number of document pages.
|
|
869
|
+
*/
|
|
870
|
+
pageCount: number;
|
|
871
|
+
/**
|
|
872
|
+
* Gets or sets the encoding.
|
|
873
|
+
*/
|
|
874
|
+
encoding: string;
|
|
875
|
+
constructor(init?: Partial<InfoResult>);
|
|
876
|
+
}
|
|
877
|
+
/**
|
|
878
|
+
* Error
|
|
879
|
+
*/
|
|
880
|
+
export declare class ModelError {
|
|
881
|
+
/**
|
|
882
|
+
* Attribute type map
|
|
883
|
+
*/
|
|
884
|
+
static attributeTypeMap: Array<{
|
|
885
|
+
name: string;
|
|
886
|
+
baseName: string;
|
|
887
|
+
type: string;
|
|
888
|
+
}>;
|
|
889
|
+
/**
|
|
890
|
+
* Returns attribute type map
|
|
891
|
+
*/
|
|
892
|
+
static getAttributeTypeMap(): {
|
|
893
|
+
name: string;
|
|
894
|
+
baseName: string;
|
|
895
|
+
type: string;
|
|
896
|
+
}[];
|
|
897
|
+
/**
|
|
898
|
+
* Code
|
|
899
|
+
*/
|
|
900
|
+
code: string;
|
|
901
|
+
/**
|
|
902
|
+
* Message
|
|
903
|
+
*/
|
|
904
|
+
message: string;
|
|
905
|
+
/**
|
|
906
|
+
* Description
|
|
907
|
+
*/
|
|
908
|
+
description: string;
|
|
909
|
+
/**
|
|
910
|
+
* Inner Error
|
|
911
|
+
*/
|
|
912
|
+
innerError: ErrorDetails;
|
|
913
|
+
constructor(init?: Partial<ModelError>);
|
|
914
|
+
}
|
|
915
|
+
/**
|
|
916
|
+
* Object exists
|
|
917
|
+
*/
|
|
918
|
+
export declare class ObjectExist {
|
|
919
|
+
/**
|
|
920
|
+
* Attribute type map
|
|
921
|
+
*/
|
|
922
|
+
static attributeTypeMap: Array<{
|
|
923
|
+
name: string;
|
|
924
|
+
baseName: string;
|
|
925
|
+
type: string;
|
|
926
|
+
}>;
|
|
927
|
+
/**
|
|
928
|
+
* Returns attribute type map
|
|
929
|
+
*/
|
|
930
|
+
static getAttributeTypeMap(): {
|
|
931
|
+
name: string;
|
|
932
|
+
baseName: string;
|
|
933
|
+
type: string;
|
|
934
|
+
}[];
|
|
935
|
+
/**
|
|
936
|
+
* Indicates that the file or folder exists.
|
|
937
|
+
*/
|
|
938
|
+
exists: boolean;
|
|
939
|
+
/**
|
|
940
|
+
* True if it is a folder, false if it is a file.
|
|
941
|
+
*/
|
|
942
|
+
isFolder: boolean;
|
|
943
|
+
constructor(init?: Partial<ObjectExist>);
|
|
944
|
+
}
|
|
945
|
+
/**
|
|
946
|
+
* The document page information such as page index and page size.
|
|
947
|
+
*/
|
|
948
|
+
export declare class Page {
|
|
949
|
+
/**
|
|
950
|
+
* Attribute type map
|
|
951
|
+
*/
|
|
952
|
+
static attributeTypeMap: Array<{
|
|
953
|
+
name: string;
|
|
954
|
+
baseName: string;
|
|
955
|
+
type: string;
|
|
956
|
+
}>;
|
|
957
|
+
/**
|
|
958
|
+
* Returns attribute type map
|
|
959
|
+
*/
|
|
960
|
+
static getAttributeTypeMap(): {
|
|
961
|
+
name: string;
|
|
962
|
+
baseName: string;
|
|
963
|
+
type: string;
|
|
964
|
+
}[];
|
|
965
|
+
/**
|
|
966
|
+
* Gets or sets the index of the page.
|
|
967
|
+
*/
|
|
968
|
+
index: number;
|
|
969
|
+
/**
|
|
970
|
+
* Gets or sets the size of the page.
|
|
971
|
+
*/
|
|
972
|
+
size: Size;
|
|
973
|
+
constructor(init?: Partial<Page>);
|
|
974
|
+
}
|
|
975
|
+
/**
|
|
976
|
+
* Class for document page area.
|
|
977
|
+
*/
|
|
978
|
+
export declare class PageArea {
|
|
979
|
+
/**
|
|
980
|
+
* Attribute type map
|
|
981
|
+
*/
|
|
982
|
+
static attributeTypeMap: Array<{
|
|
983
|
+
name: string;
|
|
984
|
+
baseName: string;
|
|
985
|
+
type: string;
|
|
986
|
+
}>;
|
|
987
|
+
/**
|
|
988
|
+
* Returns attribute type map
|
|
989
|
+
*/
|
|
990
|
+
static getAttributeTypeMap(): {
|
|
991
|
+
name: string;
|
|
992
|
+
baseName: string;
|
|
993
|
+
type: string;
|
|
994
|
+
}[];
|
|
995
|
+
/**
|
|
996
|
+
* Gets or sets the rectangular area.
|
|
997
|
+
*/
|
|
998
|
+
rectangle: Rectangle;
|
|
999
|
+
/**
|
|
1000
|
+
* Gets or sets the document page information such as page index and page size.
|
|
1001
|
+
*/
|
|
1002
|
+
page: Page;
|
|
1003
|
+
/**
|
|
1004
|
+
* Gets or sets the text area. Represents a page text area which is used to represent a text value in the parsing by template functionality.
|
|
1005
|
+
*/
|
|
1006
|
+
pageTextArea: PageTextArea;
|
|
1007
|
+
/**
|
|
1008
|
+
* Gets or sets the table area. Represents a table page area which is used to represent a table in the parsing by template functionality.
|
|
1009
|
+
*/
|
|
1010
|
+
pageTableArea: PageTableArea;
|
|
1011
|
+
constructor(init?: Partial<PageArea>);
|
|
1012
|
+
}
|
|
1013
|
+
/**
|
|
1014
|
+
* Represents a table page area which is used to represent a table in the parsing by template functionality.
|
|
1015
|
+
*/
|
|
1016
|
+
export declare class PageTableArea {
|
|
1017
|
+
/**
|
|
1018
|
+
* Attribute type map
|
|
1019
|
+
*/
|
|
1020
|
+
static attributeTypeMap: Array<{
|
|
1021
|
+
name: string;
|
|
1022
|
+
baseName: string;
|
|
1023
|
+
type: string;
|
|
1024
|
+
}>;
|
|
1025
|
+
/**
|
|
1026
|
+
* Returns attribute type map
|
|
1027
|
+
*/
|
|
1028
|
+
static getAttributeTypeMap(): {
|
|
1029
|
+
name: string;
|
|
1030
|
+
baseName: string;
|
|
1031
|
+
type: string;
|
|
1032
|
+
}[];
|
|
1033
|
+
/**
|
|
1034
|
+
* Gets or sets the total number of the table rows.
|
|
1035
|
+
*/
|
|
1036
|
+
rowCount: number;
|
|
1037
|
+
/**
|
|
1038
|
+
* Gets or sets the total number of the table columns.
|
|
1039
|
+
*/
|
|
1040
|
+
columnCount: number;
|
|
1041
|
+
/**
|
|
1042
|
+
* Gets or sets the collection of table area cell.
|
|
1043
|
+
*/
|
|
1044
|
+
pageTableAreaCells: Array<PageTableAreaCell>;
|
|
1045
|
+
constructor(init?: Partial<PageTableArea>);
|
|
1046
|
+
}
|
|
1047
|
+
/**
|
|
1048
|
+
* Represents a table cell.
|
|
1049
|
+
*/
|
|
1050
|
+
export declare class PageTableAreaCell {
|
|
1051
|
+
/**
|
|
1052
|
+
* Attribute type map
|
|
1053
|
+
*/
|
|
1054
|
+
static attributeTypeMap: Array<{
|
|
1055
|
+
name: string;
|
|
1056
|
+
baseName: string;
|
|
1057
|
+
type: string;
|
|
1058
|
+
}>;
|
|
1059
|
+
/**
|
|
1060
|
+
* Returns attribute type map
|
|
1061
|
+
*/
|
|
1062
|
+
static getAttributeTypeMap(): {
|
|
1063
|
+
name: string;
|
|
1064
|
+
baseName: string;
|
|
1065
|
+
type: string;
|
|
1066
|
+
}[];
|
|
1067
|
+
/**
|
|
1068
|
+
* Gets or sets the index of the column.
|
|
1069
|
+
*/
|
|
1070
|
+
columnIndex: number;
|
|
1071
|
+
/**
|
|
1072
|
+
* Gets or sets the total number of columns that contain the table cell.
|
|
1073
|
+
*/
|
|
1074
|
+
columnSpan: number;
|
|
1075
|
+
/**
|
|
1076
|
+
* Gets or sets the table cell value.
|
|
1077
|
+
*/
|
|
1078
|
+
pageArea: PageArea;
|
|
1079
|
+
/**
|
|
1080
|
+
* Gets or sets the index of the row.
|
|
1081
|
+
*/
|
|
1082
|
+
rowIndex: number;
|
|
1083
|
+
/**
|
|
1084
|
+
* Gets or sets the total number of rows that contain the table cell.
|
|
1085
|
+
*/
|
|
1086
|
+
rowSpan: number;
|
|
1087
|
+
constructor(init?: Partial<PageTableAreaCell>);
|
|
1088
|
+
}
|
|
1089
|
+
/**
|
|
1090
|
+
* Represents a page text area which is used to represent a text value in the parsing by template functionality.
|
|
1091
|
+
*/
|
|
1092
|
+
export declare class PageTextArea {
|
|
1093
|
+
/**
|
|
1094
|
+
* Attribute type map
|
|
1095
|
+
*/
|
|
1096
|
+
static attributeTypeMap: Array<{
|
|
1097
|
+
name: string;
|
|
1098
|
+
baseName: string;
|
|
1099
|
+
type: string;
|
|
1100
|
+
}>;
|
|
1101
|
+
/**
|
|
1102
|
+
* Returns attribute type map
|
|
1103
|
+
*/
|
|
1104
|
+
static getAttributeTypeMap(): {
|
|
1105
|
+
name: string;
|
|
1106
|
+
baseName: string;
|
|
1107
|
+
type: string;
|
|
1108
|
+
}[];
|
|
1109
|
+
/**
|
|
1110
|
+
* Gets or sets the text.
|
|
1111
|
+
*/
|
|
1112
|
+
text: string;
|
|
1113
|
+
/**
|
|
1114
|
+
* Gets or sets the base line.
|
|
1115
|
+
*/
|
|
1116
|
+
baseLine: number;
|
|
1117
|
+
/**
|
|
1118
|
+
* Gets or sets the collection of child text page areas.
|
|
1119
|
+
*/
|
|
1120
|
+
areas: Array<PageTextArea>;
|
|
1121
|
+
/**
|
|
1122
|
+
* Gets or sets the text style such as font size, font name an so on.
|
|
1123
|
+
*/
|
|
1124
|
+
textStyle: TextStyle;
|
|
1125
|
+
constructor(init?: Partial<PageTextArea>);
|
|
1126
|
+
}
|
|
1127
|
+
/**
|
|
1128
|
+
* Parse result.
|
|
1129
|
+
*/
|
|
1130
|
+
export declare class ParseResult {
|
|
1131
|
+
/**
|
|
1132
|
+
* Attribute type map
|
|
1133
|
+
*/
|
|
1134
|
+
static attributeTypeMap: Array<{
|
|
1135
|
+
name: string;
|
|
1136
|
+
baseName: string;
|
|
1137
|
+
type: string;
|
|
1138
|
+
}>;
|
|
1139
|
+
/**
|
|
1140
|
+
* Returns attribute type map
|
|
1141
|
+
*/
|
|
1142
|
+
static getAttributeTypeMap(): {
|
|
1143
|
+
name: string;
|
|
1144
|
+
baseName: string;
|
|
1145
|
+
type: string;
|
|
1146
|
+
}[];
|
|
1147
|
+
/**
|
|
1148
|
+
* Gets or sets the total number of the fields data.
|
|
1149
|
+
*/
|
|
1150
|
+
count: number;
|
|
1151
|
+
/**
|
|
1152
|
+
* Collection of the data fields.
|
|
1153
|
+
*/
|
|
1154
|
+
fieldsData: Array<FieldData>;
|
|
1155
|
+
constructor(init?: Partial<ParseResult>);
|
|
1156
|
+
}
|
|
1157
|
+
/**
|
|
1158
|
+
* Base options class.
|
|
1159
|
+
*/
|
|
1160
|
+
export declare class ParserOptions {
|
|
1161
|
+
/**
|
|
1162
|
+
* Attribute type map
|
|
1163
|
+
*/
|
|
1164
|
+
static attributeTypeMap: Array<{
|
|
1165
|
+
name: string;
|
|
1166
|
+
baseName: string;
|
|
1167
|
+
type: string;
|
|
1168
|
+
}>;
|
|
1169
|
+
/**
|
|
1170
|
+
* Returns attribute type map
|
|
1171
|
+
*/
|
|
1172
|
+
static getAttributeTypeMap(): {
|
|
1173
|
+
name: string;
|
|
1174
|
+
baseName: string;
|
|
1175
|
+
type: string;
|
|
1176
|
+
}[];
|
|
1177
|
+
/**
|
|
1178
|
+
* Gets or sets the file information.
|
|
1179
|
+
*/
|
|
1180
|
+
fileInfo: FileInfo;
|
|
1181
|
+
/**
|
|
1182
|
+
* Gets or sets the container item information.
|
|
1183
|
+
*/
|
|
1184
|
+
containerItemInfo: ContainerItemInfo;
|
|
1185
|
+
constructor(init?: Partial<ParserOptions>);
|
|
1186
|
+
}
|
|
1187
|
+
/**
|
|
1188
|
+
* Class for rectangle position model.
|
|
1189
|
+
*/
|
|
1190
|
+
export declare class Point {
|
|
1191
|
+
/**
|
|
1192
|
+
* Attribute type map
|
|
1193
|
+
*/
|
|
1194
|
+
static attributeTypeMap: Array<{
|
|
1195
|
+
name: string;
|
|
1196
|
+
baseName: string;
|
|
1197
|
+
type: string;
|
|
1198
|
+
}>;
|
|
1199
|
+
/**
|
|
1200
|
+
* Returns attribute type map
|
|
1201
|
+
*/
|
|
1202
|
+
static getAttributeTypeMap(): {
|
|
1203
|
+
name: string;
|
|
1204
|
+
baseName: string;
|
|
1205
|
+
type: string;
|
|
1206
|
+
}[];
|
|
1207
|
+
/**
|
|
1208
|
+
* Gets or sets the x-coordinate.
|
|
1209
|
+
*/
|
|
1210
|
+
x: number;
|
|
1211
|
+
/**
|
|
1212
|
+
* Gets or sets the y-coordinate.
|
|
1213
|
+
*/
|
|
1214
|
+
y: number;
|
|
1215
|
+
constructor(init?: Partial<Point>);
|
|
1216
|
+
}
|
|
1217
|
+
/**
|
|
1218
|
+
* Rectangular area on the page.
|
|
1219
|
+
*/
|
|
1220
|
+
export declare class Rectangle {
|
|
1221
|
+
/**
|
|
1222
|
+
* Attribute type map
|
|
1223
|
+
*/
|
|
1224
|
+
static attributeTypeMap: Array<{
|
|
1225
|
+
name: string;
|
|
1226
|
+
baseName: string;
|
|
1227
|
+
type: string;
|
|
1228
|
+
}>;
|
|
1229
|
+
/**
|
|
1230
|
+
* Returns attribute type map
|
|
1231
|
+
*/
|
|
1232
|
+
static getAttributeTypeMap(): {
|
|
1233
|
+
name: string;
|
|
1234
|
+
baseName: string;
|
|
1235
|
+
type: string;
|
|
1236
|
+
}[];
|
|
1237
|
+
/**
|
|
1238
|
+
* Gets the coordinates of the upper-left corner of the rectangular area.
|
|
1239
|
+
*/
|
|
1240
|
+
position: Point;
|
|
1241
|
+
/**
|
|
1242
|
+
* Gets or sets the size of the rectangle.
|
|
1243
|
+
*/
|
|
1244
|
+
size: Size;
|
|
1245
|
+
/**
|
|
1246
|
+
* Gets or sets the coordinates.
|
|
1247
|
+
*/
|
|
1248
|
+
coordinates: Coordinates;
|
|
1249
|
+
constructor(init?: Partial<Rectangle>);
|
|
1250
|
+
}
|
|
1251
|
+
/**
|
|
1252
|
+
* Represents a size of rectangular area.
|
|
1253
|
+
*/
|
|
1254
|
+
export declare class Size {
|
|
1255
|
+
/**
|
|
1256
|
+
* Attribute type map
|
|
1257
|
+
*/
|
|
1258
|
+
static attributeTypeMap: Array<{
|
|
1259
|
+
name: string;
|
|
1260
|
+
baseName: string;
|
|
1261
|
+
type: string;
|
|
1262
|
+
}>;
|
|
1263
|
+
/**
|
|
1264
|
+
* Returns attribute type map
|
|
1265
|
+
*/
|
|
1266
|
+
static getAttributeTypeMap(): {
|
|
1267
|
+
name: string;
|
|
1268
|
+
baseName: string;
|
|
1269
|
+
type: string;
|
|
1270
|
+
}[];
|
|
1271
|
+
/**
|
|
1272
|
+
* Gets or sets the height.
|
|
1273
|
+
*/
|
|
1274
|
+
height: number;
|
|
1275
|
+
/**
|
|
1276
|
+
* Gets or sets the width.
|
|
1277
|
+
*/
|
|
1278
|
+
width: number;
|
|
1279
|
+
constructor(init?: Partial<Size>);
|
|
1280
|
+
}
|
|
1281
|
+
/**
|
|
1282
|
+
* Storage exists
|
|
1283
|
+
*/
|
|
1284
|
+
export declare class StorageExist {
|
|
1285
|
+
/**
|
|
1286
|
+
* Attribute type map
|
|
1287
|
+
*/
|
|
1288
|
+
static attributeTypeMap: Array<{
|
|
1289
|
+
name: string;
|
|
1290
|
+
baseName: string;
|
|
1291
|
+
type: string;
|
|
1292
|
+
}>;
|
|
1293
|
+
/**
|
|
1294
|
+
* Returns attribute type map
|
|
1295
|
+
*/
|
|
1296
|
+
static getAttributeTypeMap(): {
|
|
1297
|
+
name: string;
|
|
1298
|
+
baseName: string;
|
|
1299
|
+
type: string;
|
|
1300
|
+
}[];
|
|
1301
|
+
/**
|
|
1302
|
+
* Shows that the storage exists.
|
|
1303
|
+
*/
|
|
1304
|
+
exists: boolean;
|
|
1305
|
+
constructor(init?: Partial<StorageExist>);
|
|
1306
|
+
}
|
|
1307
|
+
/**
|
|
1308
|
+
* File or folder information
|
|
1309
|
+
*/
|
|
1310
|
+
export declare class StorageFile {
|
|
1311
|
+
/**
|
|
1312
|
+
* Attribute type map
|
|
1313
|
+
*/
|
|
1314
|
+
static attributeTypeMap: Array<{
|
|
1315
|
+
name: string;
|
|
1316
|
+
baseName: string;
|
|
1317
|
+
type: string;
|
|
1318
|
+
}>;
|
|
1319
|
+
/**
|
|
1320
|
+
* Returns attribute type map
|
|
1321
|
+
*/
|
|
1322
|
+
static getAttributeTypeMap(): {
|
|
1323
|
+
name: string;
|
|
1324
|
+
baseName: string;
|
|
1325
|
+
type: string;
|
|
1326
|
+
}[];
|
|
1327
|
+
/**
|
|
1328
|
+
* File or folder name.
|
|
1329
|
+
*/
|
|
1330
|
+
name: string;
|
|
1331
|
+
/**
|
|
1332
|
+
* True if it is a folder.
|
|
1333
|
+
*/
|
|
1334
|
+
isFolder: boolean;
|
|
1335
|
+
/**
|
|
1336
|
+
* File or folder last modified DateTime.
|
|
1337
|
+
*/
|
|
1338
|
+
modifiedDate: Date;
|
|
1339
|
+
/**
|
|
1340
|
+
* File or folder size.
|
|
1341
|
+
*/
|
|
1342
|
+
size: number;
|
|
1343
|
+
/**
|
|
1344
|
+
* File or folder path.
|
|
1345
|
+
*/
|
|
1346
|
+
path: string;
|
|
1347
|
+
constructor(init?: Partial<StorageFile>);
|
|
1348
|
+
}
|
|
1349
|
+
/**
|
|
1350
|
+
* Document template table
|
|
1351
|
+
*/
|
|
1352
|
+
export declare class Table {
|
|
1353
|
+
/**
|
|
1354
|
+
* Attribute type map
|
|
1355
|
+
*/
|
|
1356
|
+
static attributeTypeMap: Array<{
|
|
1357
|
+
name: string;
|
|
1358
|
+
baseName: string;
|
|
1359
|
+
type: string;
|
|
1360
|
+
}>;
|
|
1361
|
+
/**
|
|
1362
|
+
* Returns attribute type map
|
|
1363
|
+
*/
|
|
1364
|
+
static getAttributeTypeMap(): {
|
|
1365
|
+
name: string;
|
|
1366
|
+
baseName: string;
|
|
1367
|
+
type: string;
|
|
1368
|
+
}[];
|
|
1369
|
+
/**
|
|
1370
|
+
* Gets or sets a unique template table name.
|
|
1371
|
+
*/
|
|
1372
|
+
tableName: string;
|
|
1373
|
+
/**
|
|
1374
|
+
* The page index. An integer value that represents the index of the page where the template item is located; null if the template item is located on any page.
|
|
1375
|
+
*/
|
|
1376
|
+
pageIndex: number;
|
|
1377
|
+
/**
|
|
1378
|
+
* Gets or sets the detector parameters. Provides parameters for the table detection algorithms.
|
|
1379
|
+
*/
|
|
1380
|
+
detectorParameters: DetectorParameters;
|
|
1381
|
+
/**
|
|
1382
|
+
* Gets or sets the table layout. Provides the template table layout which is used by Table to define table position.
|
|
1383
|
+
*/
|
|
1384
|
+
tableLayout: TableLayout;
|
|
1385
|
+
constructor(init?: Partial<Table>);
|
|
1386
|
+
}
|
|
1387
|
+
/**
|
|
1388
|
+
* Provides the template table layout which is used by Table to define table position.
|
|
1389
|
+
*/
|
|
1390
|
+
export declare class TableLayout {
|
|
1391
|
+
/**
|
|
1392
|
+
* Attribute type map
|
|
1393
|
+
*/
|
|
1394
|
+
static attributeTypeMap: Array<{
|
|
1395
|
+
name: string;
|
|
1396
|
+
baseName: string;
|
|
1397
|
+
type: string;
|
|
1398
|
+
}>;
|
|
1399
|
+
/**
|
|
1400
|
+
* Returns attribute type map
|
|
1401
|
+
*/
|
|
1402
|
+
static getAttributeTypeMap(): {
|
|
1403
|
+
name: string;
|
|
1404
|
+
baseName: string;
|
|
1405
|
+
type: string;
|
|
1406
|
+
}[];
|
|
1407
|
+
/**
|
|
1408
|
+
* Gets or sets the table columns separators.
|
|
1409
|
+
*/
|
|
1410
|
+
verticalSeparators: Array<number>;
|
|
1411
|
+
/**
|
|
1412
|
+
* Gets or sets the table rows separators.
|
|
1413
|
+
*/
|
|
1414
|
+
horizontalSeparators: Array<number>;
|
|
1415
|
+
constructor(init?: Partial<TableLayout>);
|
|
1416
|
+
}
|
|
1417
|
+
/**
|
|
1418
|
+
* User-generated template to extract metadata from the document.
|
|
1419
|
+
*/
|
|
1420
|
+
export declare class Template {
|
|
1421
|
+
/**
|
|
1422
|
+
* Attribute type map
|
|
1423
|
+
*/
|
|
1424
|
+
static attributeTypeMap: Array<{
|
|
1425
|
+
name: string;
|
|
1426
|
+
baseName: string;
|
|
1427
|
+
type: string;
|
|
1428
|
+
}>;
|
|
1429
|
+
/**
|
|
1430
|
+
* Returns attribute type map
|
|
1431
|
+
*/
|
|
1432
|
+
static getAttributeTypeMap(): {
|
|
1433
|
+
name: string;
|
|
1434
|
+
baseName: string;
|
|
1435
|
+
type: string;
|
|
1436
|
+
}[];
|
|
1437
|
+
/**
|
|
1438
|
+
* Template fields.
|
|
1439
|
+
*/
|
|
1440
|
+
fields: Array<Field>;
|
|
1441
|
+
/**
|
|
1442
|
+
* Template tables.
|
|
1443
|
+
*/
|
|
1444
|
+
tables: Array<Table>;
|
|
1445
|
+
constructor(init?: Partial<Template>);
|
|
1446
|
+
}
|
|
1447
|
+
/**
|
|
1448
|
+
* Template methods options.
|
|
1449
|
+
*/
|
|
1450
|
+
export declare class TemplateOptions {
|
|
1451
|
+
/**
|
|
1452
|
+
* Attribute type map
|
|
1453
|
+
*/
|
|
1454
|
+
static attributeTypeMap: Array<{
|
|
1455
|
+
name: string;
|
|
1456
|
+
baseName: string;
|
|
1457
|
+
type: string;
|
|
1458
|
+
}>;
|
|
1459
|
+
/**
|
|
1460
|
+
* Returns attribute type map
|
|
1461
|
+
*/
|
|
1462
|
+
static getAttributeTypeMap(): {
|
|
1463
|
+
name: string;
|
|
1464
|
+
baseName: string;
|
|
1465
|
+
type: string;
|
|
1466
|
+
}[];
|
|
1467
|
+
/**
|
|
1468
|
+
* Gets or sets the template path.
|
|
1469
|
+
*/
|
|
1470
|
+
templatePath: string;
|
|
1471
|
+
/**
|
|
1472
|
+
* Gets or sets the name of the storage.
|
|
1473
|
+
*/
|
|
1474
|
+
storageName: string;
|
|
1475
|
+
constructor(init?: Partial<TemplateOptions>);
|
|
1476
|
+
}
|
|
1477
|
+
/**
|
|
1478
|
+
* Document template result.
|
|
1479
|
+
*/
|
|
1480
|
+
export declare class TemplateResult {
|
|
1481
|
+
/**
|
|
1482
|
+
* Attribute type map
|
|
1483
|
+
*/
|
|
1484
|
+
static attributeTypeMap: Array<{
|
|
1485
|
+
name: string;
|
|
1486
|
+
baseName: string;
|
|
1487
|
+
type: string;
|
|
1488
|
+
}>;
|
|
1489
|
+
/**
|
|
1490
|
+
* Returns attribute type map
|
|
1491
|
+
*/
|
|
1492
|
+
static getAttributeTypeMap(): {
|
|
1493
|
+
name: string;
|
|
1494
|
+
baseName: string;
|
|
1495
|
+
type: string;
|
|
1496
|
+
}[];
|
|
1497
|
+
/**
|
|
1498
|
+
* Gets or sets the template download URL.
|
|
1499
|
+
*/
|
|
1500
|
+
url: string;
|
|
1501
|
+
/**
|
|
1502
|
+
* Gets or sets the path of the template, located in the storage.
|
|
1503
|
+
*/
|
|
1504
|
+
templatePath: string;
|
|
1505
|
+
constructor(init?: Partial<TemplateResult>);
|
|
1506
|
+
}
|
|
1507
|
+
/**
|
|
1508
|
+
* Extracted text page class.
|
|
1509
|
+
*/
|
|
1510
|
+
export declare class TextPage {
|
|
1511
|
+
/**
|
|
1512
|
+
* Attribute type map
|
|
1513
|
+
*/
|
|
1514
|
+
static attributeTypeMap: Array<{
|
|
1515
|
+
name: string;
|
|
1516
|
+
baseName: string;
|
|
1517
|
+
type: string;
|
|
1518
|
+
}>;
|
|
1519
|
+
/**
|
|
1520
|
+
* Returns attribute type map
|
|
1521
|
+
*/
|
|
1522
|
+
static getAttributeTypeMap(): {
|
|
1523
|
+
name: string;
|
|
1524
|
+
baseName: string;
|
|
1525
|
+
type: string;
|
|
1526
|
+
}[];
|
|
1527
|
+
/**
|
|
1528
|
+
* Gets or sets the pageIndex.
|
|
1529
|
+
*/
|
|
1530
|
+
pageIndex: number;
|
|
1531
|
+
/**
|
|
1532
|
+
* Gets or sets the text.
|
|
1533
|
+
*/
|
|
1534
|
+
text: string;
|
|
1535
|
+
constructor(init?: Partial<TextPage>);
|
|
1536
|
+
}
|
|
1537
|
+
/**
|
|
1538
|
+
* The result od text extraction.
|
|
1539
|
+
*/
|
|
1540
|
+
export declare class TextResult {
|
|
1541
|
+
/**
|
|
1542
|
+
* Attribute type map
|
|
1543
|
+
*/
|
|
1544
|
+
static attributeTypeMap: Array<{
|
|
1545
|
+
name: string;
|
|
1546
|
+
baseName: string;
|
|
1547
|
+
type: string;
|
|
1548
|
+
}>;
|
|
1549
|
+
/**
|
|
1550
|
+
* Returns attribute type map
|
|
1551
|
+
*/
|
|
1552
|
+
static getAttributeTypeMap(): {
|
|
1553
|
+
name: string;
|
|
1554
|
+
baseName: string;
|
|
1555
|
+
type: string;
|
|
1556
|
+
}[];
|
|
1557
|
+
/**
|
|
1558
|
+
* Gets or sets the pages.
|
|
1559
|
+
*/
|
|
1560
|
+
pages: Array<TextPage>;
|
|
1561
|
+
/**
|
|
1562
|
+
* Gets or sets the text.
|
|
1563
|
+
*/
|
|
1564
|
+
text: string;
|
|
1565
|
+
constructor(init?: Partial<TextResult>);
|
|
1566
|
+
}
|
|
1567
|
+
/**
|
|
1568
|
+
* The text style such as font size, font name an so on.
|
|
1569
|
+
*/
|
|
1570
|
+
export declare class TextStyle {
|
|
1571
|
+
/**
|
|
1572
|
+
* Attribute type map
|
|
1573
|
+
*/
|
|
1574
|
+
static attributeTypeMap: Array<{
|
|
1575
|
+
name: string;
|
|
1576
|
+
baseName: string;
|
|
1577
|
+
type: string;
|
|
1578
|
+
}>;
|
|
1579
|
+
/**
|
|
1580
|
+
* Returns attribute type map
|
|
1581
|
+
*/
|
|
1582
|
+
static getAttributeTypeMap(): {
|
|
1583
|
+
name: string;
|
|
1584
|
+
baseName: string;
|
|
1585
|
+
type: string;
|
|
1586
|
+
}[];
|
|
1587
|
+
/**
|
|
1588
|
+
* Gets or sets the name of the font.
|
|
1589
|
+
*/
|
|
1590
|
+
fontName: string;
|
|
1591
|
+
/**
|
|
1592
|
+
* Gets or sets the size of the font.
|
|
1593
|
+
*/
|
|
1594
|
+
fontSize: number;
|
|
1595
|
+
/**
|
|
1596
|
+
* Gets or sets the value that indicates whether the font is bold.
|
|
1597
|
+
*/
|
|
1598
|
+
isBold: boolean;
|
|
1599
|
+
/**
|
|
1600
|
+
* Gets or sets the value that indicates whether the font is italic.
|
|
1601
|
+
*/
|
|
1602
|
+
isItalic: boolean;
|
|
1603
|
+
/**
|
|
1604
|
+
* Gets or sets the style name.
|
|
1605
|
+
*/
|
|
1606
|
+
name: string;
|
|
1607
|
+
constructor(init?: Partial<TextStyle>);
|
|
1608
|
+
}
|
|
1609
|
+
/**
|
|
1610
|
+
* AI Parse options.
|
|
1611
|
+
*/
|
|
1612
|
+
export declare class AIParseOptions extends ParserOptions {
|
|
1613
|
+
/**
|
|
1614
|
+
* Attribute type map
|
|
1615
|
+
*/
|
|
1616
|
+
static attributeTypeMap: Array<{
|
|
1617
|
+
name: string;
|
|
1618
|
+
baseName: string;
|
|
1619
|
+
type: string;
|
|
1620
|
+
}>;
|
|
1621
|
+
/**
|
|
1622
|
+
* Returns attribute type map
|
|
1623
|
+
*/
|
|
1624
|
+
static getAttributeTypeMap(): {
|
|
1625
|
+
name: string;
|
|
1626
|
+
baseName: string;
|
|
1627
|
+
type: string;
|
|
1628
|
+
}[];
|
|
1629
|
+
/**
|
|
1630
|
+
* User-generated template to extract metadata from the document.
|
|
1631
|
+
*/
|
|
1632
|
+
template: any;
|
|
1633
|
+
constructor(init?: Partial<AIParseOptions>);
|
|
1634
|
+
}
|
|
1635
|
+
/**
|
|
1636
|
+
* Barcode options.
|
|
1637
|
+
*/
|
|
1638
|
+
export declare class BarcodesOptions extends ParserOptions {
|
|
1639
|
+
/**
|
|
1640
|
+
* Attribute type map
|
|
1641
|
+
*/
|
|
1642
|
+
static attributeTypeMap: Array<{
|
|
1643
|
+
name: string;
|
|
1644
|
+
baseName: string;
|
|
1645
|
+
type: string;
|
|
1646
|
+
}>;
|
|
1647
|
+
/**
|
|
1648
|
+
* Returns attribute type map
|
|
1649
|
+
*/
|
|
1650
|
+
static getAttributeTypeMap(): {
|
|
1651
|
+
name: string;
|
|
1652
|
+
baseName: string;
|
|
1653
|
+
type: string;
|
|
1654
|
+
}[];
|
|
1655
|
+
/**
|
|
1656
|
+
* Gets or sets the output path for extracted barcodes.
|
|
1657
|
+
*/
|
|
1658
|
+
outputPath: string;
|
|
1659
|
+
/**
|
|
1660
|
+
* Gets or sets the zero-based start page index.
|
|
1661
|
+
*/
|
|
1662
|
+
startPageNumber: number;
|
|
1663
|
+
/**
|
|
1664
|
+
* Gets or sets the number of pages to extract.
|
|
1665
|
+
*/
|
|
1666
|
+
countPagesToExtract: number;
|
|
1667
|
+
constructor(init?: Partial<BarcodesOptions>);
|
|
1668
|
+
}
|
|
1669
|
+
/**
|
|
1670
|
+
* Container options.
|
|
1671
|
+
*/
|
|
1672
|
+
export declare class ContainerOptions extends ParserOptions {
|
|
1673
|
+
/**
|
|
1674
|
+
* Attribute type map
|
|
1675
|
+
*/
|
|
1676
|
+
static attributeTypeMap: Array<{
|
|
1677
|
+
name: string;
|
|
1678
|
+
baseName: string;
|
|
1679
|
+
type: string;
|
|
1680
|
+
}>;
|
|
1681
|
+
/**
|
|
1682
|
+
* Returns attribute type map
|
|
1683
|
+
*/
|
|
1684
|
+
static getAttributeTypeMap(): {
|
|
1685
|
+
name: string;
|
|
1686
|
+
baseName: string;
|
|
1687
|
+
type: string;
|
|
1688
|
+
}[];
|
|
1689
|
+
constructor(init?: Partial<ContainerOptions>);
|
|
1690
|
+
}
|
|
1691
|
+
/**
|
|
1692
|
+
* File Version
|
|
1693
|
+
*/
|
|
1694
|
+
export declare class FileVersion extends StorageFile {
|
|
1695
|
+
/**
|
|
1696
|
+
* Attribute type map
|
|
1697
|
+
*/
|
|
1698
|
+
static attributeTypeMap: Array<{
|
|
1699
|
+
name: string;
|
|
1700
|
+
baseName: string;
|
|
1701
|
+
type: string;
|
|
1702
|
+
}>;
|
|
1703
|
+
/**
|
|
1704
|
+
* Returns attribute type map
|
|
1705
|
+
*/
|
|
1706
|
+
static getAttributeTypeMap(): {
|
|
1707
|
+
name: string;
|
|
1708
|
+
baseName: string;
|
|
1709
|
+
type: string;
|
|
1710
|
+
}[];
|
|
1711
|
+
/**
|
|
1712
|
+
* File Version ID.
|
|
1713
|
+
*/
|
|
1714
|
+
versionId: string;
|
|
1715
|
+
/**
|
|
1716
|
+
* Specifies whether the file is (true) or is not (false) the latest version of an file.
|
|
1717
|
+
*/
|
|
1718
|
+
isLatest: boolean;
|
|
1719
|
+
constructor(init?: Partial<FileVersion>);
|
|
1720
|
+
}
|
|
1721
|
+
/**
|
|
1722
|
+
* Image options.
|
|
1723
|
+
*/
|
|
1724
|
+
export declare class ImagesOptions extends ParserOptions {
|
|
1725
|
+
/**
|
|
1726
|
+
* Attribute type map
|
|
1727
|
+
*/
|
|
1728
|
+
static attributeTypeMap: Array<{
|
|
1729
|
+
name: string;
|
|
1730
|
+
baseName: string;
|
|
1731
|
+
type: string;
|
|
1732
|
+
}>;
|
|
1733
|
+
/**
|
|
1734
|
+
* Returns attribute type map
|
|
1735
|
+
*/
|
|
1736
|
+
static getAttributeTypeMap(): {
|
|
1737
|
+
name: string;
|
|
1738
|
+
baseName: string;
|
|
1739
|
+
type: string;
|
|
1740
|
+
}[];
|
|
1741
|
+
/**
|
|
1742
|
+
* Gets or sets the output path for extracted images.
|
|
1743
|
+
*/
|
|
1744
|
+
outputPath: string;
|
|
1745
|
+
/**
|
|
1746
|
+
* Gets or sets the zero-based start page index.
|
|
1747
|
+
*/
|
|
1748
|
+
startPageNumber: number;
|
|
1749
|
+
/**
|
|
1750
|
+
* Gets or sets the number of pages to extract.
|
|
1751
|
+
*/
|
|
1752
|
+
countPagesToExtract: number;
|
|
1753
|
+
constructor(init?: Partial<ImagesOptions>);
|
|
1754
|
+
}
|
|
1755
|
+
/**
|
|
1756
|
+
* Info options
|
|
1757
|
+
*/
|
|
1758
|
+
export declare class InfoOptions extends ParserOptions {
|
|
1759
|
+
/**
|
|
1760
|
+
* Attribute type map
|
|
1761
|
+
*/
|
|
1762
|
+
static attributeTypeMap: Array<{
|
|
1763
|
+
name: string;
|
|
1764
|
+
baseName: string;
|
|
1765
|
+
type: string;
|
|
1766
|
+
}>;
|
|
1767
|
+
/**
|
|
1768
|
+
* Returns attribute type map
|
|
1769
|
+
*/
|
|
1770
|
+
static getAttributeTypeMap(): {
|
|
1771
|
+
name: string;
|
|
1772
|
+
baseName: string;
|
|
1773
|
+
type: string;
|
|
1774
|
+
}[];
|
|
1775
|
+
constructor(init?: Partial<InfoOptions>);
|
|
1776
|
+
}
|
|
1777
|
+
/**
|
|
1778
|
+
* Parse options.
|
|
1779
|
+
*/
|
|
1780
|
+
export declare class ParseOptions extends ParserOptions {
|
|
1781
|
+
/**
|
|
1782
|
+
* Attribute type map
|
|
1783
|
+
*/
|
|
1784
|
+
static attributeTypeMap: Array<{
|
|
1785
|
+
name: string;
|
|
1786
|
+
baseName: string;
|
|
1787
|
+
type: string;
|
|
1788
|
+
}>;
|
|
1789
|
+
/**
|
|
1790
|
+
* Returns attribute type map
|
|
1791
|
+
*/
|
|
1792
|
+
static getAttributeTypeMap(): {
|
|
1793
|
+
name: string;
|
|
1794
|
+
baseName: string;
|
|
1795
|
+
type: string;
|
|
1796
|
+
}[];
|
|
1797
|
+
/**
|
|
1798
|
+
* User-generated template to extract metadata from the document.
|
|
1799
|
+
*/
|
|
1800
|
+
template: Template;
|
|
1801
|
+
/**
|
|
1802
|
+
* The path of the file, located in the storage, which contains a user-generated template to parse data. Is used when the Template parameter is not provided.
|
|
1803
|
+
*/
|
|
1804
|
+
templatePath: string;
|
|
1805
|
+
constructor(init?: Partial<ParseOptions>);
|
|
1806
|
+
}
|
|
1807
|
+
/**
|
|
1808
|
+
* Extract options.
|
|
1809
|
+
*/
|
|
1810
|
+
export declare class TextOptions extends ParserOptions {
|
|
1811
|
+
/**
|
|
1812
|
+
* Attribute type map
|
|
1813
|
+
*/
|
|
1814
|
+
static attributeTypeMap: Array<{
|
|
1815
|
+
name: string;
|
|
1816
|
+
baseName: string;
|
|
1817
|
+
type: string;
|
|
1818
|
+
}>;
|
|
1819
|
+
/**
|
|
1820
|
+
* Returns attribute type map
|
|
1821
|
+
*/
|
|
1822
|
+
static getAttributeTypeMap(): {
|
|
1823
|
+
name: string;
|
|
1824
|
+
baseName: string;
|
|
1825
|
+
type: string;
|
|
1826
|
+
}[];
|
|
1827
|
+
/**
|
|
1828
|
+
* Gets or sets the options which are used for formatted text extraction.
|
|
1829
|
+
*/
|
|
1830
|
+
formattedTextOptions: FormattedTextOptions;
|
|
1831
|
+
/**
|
|
1832
|
+
* Gets or sets the zero-based start page index.
|
|
1833
|
+
*/
|
|
1834
|
+
startPageNumber: number;
|
|
1835
|
+
/**
|
|
1836
|
+
* Gets or sets the number of pages to extract.
|
|
1837
|
+
*/
|
|
1838
|
+
countPagesToExtract: number;
|
|
1839
|
+
constructor(init?: Partial<TextOptions>);
|
|
1840
|
+
}
|
|
1841
|
+
declare const enumsMap: {};
|
|
1842
|
+
declare const typeMap: {
|
|
1843
|
+
Barcode: typeof Barcode;
|
|
1844
|
+
BarcodePage: typeof BarcodePage;
|
|
1845
|
+
BarcodesResult: typeof BarcodesResult;
|
|
1846
|
+
ContainerItem: typeof ContainerItem;
|
|
1847
|
+
ContainerItemInfo: typeof ContainerItemInfo;
|
|
1848
|
+
ContainerResult: typeof ContainerResult;
|
|
1849
|
+
Coordinates: typeof Coordinates;
|
|
1850
|
+
CreateTemplateOptions: typeof CreateTemplateOptions;
|
|
1851
|
+
DetectorParameters: typeof DetectorParameters;
|
|
1852
|
+
DiscUsage: typeof DiscUsage;
|
|
1853
|
+
ErrorDetails: typeof ErrorDetails;
|
|
1854
|
+
Field: typeof Field;
|
|
1855
|
+
FieldData: typeof FieldData;
|
|
1856
|
+
FieldPosition: typeof FieldPosition;
|
|
1857
|
+
FileInfo: typeof FileInfo;
|
|
1858
|
+
FileType: typeof FileType;
|
|
1859
|
+
FileVersions: typeof FileVersions;
|
|
1860
|
+
FilesList: typeof FilesList;
|
|
1861
|
+
FilesUploadResult: typeof FilesUploadResult;
|
|
1862
|
+
Format: typeof Format;
|
|
1863
|
+
FormatsResult: typeof FormatsResult;
|
|
1864
|
+
FormattedTextOptions: typeof FormattedTextOptions;
|
|
1865
|
+
Image: typeof Image;
|
|
1866
|
+
ImagePage: typeof ImagePage;
|
|
1867
|
+
ImagesResult: typeof ImagesResult;
|
|
1868
|
+
InfoResult: typeof InfoResult;
|
|
1869
|
+
ModelError: typeof ModelError;
|
|
1870
|
+
ObjectExist: typeof ObjectExist;
|
|
1871
|
+
Page: typeof Page;
|
|
1872
|
+
PageArea: typeof PageArea;
|
|
1873
|
+
PageTableArea: typeof PageTableArea;
|
|
1874
|
+
PageTableAreaCell: typeof PageTableAreaCell;
|
|
1875
|
+
PageTextArea: typeof PageTextArea;
|
|
1876
|
+
ParseResult: typeof ParseResult;
|
|
1877
|
+
ParserOptions: typeof ParserOptions;
|
|
1878
|
+
Point: typeof Point;
|
|
1879
|
+
Rectangle: typeof Rectangle;
|
|
1880
|
+
Size: typeof Size;
|
|
1881
|
+
StorageExist: typeof StorageExist;
|
|
1882
|
+
StorageFile: typeof StorageFile;
|
|
1883
|
+
Table: typeof Table;
|
|
1884
|
+
TableLayout: typeof TableLayout;
|
|
1885
|
+
Template: typeof Template;
|
|
1886
|
+
TemplateOptions: typeof TemplateOptions;
|
|
1887
|
+
TemplateResult: typeof TemplateResult;
|
|
1888
|
+
TextPage: typeof TextPage;
|
|
1889
|
+
TextResult: typeof TextResult;
|
|
1890
|
+
TextStyle: typeof TextStyle;
|
|
1891
|
+
AIParseOptions: typeof AIParseOptions;
|
|
1892
|
+
BarcodesOptions: typeof BarcodesOptions;
|
|
1893
|
+
ContainerOptions: typeof ContainerOptions;
|
|
1894
|
+
FileVersion: typeof FileVersion;
|
|
1895
|
+
ImagesOptions: typeof ImagesOptions;
|
|
1896
|
+
InfoOptions: typeof InfoOptions;
|
|
1897
|
+
ParseOptions: typeof ParseOptions;
|
|
1898
|
+
TextOptions: typeof TextOptions;
|
|
1899
|
+
};
|
|
1900
|
+
export { enumsMap, typeMap };
|
|
1901
|
+
/**
|
|
1902
|
+
* Request model for CopyFile operation.
|
|
1903
|
+
*/
|
|
1904
|
+
export declare class CopyFileRequest {
|
|
1905
|
+
/**
|
|
1906
|
+
* Source file path e.g. '/folder/file.ext'
|
|
1907
|
+
*/
|
|
1908
|
+
srcPath: string;
|
|
1909
|
+
/**
|
|
1910
|
+
* Destination file path
|
|
1911
|
+
*/
|
|
1912
|
+
destPath: string;
|
|
1913
|
+
/**
|
|
1914
|
+
* Source storage name
|
|
1915
|
+
*/
|
|
1916
|
+
srcStorageName: string;
|
|
1917
|
+
/**
|
|
1918
|
+
* Destination storage name
|
|
1919
|
+
*/
|
|
1920
|
+
destStorageName: string;
|
|
1921
|
+
/**
|
|
1922
|
+
* File version ID to copy
|
|
1923
|
+
*/
|
|
1924
|
+
versionId: string;
|
|
1925
|
+
constructor(srcPath: string, destPath: string, srcStorageName?: string, destStorageName?: string, versionId?: string);
|
|
1926
|
+
}
|
|
1927
|
+
/**
|
|
1928
|
+
* Request model for DeleteFile operation.
|
|
1929
|
+
*/
|
|
1930
|
+
export declare class DeleteFileRequest {
|
|
1931
|
+
/**
|
|
1932
|
+
* File path e.g. '/folder/file.ext'
|
|
1933
|
+
*/
|
|
1934
|
+
path: string;
|
|
1935
|
+
/**
|
|
1936
|
+
* Storage name
|
|
1937
|
+
*/
|
|
1938
|
+
storageName: string;
|
|
1939
|
+
/**
|
|
1940
|
+
* File version ID to delete
|
|
1941
|
+
*/
|
|
1942
|
+
versionId: string;
|
|
1943
|
+
constructor(path: string, storageName?: string, versionId?: string);
|
|
1944
|
+
}
|
|
1945
|
+
/**
|
|
1946
|
+
* Request model for DownloadFile operation.
|
|
1947
|
+
*/
|
|
1948
|
+
export declare class DownloadFileRequest {
|
|
1949
|
+
/**
|
|
1950
|
+
* File path e.g. '/folder/file.ext'
|
|
1951
|
+
*/
|
|
1952
|
+
path: string;
|
|
1953
|
+
/**
|
|
1954
|
+
* Storage name
|
|
1955
|
+
*/
|
|
1956
|
+
storageName: string;
|
|
1957
|
+
/**
|
|
1958
|
+
* File version ID to download
|
|
1959
|
+
*/
|
|
1960
|
+
versionId: string;
|
|
1961
|
+
constructor(path: string, storageName?: string, versionId?: string);
|
|
1962
|
+
}
|
|
1963
|
+
/**
|
|
1964
|
+
* Request model for MoveFile operation.
|
|
1965
|
+
*/
|
|
1966
|
+
export declare class MoveFileRequest {
|
|
1967
|
+
/**
|
|
1968
|
+
* Source file path e.g. '/src.ext'
|
|
1969
|
+
*/
|
|
1970
|
+
srcPath: string;
|
|
1971
|
+
/**
|
|
1972
|
+
* Destination file path e.g. '/dest.ext'
|
|
1973
|
+
*/
|
|
1974
|
+
destPath: string;
|
|
1975
|
+
/**
|
|
1976
|
+
* Source storage name
|
|
1977
|
+
*/
|
|
1978
|
+
srcStorageName: string;
|
|
1979
|
+
/**
|
|
1980
|
+
* Destination storage name
|
|
1981
|
+
*/
|
|
1982
|
+
destStorageName: string;
|
|
1983
|
+
/**
|
|
1984
|
+
* File version ID to move
|
|
1985
|
+
*/
|
|
1986
|
+
versionId: string;
|
|
1987
|
+
constructor(srcPath: string, destPath: string, srcStorageName?: string, destStorageName?: string, versionId?: string);
|
|
1988
|
+
}
|
|
1989
|
+
/**
|
|
1990
|
+
* Request model for UploadFile operation.
|
|
1991
|
+
*/
|
|
1992
|
+
export declare class UploadFileRequest {
|
|
1993
|
+
/**
|
|
1994
|
+
* Path where to upload including filename and extension e.g. /file.ext or /Folder 1/file.ext If the content is multipart and path does not contains the file name it tries to get them from filename parameter from Content-Disposition header.
|
|
1995
|
+
*/
|
|
1996
|
+
path: string;
|
|
1997
|
+
/**
|
|
1998
|
+
* File to upload
|
|
1999
|
+
*/
|
|
2000
|
+
file: Buffer;
|
|
2001
|
+
/**
|
|
2002
|
+
* Storage name
|
|
2003
|
+
*/
|
|
2004
|
+
storageName: string;
|
|
2005
|
+
constructor(path: string, file: Buffer, storageName?: string);
|
|
2006
|
+
}
|
|
2007
|
+
/**
|
|
2008
|
+
* Request model for CopyFolder operation.
|
|
2009
|
+
*/
|
|
2010
|
+
export declare class CopyFolderRequest {
|
|
2011
|
+
/**
|
|
2012
|
+
* Source folder path e.g. '/src'
|
|
2013
|
+
*/
|
|
2014
|
+
srcPath: string;
|
|
2015
|
+
/**
|
|
2016
|
+
* Destination folder path e.g. '/dst'
|
|
2017
|
+
*/
|
|
2018
|
+
destPath: string;
|
|
2019
|
+
/**
|
|
2020
|
+
* Source storage name
|
|
2021
|
+
*/
|
|
2022
|
+
srcStorageName: string;
|
|
2023
|
+
/**
|
|
2024
|
+
* Destination storage name
|
|
2025
|
+
*/
|
|
2026
|
+
destStorageName: string;
|
|
2027
|
+
constructor(srcPath: string, destPath: string, srcStorageName?: string, destStorageName?: string);
|
|
2028
|
+
}
|
|
2029
|
+
/**
|
|
2030
|
+
* Request model for CreateFolder operation.
|
|
2031
|
+
*/
|
|
2032
|
+
export declare class CreateFolderRequest {
|
|
2033
|
+
/**
|
|
2034
|
+
* Folder path to create e.g. 'folder_1/folder_2/'
|
|
2035
|
+
*/
|
|
2036
|
+
path: string;
|
|
2037
|
+
/**
|
|
2038
|
+
* Storage name
|
|
2039
|
+
*/
|
|
2040
|
+
storageName: string;
|
|
2041
|
+
constructor(path: string, storageName?: string);
|
|
2042
|
+
}
|
|
2043
|
+
/**
|
|
2044
|
+
* Request model for DeleteFolder operation.
|
|
2045
|
+
*/
|
|
2046
|
+
export declare class DeleteFolderRequest {
|
|
2047
|
+
/**
|
|
2048
|
+
* Folder path e.g. '/folder'
|
|
2049
|
+
*/
|
|
2050
|
+
path: string;
|
|
2051
|
+
/**
|
|
2052
|
+
* Storage name
|
|
2053
|
+
*/
|
|
2054
|
+
storageName: string;
|
|
2055
|
+
/**
|
|
2056
|
+
* Enable to delete folders, subfolders and files
|
|
2057
|
+
*/
|
|
2058
|
+
recursive: boolean;
|
|
2059
|
+
constructor(path: string, storageName?: string, recursive?: boolean);
|
|
2060
|
+
}
|
|
2061
|
+
/**
|
|
2062
|
+
* Request model for GetFilesList operation.
|
|
2063
|
+
*/
|
|
2064
|
+
export declare class GetFilesListRequest {
|
|
2065
|
+
/**
|
|
2066
|
+
* Folder path e.g. '/folder'
|
|
2067
|
+
*/
|
|
2068
|
+
path: string;
|
|
2069
|
+
/**
|
|
2070
|
+
* Storage name
|
|
2071
|
+
*/
|
|
2072
|
+
storageName: string;
|
|
2073
|
+
constructor(path: string, storageName?: string);
|
|
2074
|
+
}
|
|
2075
|
+
/**
|
|
2076
|
+
* Request model for MoveFolder operation.
|
|
2077
|
+
*/
|
|
2078
|
+
export declare class MoveFolderRequest {
|
|
2079
|
+
/**
|
|
2080
|
+
* Folder path to move e.g. '/folder'
|
|
2081
|
+
*/
|
|
2082
|
+
srcPath: string;
|
|
2083
|
+
/**
|
|
2084
|
+
* Destination folder path to move to e.g '/dst'
|
|
2085
|
+
*/
|
|
2086
|
+
destPath: string;
|
|
2087
|
+
/**
|
|
2088
|
+
* Source storage name
|
|
2089
|
+
*/
|
|
2090
|
+
srcStorageName: string;
|
|
2091
|
+
/**
|
|
2092
|
+
* Destination storage name
|
|
2093
|
+
*/
|
|
2094
|
+
destStorageName: string;
|
|
2095
|
+
constructor(srcPath: string, destPath: string, srcStorageName?: string, destStorageName?: string);
|
|
2096
|
+
}
|
|
2097
|
+
/**
|
|
2098
|
+
* Request model for Container operation.
|
|
2099
|
+
*/
|
|
2100
|
+
export declare class ContainerRequest {
|
|
2101
|
+
/**
|
|
2102
|
+
* Container options.
|
|
2103
|
+
*/
|
|
2104
|
+
options: ContainerOptions;
|
|
2105
|
+
constructor(options: ContainerOptions);
|
|
2106
|
+
}
|
|
2107
|
+
/**
|
|
2108
|
+
* Request model for GetInfo operation.
|
|
2109
|
+
*/
|
|
2110
|
+
export declare class GetInfoRequest {
|
|
2111
|
+
/**
|
|
2112
|
+
* Info options.
|
|
2113
|
+
*/
|
|
2114
|
+
options: InfoOptions;
|
|
2115
|
+
constructor(options: InfoOptions);
|
|
2116
|
+
}
|
|
2117
|
+
/**
|
|
2118
|
+
* Request model for AIParse operation.
|
|
2119
|
+
*/
|
|
2120
|
+
export declare class AIParseRequest {
|
|
2121
|
+
/**
|
|
2122
|
+
* Parse options.
|
|
2123
|
+
*/
|
|
2124
|
+
options: AIParseOptions;
|
|
2125
|
+
constructor(options: AIParseOptions);
|
|
2126
|
+
}
|
|
2127
|
+
/**
|
|
2128
|
+
* Request model for Barcodes operation.
|
|
2129
|
+
*/
|
|
2130
|
+
export declare class BarcodesRequest {
|
|
2131
|
+
/**
|
|
2132
|
+
* Extract barcode options.
|
|
2133
|
+
*/
|
|
2134
|
+
options: BarcodesOptions;
|
|
2135
|
+
constructor(options: BarcodesOptions);
|
|
2136
|
+
}
|
|
2137
|
+
/**
|
|
2138
|
+
* Request model for Images operation.
|
|
2139
|
+
*/
|
|
2140
|
+
export declare class ImagesRequest {
|
|
2141
|
+
/**
|
|
2142
|
+
* Extract image options.
|
|
2143
|
+
*/
|
|
2144
|
+
options: ImagesOptions;
|
|
2145
|
+
constructor(options: ImagesOptions);
|
|
2146
|
+
}
|
|
2147
|
+
/**
|
|
2148
|
+
* Request model for Parse operation.
|
|
2149
|
+
*/
|
|
2150
|
+
export declare class ParseRequest {
|
|
2151
|
+
/**
|
|
2152
|
+
* Parse options.
|
|
2153
|
+
*/
|
|
2154
|
+
options: ParseOptions;
|
|
2155
|
+
constructor(options: ParseOptions);
|
|
2156
|
+
}
|
|
2157
|
+
/**
|
|
2158
|
+
* Request model for Text operation.
|
|
2159
|
+
*/
|
|
2160
|
+
export declare class TextRequest {
|
|
2161
|
+
/**
|
|
2162
|
+
* Extract text options.
|
|
2163
|
+
*/
|
|
2164
|
+
options: TextOptions;
|
|
2165
|
+
constructor(options: TextOptions);
|
|
2166
|
+
}
|
|
2167
|
+
/**
|
|
2168
|
+
* Request model for GetDiscUsage operation.
|
|
2169
|
+
*/
|
|
2170
|
+
export declare class GetDiscUsageRequest {
|
|
2171
|
+
/**
|
|
2172
|
+
* Storage name
|
|
2173
|
+
*/
|
|
2174
|
+
storageName: string;
|
|
2175
|
+
constructor(storageName?: string);
|
|
2176
|
+
}
|
|
2177
|
+
/**
|
|
2178
|
+
* Request model for GetFileVersions operation.
|
|
2179
|
+
*/
|
|
2180
|
+
export declare class GetFileVersionsRequest {
|
|
2181
|
+
/**
|
|
2182
|
+
* File path e.g. '/file.ext'
|
|
2183
|
+
*/
|
|
2184
|
+
path: string;
|
|
2185
|
+
/**
|
|
2186
|
+
* Storage name
|
|
2187
|
+
*/
|
|
2188
|
+
storageName: string;
|
|
2189
|
+
constructor(path: string, storageName?: string);
|
|
2190
|
+
}
|
|
2191
|
+
/**
|
|
2192
|
+
* Request model for ObjectExists operation.
|
|
2193
|
+
*/
|
|
2194
|
+
export declare class ObjectExistsRequest {
|
|
2195
|
+
/**
|
|
2196
|
+
* File or folder path e.g. '/file.ext' or '/folder'
|
|
2197
|
+
*/
|
|
2198
|
+
path: string;
|
|
2199
|
+
/**
|
|
2200
|
+
* Storage name
|
|
2201
|
+
*/
|
|
2202
|
+
storageName: string;
|
|
2203
|
+
/**
|
|
2204
|
+
* File version ID
|
|
2205
|
+
*/
|
|
2206
|
+
versionId: string;
|
|
2207
|
+
constructor(path: string, storageName?: string, versionId?: string);
|
|
2208
|
+
}
|
|
2209
|
+
/**
|
|
2210
|
+
* Request model for StorageExists operation.
|
|
2211
|
+
*/
|
|
2212
|
+
export declare class StorageExistsRequest {
|
|
2213
|
+
/**
|
|
2214
|
+
* Storage name
|
|
2215
|
+
*/
|
|
2216
|
+
storageName: string;
|
|
2217
|
+
constructor(storageName: string);
|
|
2218
|
+
}
|
|
2219
|
+
/**
|
|
2220
|
+
* Request model for CreateTemplate operation.
|
|
2221
|
+
*/
|
|
2222
|
+
export declare class CreateTemplateRequest {
|
|
2223
|
+
/**
|
|
2224
|
+
* Create template options.
|
|
2225
|
+
*/
|
|
2226
|
+
options: CreateTemplateOptions;
|
|
2227
|
+
constructor(options: CreateTemplateOptions);
|
|
2228
|
+
}
|
|
2229
|
+
/**
|
|
2230
|
+
* Request model for DeleteTemplate operation.
|
|
2231
|
+
*/
|
|
2232
|
+
export declare class DeleteTemplateRequest {
|
|
2233
|
+
/**
|
|
2234
|
+
* Delete template options.
|
|
2235
|
+
*/
|
|
2236
|
+
options: TemplateOptions;
|
|
2237
|
+
constructor(options: TemplateOptions);
|
|
2238
|
+
}
|
|
2239
|
+
/**
|
|
2240
|
+
* Request model for GetTemplate operation.
|
|
2241
|
+
*/
|
|
2242
|
+
export declare class GetTemplateRequest {
|
|
2243
|
+
/**
|
|
2244
|
+
* Retrieve template options.
|
|
2245
|
+
*/
|
|
2246
|
+
options: TemplateOptions;
|
|
2247
|
+
constructor(options: TemplateOptions);
|
|
2248
|
+
}
|