New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@loaders.gl/3d-tiles

Package Overview
Dependencies
Maintainers
9
Versions
321
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@loaders.gl/3d-tiles - npm Package Compare versions

Comparing version 4.0.0-alpha.23 to 4.0.0-alpha.24

4

dist/cesium-ion-loader.d.ts

@@ -1,6 +0,6 @@

import type { LoaderWithParser } from '@loaders.gl/loader-utils';
import type { LoaderOptions, LoaderWithParser } from '@loaders.gl/loader-utils';
/**
* Loader for 3D tiles from Cesium ION
*/
export declare const CesiumIonLoader: LoaderWithParser;
export declare const CesiumIonLoader: LoaderWithParser<unknown, never, LoaderOptions>;
//# sourceMappingURL=cesium-ion-loader.d.ts.map

@@ -12,3 +12,3 @@ "use strict";

var _dTilesArchiveParser = require("./3d-tiles-archive/3d-tiles-archive-parser");
var VERSION = typeof "4.0.0-alpha.23" !== 'undefined' ? "4.0.0-alpha.23" : 'latest';
var VERSION = typeof "4.0.0-alpha.24" !== 'undefined' ? "4.0.0-alpha.24" : 'latest';
var Tiles3DArchiveFileLoader = {

@@ -15,0 +15,0 @@ name: '3tz',

@@ -7,4 +7,4 @@ "use strict";

exports.VERSION = void 0;
var VERSION = typeof "4.0.0-alpha.23" !== 'undefined' ? "4.0.0-alpha.23" : 'latest';
var VERSION = typeof "4.0.0-alpha.24" !== 'undefined' ? "4.0.0-alpha.24" : 'latest';
exports.VERSION = VERSION;
//# sourceMappingURL=version.js.map
import { DataViewFile } from '@loaders.gl/loader-utils';
import { parse3DTilesArchive as parse3DTilesArchiveFromProvider } from './3d-tiles-archive/3d-tiles-archive-parser';
const VERSION = typeof "4.0.0-alpha.23" !== 'undefined' ? "4.0.0-alpha.23" : 'latest';
const VERSION = typeof "4.0.0-alpha.24" !== 'undefined' ? "4.0.0-alpha.24" : 'latest';
export const Tiles3DArchiveFileLoader = {

@@ -5,0 +5,0 @@ name: '3tz',

@@ -1,2 +0,2 @@

export const VERSION = typeof "4.0.0-alpha.23" !== 'undefined' ? "4.0.0-alpha.23" : 'latest';
export const VERSION = typeof "4.0.0-alpha.24" !== 'undefined' ? "4.0.0-alpha.24" : 'latest';
//# sourceMappingURL=version.js.map

@@ -1,7 +0,7 @@

import type { LoaderWithParser } from '@loaders.gl/loader-utils';
import type { LoaderOptions, LoaderWithParser } from '@loaders.gl/loader-utils';
import type { Subtree } from './types';
/**
* Loader for 3D Tiles Subtree
*
*/
export declare const Tile3DSubtreeLoader: LoaderWithParser;
export declare const Tile3DSubtreeLoader: LoaderWithParser<Subtree, never, LoaderOptions>;
//# sourceMappingURL=tile-3d-subtree-loader.d.ts.map

@@ -1,6 +0,6 @@

import type { Writer } from '@loaders.gl/loader-utils';
import type { Writer, WriterOptions } from '@loaders.gl/loader-utils';
/**
* Exporter for 3D Tiles
*/
export declare const Tile3DWriter: Writer;
export declare const Tile3DWriter: Writer<unknown, never, WriterOptions>;
//# sourceMappingURL=tile-3d-writer.d.ts.map
{
"name": "@loaders.gl/3d-tiles",
"version": "4.0.0-alpha.23",
"version": "4.0.0-alpha.24",
"description": "3D Tiles, an open standard for streaming massive heterogeneous 3D geospatial datasets.",

@@ -37,8 +37,8 @@ "license": "MIT",

"dependencies": {
"@loaders.gl/draco": "4.0.0-alpha.23",
"@loaders.gl/gltf": "4.0.0-alpha.23",
"@loaders.gl/loader-utils": "4.0.0-alpha.23",
"@loaders.gl/math": "4.0.0-alpha.23",
"@loaders.gl/tiles": "4.0.0-alpha.23",
"@loaders.gl/zip": "4.0.0-alpha.23",
"@loaders.gl/draco": "4.0.0-alpha.24",
"@loaders.gl/gltf": "4.0.0-alpha.24",
"@loaders.gl/loader-utils": "4.0.0-alpha.24",
"@loaders.gl/math": "4.0.0-alpha.24",
"@loaders.gl/tiles": "4.0.0-alpha.24",
"@loaders.gl/zip": "4.0.0-alpha.24",
"@math.gl/core": "^3.5.1",

@@ -52,3 +52,3 @@ "@math.gl/geospatial": "^3.5.1",

},
"gitHead": "e212f2a0c0e342f7cb65ce84fa2ff39f64b7d94b"
"gitHead": "97a8990595c132fb14e3445a8768d9f4cb98ff05"
}

@@ -1,2 +0,2 @@

import type {LoaderWithParser} from '@loaders.gl/loader-utils';
import type {LoaderOptions, LoaderWithParser} from '@loaders.gl/loader-utils';
import {Tiles3DLoader} from './tiles-3d-loader';

@@ -21,3 +21,3 @@ import {getIonTilesetMetadata} from './lib/ion/ion';

*/
export const CesiumIonLoader: LoaderWithParser = {
export const CesiumIonLoader: LoaderWithParser<unknown, never, LoaderOptions> = {
...Tiles3DLoader,

@@ -24,0 +24,0 @@ id: 'cesium-ion',

@@ -1,2 +0,3 @@

import type {LoaderWithParser} from '@loaders.gl/loader-utils';
import type {LoaderOptions, LoaderWithParser} from '@loaders.gl/loader-utils';
import type {Subtree} from './types';
import parse3DTilesSubtree from './lib/parsers/helpers/parse-3d-tile-subtree';

@@ -7,5 +8,4 @@ import {VERSION} from './lib/utils/version';

* Loader for 3D Tiles Subtree
*
*/
export const Tile3DSubtreeLoader: LoaderWithParser = {
export const Tile3DSubtreeLoader: LoaderWithParser<Subtree, never, LoaderOptions> = {
id: '3d-tiles-subtree',

@@ -12,0 +12,0 @@ name: '3D Tiles Subtree',

@@ -1,2 +0,2 @@

import type {Writer} from '@loaders.gl/loader-utils';
import type {Writer, WriterOptions} from '@loaders.gl/loader-utils';
import {VERSION} from './lib/utils/version';

@@ -8,3 +8,3 @@ import encode3DTile from './lib/encoders/encode-3d-tile';

*/
export const Tile3DWriter: Writer = {
export const Tile3DWriter: Writer<unknown, never, WriterOptions> = {
name: '3D Tile',

@@ -11,0 +11,0 @@ id: '3d-tiles',

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc