aspose-barcode-cloud-node 22.12.0 → 23.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/README.md +2 -2
- package/dist/api.d.ts +1 -1
- package/dist/aspose-barcode-cloud-node.cjs.development.js +55 -11
- 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 +64 -12
- package/dist/aspose-barcode-cloud-node.esm.js.map +1 -1
- package/dist/models.d.ts +73 -19
- package/package.json +2 -2
|
@@ -3,7 +3,7 @@ import Request from 'request';
|
|
|
3
3
|
/*
|
|
4
4
|
* MIT License
|
|
5
5
|
|
|
6
|
-
* Copyright (c)
|
|
6
|
+
* Copyright (c) 2023 Aspose Pty Ltd
|
|
7
7
|
|
|
8
8
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9
9
|
* of this software and associated documentation files (the "Software"), to deal
|
|
@@ -518,6 +518,17 @@ var DecodeBarcodeType;
|
|
|
518
518
|
DecodeBarcodeType["DutchKIX"] = "DutchKIX";
|
|
519
519
|
DecodeBarcodeType["CodablockF"] = "CodablockF";
|
|
520
520
|
DecodeBarcodeType["Mailmark"] = "Mailmark";
|
|
521
|
+
DecodeBarcodeType["GS1DotCode"] = "GS1DotCode";
|
|
522
|
+
DecodeBarcodeType["HIBCCode39LIC"] = "HIBCCode39LIC";
|
|
523
|
+
DecodeBarcodeType["HIBCCode128LIC"] = "HIBCCode128LIC";
|
|
524
|
+
DecodeBarcodeType["HIBCAztecLIC"] = "HIBCAztecLIC";
|
|
525
|
+
DecodeBarcodeType["HIBCDataMatrixLIC"] = "HIBCDataMatrixLIC";
|
|
526
|
+
DecodeBarcodeType["HIBCQRLIC"] = "HIBCQRLIC";
|
|
527
|
+
DecodeBarcodeType["HIBCCode39PAS"] = "HIBCCode39PAS";
|
|
528
|
+
DecodeBarcodeType["HIBCCode128PAS"] = "HIBCCode128PAS";
|
|
529
|
+
DecodeBarcodeType["HIBCAztecPAS"] = "HIBCAztecPAS";
|
|
530
|
+
DecodeBarcodeType["HIBCDataMatrixPAS"] = "HIBCDataMatrixPAS";
|
|
531
|
+
DecodeBarcodeType["HIBCQRPAS"] = "HIBCQRPAS";
|
|
521
532
|
})(DecodeBarcodeType || (DecodeBarcodeType = {}));
|
|
522
533
|
/**
|
|
523
534
|
* Class for disc space information.
|
|
@@ -536,6 +547,15 @@ DiscUsage.attributeTypeMap = [{
|
|
|
536
547
|
baseName: 'TotalSize',
|
|
537
548
|
type: 'number'
|
|
538
549
|
}];
|
|
550
|
+
/**
|
|
551
|
+
*
|
|
552
|
+
*/
|
|
553
|
+
var DotCodeEncodeMode;
|
|
554
|
+
(function (DotCodeEncodeMode) {
|
|
555
|
+
DotCodeEncodeMode["Auto"] = "Auto";
|
|
556
|
+
DotCodeEncodeMode["Bytes"] = "Bytes";
|
|
557
|
+
DotCodeEncodeMode["ExtendedCodetext"] = "ExtendedCodetext";
|
|
558
|
+
})(DotCodeEncodeMode || (DotCodeEncodeMode = {}));
|
|
539
559
|
/**
|
|
540
560
|
* DotCode parameters.
|
|
541
561
|
*/
|
|
@@ -549,8 +569,24 @@ DotCodeParams.attributeTypeMap = [{
|
|
|
549
569
|
baseName: 'AspectRatio',
|
|
550
570
|
type: 'number'
|
|
551
571
|
}, {
|
|
552
|
-
name: '
|
|
553
|
-
baseName: '
|
|
572
|
+
name: 'columns',
|
|
573
|
+
baseName: 'Columns',
|
|
574
|
+
type: 'number'
|
|
575
|
+
}, {
|
|
576
|
+
name: 'encodeMode',
|
|
577
|
+
baseName: 'EncodeMode',
|
|
578
|
+
type: 'DotCodeEncodeMode'
|
|
579
|
+
}, {
|
|
580
|
+
name: 'eCIEncoding',
|
|
581
|
+
baseName: 'ECIEncoding',
|
|
582
|
+
type: 'ECIEncodings'
|
|
583
|
+
}, {
|
|
584
|
+
name: 'isReaderInitialization',
|
|
585
|
+
baseName: 'IsReaderInitialization',
|
|
586
|
+
type: 'boolean'
|
|
587
|
+
}, {
|
|
588
|
+
name: 'rows',
|
|
589
|
+
baseName: 'Rows',
|
|
554
590
|
type: 'number'
|
|
555
591
|
}];
|
|
556
592
|
/**
|
|
@@ -667,6 +703,7 @@ var EncodeBarcodeType;
|
|
|
667
703
|
EncodeBarcodeType["CodablockF"] = "CodablockF";
|
|
668
704
|
EncodeBarcodeType["GS1CodablockF"] = "GS1CodablockF";
|
|
669
705
|
EncodeBarcodeType["Mailmark"] = "Mailmark";
|
|
706
|
+
EncodeBarcodeType["GS1DotCode"] = "GS1DotCode";
|
|
670
707
|
})(EncodeBarcodeType || (EncodeBarcodeType = {}));
|
|
671
708
|
/**
|
|
672
709
|
* The error details
|
|
@@ -1051,6 +1088,15 @@ var MacroCharacter;
|
|
|
1051
1088
|
MacroCharacter["Macro05"] = "Macro05";
|
|
1052
1089
|
MacroCharacter["Macro06"] = "Macro06";
|
|
1053
1090
|
})(MacroCharacter || (MacroCharacter = {}));
|
|
1091
|
+
/**
|
|
1092
|
+
*
|
|
1093
|
+
*/
|
|
1094
|
+
var MaxiCodeEncodeMode;
|
|
1095
|
+
(function (MaxiCodeEncodeMode) {
|
|
1096
|
+
MaxiCodeEncodeMode["Auto"] = "Auto";
|
|
1097
|
+
MaxiCodeEncodeMode["Bytes"] = "Bytes";
|
|
1098
|
+
MaxiCodeEncodeMode["ExtendedCodetext"] = "ExtendedCodetext";
|
|
1099
|
+
})(MaxiCodeEncodeMode || (MaxiCodeEncodeMode = {}));
|
|
1054
1100
|
/**
|
|
1055
1101
|
*
|
|
1056
1102
|
*/
|
|
@@ -1078,6 +1124,10 @@ MaxiCodeParams.attributeTypeMap = [{
|
|
|
1078
1124
|
name: 'mode',
|
|
1079
1125
|
baseName: 'Mode',
|
|
1080
1126
|
type: 'MaxiCodeMode'
|
|
1127
|
+
}, {
|
|
1128
|
+
name: 'encodeMode',
|
|
1129
|
+
baseName: 'EncodeMode',
|
|
1130
|
+
type: 'MaxiCodeEncodeMode'
|
|
1081
1131
|
}];
|
|
1082
1132
|
/**
|
|
1083
1133
|
* Error
|
|
@@ -1765,7 +1815,7 @@ class GetBarcodeRecognizeRequest {
|
|
|
1765
1815
|
}
|
|
1766
1816
|
}
|
|
1767
1817
|
/**
|
|
1768
|
-
* Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image
|
|
1818
|
+
* Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image with content-type \"application/octet-stream\". An image can also be passed as a form field.
|
|
1769
1819
|
*/
|
|
1770
1820
|
class PostBarcodeRecognizeFromUrlOrContentRequest {}
|
|
1771
1821
|
/**
|
|
@@ -2007,7 +2057,7 @@ class StorageExistsRequest {
|
|
|
2007
2057
|
/*
|
|
2008
2058
|
* MIT License
|
|
2009
2059
|
|
|
2010
|
-
* Copyright (c)
|
|
2060
|
+
* Copyright (c) 2023 Aspose Pty Ltd
|
|
2011
2061
|
|
|
2012
2062
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2013
2063
|
* of this software and associated documentation files (the "Software"), to deal
|
|
@@ -2156,6 +2206,7 @@ let enumsMap = {
|
|
|
2156
2206
|
DataMatrixEccType: DataMatrixEccType,
|
|
2157
2207
|
DataMatrixEncodeMode: DataMatrixEncodeMode,
|
|
2158
2208
|
DecodeBarcodeType: DecodeBarcodeType,
|
|
2209
|
+
DotCodeEncodeMode: DotCodeEncodeMode,
|
|
2159
2210
|
ECIEncodings: ECIEncodings,
|
|
2160
2211
|
EnableChecksum: EnableChecksum,
|
|
2161
2212
|
EncodeBarcodeType: EncodeBarcodeType,
|
|
@@ -2163,6 +2214,7 @@ let enumsMap = {
|
|
|
2163
2214
|
FontStyle: FontStyle,
|
|
2164
2215
|
ITF14BorderType: ITF14BorderType,
|
|
2165
2216
|
MacroCharacter: MacroCharacter,
|
|
2217
|
+
MaxiCodeEncodeMode: MaxiCodeEncodeMode,
|
|
2166
2218
|
MaxiCodeMode: MaxiCodeMode,
|
|
2167
2219
|
PatchFormat: PatchFormat,
|
|
2168
2220
|
Pdf417CompactionMode: Pdf417CompactionMode,
|
|
@@ -2238,7 +2290,7 @@ class BarcodeApi {
|
|
|
2238
2290
|
throw new Error('Required parameter request.text was null or undefined when calling getBarcodeGenerate.');
|
|
2239
2291
|
}
|
|
2240
2292
|
if (request.type != null) {
|
|
2241
|
-
requestQueryParameters['Type'] = ObjectSerializer.serialize(request.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'");
|
|
2293
|
+
requestQueryParameters['Type'] = ObjectSerializer.serialize(request.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'");
|
|
2242
2294
|
}
|
|
2243
2295
|
if (request.text != null) {
|
|
2244
2296
|
requestQueryParameters['Text'] = ObjectSerializer.serialize(request.text, 'string');
|
|
@@ -2388,7 +2440,7 @@ class BarcodeApi {
|
|
|
2388
2440
|
throw new Error('Required parameter request.name was null or undefined when calling getBarcodeRecognize.');
|
|
2389
2441
|
}
|
|
2390
2442
|
if (request.type != null) {
|
|
2391
|
-
requestQueryParameters['Type'] = ObjectSerializer.serialize(request.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'");
|
|
2443
|
+
requestQueryParameters['Type'] = ObjectSerializer.serialize(request.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'");
|
|
2392
2444
|
}
|
|
2393
2445
|
if (request.checksumValidation != null) {
|
|
2394
2446
|
requestQueryParameters['ChecksumValidation'] = ObjectSerializer.serialize(request.checksumValidation, "'Default' | 'On' | 'Off'");
|
|
@@ -2531,7 +2583,7 @@ class BarcodeApi {
|
|
|
2531
2583
|
}
|
|
2532
2584
|
/**
|
|
2533
2585
|
*
|
|
2534
|
-
* @summary Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image
|
|
2586
|
+
* @summary Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image with content-type \"application/octet-stream\". An image can also be passed as a form field.
|
|
2535
2587
|
* @param request PostBarcodeRecognizeFromUrlOrContentRequest
|
|
2536
2588
|
*/
|
|
2537
2589
|
async postBarcodeRecognizeFromUrlOrContent(request) {
|
|
@@ -2539,7 +2591,7 @@ class BarcodeApi {
|
|
|
2539
2591
|
let requestQueryParameters = {};
|
|
2540
2592
|
let requestHeaderParams = Object.assign({}, this.defaultHeaders);
|
|
2541
2593
|
if (request.type != null) {
|
|
2542
|
-
requestQueryParameters['Type'] = ObjectSerializer.serialize(request.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'");
|
|
2594
|
+
requestQueryParameters['Type'] = ObjectSerializer.serialize(request.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'");
|
|
2543
2595
|
}
|
|
2544
2596
|
if (request.checksumValidation != null) {
|
|
2545
2597
|
requestQueryParameters['ChecksumValidation'] = ObjectSerializer.serialize(request.checksumValidation, "'Default' | 'On' | 'Off'");
|
|
@@ -2750,7 +2802,7 @@ class BarcodeApi {
|
|
|
2750
2802
|
throw new Error('Required parameter request.text was null or undefined when calling putBarcodeGenerateFile.');
|
|
2751
2803
|
}
|
|
2752
2804
|
if (request.type != null) {
|
|
2753
|
-
requestQueryParameters['Type'] = ObjectSerializer.serialize(request.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'");
|
|
2805
|
+
requestQueryParameters['Type'] = ObjectSerializer.serialize(request.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'");
|
|
2754
2806
|
}
|
|
2755
2807
|
if (request.text != null) {
|
|
2756
2808
|
requestQueryParameters['Text'] = ObjectSerializer.serialize(request.text, 'string');
|
|
@@ -2909,7 +2961,7 @@ class BarcodeApi {
|
|
|
2909
2961
|
throw new Error('Required parameter request.readerParams was null or undefined when calling putBarcodeRecognizeFromBody.');
|
|
2910
2962
|
}
|
|
2911
2963
|
if (request.type != null) {
|
|
2912
|
-
requestQueryParameters['type'] = ObjectSerializer.serialize(request.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'");
|
|
2964
|
+
requestQueryParameters['type'] = ObjectSerializer.serialize(request.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'");
|
|
2913
2965
|
}
|
|
2914
2966
|
if (request.storage != null) {
|
|
2915
2967
|
requestQueryParameters['storage'] = ObjectSerializer.serialize(request.storage, 'string');
|
|
@@ -3824,5 +3876,5 @@ class Configuration {
|
|
|
3824
3876
|
}
|
|
3825
3877
|
}
|
|
3826
3878
|
|
|
3827
|
-
export { ApiError, ApiErrorResponse, ApiVersion, AustralianPostParams, AutoSizeMode, AvailableGraphicsUnit, AztecParams, AztecSymbolMode, BarcodeApi, BarcodeResponse, BarcodeResponseList, BorderDashStyle, CaptionParams, ChecksumValidation, CodabarChecksumMode, CodabarParams, CodabarSymbol, CodablockParams, Code128Emulation, Code16KParams, CodeLocation, Configuration, CopyFileRequest, CopyFolderRequest, CouponParams, CreateFolderRequest, CustomerInformationInterpretingType, DataBarParams, DataMatrixEccType, DataMatrixEncodeMode, DataMatrixParams, DecodeBarcodeType, DeleteFileRequest, DeleteFolderRequest, DiscUsage, DotCodeParams, DownloadFileRequest, ECIEncodings, EnableChecksum, EncodeBarcodeType, ErrorDetails, FileApi, FileVersion, FileVersions, FilesList, FilesUploadResult, FolderApi, FontMode, FontParams, FontStyle, GeneratorParams, GeneratorParamsList, GetBarcodeGenerateRequest, GetBarcodeRecognizeRequest, GetDiscUsageRequest, GetFileVersionsRequest, GetFilesListRequest, ITF14BorderType, ITFParams, MacroCharacter, MaxiCodeMode, MaxiCodeParams, ModelError, MoveFileRequest, MoveFolderRequest, ObjectExist, ObjectExistsRequest, Padding, PatchCodeParams, PatchFormat, Pdf417CompactionMode, Pdf417ErrorLevel, Pdf417MacroTerminator, Pdf417Params, PostBarcodeRecognizeFromUrlOrContentRequest, PostGenerateMultipleRequest, PostalParams, PresetType, PutBarcodeGenerateFileRequest, PutBarcodeRecognizeFromBodyRequest, PutGenerateMultipleRequest, QREncodeMode, QREncodeType, QRErrorLevel, QRVersion, QrParams, ReaderParams, RegionPoint, ResultImageInfo, StorageApi, StorageExist, StorageExistsRequest, StorageFile, StructuredAppend, TextAlignment, UploadFileRequest };
|
|
3879
|
+
export { ApiError, ApiErrorResponse, ApiVersion, AustralianPostParams, AutoSizeMode, AvailableGraphicsUnit, AztecParams, AztecSymbolMode, BarcodeApi, BarcodeResponse, BarcodeResponseList, BorderDashStyle, CaptionParams, ChecksumValidation, CodabarChecksumMode, CodabarParams, CodabarSymbol, CodablockParams, Code128Emulation, Code16KParams, CodeLocation, Configuration, CopyFileRequest, CopyFolderRequest, CouponParams, CreateFolderRequest, CustomerInformationInterpretingType, DataBarParams, DataMatrixEccType, DataMatrixEncodeMode, DataMatrixParams, DecodeBarcodeType, DeleteFileRequest, DeleteFolderRequest, DiscUsage, DotCodeEncodeMode, DotCodeParams, DownloadFileRequest, ECIEncodings, EnableChecksum, EncodeBarcodeType, ErrorDetails, FileApi, FileVersion, FileVersions, FilesList, FilesUploadResult, FolderApi, FontMode, FontParams, FontStyle, GeneratorParams, GeneratorParamsList, GetBarcodeGenerateRequest, GetBarcodeRecognizeRequest, GetDiscUsageRequest, GetFileVersionsRequest, GetFilesListRequest, ITF14BorderType, ITFParams, MacroCharacter, MaxiCodeEncodeMode, MaxiCodeMode, MaxiCodeParams, ModelError, MoveFileRequest, MoveFolderRequest, ObjectExist, ObjectExistsRequest, Padding, PatchCodeParams, PatchFormat, Pdf417CompactionMode, Pdf417ErrorLevel, Pdf417MacroTerminator, Pdf417Params, PostBarcodeRecognizeFromUrlOrContentRequest, PostGenerateMultipleRequest, PostalParams, PresetType, PutBarcodeGenerateFileRequest, PutBarcodeRecognizeFromBodyRequest, PutGenerateMultipleRequest, QREncodeMode, QREncodeType, QRErrorLevel, QRVersion, QrParams, ReaderParams, RegionPoint, ResultImageInfo, StorageApi, StorageExist, StorageExistsRequest, StorageFile, StructuredAppend, TextAlignment, UploadFileRequest };
|
|
3828
3880
|
//# sourceMappingURL=aspose-barcode-cloud-node.esm.js.map
|