Skip to content

Commit 10fc3e7

Browse files
8.0.0
1 parent 7e1c8ef commit 10fc3e7

File tree

12 files changed

+1026
-102
lines changed

12 files changed

+1026
-102
lines changed

dist/dbr.browser.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/dbr.d.ts

Lines changed: 58 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,15 @@ export declare class BarcodeReader {
289289
* Get or set the Dynamsoft Barcode Reader SDK product keys.
290290
*/
291291
static set productKeys(keys: string);
292+
static get handshakeCode(): string;
293+
/**
294+
* Get or set the Dynamsoft Barcode Reader SDK handshake code. The handshakeCode is an alias of productKeys. Specifically refers to the key that requires network authentication.
295+
*/
296+
static set handshakeCode(keys: string);
292297
/** @ignore */
293-
static _sessionPwd?: string;
294-
static set sessionPwd(value: string);
295-
static get sessionPwd(): string;
298+
static _sessionPassword?: string;
299+
static set sessionPassword(value: string);
300+
static get sessionPassword(): string;
296301
/** @ignore */
297302
static _limitModules?: string[];
298303
/** @ignore */
@@ -1415,6 +1420,54 @@ export declare enum EnumTextureDetectionMode {
14151420
TDM_SKIP = 0,
14161421
TDM_REV = 2147483648
14171422
}
1423+
export declare enum EnumLicenseModule {
1424+
/**One-D barcodes license module*/
1425+
DM_LM_ONED = "1",
1426+
/**QR Code barcodes license module*/
1427+
DM_LM_QR_CODE = "2",
1428+
/**PDF417 barcodes license module*/
1429+
DM_LM_PDF417 = "3",
1430+
/**Datamatrix barcodes license module*/
1431+
DM_LM_DATAMATRIX = "4",
1432+
/**Aztec barcodes license module*/
1433+
DM_LM_AZTEC = "5",
1434+
/**MAXICODE barcodes license module*/
1435+
DM_LM_MAXICODE = "6",
1436+
/**Patch code barcodes license module*/
1437+
DM_LM_PATCHCODE = "7",
1438+
/**GS1 Databar barcodes license module*/
1439+
DM_LM_GS1_DATABAR = "8",
1440+
/**GS1 Composite barcodes license module*/
1441+
DM_LM_GS1_COMPOSITE = "9",
1442+
/**Postal code barcodes license module*/
1443+
DM_LM_POSTALCODE = "10",
1444+
/**DotCode barcodes license module*/
1445+
DM_LM_DOTCODE = "11",
1446+
/**Intermediate result license module*/
1447+
DM_LM_INTERMEDIATE_RESULT = "12",
1448+
/**Datamatrix DPM(Direct Part Marking) license module*/
1449+
DM_LM_DPM = "13",
1450+
/**Nonstandard barcodes license module*/
1451+
DM_LM_NONSTANDARD_BARCODE = "16"
1452+
}
1453+
export declare enum EnumChargeWay {
1454+
/**The charge way automatically determined by the license server.*/
1455+
DM_CW_AUTO = "",
1456+
/**Charges by the count of devices.*/
1457+
DM_CW_DEVICE_COUNT = "DeviceCount",
1458+
/**Charges by the count of barcode scans.*/
1459+
DM_CW_SCAN_COUNT = "ScanCount",
1460+
/**Charges by the count of concurrent devices.*/
1461+
DM_CW_CONCURRENT_DEVICE_COUNT = "ConcurrentDeviceCount",
1462+
/**Charges by the count of app domains.*/
1463+
DM_CW_APP_DOMIAN_COUNT = "Domain",
1464+
/**Charges by the count of active devices.*/
1465+
DM_CW_ACTIVE_DEVICE_COUNT = "ActiveDeviceCount",
1466+
/**Charges by the count of instances.*/
1467+
DM_CW_INSTANCE_COUNT = "InstanceCount",
1468+
/**Charges by the count of concurrent instances.*/
1469+
DM_CW_CONCURRENT_INSTANCE_COUNT = "ConcurrentInstanceCount"
1470+
}
14181471
declare const DBR: {
14191472
BarcodeReader: typeof BarcodeReader;
14201473
BarcodeScanner: typeof BarcodeScanner;
@@ -1450,6 +1503,8 @@ declare const DBR: {
14501503
EnumTextFilterMode: typeof EnumTextFilterMode;
14511504
EnumTextResultOrderMode: typeof EnumTextResultOrderMode;
14521505
EnumTextureDetectionMode: typeof EnumTextureDetectionMode;
1506+
EnumLicenseModule: typeof EnumLicenseModule;
1507+
EnumChargeWay: typeof EnumChargeWay;
14531508
};
14541509
export default DBR;
14551510

dist/dbr.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dbr.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/dbr.reference.d.ts

Lines changed: 58 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,15 @@ declare class BarcodeReader {
289289
* Get or set the Dynamsoft Barcode Reader SDK product keys.
290290
*/
291291
static set productKeys(keys: string);
292+
static get handshakeCode(): string;
293+
/**
294+
* Get or set the Dynamsoft Barcode Reader SDK handshake code. The handshakeCode is an alias of productKeys. Specifically refers to the key that requires network authentication.
295+
*/
296+
static set handshakeCode(keys: string);
292297
/** @ignore */
293-
static _sessionPwd?: string;
294-
static set sessionPwd(value: string);
295-
static get sessionPwd(): string;
298+
static _sessionPassword?: string;
299+
static set sessionPassword(value: string);
300+
static get sessionPassword(): string;
296301
/** @ignore */
297302
static _limitModules?: string[];
298303
/** @ignore */
@@ -1415,6 +1420,54 @@ declare enum EnumTextureDetectionMode {
14151420
TDM_SKIP = 0,
14161421
TDM_REV = 2147483648
14171422
}
1423+
declare enum EnumLicenseModule {
1424+
/**One-D barcodes license module*/
1425+
DM_LM_ONED = "1",
1426+
/**QR Code barcodes license module*/
1427+
DM_LM_QR_CODE = "2",
1428+
/**PDF417 barcodes license module*/
1429+
DM_LM_PDF417 = "3",
1430+
/**Datamatrix barcodes license module*/
1431+
DM_LM_DATAMATRIX = "4",
1432+
/**Aztec barcodes license module*/
1433+
DM_LM_AZTEC = "5",
1434+
/**MAXICODE barcodes license module*/
1435+
DM_LM_MAXICODE = "6",
1436+
/**Patch code barcodes license module*/
1437+
DM_LM_PATCHCODE = "7",
1438+
/**GS1 Databar barcodes license module*/
1439+
DM_LM_GS1_DATABAR = "8",
1440+
/**GS1 Composite barcodes license module*/
1441+
DM_LM_GS1_COMPOSITE = "9",
1442+
/**Postal code barcodes license module*/
1443+
DM_LM_POSTALCODE = "10",
1444+
/**DotCode barcodes license module*/
1445+
DM_LM_DOTCODE = "11",
1446+
/**Intermediate result license module*/
1447+
DM_LM_INTERMEDIATE_RESULT = "12",
1448+
/**Datamatrix DPM(Direct Part Marking) license module*/
1449+
DM_LM_DPM = "13",
1450+
/**Nonstandard barcodes license module*/
1451+
DM_LM_NONSTANDARD_BARCODE = "16"
1452+
}
1453+
declare enum EnumChargeWay {
1454+
/**The charge way automatically determined by the license server.*/
1455+
DM_CW_AUTO = "",
1456+
/**Charges by the count of devices.*/
1457+
DM_CW_DEVICE_COUNT = "DeviceCount",
1458+
/**Charges by the count of barcode scans.*/
1459+
DM_CW_SCAN_COUNT = "ScanCount",
1460+
/**Charges by the count of concurrent devices.*/
1461+
DM_CW_CONCURRENT_DEVICE_COUNT = "ConcurrentDeviceCount",
1462+
/**Charges by the count of app domains.*/
1463+
DM_CW_APP_DOMIAN_COUNT = "Domain",
1464+
/**Charges by the count of active devices.*/
1465+
DM_CW_ACTIVE_DEVICE_COUNT = "ActiveDeviceCount",
1466+
/**Charges by the count of instances.*/
1467+
DM_CW_INSTANCE_COUNT = "InstanceCount",
1468+
/**Charges by the count of concurrent instances.*/
1469+
DM_CW_CONCURRENT_INSTANCE_COUNT = "ConcurrentInstanceCount"
1470+
}
14181471
declare const DBR: {
14191472
BarcodeReader: typeof BarcodeReader;
14201473
BarcodeScanner: typeof BarcodeScanner;
@@ -1450,6 +1503,8 @@ declare const DBR: {
14501503
EnumTextFilterMode: typeof EnumTextFilterMode;
14511504
EnumTextResultOrderMode: typeof EnumTextResultOrderMode;
14521505
EnumTextureDetectionMode: typeof EnumTextureDetectionMode;
1506+
EnumLicenseModule: typeof EnumLicenseModule;
1507+
EnumChargeWay: typeof EnumChargeWay;
14531508
};
14541509

14551510

doc/api reference/assets/js/search.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)