@uwdata/mosaic-core 0.19.0 → 0.19.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.
@@ -8,5 +8,5 @@ import type { ExtractionOptions, Table } from '@uwdata/flechette';
8
8
  * values to JS Date objects.
9
9
  * @returns A table instance.
10
10
  */
11
- export declare function decodeIPC(data: ArrayBuffer | Uint8Array, options?: ExtractionOptions): Table;
11
+ export declare function decodeIPC(data: ArrayBufferLike | Uint8Array, options?: ExtractionOptions): Table;
12
12
  //# sourceMappingURL=decode-ipc.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"decode-ipc.d.ts","sourceRoot":"","sources":["../../../src/util/decode-ipc.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAGlE;;;;;;;;GAQG;AACH,wBAAgB,SAAS,CAAC,IAAI,EAAE,WAAW,GAAG,UAAU,EAAE,OAAO,GAAE,iBAAqC,GAAG,KAAK,CAE/G"}
1
+ {"version":3,"file":"decode-ipc.d.ts","sourceRoot":"","sources":["../../../src/util/decode-ipc.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAGlE;;;;;;;;GAQG;AACH,wBAAgB,SAAS,CACvB,IAAI,EAAE,eAAe,GAAG,UAAU,EAClC,OAAO,GAAE,iBAAqC,GAC7C,KAAK,CAEP"}
@@ -1 +1 @@
1
- {"version":3,"file":"decode-ipc.js","sourceRoot":"","sources":["../../../src/util/decode-ipc.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEjD;;;;;;;;GAQG;AACH,MAAM,UAAU,SAAS,CAAC,IAA8B,EAAE,UAA6B,EAAE,OAAO,EAAE,IAAI,EAAE;IACtG,OAAO,YAAY,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;AACrC,CAAC"}
1
+ {"version":3,"file":"decode-ipc.js","sourceRoot":"","sources":["../../../src/util/decode-ipc.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEjD;;;;;;;;GAQG;AACH,MAAM,UAAU,SAAS,CACvB,IAAkC,EAClC,UAA6B,EAAE,OAAO,EAAE,IAAI,EAAE;IAE9C,OAAO,YAAY,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;AACrC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uwdata/mosaic-core",
3
- "version": "0.19.0",
3
+ "version": "0.19.1",
4
4
  "description": "Scalable and extensible linked data views.",
5
5
  "keywords": [
6
6
  "mosaic",
@@ -33,11 +33,11 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@duckdb/duckdb-wasm": "1.30.0",
36
- "@uwdata/flechette": "^2.2.0",
36
+ "@uwdata/flechette": "^2.2.3",
37
37
  "@uwdata/mosaic-sql": "^0.19.0"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@uwdata/mosaic-duckdb": "^0.19.0"
41
41
  },
42
- "gitHead": "0ba4f2d710ca2fa53da7ff02a370e39a32dc2ce4"
42
+ "gitHead": "64ac2aaeefe9ff469edfeed417414a0a7866863f"
43
43
  }
@@ -10,6 +10,9 @@ import { tableFromIPC } from '@uwdata/flechette';
10
10
  * values to JS Date objects.
11
11
  * @returns A table instance.
12
12
  */
13
- export function decodeIPC(data: ArrayBuffer | Uint8Array, options: ExtractionOptions = { useDate: true }): Table {
13
+ export function decodeIPC(
14
+ data: ArrayBufferLike | Uint8Array,
15
+ options: ExtractionOptions = { useDate: true }
16
+ ): Table {
14
17
  return tableFromIPC(data, options);
15
18
  }