@pixelverse/strichjs-sdk 1.12.2 → 1.13.1

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/strich.d.ts CHANGED
@@ -1007,7 +1007,7 @@ export declare class StrichSDK {
1007
1007
  *
1008
1008
  * For more information, please visit https://docs.strich.io/supported-symbologies.html
1009
1009
  */
1010
- export declare type SymbologyName = 'ean13' | 'ean8' | 'upca' | 'upce' | 'databar' | 'databar-exp' | 'code39' | 'code93' | 'code128' | 'i25' | 'codabar' | 'qr' | 'aztec' | 'datamatrix' | 'pdf417' | 'microqr';
1010
+ export declare type SymbologyName = 'ean13' | 'ean8' | 'upca' | 'upce' | 'databar' | 'databar-exp' | 'code39' | 'code93' | 'code128' | 'i25' | 'codabar' | 'msi-plessey' | 'qr' | 'aztec' | 'datamatrix' | 'pdf417' | 'microqr';
1011
1011
 
1012
1012
  /**
1013
1013
  * For variable-length symbologies, min/max length can be specified in addition to the symbology.
@@ -1016,7 +1016,7 @@ export declare type SymbologySpec = {
1016
1016
  /**
1017
1017
  * The name of the 1D barcode symbology.
1018
1018
  */
1019
- name: 'ean13' | 'ean8' | 'upca' | 'upce' | 'databar' | 'databar-exp' | 'code39' | 'code93' | 'code128' | 'i25' | 'codabar';
1019
+ name: 'ean13' | 'ean8' | 'upca' | 'upce' | 'databar' | 'databar-exp' | 'code39' | 'code93' | 'code128' | 'i25' | 'codabar' | 'msi-plessey';
1020
1020
  /**
1021
1021
  * The minimum length of the barcode, only has an effect for variable-length symbologies.
1022
1022
  */
@@ -1061,7 +1061,7 @@ export declare type SymbologySpec = {
1061
1061
  *
1062
1062
  * @defaultValue false
1063
1063
  */
1064
- roundedFPs: boolean;
1064
+ roundedFPs?: boolean;
1065
1065
  /**
1066
1066
  * Enable detection of QR Codes on curved/bent surfaces.
1067
1067
  *
@@ -1072,7 +1072,7 @@ export declare type SymbologySpec = {
1072
1072
  *
1073
1073
  * @defaultValue false
1074
1074
  */
1075
- curved: boolean;
1075
+ curved?: boolean;
1076
1076
  } | {
1077
1077
  /** The name of the 2D symbology */
1078
1078
  name: 'aztec' | 'datamatrix' | 'pdf417' | 'microqr';