@loaders.gl/tile-converter 4.3.0-alpha.2 → 4.3.0-alpha.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loaders.gl/tile-converter",
3
- "version": "4.3.0-alpha.2",
3
+ "version": "4.3.0-alpha.3",
4
4
  "description": "Converter",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -53,20 +53,20 @@
53
53
  "copy-certificates": "cp -R src/i3s-server/certs dist/i3s-server"
54
54
  },
55
55
  "dependencies": {
56
- "@loaders.gl/3d-tiles": "4.3.0-alpha.2",
57
- "@loaders.gl/compression": "4.3.0-alpha.2",
58
- "@loaders.gl/crypto": "4.3.0-alpha.2",
59
- "@loaders.gl/draco": "4.3.0-alpha.2",
60
- "@loaders.gl/gltf": "4.3.0-alpha.2",
61
- "@loaders.gl/i3s": "4.3.0-alpha.2",
62
- "@loaders.gl/images": "4.3.0-alpha.2",
63
- "@loaders.gl/loader-utils": "4.3.0-alpha.2",
64
- "@loaders.gl/math": "4.3.0-alpha.2",
65
- "@loaders.gl/polyfills": "4.3.0-alpha.2",
66
- "@loaders.gl/textures": "4.3.0-alpha.2",
67
- "@loaders.gl/tiles": "4.3.0-alpha.2",
68
- "@loaders.gl/worker-utils": "4.3.0-alpha.2",
69
- "@loaders.gl/zip": "4.3.0-alpha.2",
56
+ "@loaders.gl/3d-tiles": "4.3.0-alpha.3",
57
+ "@loaders.gl/compression": "4.3.0-alpha.3",
58
+ "@loaders.gl/crypto": "4.3.0-alpha.3",
59
+ "@loaders.gl/draco": "4.3.0-alpha.3",
60
+ "@loaders.gl/gltf": "4.3.0-alpha.3",
61
+ "@loaders.gl/i3s": "4.3.0-alpha.3",
62
+ "@loaders.gl/images": "4.3.0-alpha.3",
63
+ "@loaders.gl/loader-utils": "4.3.0-alpha.3",
64
+ "@loaders.gl/math": "4.3.0-alpha.3",
65
+ "@loaders.gl/polyfills": "4.3.0-alpha.3",
66
+ "@loaders.gl/textures": "4.3.0-alpha.3",
67
+ "@loaders.gl/tiles": "4.3.0-alpha.3",
68
+ "@loaders.gl/worker-utils": "4.3.0-alpha.3",
69
+ "@loaders.gl/zip": "4.3.0-alpha.3",
70
70
  "@math.gl/core": "^4.0.0",
71
71
  "@math.gl/culling": "^4.0.0",
72
72
  "@math.gl/geoid": "^4.0.0",
@@ -94,5 +94,5 @@
94
94
  "peerDependencies": {
95
95
  "@loaders.gl/core": "^4.0.0"
96
96
  },
97
- "gitHead": "77a3cb538ab7a1fbf74245f25590210451689f5c"
97
+ "gitHead": "3213679d79e6ff2814d48fd3337acfa446c74099"
98
98
  }
@@ -6,7 +6,7 @@ import type {
6
6
  } from '@loaders.gl/3d-tiles';
7
7
  import {Tiles3DArchive} from '@loaders.gl/3d-tiles';
8
8
  import {LoaderWithParser, load} from '@loaders.gl/core';
9
- import {FileHandleFile, FileProvider} from '@loaders.gl/loader-utils';
9
+ import {FileHandleFile, FileProviderInterface} from '@loaders.gl/loader-utils';
10
10
  import {
11
11
  CD_HEADER_SIGNATURE,
12
12
  ZipFileSystem,
@@ -142,7 +142,7 @@ export function isNestedTileset(tile: Tiles3DTileJSONPostprocessed) {
142
142
  * @returns hash table of the 3TZ file content or undefined if the hash file is not presented inside
143
143
  */
144
144
  async function loadHashTable(
145
- fileProvider: FileProvider
145
+ fileProvider: FileProviderInterface
146
146
  ): Promise<undefined | Record<string, bigint>> {
147
147
  let hashTable: undefined | Record<string, bigint>;
148
148