@3dverse/api 0.8.4 → 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/_prebuild/wrapper.d.ts +243 -95
- package/dist/index.js +12 -0
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +11 -0
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -63,6 +63,7 @@ __export(library_exports, {
|
|
63
63
|
getAssetReferences: () => getAssetReferences,
|
64
64
|
getAssetSourceFile: () => getAssetSourceFile,
|
65
65
|
getAssetThumbnail: () => getAssetThumbnail,
|
66
|
+
getClient: () => getClient,
|
66
67
|
getConversionTaskMetadata: () => getConversionTaskMetadata,
|
67
68
|
getEntity: () => getEntity,
|
68
69
|
getFolderAssets: () => getFolderAssets,
|
@@ -1067,6 +1068,16 @@ function joinSession({
|
|
1067
1068
|
headers
|
1068
1069
|
});
|
1069
1070
|
}
|
1071
|
+
function getClient({
|
1072
|
+
session_id,
|
1073
|
+
client_id
|
1074
|
+
}, headers) {
|
1075
|
+
return axiosInstance({
|
1076
|
+
method: "get",
|
1077
|
+
url: "/sessions/" + session_id + "/clients/" + client_id,
|
1078
|
+
headers
|
1079
|
+
});
|
1080
|
+
}
|
1070
1081
|
function kickClientFromSession({
|
1071
1082
|
session_id,
|
1072
1083
|
client_id
|
@@ -1224,6 +1235,7 @@ function uploadSourceFiles({
|
|
1224
1235
|
getAssetReferences,
|
1225
1236
|
getAssetSourceFile,
|
1226
1237
|
getAssetThumbnail,
|
1238
|
+
getClient,
|
1227
1239
|
getConversionTaskMetadata,
|
1228
1240
|
getEntity,
|
1229
1241
|
getFolderAssets,
|