@mesh-sync/worker-backend-client 4.0.9 → 4.0.11

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/README.md CHANGED
@@ -1358,6 +1358,8 @@ and stores aggregated statistics in Elasticsearch for trend analysis.
1358
1358
 
1359
1359
  - `thumbnail360Views` (array) [✗]: Array of 360° thumbnail view paths (16 angles) for vision-based analysis.
1360
1360
 
1361
+ - `gltfPreviewPath` (string) [✗]: The path to the generated GLTF/GLB 3D preview file.
1362
+
1361
1363
  - `errorMessage` (string) [✗]: An error message if the thumbnail generation failed.
1362
1364
 
1363
1365
  - `storageLocation` (object) [✗]: The storage location of the model.
package/dist/types.d.ts CHANGED
@@ -1015,6 +1015,8 @@ export interface ThumbnailGenerationCompletedMessage {
1015
1015
  thumbnailPath?: string;
1016
1016
  /** Array of 360° thumbnail view paths (16 angles) for vision-based analysis. */
1017
1017
  thumbnail360Views?: Array<Record<string, string | number | boolean>>;
1018
+ /** The path to the generated GLTF/GLB 3D preview file. */
1019
+ gltfPreviewPath?: string;
1018
1020
  /** An error message if the thumbnail generation failed. */
1019
1021
  errorMessage?: string;
1020
1022
  /** The storage location of the model. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mesh-sync/worker-backend-client",
3
- "version": "4.0.9",
3
+ "version": "4.0.11",
4
4
  "description": "Auto-generated TypeScript client for worker-backend - provides type-safe methods for enqueueing jobs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",