@logbrew/sdk 0.1.8 → 0.1.9

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.
Files changed (2) hide show
  1. package/core.cjs +1 -0
  2. package/package.json +1 -1
package/core.cjs CHANGED
@@ -2299,6 +2299,7 @@ function metricDescriptionOrUndefined(value) {
2299
2299
  return code !== undefined && (
2300
2300
  code <= 31
2301
2301
  || (code >= 127 && code <= 159)
2302
+ || (code >= 0xd800 && code <= 0xdfff)
2302
2303
  || code === 0x2028
2303
2304
  || code === 0x2029
2304
2305
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@logbrew/sdk",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Public LogBrew JavaScript SDK for building, validating, and flushing event batches.",
5
5
  "type": "module",
6
6
  "main": "./index.cjs",