@pixelverse/strichjs-sdk 1.2.0 → 1.2.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.1] - 2023-07-28
4
+
5
+ ### Added
6
+
7
+ - Raw code data is now exposed through the `rawData` property of the `CodeDetection`.
8
+
3
9
  ## [1.2.0] - 2023-07-12
4
10
 
5
11
  ### Added
package/dist/strich.d.ts CHANGED
@@ -382,6 +382,10 @@ export interface CodeDetection {
382
382
  * The time of detection.
383
383
  */
384
384
  time: number;
385
+ /**
386
+ * The raw contained bytes contained in the code.
387
+ */
388
+ rawData: Uint8Array;
385
389
  }
386
390
  /**
387
391
  * BarcodeReader is the primary interface of the STRICH SDK.