@3dverse/api 0.4.0 → 0.4.1

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.
@@ -711,7 +711,26 @@ export type GetAssetDescription_Material = {
711
711
  };
712
712
  export type GetAssetDescription_Mesh = {
713
713
  payloadSize: number;
714
- submeshes: Array<GetAssetDescription_Object>;
714
+ submeshes: Array<GetAssetDescription_Submesh>;
715
+ };
716
+ export type GetAssetDescription_Submesh = {
717
+ boundingBox: GetAssetDescription_BoundingBox;
718
+ channels: Array<GetAssetDescription_Channel>;
719
+ indexCount: number;
720
+ payloadSize: number;
721
+ vertexCount: number;
722
+ };
723
+ export type GetAssetDescription_BoundingBox = {
724
+ max: Array<number>;
725
+ min: Array<number>;
726
+ };
727
+ export type GetAssetDescription_Channel = {
728
+ dataOffset: number;
729
+ dataSize: number;
730
+ elementCount: number;
731
+ elementSize: number;
732
+ elementType: StrictUnion<0 | 1 | 2> & number;
733
+ semantic: "invalid" | "index" | "position" | "normal" | "uv" | "color" | "bone_id" | "weight";
715
734
  };
716
735
  export type GetAssetDescription_Module = {
717
736
  functions: GetAssetDescription_Object;