@loaders.gl/json 4.4.0-alpha.13 → 4.4.0-alpha.14

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/index.cjs CHANGED
@@ -1113,7 +1113,7 @@ function rebuildJsonObject(batch, data) {
1113
1113
  }
1114
1114
 
1115
1115
  // dist/json-loader.js
1116
- var VERSION = true ? "4.4.0-alpha.13" : "latest";
1116
+ var VERSION = true ? "4.4.0-alpha.14" : "latest";
1117
1117
  var JSONLoader = {
1118
1118
  dataType: null,
1119
1119
  batchType: null,
@@ -1196,7 +1196,7 @@ async function* parseNDJSONInBatches(binaryAsyncIterator, options) {
1196
1196
  }
1197
1197
 
1198
1198
  // dist/ndjson-loader.js
1199
- var VERSION2 = true ? "4.4.0-alpha.13" : "latest";
1199
+ var VERSION2 = true ? "4.4.0-alpha.14" : "latest";
1200
1200
  var NDJSONLoader = {
1201
1201
  dataType: null,
1202
1202
  batchType: null,
@@ -1248,7 +1248,7 @@ var JSONWriter = {
1248
1248
 
1249
1249
  // dist/geojson-loader.js
1250
1250
  var import_gis = require("@loaders.gl/gis");
1251
- var VERSION3 = true ? "4.4.0-alpha.13" : "latest";
1251
+ var VERSION3 = true ? "4.4.0-alpha.14" : "latest";
1252
1252
  var GeoJSONWorkerLoader = {
1253
1253
  dataType: null,
1254
1254
  batchType: null,
@@ -5,7 +5,7 @@ import { parseJSONSync } from "./lib/parsers/parse-json.js";
5
5
  import { parseJSONInBatches } from "./lib/parsers/parse-json-in-batches.js";
6
6
  // __VERSION__ is injected by babel-plugin-version-inline
7
7
  // @ts-ignore TS2304: Cannot find name '__VERSION__'.
8
- const VERSION = typeof "4.4.0-alpha.13" !== 'undefined' ? "4.4.0-alpha.13" : 'latest';
8
+ const VERSION = typeof "4.4.0-alpha.14" !== 'undefined' ? "4.4.0-alpha.14" : 'latest';
9
9
  export const JSONLoader = {
10
10
  dataType: null,
11
11
  batchType: null,
@@ -20,7 +20,7 @@ export declare const JSONWriter: {
20
20
  readonly mimeTypes: ["application/json"];
21
21
  readonly options: {};
22
22
  readonly text: true;
23
- readonly encode: (table: Table, options: JSONWriterOptions) => Promise<ArrayBufferLike>;
23
+ readonly encode: (table: Table, options: JSONWriterOptions) => Promise<ArrayBuffer>;
24
24
  readonly encodeTextSync: (table: Table, options: JSONWriterOptions) => string;
25
25
  };
26
26
  export {};
@@ -5,7 +5,7 @@ import { parseNDJSONSync } from "./lib/parsers/parse-ndjson.js";
5
5
  import { parseNDJSONInBatches } from "./lib/parsers/parse-ndjson-in-batches.js";
6
6
  // __VERSION__ is injected by babel-plugin-version-inline
7
7
  // @ts-ignore TS2304: Cannot find name '__VERSION__'.
8
- const VERSION = typeof "4.4.0-alpha.13" !== 'undefined' ? "4.4.0-alpha.13" : 'latest';
8
+ const VERSION = typeof "4.4.0-alpha.14" !== 'undefined' ? "4.4.0-alpha.14" : 'latest';
9
9
  /** NDGeoJSONLoader */
10
10
  export const NDJSONLoader = {
11
11
  dataType: null,
@@ -5,7 +5,7 @@ import { parseNDJSONSync } from "./lib/parsers/parse-ndjson.js";
5
5
  import { parseNDJSONInBatches } from "./lib/parsers/parse-ndjson-in-batches.js";
6
6
  // __VERSION__ is injected by babel-plugin-version-inline
7
7
  // @ts-ignore TS2304: Cannot find name '__VERSION__'.
8
- const VERSION = typeof "4.4.0-alpha.13" !== 'undefined' ? "4.4.0-alpha.13" : 'latest';
8
+ const VERSION = typeof "4.4.0-alpha.14" !== 'undefined' ? "4.4.0-alpha.14" : 'latest';
9
9
  export const NDJSONLoader = {
10
10
  dataType: null,
11
11
  batchType: null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loaders.gl/json",
3
- "version": "4.4.0-alpha.13",
3
+ "version": "4.4.0-alpha.14",
4
4
  "description": "Framework-independent loader for JSON and streaming JSON formats",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -47,13 +47,13 @@
47
47
  "build-worker": "esbuild src/workers/geojson-worker.ts --bundle --outfile=dist/geojson-worker.js --define:__VERSION__=\\\"$npm_package_version\\\""
48
48
  },
49
49
  "dependencies": {
50
- "@loaders.gl/gis": "4.4.0-alpha.13",
51
- "@loaders.gl/loader-utils": "4.4.0-alpha.13",
52
- "@loaders.gl/schema": "4.4.0-alpha.13",
53
- "@loaders.gl/schema-utils": "4.4.0-alpha.13"
50
+ "@loaders.gl/gis": "4.4.0-alpha.14",
51
+ "@loaders.gl/loader-utils": "4.4.0-alpha.14",
52
+ "@loaders.gl/schema": "4.4.0-alpha.14",
53
+ "@loaders.gl/schema-utils": "4.4.0-alpha.14"
54
54
  },
55
55
  "peerDependencies": {
56
56
  "@loaders.gl/core": "4.4.0-alpha.1"
57
57
  },
58
- "gitHead": "5145c7b32353d00f414b85773caa9064af412434"
58
+ "gitHead": "139714d328ba86acff50738576a663917f76db80"
59
59
  }