@3dverse/api 0.8.5 → 0.8.6

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/index.mjs CHANGED
@@ -950,6 +950,16 @@ function joinSession({
950
950
  headers
951
951
  });
952
952
  }
953
+ function getClient({
954
+ session_id,
955
+ client_id
956
+ }, headers) {
957
+ return axiosInstance({
958
+ method: "get",
959
+ url: "/sessions/" + session_id + "/clients/" + client_id,
960
+ headers
961
+ });
962
+ }
953
963
  function kickClientFromSession({
954
964
  session_id,
955
965
  client_id
@@ -1106,6 +1116,7 @@ export {
1106
1116
  getAssetReferences,
1107
1117
  getAssetSourceFile,
1108
1118
  getAssetThumbnail,
1119
+ getClient,
1109
1120
  getConversionTaskMetadata,
1110
1121
  getEntity,
1111
1122
  getFolderAssets,