@splinetool/loader 0.9.388 → 0.9.390

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.
@@ -0,0 +1,2 @@
1
+ import { Scene as SplineScene } from 'spe';
2
+ export declare function applyCloners(scene: SplineScene): SplineScene;
@@ -0,0 +1,2 @@
1
+ import { Scene as SplineScene } from 'spe';
2
+ export declare function convertCameras(scene: SplineScene): SplineScene;
@@ -0,0 +1,2 @@
1
+ import { Scene as SplineScene } from 'spe';
2
+ export declare function convertTransmission(scene: SplineScene): SplineScene;
@@ -0,0 +1,5 @@
1
+ import { Scene as SplineScene } from 'spe';
2
+ /**
3
+ * Makes sure no two distinct objects share the same name
4
+ */
5
+ export declare function deduplicateNames(scene: SplineScene): SplineScene;
@@ -0,0 +1,2 @@
1
+ import { Scene as SplineScene } from 'spe';
2
+ export declare function removeJitter(scene: SplineScene): SplineScene;
@@ -0,0 +1,3 @@
1
+ import { ProxiedObject } from 'collab-data';
2
+ import { DocumentData } from 'spline-data';
3
+ export declare function removeOutlineLayers(data: ProxiedObject<DocumentData>): void;
@@ -0,0 +1,2 @@
1
+ import { Scene as SplineScene } from 'spe';
2
+ export declare function restoreMatrixAutoUpdate(scene: SplineScene): SplineScene;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@splinetool/loader",
3
- "version": "0.9.388",
3
+ "version": "0.9.390",
4
4
  "type": "module",
5
5
  "main": "./build/SplineLoader.js",
6
6
  "module": "./build/SplineLoader.js",
@@ -17,7 +17,7 @@
17
17
  "build"
18
18
  ],
19
19
  "scripts": {
20
- "build": "cross-env NODE_ENV=production node --experimental-json-modules ./esbuild.mjs",
20
+ "build": "cross-env NODE_ENV=production node --experimental-json-modules ./esbuild.mjs && yarn build-types",
21
21
  "build-types": "tsc --skipLibCheck --isolatedModules false --noEmit false --emitDeclarationOnly --declaration --outDir build/",
22
22
  "lint": "eslint src/ --max-warnings=0 --cache",
23
23
  "format": "prettier src/ --write",