@3dverse/api 0.2.3 → 0.2.4
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/dist/_prebuild/wrapper.d.ts +6 -8
- package/dist/index.js +2 -2
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -750,13 +750,13 @@ function getEntity({
|
|
|
750
750
|
function updateEntity({
|
|
751
751
|
scene_id,
|
|
752
752
|
entity_id,
|
|
753
|
-
|
|
753
|
+
entityComponents
|
|
754
754
|
}) {
|
|
755
755
|
return axiosInstance({
|
|
756
756
|
operationId: "updateEntity",
|
|
757
757
|
method: "patch",
|
|
758
758
|
url: "/assets/scenes/" + scene_id + "/entities/" + entity_id,
|
|
759
|
-
data:
|
|
759
|
+
data: entityComponents
|
|
760
760
|
});
|
|
761
761
|
}
|
|
762
762
|
function deleteEntity({
|