aspose-barcode-cloud-node 23.5.0 → 23.7.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/dist/models.d.ts CHANGED
@@ -441,7 +441,7 @@ export declare enum DataMatrixEccType {
441
441
  Ecc200 = "Ecc200"
442
442
  }
443
443
  /**
444
- *
444
+ * DataMatrix encoder's encoding mode, default to Auto
445
445
  */
446
446
  export declare enum DataMatrixEncodeMode {
447
447
  Auto = "Auto",
@@ -467,7 +467,7 @@ export declare class DataMatrixParams {
467
467
  */
468
468
  'textEncoding'?: string;
469
469
  /**
470
- * Columns count.
470
+ * @deprecated Will be replaced with 'DataMatrix.Version' in the next release Columns count.
471
471
  */
472
472
  'columns'?: number;
473
473
  /**
@@ -479,7 +479,7 @@ export declare class DataMatrixParams {
479
479
  */
480
480
  'dataMatrixEncodeMode'?: DataMatrixEncodeMode;
481
481
  /**
482
- * Rows count.
482
+ * @deprecated Will be replaced with 'DataMatrix.Version' in the next release Rows count.
483
483
  */
484
484
  'rows'?: number;
485
485
  /**
@@ -579,7 +579,9 @@ export declare enum DecodeBarcodeType {
579
579
  HIBCCode128PAS = "HIBCCode128PAS",
580
580
  HIBCAztecPAS = "HIBCAztecPAS",
581
581
  HIBCDataMatrixPAS = "HIBCDataMatrixPAS",
582
- HIBCQRPAS = "HIBCQRPAS"
582
+ HIBCQRPAS = "HIBCQRPAS",
583
+ HanXin = "HanXin",
584
+ GS1HanXin = "GS1HanXin"
583
585
  }
584
586
  /**
585
587
  * Class for disc space information.
@@ -762,7 +764,9 @@ export declare enum EncodeBarcodeType {
762
764
  CodablockF = "CodablockF",
763
765
  GS1CodablockF = "GS1CodablockF",
764
766
  Mailmark = "Mailmark",
765
- GS1DotCode = "GS1DotCode"
767
+ GS1DotCode = "GS1DotCode",
768
+ HanXin = "HanXin",
769
+ GS1HanXin = "GS1HanXin"
766
770
  }
767
771
  /**
768
772
  * The error details
@@ -937,11 +941,11 @@ export declare class GeneratorParams {
937
941
  */
938
942
  'resolution'?: number;
939
943
  /**
940
- * DEPRECATED: Use 'Resolution' instead.
944
+ * @deprecated Use 'Resolution' instead.
941
945
  */
942
946
  'resolutionX'?: number;
943
947
  /**
944
- * DEPRECATED: Use 'Resolution' instead.
948
+ * @deprecated Use 'Resolution' instead.
945
949
  */
946
950
  'resolutionY'?: number;
947
951
  /**
@@ -1116,6 +1120,10 @@ export declare class GeneratorParams {
1116
1120
  * Code128 params.
1117
1121
  */
1118
1122
  'code128'?: Code128Params;
1123
+ /**
1124
+ * HanXin params.
1125
+ */
1126
+ 'hanXin'?: HanXinParams;
1119
1127
  static attributeTypeMap: Array<{
1120
1128
  name: string;
1121
1129
  baseName: string;
@@ -1154,6 +1162,147 @@ export declare class GeneratorParamsList {
1154
1162
  type: string;
1155
1163
  }[];
1156
1164
  }
1165
+ /**
1166
+ *
1167
+ */
1168
+ export declare enum HanXinEncodeMode {
1169
+ Auto = "Auto",
1170
+ Binary = "Binary",
1171
+ ECI = "ECI",
1172
+ Unicode = "Unicode",
1173
+ URI = "URI",
1174
+ Extended = "Extended"
1175
+ }
1176
+ /**
1177
+ *
1178
+ */
1179
+ export declare enum HanXinErrorLevel {
1180
+ L1 = "L1",
1181
+ L2 = "L2",
1182
+ L3 = "L3",
1183
+ L4 = "L4"
1184
+ }
1185
+ /**
1186
+ * HanXin params.
1187
+ */
1188
+ export declare class HanXinParams {
1189
+ /**
1190
+ * Encoding mode for XanXin barcodes. Default value: HanXinEncodeMode.Auto.
1191
+ */
1192
+ 'encodeMode'?: HanXinEncodeMode;
1193
+ /**
1194
+ * Allowed Han Xin error correction levels from L1 to L4. Default value: HanXinErrorLevel.L1.
1195
+ */
1196
+ 'errorLevel'?: HanXinErrorLevel;
1197
+ /**
1198
+ * Allowed Han Xin versions, Auto and Version01 - Version84. Default value: HanXinVersion.Auto.
1199
+ */
1200
+ 'version'?: HanXinVersion;
1201
+ /**
1202
+ * Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. Default value: ECIEncodings.ISO_8859_1
1203
+ */
1204
+ 'eCIEncoding'?: ECIEncodings;
1205
+ static attributeTypeMap: Array<{
1206
+ name: string;
1207
+ baseName: string;
1208
+ type: string;
1209
+ }>;
1210
+ static getAttributeTypeMap(): {
1211
+ name: string;
1212
+ baseName: string;
1213
+ type: string;
1214
+ }[];
1215
+ }
1216
+ /**
1217
+ *
1218
+ */
1219
+ export declare enum HanXinVersion {
1220
+ Auto = "Auto",
1221
+ Version01 = "Version01",
1222
+ Version02 = "Version02",
1223
+ Version03 = "Version03",
1224
+ Version04 = "Version04",
1225
+ Version05 = "Version05",
1226
+ Version06 = "Version06",
1227
+ Version07 = "Version07",
1228
+ Version08 = "Version08",
1229
+ Version09 = "Version09",
1230
+ Version10 = "Version10",
1231
+ Version11 = "Version11",
1232
+ Version12 = "Version12",
1233
+ Version13 = "Version13",
1234
+ Version14 = "Version14",
1235
+ Version15 = "Version15",
1236
+ Version16 = "Version16",
1237
+ Version17 = "Version17",
1238
+ Version18 = "Version18",
1239
+ Version19 = "Version19",
1240
+ Version20 = "Version20",
1241
+ Version21 = "Version21",
1242
+ Version22 = "Version22",
1243
+ Version23 = "Version23",
1244
+ Version24 = "Version24",
1245
+ Version25 = "Version25",
1246
+ Version26 = "Version26",
1247
+ Version27 = "Version27",
1248
+ Version28 = "Version28",
1249
+ Version29 = "Version29",
1250
+ Version30 = "Version30",
1251
+ Version31 = "Version31",
1252
+ Version32 = "Version32",
1253
+ Version33 = "Version33",
1254
+ Version34 = "Version34",
1255
+ Version35 = "Version35",
1256
+ Version36 = "Version36",
1257
+ Version37 = "Version37",
1258
+ Version38 = "Version38",
1259
+ Version39 = "Version39",
1260
+ Version40 = "Version40",
1261
+ Version41 = "Version41",
1262
+ Version42 = "Version42",
1263
+ Version43 = "Version43",
1264
+ Version44 = "Version44",
1265
+ Version45 = "Version45",
1266
+ Version46 = "Version46",
1267
+ Version47 = "Version47",
1268
+ Version48 = "Version48",
1269
+ Version49 = "Version49",
1270
+ Version50 = "Version50",
1271
+ Version51 = "Version51",
1272
+ Version52 = "Version52",
1273
+ Version53 = "Version53",
1274
+ Version54 = "Version54",
1275
+ Version55 = "Version55",
1276
+ Version56 = "Version56",
1277
+ Version57 = "Version57",
1278
+ Version58 = "Version58",
1279
+ Version59 = "Version59",
1280
+ Version60 = "Version60",
1281
+ Version61 = "Version61",
1282
+ Version62 = "Version62",
1283
+ Version63 = "Version63",
1284
+ Version64 = "Version64",
1285
+ Version65 = "Version65",
1286
+ Version66 = "Version66",
1287
+ Version67 = "Version67",
1288
+ Version68 = "Version68",
1289
+ Version69 = "Version69",
1290
+ Version70 = "Version70",
1291
+ Version71 = "Version71",
1292
+ Version72 = "Version72",
1293
+ Version73 = "Version73",
1294
+ Version74 = "Version74",
1295
+ Version75 = "Version75",
1296
+ Version76 = "Version76",
1297
+ Version77 = "Version77",
1298
+ Version78 = "Version78",
1299
+ Version79 = "Version79",
1300
+ Version80 = "Version80",
1301
+ Version81 = "Version81",
1302
+ Version82 = "Version82",
1303
+ Version83 = "Version83",
1304
+ Version84 = "Version84"
1305
+ }
1157
1306
  /**
1158
1307
  *
1159
1308
  */
@@ -1984,7 +2133,7 @@ export declare class GetBarcodeGenerateRequest {
1984
2133
  /**
1985
2134
  * Type of barcode to generate.
1986
2135
  */
1987
- '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';
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';
1988
2137
  /**
1989
2138
  * Text to encode.
1990
2139
  */
@@ -2026,11 +2175,11 @@ Default value: 96 dpi.
2026
2175
  */
2027
2176
  'resolution'?: number;
2028
2177
  /**
2029
- * DEPRECATED: Use 'Resolution' instead.
2178
+ * @deprecated Use 'Resolution' instead.
2030
2179
  */
2031
2180
  'resolutionX'?: number;
2032
2181
  /**
2033
- * DEPRECATED: Use 'Resolution' instead.
2182
+ * @deprecated Use 'Resolution' instead.
2034
2183
  */
2035
2184
  'resolutionY'?: number;
2036
2185
  /**
@@ -2165,7 +2314,7 @@ Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISM
2165
2314
 
2166
2315
  * @param text Text to encode.
2167
2316
  */
2168
- 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', text: string);
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);
2169
2318
  }
2170
2319
  /**
2171
2320
  * Recognize barcode from a file on server.
@@ -2178,7 +2327,7 @@ export declare class GetBarcodeRecognizeRequest {
2178
2327
  /**
2179
2328
  * The type of barcode to read.
2180
2329
  */
2181
- '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';
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';
2182
2331
  /**
2183
2332
  * Enable checksum validation during recognition for 1D barcodes.
2184
2333
  Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible.
@@ -2361,7 +2510,7 @@ export declare class PostBarcodeRecognizeFromUrlOrContentRequest {
2361
2510
  /**
2362
2511
  * The type of barcode to read.
2363
2512
  */
2364
- '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';
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';
2365
2514
  /**
2366
2515
  * Enable checksum validation during recognition for 1D barcodes.
2367
2516
  Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible.
@@ -2561,7 +2710,7 @@ export declare class PutBarcodeGenerateFileRequest {
2561
2710
  /**
2562
2711
  * Type of barcode to generate.
2563
2712
  */
2564
- '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';
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';
2565
2714
  /**
2566
2715
  * Text to encode.
2567
2716
  */
@@ -2603,11 +2752,11 @@ Default value: 96 dpi.
2603
2752
  */
2604
2753
  'resolution'?: number;
2605
2754
  /**
2606
- * DEPRECATED: Use 'Resolution' instead.
2755
+ * @deprecated Use 'Resolution' instead.
2607
2756
  */
2608
2757
  'resolutionX'?: number;
2609
2758
  /**
2610
- * DEPRECATED: Use 'Resolution' instead.
2759
+ * @deprecated Use 'Resolution' instead.
2611
2760
  */
2612
2761
  'resolutionY'?: number;
2613
2762
  /**
@@ -2752,7 +2901,7 @@ Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISM
2752
2901
 
2753
2902
  * @param text Text to encode.
2754
2903
  */
2755
- 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', text: string);
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);
2756
2905
  }
2757
2906
  /**
2758
2907
  * Recognition of a barcode from file on server with parameters in body.
@@ -2769,7 +2918,7 @@ export declare class PutBarcodeRecognizeFromBodyRequest {
2769
2918
  /**
2770
2919
  *
2771
2920
  */
2772
- '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';
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';
2773
2922
  /**
2774
2923
  * The storage name
2775
2924
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aspose-barcode-cloud-node",
3
- "version": "23.5.0",
3
+ "version": "23.7.0",
4
4
  "description": "Aspose.BarCode Cloud SDK for Node.js",
5
5
  "homepage": "https://products.aspose.cloud/barcode/nodejs",
6
6
  "repository": {