aspose-barcode-cloud-node 23.7.0 → 23.9.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/README.md +1 -1
- package/dist/Authentication.d.ts +1 -1
- package/dist/JWTAuth.d.ts +1 -1
- package/dist/aspose-barcode-cloud-node.cjs.development.js +419 -296
- package/dist/aspose-barcode-cloud-node.cjs.development.js.map +1 -1
- package/dist/aspose-barcode-cloud-node.cjs.production.min.js +1 -1
- package/dist/aspose-barcode-cloud-node.cjs.production.min.js.map +1 -1
- package/dist/aspose-barcode-cloud-node.esm.js +428 -297
- package/dist/aspose-barcode-cloud-node.esm.js.map +1 -1
- package/dist/httpClient.d.ts +0 -1
- package/dist/models.d.ts +134 -13
- package/package.json +1 -1
package/dist/httpClient.d.ts
CHANGED
package/dist/models.d.ts
CHANGED
|
@@ -70,6 +70,14 @@ export declare enum AvailableGraphicsUnit {
|
|
|
70
70
|
Inch = "Inch",
|
|
71
71
|
Millimeter = "Millimeter"
|
|
72
72
|
}
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
*/
|
|
76
|
+
export declare enum AztecEncodeMode {
|
|
77
|
+
Auto = "Auto",
|
|
78
|
+
Bytes = "Bytes",
|
|
79
|
+
ExtendedCodetext = "ExtendedCodetext"
|
|
80
|
+
}
|
|
73
81
|
/**
|
|
74
82
|
* Aztec parameters.
|
|
75
83
|
*/
|
|
@@ -87,9 +95,25 @@ export declare class AztecParams {
|
|
|
87
95
|
*/
|
|
88
96
|
'symbolMode'?: AztecSymbolMode;
|
|
89
97
|
/**
|
|
90
|
-
* Sets the encoding of codetext.
|
|
98
|
+
* @deprecated This property is obsolete and will be removed in future releases. Unicode symbols detection and encoding will be processed in Auto mode with Extended Channel Interpretation charset designator. Using of own encodings requires manual CodeText encoding into byte[] array. Sets the encoding of codetext.
|
|
91
99
|
*/
|
|
92
100
|
'textEncoding'?: string;
|
|
101
|
+
/**
|
|
102
|
+
* Encoding mode for Aztec barcodes. Default value: Auto
|
|
103
|
+
*/
|
|
104
|
+
'encodeMode'?: AztecEncodeMode;
|
|
105
|
+
/**
|
|
106
|
+
* Identifies ECI encoding. Used when AztecEncodeMode is Auto. Default value: ISO-8859-1.
|
|
107
|
+
*/
|
|
108
|
+
'eCIEncoding'?: ECIEncodings;
|
|
109
|
+
/**
|
|
110
|
+
* Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization.
|
|
111
|
+
*/
|
|
112
|
+
'isReaderInitialization'?: boolean;
|
|
113
|
+
/**
|
|
114
|
+
* Gets or sets layers count of Aztec symbol. Layers count should be in range from 1 to 3 for Compact mode and in range from 1 to 32 for Full Range mode. Default value: 0 (auto).
|
|
115
|
+
*/
|
|
116
|
+
'layersCount'?: number;
|
|
93
117
|
static attributeTypeMap: Array<{
|
|
94
118
|
name: string;
|
|
95
119
|
baseName: string;
|
|
@@ -463,7 +487,7 @@ export declare class DataMatrixParams {
|
|
|
463
487
|
*/
|
|
464
488
|
'aspectRatio'?: number;
|
|
465
489
|
/**
|
|
466
|
-
*
|
|
490
|
+
* @deprecated This property is obsolete and will be removed in future releases. Unicode symbols detection and encoding will be processed in Auto mode with Extended Channel Interpretation charset designator. Using of own encodings requires manual CodeText encoding into byte[] array. Sets the encoding of codetext.
|
|
467
491
|
*/
|
|
468
492
|
'textEncoding'?: string;
|
|
469
493
|
/**
|
|
@@ -486,6 +510,10 @@ export declare class DataMatrixParams {
|
|
|
486
510
|
* Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with DataMatrixEccType.Ecc200 or DataMatrixEccType.EccAuto. Cannot be used with EncodeTypes.GS1DataMatrix Default value: MacroCharacters.None.
|
|
487
511
|
*/
|
|
488
512
|
'macroCharacters'?: MacroCharacter;
|
|
513
|
+
/**
|
|
514
|
+
* Sets a Datamatrix symbol size. Default value: DataMatrixVersion.Auto.
|
|
515
|
+
*/
|
|
516
|
+
'version'?: DataMatrixVersion;
|
|
489
517
|
static attributeTypeMap: Array<{
|
|
490
518
|
name: string;
|
|
491
519
|
baseName: string;
|
|
@@ -497,6 +525,82 @@ export declare class DataMatrixParams {
|
|
|
497
525
|
type: string;
|
|
498
526
|
}[];
|
|
499
527
|
}
|
|
528
|
+
/**
|
|
529
|
+
*
|
|
530
|
+
*/
|
|
531
|
+
export declare enum DataMatrixVersion {
|
|
532
|
+
Auto = "Auto",
|
|
533
|
+
RowsColumns = "RowsColumns",
|
|
534
|
+
ECC0009x9 = "ECC000_9x9",
|
|
535
|
+
ECC00005011x11 = "ECC000_050_11x11",
|
|
536
|
+
ECC00010013x13 = "ECC000_100_13x13",
|
|
537
|
+
ECC00010015x15 = "ECC000_100_15x15",
|
|
538
|
+
ECC00014017x17 = "ECC000_140_17x17",
|
|
539
|
+
ECC00014019x19 = "ECC000_140_19x19",
|
|
540
|
+
ECC00014021x21 = "ECC000_140_21x21",
|
|
541
|
+
ECC00014023x23 = "ECC000_140_23x23",
|
|
542
|
+
ECC00014025x25 = "ECC000_140_25x25",
|
|
543
|
+
ECC00014027x27 = "ECC000_140_27x27",
|
|
544
|
+
ECC00014029x29 = "ECC000_140_29x29",
|
|
545
|
+
ECC00014031x31 = "ECC000_140_31x31",
|
|
546
|
+
ECC00014033x33 = "ECC000_140_33x33",
|
|
547
|
+
ECC00014035x35 = "ECC000_140_35x35",
|
|
548
|
+
ECC00014037x37 = "ECC000_140_37x37",
|
|
549
|
+
ECC00014039x39 = "ECC000_140_39x39",
|
|
550
|
+
ECC00014041x41 = "ECC000_140_41x41",
|
|
551
|
+
ECC00014043x43 = "ECC000_140_43x43",
|
|
552
|
+
ECC00014045x45 = "ECC000_140_45x45",
|
|
553
|
+
ECC00014047x47 = "ECC000_140_47x47",
|
|
554
|
+
ECC00014049x49 = "ECC000_140_49x49",
|
|
555
|
+
ECC20010x10 = "ECC200_10x10",
|
|
556
|
+
ECC20012x12 = "ECC200_12x12",
|
|
557
|
+
ECC20014x14 = "ECC200_14x14",
|
|
558
|
+
ECC20016x16 = "ECC200_16x16",
|
|
559
|
+
ECC20018x18 = "ECC200_18x18",
|
|
560
|
+
ECC20020x20 = "ECC200_20x20",
|
|
561
|
+
ECC20022x22 = "ECC200_22x22",
|
|
562
|
+
ECC20024x24 = "ECC200_24x24",
|
|
563
|
+
ECC20026x26 = "ECC200_26x26",
|
|
564
|
+
ECC20032x32 = "ECC200_32x32",
|
|
565
|
+
ECC20036x36 = "ECC200_36x36",
|
|
566
|
+
ECC20040x40 = "ECC200_40x40",
|
|
567
|
+
ECC20044x44 = "ECC200_44x44",
|
|
568
|
+
ECC20048x48 = "ECC200_48x48",
|
|
569
|
+
ECC20052x52 = "ECC200_52x52",
|
|
570
|
+
ECC20064x64 = "ECC200_64x64",
|
|
571
|
+
ECC20072x72 = "ECC200_72x72",
|
|
572
|
+
ECC20080x80 = "ECC200_80x80",
|
|
573
|
+
ECC20088x88 = "ECC200_88x88",
|
|
574
|
+
ECC20096x96 = "ECC200_96x96",
|
|
575
|
+
ECC200104x104 = "ECC200_104x104",
|
|
576
|
+
ECC200120x120 = "ECC200_120x120",
|
|
577
|
+
ECC200132x132 = "ECC200_132x132",
|
|
578
|
+
ECC200144x144 = "ECC200_144x144",
|
|
579
|
+
ECC2008x18 = "ECC200_8x18",
|
|
580
|
+
ECC2008x32 = "ECC200_8x32",
|
|
581
|
+
ECC20012x26 = "ECC200_12x26",
|
|
582
|
+
ECC20012x36 = "ECC200_12x36",
|
|
583
|
+
ECC20016x36 = "ECC200_16x36",
|
|
584
|
+
ECC20016x48 = "ECC200_16x48",
|
|
585
|
+
DMRE8x48 = "DMRE_8x48",
|
|
586
|
+
DMRE8x64 = "DMRE_8x64",
|
|
587
|
+
DMRE8x80 = "DMRE_8x80",
|
|
588
|
+
DMRE8x96 = "DMRE_8x96",
|
|
589
|
+
DMRE8x120 = "DMRE_8x120",
|
|
590
|
+
DMRE8x144 = "DMRE_8x144",
|
|
591
|
+
DMRE12x64 = "DMRE_12x64",
|
|
592
|
+
DMRE12x88 = "DMRE_12x88",
|
|
593
|
+
DMRE16x64 = "DMRE_16x64",
|
|
594
|
+
DMRE20x36 = "DMRE_20x36",
|
|
595
|
+
DMRE20x44 = "DMRE_20x44",
|
|
596
|
+
DMRE20x64 = "DMRE_20x64",
|
|
597
|
+
DMRE22x48 = "DMRE_22x48",
|
|
598
|
+
DMRE24x48 = "DMRE_24x48",
|
|
599
|
+
DMRE24x64 = "DMRE_24x64",
|
|
600
|
+
DMRE26x40 = "DMRE_26x40",
|
|
601
|
+
DMRE26x48 = "DMRE_26x48",
|
|
602
|
+
DMRE26x64 = "DMRE_26x64"
|
|
603
|
+
}
|
|
500
604
|
/**
|
|
501
605
|
* See DecodeType
|
|
502
606
|
*/
|
|
@@ -581,7 +685,9 @@ export declare enum DecodeBarcodeType {
|
|
|
581
685
|
HIBCDataMatrixPAS = "HIBCDataMatrixPAS",
|
|
582
686
|
HIBCQRPAS = "HIBCQRPAS",
|
|
583
687
|
HanXin = "HanXin",
|
|
584
|
-
GS1HanXin = "GS1HanXin"
|
|
688
|
+
GS1HanXin = "GS1HanXin",
|
|
689
|
+
GS1Aztec = "GS1Aztec",
|
|
690
|
+
GS1CompositeBar = "GS1CompositeBar"
|
|
585
691
|
}
|
|
586
692
|
/**
|
|
587
693
|
* Class for disc space information.
|
|
@@ -766,7 +872,8 @@ export declare enum EncodeBarcodeType {
|
|
|
766
872
|
Mailmark = "Mailmark",
|
|
767
873
|
GS1DotCode = "GS1DotCode",
|
|
768
874
|
HanXin = "HanXin",
|
|
769
|
-
GS1HanXin = "GS1HanXin"
|
|
875
|
+
GS1HanXin = "GS1HanXin",
|
|
876
|
+
GS1Aztec = "GS1Aztec"
|
|
770
877
|
}
|
|
771
878
|
/**
|
|
772
879
|
* The error details
|
|
@@ -1551,7 +1658,7 @@ export declare class Pdf417Params {
|
|
|
1551
1658
|
*/
|
|
1552
1659
|
'aspectRatio'?: number;
|
|
1553
1660
|
/**
|
|
1554
|
-
*
|
|
1661
|
+
* @deprecated This property is obsolete and will be removed in future releases. Unicode symbols detection and encoding will be processed in Auto mode with Extended Channel Interpretation charset designator. Using of own encodings requires manual CodeText encoding into byte[] array. Sets the encoding of codetext.
|
|
1555
1662
|
*/
|
|
1556
1663
|
'textEncoding'?: string;
|
|
1557
1664
|
/**
|
|
@@ -1758,7 +1865,7 @@ export declare class QrParams {
|
|
|
1758
1865
|
*/
|
|
1759
1866
|
'aspectRatio'?: number;
|
|
1760
1867
|
/**
|
|
1761
|
-
*
|
|
1868
|
+
* @deprecated This property is obsolete and will be removed in future releases. Unicode symbols detection and encoding will be processed in Auto mode with Extended Channel Interpretation charset designator. Using of own encodings requires manual CodeText encoding into byte[] array. Sets the encoding of codetext.
|
|
1762
1869
|
*/
|
|
1763
1870
|
'textEncoding'?: string;
|
|
1764
1871
|
/**
|
|
@@ -1908,6 +2015,10 @@ export declare class ReaderParams {
|
|
|
1908
2015
|
* Allows engine for 1D barcodes to quickly recognize middle slice of an image and return result without using any time-consuming algorithms. Default value: False.
|
|
1909
2016
|
*/
|
|
1910
2017
|
'fastScanOnly'?: boolean;
|
|
2018
|
+
/**
|
|
2019
|
+
* Allows engine using additional image restorations to recognize corrupted barcodes. At this time, it is used only in MicroPdf417 barcode type. Default value: False.
|
|
2020
|
+
*/
|
|
2021
|
+
'allowAdditionalRestorations'?: boolean;
|
|
1911
2022
|
/**
|
|
1912
2023
|
* Sets threshold for detected regions that may contain barcodes. Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further. Region likelihood threshold must be between [0.05, 0.9] Use high values for clear images with few barcodes. Use low values for images with many barcodes or for noisy images. Low value may lead to a bigger recognition time.
|
|
1913
2024
|
*/
|
|
@@ -2133,7 +2244,7 @@ export declare class GetBarcodeGenerateRequest {
|
|
|
2133
2244
|
/**
|
|
2134
2245
|
* Type of barcode to generate.
|
|
2135
2246
|
*/
|
|
2136
|
-
'type': 'Codabar' | 'Code11' | 'Code39Standard' | 'Code39Extended' | 'Code93Standard' | 'Code93Extended' | 'Code128' | 'GS1Code128' | 'EAN8' | 'EAN13' | 'EAN14' | 'SCC14' | 'SSCC18' | 'UPCA' | 'UPCE' | 'ISBN' | 'ISSN' | 'ISMN' | 'Standard2of5' | 'Interleaved2of5' | 'Matrix2of5' | 'ItalianPost25' | 'IATA2of5' | 'ITF14' | 'ITF6' | 'MSI' | 'VIN' | 'DeutschePostIdentcode' | 'DeutschePostLeitcode' | 'OPC' | 'PZN' | 'Code16K' | 'Pharmacode' | 'DataMatrix' | 'QR' | 'Aztec' | 'Pdf417' | 'MacroPdf417' | 'AustraliaPost' | 'Postnet' | 'Planet' | 'OneCode' | 'RM4SCC' | 'DatabarOmniDirectional' | 'DatabarTruncated' | 'DatabarLimited' | 'DatabarExpanded' | 'SingaporePost' | 'GS1DataMatrix' | 'AustralianPosteParcel' | 'SwissPostParcel' | 'PatchCode' | 'DatabarExpandedStacked' | 'DatabarStacked' | 'DatabarStackedOmniDirectional' | 'MicroPdf417' | 'GS1QR' | 'MaxiCode' | 'Code32' | 'DataLogic2of5' | 'DotCode' | 'DutchKIX' | 'UpcaGs1Code128Coupon' | 'UpcaGs1DatabarCoupon' | 'CodablockF' | 'GS1CodablockF' | 'Mailmark' | 'GS1DotCode' | 'HanXin' | 'GS1HanXin';
|
|
2247
|
+
'type': 'Codabar' | 'Code11' | 'Code39Standard' | 'Code39Extended' | 'Code93Standard' | 'Code93Extended' | 'Code128' | 'GS1Code128' | 'EAN8' | 'EAN13' | 'EAN14' | 'SCC14' | 'SSCC18' | 'UPCA' | 'UPCE' | 'ISBN' | 'ISSN' | 'ISMN' | 'Standard2of5' | 'Interleaved2of5' | 'Matrix2of5' | 'ItalianPost25' | 'IATA2of5' | 'ITF14' | 'ITF6' | 'MSI' | 'VIN' | 'DeutschePostIdentcode' | 'DeutschePostLeitcode' | 'OPC' | 'PZN' | 'Code16K' | 'Pharmacode' | 'DataMatrix' | 'QR' | 'Aztec' | 'Pdf417' | 'MacroPdf417' | 'AustraliaPost' | 'Postnet' | 'Planet' | 'OneCode' | 'RM4SCC' | 'DatabarOmniDirectional' | 'DatabarTruncated' | 'DatabarLimited' | 'DatabarExpanded' | 'SingaporePost' | 'GS1DataMatrix' | 'AustralianPosteParcel' | 'SwissPostParcel' | 'PatchCode' | 'DatabarExpandedStacked' | 'DatabarStacked' | 'DatabarStackedOmniDirectional' | 'MicroPdf417' | 'GS1QR' | 'MaxiCode' | 'Code32' | 'DataLogic2of5' | 'DotCode' | 'DutchKIX' | 'UpcaGs1Code128Coupon' | 'UpcaGs1DatabarCoupon' | 'CodablockF' | 'GS1CodablockF' | 'Mailmark' | 'GS1DotCode' | 'HanXin' | 'GS1HanXin' | 'GS1Aztec';
|
|
2137
2248
|
/**
|
|
2138
2249
|
* Text to encode.
|
|
2139
2250
|
*/
|
|
@@ -2314,7 +2425,7 @@ Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISM
|
|
|
2314
2425
|
|
|
2315
2426
|
* @param text Text to encode.
|
|
2316
2427
|
*/
|
|
2317
|
-
constructor(type: 'Codabar' | 'Code11' | 'Code39Standard' | 'Code39Extended' | 'Code93Standard' | 'Code93Extended' | 'Code128' | 'GS1Code128' | 'EAN8' | 'EAN13' | 'EAN14' | 'SCC14' | 'SSCC18' | 'UPCA' | 'UPCE' | 'ISBN' | 'ISSN' | 'ISMN' | 'Standard2of5' | 'Interleaved2of5' | 'Matrix2of5' | 'ItalianPost25' | 'IATA2of5' | 'ITF14' | 'ITF6' | 'MSI' | 'VIN' | 'DeutschePostIdentcode' | 'DeutschePostLeitcode' | 'OPC' | 'PZN' | 'Code16K' | 'Pharmacode' | 'DataMatrix' | 'QR' | 'Aztec' | 'Pdf417' | 'MacroPdf417' | 'AustraliaPost' | 'Postnet' | 'Planet' | 'OneCode' | 'RM4SCC' | 'DatabarOmniDirectional' | 'DatabarTruncated' | 'DatabarLimited' | 'DatabarExpanded' | 'SingaporePost' | 'GS1DataMatrix' | 'AustralianPosteParcel' | 'SwissPostParcel' | 'PatchCode' | 'DatabarExpandedStacked' | 'DatabarStacked' | 'DatabarStackedOmniDirectional' | 'MicroPdf417' | 'GS1QR' | 'MaxiCode' | 'Code32' | 'DataLogic2of5' | 'DotCode' | 'DutchKIX' | 'UpcaGs1Code128Coupon' | 'UpcaGs1DatabarCoupon' | 'CodablockF' | 'GS1CodablockF' | 'Mailmark' | 'GS1DotCode' | 'HanXin' | 'GS1HanXin', text: string);
|
|
2428
|
+
constructor(type: 'Codabar' | 'Code11' | 'Code39Standard' | 'Code39Extended' | 'Code93Standard' | 'Code93Extended' | 'Code128' | 'GS1Code128' | 'EAN8' | 'EAN13' | 'EAN14' | 'SCC14' | 'SSCC18' | 'UPCA' | 'UPCE' | 'ISBN' | 'ISSN' | 'ISMN' | 'Standard2of5' | 'Interleaved2of5' | 'Matrix2of5' | 'ItalianPost25' | 'IATA2of5' | 'ITF14' | 'ITF6' | 'MSI' | 'VIN' | 'DeutschePostIdentcode' | 'DeutschePostLeitcode' | 'OPC' | 'PZN' | 'Code16K' | 'Pharmacode' | 'DataMatrix' | 'QR' | 'Aztec' | 'Pdf417' | 'MacroPdf417' | 'AustraliaPost' | 'Postnet' | 'Planet' | 'OneCode' | 'RM4SCC' | 'DatabarOmniDirectional' | 'DatabarTruncated' | 'DatabarLimited' | 'DatabarExpanded' | 'SingaporePost' | 'GS1DataMatrix' | 'AustralianPosteParcel' | 'SwissPostParcel' | 'PatchCode' | 'DatabarExpandedStacked' | 'DatabarStacked' | 'DatabarStackedOmniDirectional' | 'MicroPdf417' | 'GS1QR' | 'MaxiCode' | 'Code32' | 'DataLogic2of5' | 'DotCode' | 'DutchKIX' | 'UpcaGs1Code128Coupon' | 'UpcaGs1DatabarCoupon' | 'CodablockF' | 'GS1CodablockF' | 'Mailmark' | 'GS1DotCode' | 'HanXin' | 'GS1HanXin' | 'GS1Aztec', text: string);
|
|
2318
2429
|
}
|
|
2319
2430
|
/**
|
|
2320
2431
|
* Recognize barcode from a file on server.
|
|
@@ -2327,7 +2438,7 @@ export declare class GetBarcodeRecognizeRequest {
|
|
|
2327
2438
|
/**
|
|
2328
2439
|
* The type of barcode to read.
|
|
2329
2440
|
*/
|
|
2330
|
-
'type'?: 'all' | 'AustraliaPost' | 'Aztec' | 'ISBN' | 'Codabar' | 'Code11' | 'Code128' | 'GS1Code128' | 'Code39Extended' | 'Code39Standard' | 'Code93Extended' | 'Code93Standard' | 'DataMatrix' | 'DeutschePostIdentcode' | 'DeutschePostLeitcode' | 'EAN13' | 'EAN14' | 'EAN8' | 'IATA2of5' | 'Interleaved2of5' | 'ISSN' | 'ISMN' | 'ItalianPost25' | 'ITF14' | 'ITF6' | 'MacroPdf417' | 'Matrix2of5' | 'MSI' | 'OneCode' | 'OPC' | 'PatchCode' | 'Pdf417' | 'MicroPdf417' | 'Planet' | 'Postnet' | 'PZN' | 'QR' | 'MicroQR' | 'RM4SCC' | 'SCC14' | 'SSCC18' | 'Standard2of5' | 'Supplement' | 'UPCA' | 'UPCE' | 'VIN' | 'Pharmacode' | 'GS1DataMatrix' | 'DatabarOmniDirectional' | 'DatabarTruncated' | 'DatabarLimited' | 'DatabarExpanded' | 'SwissPostParcel' | 'AustralianPosteParcel' | 'Code16K' | 'DatabarStackedOmniDirectional' | 'DatabarStacked' | 'DatabarExpandedStacked' | 'CompactPdf417' | 'GS1QR' | 'MaxiCode' | 'MicrE13B' | 'Code32' | 'DataLogic2of5' | 'DotCode' | 'DutchKIX' | 'CodablockF' | 'Mailmark' | 'GS1DotCode' | 'HIBCCode39LIC' | 'HIBCCode128LIC' | 'HIBCAztecLIC' | 'HIBCDataMatrixLIC' | 'HIBCQRLIC' | 'HIBCCode39PAS' | 'HIBCCode128PAS' | 'HIBCAztecPAS' | 'HIBCDataMatrixPAS' | 'HIBCQRPAS' | 'HanXin' | 'GS1HanXin';
|
|
2441
|
+
'type'?: 'all' | 'AustraliaPost' | 'Aztec' | 'ISBN' | 'Codabar' | 'Code11' | 'Code128' | 'GS1Code128' | 'Code39Extended' | 'Code39Standard' | 'Code93Extended' | 'Code93Standard' | 'DataMatrix' | 'DeutschePostIdentcode' | 'DeutschePostLeitcode' | 'EAN13' | 'EAN14' | 'EAN8' | 'IATA2of5' | 'Interleaved2of5' | 'ISSN' | 'ISMN' | 'ItalianPost25' | 'ITF14' | 'ITF6' | 'MacroPdf417' | 'Matrix2of5' | 'MSI' | 'OneCode' | 'OPC' | 'PatchCode' | 'Pdf417' | 'MicroPdf417' | 'Planet' | 'Postnet' | 'PZN' | 'QR' | 'MicroQR' | 'RM4SCC' | 'SCC14' | 'SSCC18' | 'Standard2of5' | 'Supplement' | 'UPCA' | 'UPCE' | 'VIN' | 'Pharmacode' | 'GS1DataMatrix' | 'DatabarOmniDirectional' | 'DatabarTruncated' | 'DatabarLimited' | 'DatabarExpanded' | 'SwissPostParcel' | 'AustralianPosteParcel' | 'Code16K' | 'DatabarStackedOmniDirectional' | 'DatabarStacked' | 'DatabarExpandedStacked' | 'CompactPdf417' | 'GS1QR' | 'MaxiCode' | 'MicrE13B' | 'Code32' | 'DataLogic2of5' | 'DotCode' | 'DutchKIX' | 'CodablockF' | 'Mailmark' | 'GS1DotCode' | 'HIBCCode39LIC' | 'HIBCCode128LIC' | 'HIBCAztecLIC' | 'HIBCDataMatrixLIC' | 'HIBCQRLIC' | 'HIBCCode39PAS' | 'HIBCCode128PAS' | 'HIBCAztecPAS' | 'HIBCDataMatrixPAS' | 'HIBCQRPAS' | 'HanXin' | 'GS1HanXin' | 'GS1Aztec' | 'GS1CompositeBar';
|
|
2331
2442
|
/**
|
|
2332
2443
|
* Enable checksum validation during recognition for 1D barcodes.
|
|
2333
2444
|
Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible.
|
|
@@ -2448,6 +2559,11 @@ Mode helps to quickly recognize generated barcodes from Internet.
|
|
|
2448
2559
|
Default value: False.
|
|
2449
2560
|
*/
|
|
2450
2561
|
'fastScanOnly'?: boolean;
|
|
2562
|
+
/**
|
|
2563
|
+
* Allows engine using additional image restorations to recognize corrupted barcodes. At this time, it is used only in MicroPdf417 barcode type.
|
|
2564
|
+
Default value: False.
|
|
2565
|
+
*/
|
|
2566
|
+
'allowAdditionalRestorations'?: boolean;
|
|
2451
2567
|
/**
|
|
2452
2568
|
* Sets threshold for detected regions that may contain barcodes.
|
|
2453
2569
|
Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further.
|
|
@@ -2510,7 +2626,7 @@ export declare class PostBarcodeRecognizeFromUrlOrContentRequest {
|
|
|
2510
2626
|
/**
|
|
2511
2627
|
* The type of barcode to read.
|
|
2512
2628
|
*/
|
|
2513
|
-
'type'?: 'all' | 'AustraliaPost' | 'Aztec' | 'ISBN' | 'Codabar' | 'Code11' | 'Code128' | 'GS1Code128' | 'Code39Extended' | 'Code39Standard' | 'Code93Extended' | 'Code93Standard' | 'DataMatrix' | 'DeutschePostIdentcode' | 'DeutschePostLeitcode' | 'EAN13' | 'EAN14' | 'EAN8' | 'IATA2of5' | 'Interleaved2of5' | 'ISSN' | 'ISMN' | 'ItalianPost25' | 'ITF14' | 'ITF6' | 'MacroPdf417' | 'Matrix2of5' | 'MSI' | 'OneCode' | 'OPC' | 'PatchCode' | 'Pdf417' | 'MicroPdf417' | 'Planet' | 'Postnet' | 'PZN' | 'QR' | 'MicroQR' | 'RM4SCC' | 'SCC14' | 'SSCC18' | 'Standard2of5' | 'Supplement' | 'UPCA' | 'UPCE' | 'VIN' | 'Pharmacode' | 'GS1DataMatrix' | 'DatabarOmniDirectional' | 'DatabarTruncated' | 'DatabarLimited' | 'DatabarExpanded' | 'SwissPostParcel' | 'AustralianPosteParcel' | 'Code16K' | 'DatabarStackedOmniDirectional' | 'DatabarStacked' | 'DatabarExpandedStacked' | 'CompactPdf417' | 'GS1QR' | 'MaxiCode' | 'MicrE13B' | 'Code32' | 'DataLogic2of5' | 'DotCode' | 'DutchKIX' | 'CodablockF' | 'Mailmark' | 'GS1DotCode' | 'HIBCCode39LIC' | 'HIBCCode128LIC' | 'HIBCAztecLIC' | 'HIBCDataMatrixLIC' | 'HIBCQRLIC' | 'HIBCCode39PAS' | 'HIBCCode128PAS' | 'HIBCAztecPAS' | 'HIBCDataMatrixPAS' | 'HIBCQRPAS' | 'HanXin' | 'GS1HanXin';
|
|
2629
|
+
'type'?: 'all' | 'AustraliaPost' | 'Aztec' | 'ISBN' | 'Codabar' | 'Code11' | 'Code128' | 'GS1Code128' | 'Code39Extended' | 'Code39Standard' | 'Code93Extended' | 'Code93Standard' | 'DataMatrix' | 'DeutschePostIdentcode' | 'DeutschePostLeitcode' | 'EAN13' | 'EAN14' | 'EAN8' | 'IATA2of5' | 'Interleaved2of5' | 'ISSN' | 'ISMN' | 'ItalianPost25' | 'ITF14' | 'ITF6' | 'MacroPdf417' | 'Matrix2of5' | 'MSI' | 'OneCode' | 'OPC' | 'PatchCode' | 'Pdf417' | 'MicroPdf417' | 'Planet' | 'Postnet' | 'PZN' | 'QR' | 'MicroQR' | 'RM4SCC' | 'SCC14' | 'SSCC18' | 'Standard2of5' | 'Supplement' | 'UPCA' | 'UPCE' | 'VIN' | 'Pharmacode' | 'GS1DataMatrix' | 'DatabarOmniDirectional' | 'DatabarTruncated' | 'DatabarLimited' | 'DatabarExpanded' | 'SwissPostParcel' | 'AustralianPosteParcel' | 'Code16K' | 'DatabarStackedOmniDirectional' | 'DatabarStacked' | 'DatabarExpandedStacked' | 'CompactPdf417' | 'GS1QR' | 'MaxiCode' | 'MicrE13B' | 'Code32' | 'DataLogic2of5' | 'DotCode' | 'DutchKIX' | 'CodablockF' | 'Mailmark' | 'GS1DotCode' | 'HIBCCode39LIC' | 'HIBCCode128LIC' | 'HIBCAztecLIC' | 'HIBCDataMatrixLIC' | 'HIBCQRLIC' | 'HIBCCode39PAS' | 'HIBCCode128PAS' | 'HIBCAztecPAS' | 'HIBCDataMatrixPAS' | 'HIBCQRPAS' | 'HanXin' | 'GS1HanXin' | 'GS1Aztec' | 'GS1CompositeBar';
|
|
2514
2630
|
/**
|
|
2515
2631
|
* Enable checksum validation during recognition for 1D barcodes.
|
|
2516
2632
|
Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible.
|
|
@@ -2631,6 +2747,11 @@ Mode helps to quickly recognize generated barcodes from Internet.
|
|
|
2631
2747
|
Default value: False.
|
|
2632
2748
|
*/
|
|
2633
2749
|
'fastScanOnly'?: boolean;
|
|
2750
|
+
/**
|
|
2751
|
+
* Allows engine using additional image restorations to recognize corrupted barcodes. At this time, it is used only in MicroPdf417 barcode type.
|
|
2752
|
+
Default value: False.
|
|
2753
|
+
*/
|
|
2754
|
+
'allowAdditionalRestorations'?: boolean;
|
|
2634
2755
|
/**
|
|
2635
2756
|
* Sets threshold for detected regions that may contain barcodes.
|
|
2636
2757
|
Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further.
|
|
@@ -2710,7 +2831,7 @@ export declare class PutBarcodeGenerateFileRequest {
|
|
|
2710
2831
|
/**
|
|
2711
2832
|
* Type of barcode to generate.
|
|
2712
2833
|
*/
|
|
2713
|
-
'type': 'Codabar' | 'Code11' | 'Code39Standard' | 'Code39Extended' | 'Code93Standard' | 'Code93Extended' | 'Code128' | 'GS1Code128' | 'EAN8' | 'EAN13' | 'EAN14' | 'SCC14' | 'SSCC18' | 'UPCA' | 'UPCE' | 'ISBN' | 'ISSN' | 'ISMN' | 'Standard2of5' | 'Interleaved2of5' | 'Matrix2of5' | 'ItalianPost25' | 'IATA2of5' | 'ITF14' | 'ITF6' | 'MSI' | 'VIN' | 'DeutschePostIdentcode' | 'DeutschePostLeitcode' | 'OPC' | 'PZN' | 'Code16K' | 'Pharmacode' | 'DataMatrix' | 'QR' | 'Aztec' | 'Pdf417' | 'MacroPdf417' | 'AustraliaPost' | 'Postnet' | 'Planet' | 'OneCode' | 'RM4SCC' | 'DatabarOmniDirectional' | 'DatabarTruncated' | 'DatabarLimited' | 'DatabarExpanded' | 'SingaporePost' | 'GS1DataMatrix' | 'AustralianPosteParcel' | 'SwissPostParcel' | 'PatchCode' | 'DatabarExpandedStacked' | 'DatabarStacked' | 'DatabarStackedOmniDirectional' | 'MicroPdf417' | 'GS1QR' | 'MaxiCode' | 'Code32' | 'DataLogic2of5' | 'DotCode' | 'DutchKIX' | 'UpcaGs1Code128Coupon' | 'UpcaGs1DatabarCoupon' | 'CodablockF' | 'GS1CodablockF' | 'Mailmark' | 'GS1DotCode' | 'HanXin' | 'GS1HanXin';
|
|
2834
|
+
'type': 'Codabar' | 'Code11' | 'Code39Standard' | 'Code39Extended' | 'Code93Standard' | 'Code93Extended' | 'Code128' | 'GS1Code128' | 'EAN8' | 'EAN13' | 'EAN14' | 'SCC14' | 'SSCC18' | 'UPCA' | 'UPCE' | 'ISBN' | 'ISSN' | 'ISMN' | 'Standard2of5' | 'Interleaved2of5' | 'Matrix2of5' | 'ItalianPost25' | 'IATA2of5' | 'ITF14' | 'ITF6' | 'MSI' | 'VIN' | 'DeutschePostIdentcode' | 'DeutschePostLeitcode' | 'OPC' | 'PZN' | 'Code16K' | 'Pharmacode' | 'DataMatrix' | 'QR' | 'Aztec' | 'Pdf417' | 'MacroPdf417' | 'AustraliaPost' | 'Postnet' | 'Planet' | 'OneCode' | 'RM4SCC' | 'DatabarOmniDirectional' | 'DatabarTruncated' | 'DatabarLimited' | 'DatabarExpanded' | 'SingaporePost' | 'GS1DataMatrix' | 'AustralianPosteParcel' | 'SwissPostParcel' | 'PatchCode' | 'DatabarExpandedStacked' | 'DatabarStacked' | 'DatabarStackedOmniDirectional' | 'MicroPdf417' | 'GS1QR' | 'MaxiCode' | 'Code32' | 'DataLogic2of5' | 'DotCode' | 'DutchKIX' | 'UpcaGs1Code128Coupon' | 'UpcaGs1DatabarCoupon' | 'CodablockF' | 'GS1CodablockF' | 'Mailmark' | 'GS1DotCode' | 'HanXin' | 'GS1HanXin' | 'GS1Aztec';
|
|
2714
2835
|
/**
|
|
2715
2836
|
* Text to encode.
|
|
2716
2837
|
*/
|
|
@@ -2901,7 +3022,7 @@ Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISM
|
|
|
2901
3022
|
|
|
2902
3023
|
* @param text Text to encode.
|
|
2903
3024
|
*/
|
|
2904
|
-
constructor(name: string, type: 'Codabar' | 'Code11' | 'Code39Standard' | 'Code39Extended' | 'Code93Standard' | 'Code93Extended' | 'Code128' | 'GS1Code128' | 'EAN8' | 'EAN13' | 'EAN14' | 'SCC14' | 'SSCC18' | 'UPCA' | 'UPCE' | 'ISBN' | 'ISSN' | 'ISMN' | 'Standard2of5' | 'Interleaved2of5' | 'Matrix2of5' | 'ItalianPost25' | 'IATA2of5' | 'ITF14' | 'ITF6' | 'MSI' | 'VIN' | 'DeutschePostIdentcode' | 'DeutschePostLeitcode' | 'OPC' | 'PZN' | 'Code16K' | 'Pharmacode' | 'DataMatrix' | 'QR' | 'Aztec' | 'Pdf417' | 'MacroPdf417' | 'AustraliaPost' | 'Postnet' | 'Planet' | 'OneCode' | 'RM4SCC' | 'DatabarOmniDirectional' | 'DatabarTruncated' | 'DatabarLimited' | 'DatabarExpanded' | 'SingaporePost' | 'GS1DataMatrix' | 'AustralianPosteParcel' | 'SwissPostParcel' | 'PatchCode' | 'DatabarExpandedStacked' | 'DatabarStacked' | 'DatabarStackedOmniDirectional' | 'MicroPdf417' | 'GS1QR' | 'MaxiCode' | 'Code32' | 'DataLogic2of5' | 'DotCode' | 'DutchKIX' | 'UpcaGs1Code128Coupon' | 'UpcaGs1DatabarCoupon' | 'CodablockF' | 'GS1CodablockF' | 'Mailmark' | 'GS1DotCode' | 'HanXin' | 'GS1HanXin', text: string);
|
|
3025
|
+
constructor(name: string, type: 'Codabar' | 'Code11' | 'Code39Standard' | 'Code39Extended' | 'Code93Standard' | 'Code93Extended' | 'Code128' | 'GS1Code128' | 'EAN8' | 'EAN13' | 'EAN14' | 'SCC14' | 'SSCC18' | 'UPCA' | 'UPCE' | 'ISBN' | 'ISSN' | 'ISMN' | 'Standard2of5' | 'Interleaved2of5' | 'Matrix2of5' | 'ItalianPost25' | 'IATA2of5' | 'ITF14' | 'ITF6' | 'MSI' | 'VIN' | 'DeutschePostIdentcode' | 'DeutschePostLeitcode' | 'OPC' | 'PZN' | 'Code16K' | 'Pharmacode' | 'DataMatrix' | 'QR' | 'Aztec' | 'Pdf417' | 'MacroPdf417' | 'AustraliaPost' | 'Postnet' | 'Planet' | 'OneCode' | 'RM4SCC' | 'DatabarOmniDirectional' | 'DatabarTruncated' | 'DatabarLimited' | 'DatabarExpanded' | 'SingaporePost' | 'GS1DataMatrix' | 'AustralianPosteParcel' | 'SwissPostParcel' | 'PatchCode' | 'DatabarExpandedStacked' | 'DatabarStacked' | 'DatabarStackedOmniDirectional' | 'MicroPdf417' | 'GS1QR' | 'MaxiCode' | 'Code32' | 'DataLogic2of5' | 'DotCode' | 'DutchKIX' | 'UpcaGs1Code128Coupon' | 'UpcaGs1DatabarCoupon' | 'CodablockF' | 'GS1CodablockF' | 'Mailmark' | 'GS1DotCode' | 'HanXin' | 'GS1HanXin' | 'GS1Aztec', text: string);
|
|
2905
3026
|
}
|
|
2906
3027
|
/**
|
|
2907
3028
|
* Recognition of a barcode from file on server with parameters in body.
|
|
@@ -2918,7 +3039,7 @@ export declare class PutBarcodeRecognizeFromBodyRequest {
|
|
|
2918
3039
|
/**
|
|
2919
3040
|
*
|
|
2920
3041
|
*/
|
|
2921
|
-
'type'?: 'all' | 'AustraliaPost' | 'Aztec' | 'ISBN' | 'Codabar' | 'Code11' | 'Code128' | 'GS1Code128' | 'Code39Extended' | 'Code39Standard' | 'Code93Extended' | 'Code93Standard' | 'DataMatrix' | 'DeutschePostIdentcode' | 'DeutschePostLeitcode' | 'EAN13' | 'EAN14' | 'EAN8' | 'IATA2of5' | 'Interleaved2of5' | 'ISSN' | 'ISMN' | 'ItalianPost25' | 'ITF14' | 'ITF6' | 'MacroPdf417' | 'Matrix2of5' | 'MSI' | 'OneCode' | 'OPC' | 'PatchCode' | 'Pdf417' | 'MicroPdf417' | 'Planet' | 'Postnet' | 'PZN' | 'QR' | 'MicroQR' | 'RM4SCC' | 'SCC14' | 'SSCC18' | 'Standard2of5' | 'Supplement' | 'UPCA' | 'UPCE' | 'VIN' | 'Pharmacode' | 'GS1DataMatrix' | 'DatabarOmniDirectional' | 'DatabarTruncated' | 'DatabarLimited' | 'DatabarExpanded' | 'SwissPostParcel' | 'AustralianPosteParcel' | 'Code16K' | 'DatabarStackedOmniDirectional' | 'DatabarStacked' | 'DatabarExpandedStacked' | 'CompactPdf417' | 'GS1QR' | 'MaxiCode' | 'MicrE13B' | 'Code32' | 'DataLogic2of5' | 'DotCode' | 'DutchKIX' | 'CodablockF' | 'Mailmark' | 'GS1DotCode' | 'HIBCCode39LIC' | 'HIBCCode128LIC' | 'HIBCAztecLIC' | 'HIBCDataMatrixLIC' | 'HIBCQRLIC' | 'HIBCCode39PAS' | 'HIBCCode128PAS' | 'HIBCAztecPAS' | 'HIBCDataMatrixPAS' | 'HIBCQRPAS' | 'HanXin' | 'GS1HanXin';
|
|
3042
|
+
'type'?: 'all' | 'AustraliaPost' | 'Aztec' | 'ISBN' | 'Codabar' | 'Code11' | 'Code128' | 'GS1Code128' | 'Code39Extended' | 'Code39Standard' | 'Code93Extended' | 'Code93Standard' | 'DataMatrix' | 'DeutschePostIdentcode' | 'DeutschePostLeitcode' | 'EAN13' | 'EAN14' | 'EAN8' | 'IATA2of5' | 'Interleaved2of5' | 'ISSN' | 'ISMN' | 'ItalianPost25' | 'ITF14' | 'ITF6' | 'MacroPdf417' | 'Matrix2of5' | 'MSI' | 'OneCode' | 'OPC' | 'PatchCode' | 'Pdf417' | 'MicroPdf417' | 'Planet' | 'Postnet' | 'PZN' | 'QR' | 'MicroQR' | 'RM4SCC' | 'SCC14' | 'SSCC18' | 'Standard2of5' | 'Supplement' | 'UPCA' | 'UPCE' | 'VIN' | 'Pharmacode' | 'GS1DataMatrix' | 'DatabarOmniDirectional' | 'DatabarTruncated' | 'DatabarLimited' | 'DatabarExpanded' | 'SwissPostParcel' | 'AustralianPosteParcel' | 'Code16K' | 'DatabarStackedOmniDirectional' | 'DatabarStacked' | 'DatabarExpandedStacked' | 'CompactPdf417' | 'GS1QR' | 'MaxiCode' | 'MicrE13B' | 'Code32' | 'DataLogic2of5' | 'DotCode' | 'DutchKIX' | 'CodablockF' | 'Mailmark' | 'GS1DotCode' | 'HIBCCode39LIC' | 'HIBCCode128LIC' | 'HIBCAztecLIC' | 'HIBCDataMatrixLIC' | 'HIBCQRLIC' | 'HIBCCode39PAS' | 'HIBCCode128PAS' | 'HIBCAztecPAS' | 'HIBCDataMatrixPAS' | 'HIBCQRPAS' | 'HanXin' | 'GS1HanXin' | 'GS1Aztec' | 'GS1CompositeBar';
|
|
2922
3043
|
/**
|
|
2923
3044
|
* The storage name
|
|
2924
3045
|
*/
|