@3dverse/api 0.0.3 → 0.1.0

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.esm.js CHANGED
@@ -1,627 +1,765 @@
1
1
  import axios from 'axios';
2
2
 
3
- /**
4
- * 3dverse v1.0
5
- * # 3dverse API
6
- *
7
- * Welcome to the 3dverse API. The 3dverse API scopes to an API key. Each development environment of an application requires a separate API key.
8
- * Through the API key, you can manage ownership, access, and permissions for each environment.
9
- * Each environment has its own set of users, groups, folders, and assets.
10
- *
11
- *
12
- * Contact: 3dverse Support (support@3dverse.com)
13
- *
14
- * NOTE: This file is auto generated by library-generator (https://gitlab.com/3dverse/libs/library-generator).
15
- * Do not edit this file class manually.
16
- */
17
- //--------------------------------------------------------------------------
18
- const axiosInstance = createAxiosInstance();
19
- //------------------------------------------------------------------------------
20
- function createAxiosInstance() {
21
- const axiosInstance = axios.create({
22
- baseURL: "https://api.3dverse.com/v1"
23
- });
24
- axiosInstance.interceptors.response.use(successFulResponse => {
25
- if (successFulResponse.config.responseType === 'stream') {
26
- successFulResponse.data.pause();
27
- successFulResponse.data.responseContentType = successFulResponse.headers['content-type'];
28
- successFulResponse.data.responseContentLength = successFulResponse.headers['content-length'];
29
- successFulResponse.data.responseStatus = successFulResponse.status;
30
- }
31
- return successFulResponse.data;
32
- }, axiosError => {
33
- if (!axiosError.response) {
34
- return Promise.reject(axiosError);
35
- }
36
- const errorData = axiosError.response.data;
37
- const error = {
38
- errorCode: errorData.error?.errorNum,
39
- status: axiosError.response.status,
40
- error: errorData.error || errorData
41
- };
42
- return Promise.reject(error);
43
- });
44
- return axiosInstance;
45
- }
46
- function listUsers({ offset = 0, limit = 10 }) {
47
- return axiosInstance({
48
- method: "get",
49
- url: "/users",
50
- params: {
51
- offset: offset,
52
- limit: limit
53
- }
54
- });
55
- }
56
- function registerUser({ username }) {
57
- return axiosInstance({
58
- method: "post",
59
- url: "/users",
60
- data: {
61
- username: username
62
- }
63
- });
64
- }
65
- function getUser({ user_id }) {
66
- return axiosInstance({
67
- method: "get",
68
- url: "/users/" + user_id + ""
69
- });
70
- }
71
- //--------------------------------------------------------------------------
72
- // Updates the details of the target user.
73
- function updateUser({ user_id, username }) {
74
- return axiosInstance({
75
- method: "patch",
76
- url: "/users/" + user_id + "",
77
- data: {
78
- username: username
79
- }
80
- });
81
- }
82
- function deleteUser({ user_id }) {
83
- return axiosInstance({
84
- method: "delete",
85
- url: "/users/" + user_id + ""
86
- });
87
- }
88
- function generateUserToken({ user_id, scope, ttl = '1h' }) {
89
- return axiosInstance({
90
- method: "post",
91
- url: "/users/" + user_id + "/tokens",
92
- data: {
93
- scope: scope,
94
- ttl: ttl
95
- }
96
- });
97
- }
98
- function getUserGroups({ user_id }) {
99
- return axiosInstance({
100
- method: "get",
101
- url: "/users/" + user_id + "/groups"
102
- });
103
- }
104
- function getUserUploadTasks({ user_id, offset = 0, limit = 10 }) {
105
- return axiosInstance({
106
- method: "get",
107
- url: "/users/" + user_id + "/upload-tasks",
108
- params: {
109
- offset: offset,
110
- limit: limit
111
- }
112
- });
113
- }
114
- function createGroup({ group_name, group_description, members }) {
115
- return axiosInstance({
116
- method: "post",
117
- url: "/groups",
118
- data: {
119
- group_name: group_name,
120
- group_description: group_description,
121
- members: members
122
- }
123
- });
124
- }
125
- function getGroup({ group_id }) {
126
- return axiosInstance({
127
- method: "get",
128
- url: "/groups/" + group_id + ""
129
- });
130
- }
131
- //--------------------------------------------------------------------------
132
- // Updates a group details.
133
- function updateGroupDescription({ group_id, group_name, group_description }) {
134
- return axiosInstance({
135
- method: "patch",
136
- url: "/groups/" + group_id + "",
137
- data: {
138
- group_name: group_name,
139
- group_description: group_description
140
- }
141
- });
142
- }
143
- //--------------------------------------------------------------------------
144
- // Deletes a group and all its access rights.
145
- function deleteGroup({ group_id }) {
146
- return axiosInstance({
147
- method: "delete",
148
- url: "/groups/" + group_id + ""
149
- });
150
- }
151
- //--------------------------------------------------------------------------
152
- // Grants member access to the group.
153
- function grantMemberAccessToGroup({ group_id, member_type, member_id, group_access, folder_access }) {
154
- return axiosInstance({
155
- method: "put",
156
- url: "/groups/" + group_id + "/members/" + member_type + "/" + member_id + "",
157
- data: {
158
- group_access: group_access,
159
- folder_access: folder_access
160
- }
161
- });
162
- }
163
- //--------------------------------------------------------------------------
164
- // Revoke requested user access to group.
165
- function revokeMemberAccessToGroup({ group_id, member_type, member_id }) {
166
- return axiosInstance({
167
- method: "delete",
168
- url: "/groups/" + group_id + "/members/" + member_type + "/" + member_id + ""
169
- });
170
- }
171
- function listFolders({ offset = 0, limit = 10 }) {
172
- return axiosInstance({
173
- method: "get",
174
- url: "/folders",
175
- params: {
176
- offset: offset,
177
- limit: limit
178
- }
179
- });
180
- }
181
- function createFolder({ folder_name, subfolders }) {
182
- return axiosInstance({
183
- method: "post",
184
- url: "/folders",
185
- data: {
186
- folder_name: folder_name,
187
- subfolders: subfolders
188
- }
189
- });
190
- }
191
- function getFolderInfo({ folder_id }) {
192
- return axiosInstance({
193
- method: "get",
194
- url: "/folders/" + folder_id + ""
195
- });
196
- }
197
- //--------------------------------------------------------------------------
198
- // Move folders inside the specified folder.
199
- function moveFolders({ folder_id, folder_ids }) {
200
- return axiosInstance({
201
- method: "put",
202
- url: "/folders/" + folder_id + "",
203
- data: folder_ids
204
- });
205
- }
206
- //--------------------------------------------------------------------------
207
- // Updates the folder details.
208
- function updateFolder({ folder_id, folder_name }) {
209
- return axiosInstance({
210
- method: "patch",
211
- url: "/folders/" + folder_id + "",
212
- data: {
213
- folder_name: folder_name
214
- }
215
- });
216
- }
217
- //--------------------------------------------------------------------------
218
- // Deletes the requested folder. The target folder must be empty.
219
- function deleteFolder({ folder_id }) {
220
- return axiosInstance({
221
- method: "delete",
222
- url: "/folders/" + folder_id + ""
223
- });
224
- }
225
- function listFolderAccesses({ folder_id }) {
226
- return axiosInstance({
227
- method: "get",
228
- url: "/folders/" + folder_id + "/access"
229
- });
230
- }
231
- //--------------------------------------------------------------------------
232
- // Grants member access to the targeted folder.
233
- function grantMemberAccessToFolder({ folder_id, member_type, member_id, access }) {
234
- return axiosInstance({
235
- method: "put",
236
- url: "/folders/" + folder_id + "/access/" + member_type + "/" + member_id + "",
237
- data: {
238
- access: access
239
- }
240
- });
241
- }
242
- //--------------------------------------------------------------------------
243
- // Revokes member access to a target folder.
244
- function revokeMemberAccessToFolder({ folder_id, member_type, member_id }) {
245
- return axiosInstance({
246
- method: "delete",
247
- url: "/folders/" + folder_id + "/access/" + member_type + "/" + member_id + ""
248
- });
249
- }
250
- function createSubfolder({ folder_id, folder_name, subfolders }) {
251
- return axiosInstance({
252
- method: "post",
253
- url: "/folders/" + folder_id + "/folders",
254
- data: {
255
- folder_name: folder_name,
256
- subfolders: subfolders
257
- }
258
- });
259
- }
260
- function listFolderSubFolders({ folder_id, depth = 0 }) {
261
- return axiosInstance({
262
- method: "get",
263
- url: "/folders/" + folder_id + "/folders",
264
- params: {
265
- depth: depth
266
- }
267
- });
268
- }
269
- function uploadSourceFiles({ folder_id, body }) {
270
- return axiosInstance({
271
- method: "post",
272
- url: "/folders/" + folder_id + "/source-files",
273
- headers: {
274
- "Content-Type": "multipart/form-data"
275
- },
276
- data: body
277
- });
278
- }
279
- function getSourceFilesInFolder({ folder_id, offset = 0, limit = 10 }) {
280
- return axiosInstance({
281
- method: "get",
282
- url: "/folders/" + folder_id + "/source-files",
283
- params: {
284
- offset: offset,
285
- limit: limit
286
- }
287
- });
288
- }
289
- //--------------------------------------------------------------------------
290
- // Move source files inside the specified folder.
291
- function moveSourceFiles({ folder_id, source_file_ids }) {
292
- return axiosInstance({
293
- method: "put",
294
- url: "/folders/" + folder_id + "/source-files",
295
- data: source_file_ids
296
- });
297
- }
298
- function getUploadTasksInFolder({ folder_id, offset = 0, limit = 10 }) {
299
- return axiosInstance({
300
- method: "get",
301
- url: "/folders/" + folder_id + "/upload-tasks",
302
- params: {
303
- offset: offset,
304
- limit: limit
305
- }
306
- });
307
- }
308
- function getFolderAssets({ folder_id }) {
309
- return axiosInstance({
310
- method: "get",
311
- url: "/folders/" + folder_id + "/assets"
312
- });
313
- }
314
- //--------------------------------------------------------------------------
315
- // Move assets inside the specified folder.
316
- function moveAssets({ folder_id, asset_ids }) {
317
- return axiosInstance({
318
- method: "put",
319
- url: "/folders/" + folder_id + "/assets",
320
- data: asset_ids
321
- });
322
- }
323
- function createAsset({ folder_id, asset_container_creatable, body }) {
324
- return axiosInstance({
325
- method: "post",
326
- url: "/folders/" + folder_id + "/assets/" + asset_container_creatable + "",
327
- data: body
328
- });
329
- }
330
- function getSessionsInFolder({ folder_id }) {
331
- return axiosInstance({
332
- method: "get",
333
- url: "/folders/" + folder_id + "/sessions"
334
- });
335
- }
336
- function listSourceFiles({ offset = 0, limit = 10 }) {
337
- return axiosInstance({
338
- method: "get",
339
- url: "/source-files",
340
- params: {
341
- offset: offset,
342
- limit: limit
343
- }
344
- });
345
- }
346
- //--------------------------------------------------------------------------
347
- // Deletes the target source files. Deleting a source file is permanent.
348
- function deleteSourceFiles({ source_file_ids }) {
349
- return axiosInstance({
350
- method: "delete",
351
- url: "/source-files",
352
- data: source_file_ids
353
- });
354
- }
355
- //--------------------------------------------------------------------------
356
- // Downloads the target source file.
357
- function downloadSourceFile({ source_file_id }) {
358
- return axiosInstance({
359
- method: "get",
360
- url: "/source-files/" + source_file_id + "",
361
- responseType: "arraybuffer"
362
- });
363
- }
364
- function getSourceFileDetails({ source_file_id }) {
365
- return axiosInstance({
366
- method: "get",
367
- url: "/source-files/" + source_file_id + "/details"
368
- });
369
- }
370
- //--------------------------------------------------------------------------
371
- // Updates details for a specific source file.
372
- function updateSourceFileDetails({ source_file_id, source_file_name }) {
373
- return axiosInstance({
374
- method: "patch",
375
- url: "/source-files/" + source_file_id + "/details",
376
- data: {
377
- source_file_name: source_file_name
378
- }
379
- });
380
- }
381
- function getSourceFileAssets({ source_file_id }) {
382
- return axiosInstance({
383
- method: "get",
384
- url: "/source-files/" + source_file_id + "/assets"
385
- });
386
- }
387
- function getUploadTask({ upload_task_id }) {
388
- return axiosInstance({
389
- method: "get",
390
- url: "/upload-tasks/" + upload_task_id + ""
391
- });
392
- }
393
- function listAssets({ offset = 0, limit = 10 }) {
394
- return axiosInstance({
395
- method: "get",
396
- url: "/assets",
397
- params: {
398
- offset: offset,
399
- limit: limit
400
- }
401
- });
402
- }
403
- //--------------------------------------------------------------------------
404
- // Batch delete assets. You **MUST NOT** reference assets.
405
- function deleteAssets({ asset_ids }) {
406
- return axiosInstance({
407
- method: "delete",
408
- url: "/assets",
409
- data: asset_ids
410
- });
411
- }
412
- //--------------------------------------------------------------------------
413
- // Deletes the asset.
414
- function deleteAsset({ asset_container, asset_id }) {
415
- return axiosInstance({
416
- method: "delete",
417
- url: "/assets/" + asset_container + "/" + asset_id + ""
418
- });
419
- }
420
- function getAssetSourceFile({ asset_container, asset_id }) {
421
- return axiosInstance({
422
- method: "get",
423
- url: "/assets/" + asset_container + "/" + asset_id + "/source-file"
424
- });
425
- }
426
- function getAssetDetails({ asset_container, asset_id }) {
427
- return axiosInstance({
428
- method: "get",
429
- url: "/assets/" + asset_container + "/" + asset_id + "/details"
430
- });
431
- }
432
- function getAssetFolder({ asset_container, asset_id }) {
433
- return axiosInstance({
434
- method: "get",
435
- url: "/assets/" + asset_container + "/" + asset_id + "/folder"
436
- });
437
- }
438
- function getAssetDependencies({ asset_container, asset_id, format = 'flat', depth = 'all', filter }) {
439
- return axiosInstance({
440
- method: "get",
441
- url: "/assets/" + asset_container + "/" + asset_id + "/dependencies",
442
- params: {
443
- format: format,
444
- depth: depth,
445
- filter: filter
446
- }
447
- });
448
- }
449
- function getAssetReferences({ asset_container, asset_id }) {
450
- return axiosInstance({
451
- method: "get",
452
- url: "/assets/" + asset_container + "/" + asset_id + "/references"
453
- });
454
- }
455
- function getAssetDescription({ asset_container, asset_id }) {
456
- return axiosInstance({
457
- method: "get",
458
- url: "/assets/" + asset_container + "/" + asset_id + "/description"
459
- });
460
- }
461
- //--------------------------------------------------------------------------
462
- // Updates asset description. Supports only updating name.
463
- function updateAssetDescription({ asset_container, asset_id, name }) {
464
- return axiosInstance({
465
- method: "patch",
466
- url: "/assets/" + asset_container + "/" + asset_id + "/description",
467
- data: {
468
- name: name
469
- }
470
- });
471
- }
472
- //--------------------------------------------------------------------------
473
- // Gets the asset payload from the specified asset.
474
- function getAssetPayload({ asset_container_with_payload, asset_id }) {
475
- return axiosInstance({
476
- method: "get",
477
- url: "/assets/" + asset_container_with_payload + "/" + asset_id + "/payload",
478
- responseType: "arraybuffer"
479
- });
480
- }
481
- function getAssetHistory({ asset_container, asset_id }) {
482
- return axiosInstance({
483
- method: "get",
484
- url: "/assets/" + asset_container + "/" + asset_id + "/history"
485
- });
486
- }
487
- function getAssetMeta({ asset_container, asset_id }) {
488
- return axiosInstance({
489
- method: "get",
490
- url: "/assets/" + asset_container + "/" + asset_id + "/meta"
491
- });
492
- }
493
- //--------------------------------------------------------------------------
494
- // Gets the code of the specified asset.
495
- function getAssetCode({ asset_container_with_code, asset_id }) {
496
- return axiosInstance({
497
- method: "get",
498
- url: "/assets/" + asset_container_with_code + "/" + asset_id + "/code"
499
- });
500
- }
501
- //--------------------------------------------------------------------------
502
- // Gets the asset thumbnail from the specified asset.
503
- function getAssetThumbnail({ asset_container, asset_id, size, default_url }) {
504
- return axiosInstance({
505
- method: "get",
506
- url: "/assets/" + asset_container + "/" + asset_id + "/thumbnail",
507
- params: {
508
- size: size,
509
- default_url: default_url
510
- }
511
- });
512
- }
513
- //--------------------------------------------------------------------------
514
- // Assigns a thumbnail to the specified asset.
515
- function setAssetThumbnail({ asset_container, asset_id, body }, contentType) {
516
- return axiosInstance({
517
- method: "put",
518
- url: "/assets/" + asset_container + "/" + asset_id + "/thumbnail",
519
- headers: {
520
- "Content-Type": contentType
521
- },
522
- data: body
523
- });
524
- }
525
- function getAssetCustomTypes({ asset_container_with_custom_types, asset_id }) {
526
- return axiosInstance({
527
- method: "get",
528
- url: "/assets/" + asset_container_with_custom_types + "/" + asset_id + "/custom-types"
529
- });
530
- }
531
- //--------------------------------------------------------------------------
532
- // Packages and downloads the target asset.
533
- function packageAsset({ asset_container, asset_id }) {
534
- return axiosInstance({
535
- method: "get",
536
- url: "/assets/" + asset_container + "/" + asset_id + "/package",
537
- responseType: "arraybuffer"
538
- });
539
- }
540
- //--------------------------------------------------------------------------
541
- // Downloads an asset payload in a given format. Only mesh is supported for the moment. This endpoint requires special export permission.
542
- function exportAsset({ asset_container_exportable, asset_id, format, scale = 1 }) {
543
- return axiosInstance({
544
- method: "get",
545
- url: "/assets/" + asset_container_exportable + "/" + asset_id + "/exports/" + format + "",
546
- responseType: "arraybuffer",
547
- params: {
548
- scale: scale
549
- }
550
- });
551
- }
552
- function getSceneSessions({ scene_id }) {
553
- return axiosInstance({
554
- method: "get",
555
- url: "/assets/scenes/" + scene_id + "/sessions"
556
- });
557
- }
558
- function getSceneAABB({ scene_id }) {
559
- return axiosInstance({
560
- method: "get",
561
- url: "/assets/scenes/" + scene_id + "/aabb"
562
- });
563
- }
564
- function getEntity({ scene_id, entity_id, compute_global_transform = false }) {
565
- return axiosInstance({
566
- method: "get",
567
- url: "/assets/scenes/" + scene_id + "/entities/" + entity_id + "",
568
- params: {
569
- compute_global_transform: compute_global_transform
570
- }
571
- });
572
- }
573
- function createSession({ scene_id }) {
574
- return axiosInstance({
575
- method: "post",
576
- url: "/sessions",
577
- data: {
578
- scene_id: scene_id
579
- }
580
- });
581
- }
582
- function getSession({ session_id }) {
583
- return axiosInstance({
584
- method: "get",
585
- url: "/sessions/" + session_id + ""
586
- });
587
- }
588
- //--------------------------------------------------------------------------
589
- // Forcefully terminates a session.
590
- function killSession({ session_id }) {
591
- return axiosInstance({
592
- method: "delete",
593
- url: "/sessions/" + session_id + ""
594
- });
595
- }
596
- function joinSession({ session_id }) {
597
- return axiosInstance({
598
- method: "post",
599
- url: "/sessions/" + session_id + "/clients"
600
- });
601
- }
602
- //--------------------------------------------------------------------------
603
- // Kick a client from a running session.
604
- function kickClientFromSession({ session_id, client_id }) {
605
- return axiosInstance({
606
- method: "delete",
607
- url: "/sessions/" + session_id + "/clients/" + client_id + ""
608
- });
3
+ /**
4
+ * 3dverse v1.0
5
+ * # 3dverse API
6
+ *
7
+ * Welcome to the 3dverse API. The 3dverse API scopes to an API key. Each development environment of an application requires a separate API key.
8
+ * Through the API key, you can manage ownership, access, and permissions for each environment.
9
+ * Each environment has its own set of users, groups, folders, and assets.
10
+ *
11
+ *
12
+ * Contact: 3dverse Support (support@3dverse.com)
13
+ *
14
+ * NOTE: This file is auto generated by library-generator (https://gitlab.com/3dverse/libs/library-generator).
15
+ * Do not edit this file class manually.
16
+ */
17
+ //--------------------------------------------------------------------------
18
+ const axiosInstance = axios.create({
19
+ baseURL: "https://api.3dverse.com/app/v1",
20
+ operationId: "3dverse"
21
+ });
22
+ //------------------------------------------------------------------------------
23
+ function setBaseURL(baseURL) {
24
+ axiosInstance.defaults.baseURL = baseURL;
25
+ }
26
+ function listUsers({ offset = 0, limit = 10 }) {
27
+ return axiosInstance({
28
+ operationId: "listUsers",
29
+ method: "get",
30
+ url: "/users",
31
+ params: {
32
+ offset: offset,
33
+ limit: limit
34
+ }
35
+ });
36
+ }
37
+ function registerUser({ username }) {
38
+ return axiosInstance({
39
+ operationId: "registerUser",
40
+ method: "post",
41
+ url: "/users",
42
+ data: {
43
+ username: username
44
+ }
45
+ });
46
+ }
47
+ function getUser({ user_id }) {
48
+ return axiosInstance({
49
+ operationId: "getUser",
50
+ method: "get",
51
+ url: "/users/" + user_id + ""
52
+ });
53
+ }
54
+ //--------------------------------------------------------------------------
55
+ // Updates the details of the target user.
56
+ function updateUser({ user_id, username }) {
57
+ return axiosInstance({
58
+ operationId: "updateUser",
59
+ method: "patch",
60
+ url: "/users/" + user_id + "",
61
+ data: {
62
+ username: username
63
+ }
64
+ });
65
+ }
66
+ function deleteUser({ user_id }) {
67
+ return axiosInstance({
68
+ operationId: "deleteUser",
69
+ method: "delete",
70
+ url: "/users/" + user_id + ""
71
+ });
72
+ }
73
+ function generateUserToken({ user_id, scope, ttl = '1h' }) {
74
+ return axiosInstance({
75
+ operationId: "generateUserToken",
76
+ method: "post",
77
+ url: "/users/" + user_id + "/tokens",
78
+ data: {
79
+ scope: scope,
80
+ ttl: ttl
81
+ }
82
+ });
83
+ }
84
+ function getUserGroups({ user_id }) {
85
+ return axiosInstance({
86
+ operationId: "getUserGroups",
87
+ method: "get",
88
+ url: "/users/" + user_id + "/groups"
89
+ });
90
+ }
91
+ function getUserUploadTasks({ user_id, offset = 0, limit = 10 }) {
92
+ return axiosInstance({
93
+ operationId: "getUserUploadTasks",
94
+ method: "get",
95
+ url: "/users/" + user_id + "/upload-tasks",
96
+ params: {
97
+ offset: offset,
98
+ limit: limit
99
+ }
100
+ });
101
+ }
102
+ function createGroup({ group_name, group_description, members }) {
103
+ return axiosInstance({
104
+ operationId: "createGroup",
105
+ method: "post",
106
+ url: "/groups",
107
+ data: {
108
+ group_name: group_name,
109
+ group_description: group_description,
110
+ members: members
111
+ }
112
+ });
113
+ }
114
+ function getGroup({ group_id }) {
115
+ return axiosInstance({
116
+ operationId: "getGroup",
117
+ method: "get",
118
+ url: "/groups/" + group_id + ""
119
+ });
120
+ }
121
+ //--------------------------------------------------------------------------
122
+ // Updates a group details.
123
+ function updateGroupDescription({ group_id, group_name, group_description }) {
124
+ return axiosInstance({
125
+ operationId: "updateGroupDescription",
126
+ method: "patch",
127
+ url: "/groups/" + group_id + "",
128
+ data: {
129
+ group_name: group_name,
130
+ group_description: group_description
131
+ }
132
+ });
133
+ }
134
+ //--------------------------------------------------------------------------
135
+ // Deletes a group and all its access rights.
136
+ function deleteGroup({ group_id }) {
137
+ return axiosInstance({
138
+ operationId: "deleteGroup",
139
+ method: "delete",
140
+ url: "/groups/" + group_id + ""
141
+ });
142
+ }
143
+ //--------------------------------------------------------------------------
144
+ // Grants member access to the group.
145
+ function grantMemberAccessToGroup({ group_id, member_type, member_id, group_access, folder_access }) {
146
+ return axiosInstance({
147
+ operationId: "grantMemberAccessToGroup",
148
+ method: "put",
149
+ url: "/groups/" + group_id + "/members/" + member_type + "/" + member_id + "",
150
+ data: {
151
+ group_access: group_access,
152
+ folder_access: folder_access
153
+ }
154
+ });
155
+ }
156
+ //--------------------------------------------------------------------------
157
+ // Revoke requested user access to group.
158
+ function revokeMemberAccessToGroup({ group_id, member_type, member_id }) {
159
+ return axiosInstance({
160
+ operationId: "revokeMemberAccessToGroup",
161
+ method: "delete",
162
+ url: "/groups/" + group_id + "/members/" + member_type + "/" + member_id + ""
163
+ });
164
+ }
165
+ function listFolders({ offset = 0, limit = 10 }) {
166
+ return axiosInstance({
167
+ operationId: "listFolders",
168
+ method: "get",
169
+ url: "/folders",
170
+ params: {
171
+ offset: offset,
172
+ limit: limit
173
+ }
174
+ });
175
+ }
176
+ function createFolder({ folder_name, subfolders }) {
177
+ return axiosInstance({
178
+ operationId: "createFolder",
179
+ method: "post",
180
+ url: "/folders",
181
+ data: {
182
+ folder_name: folder_name,
183
+ subfolders: subfolders
184
+ }
185
+ });
186
+ }
187
+ function getFolderInfo({ folder_id }) {
188
+ return axiosInstance({
189
+ operationId: "getFolderInfo",
190
+ method: "get",
191
+ url: "/folders/" + folder_id + ""
192
+ });
193
+ }
194
+ //--------------------------------------------------------------------------
195
+ // Move folders inside the specified folder.
196
+ function moveFolders({ folder_id, folderIds }) {
197
+ return axiosInstance({
198
+ operationId: "moveFolders",
199
+ method: "put",
200
+ url: "/folders/" + folder_id + "",
201
+ data: folderIds
202
+ });
203
+ }
204
+ //--------------------------------------------------------------------------
205
+ // Updates the folder details.
206
+ function updateFolder({ folder_id, folder_name }) {
207
+ return axiosInstance({
208
+ operationId: "updateFolder",
209
+ method: "patch",
210
+ url: "/folders/" + folder_id + "",
211
+ data: {
212
+ folder_name: folder_name
213
+ }
214
+ });
215
+ }
216
+ //--------------------------------------------------------------------------
217
+ // Deletes the requested folder. The target folder must be empty.
218
+ function deleteFolder({ folder_id }) {
219
+ return axiosInstance({
220
+ operationId: "deleteFolder",
221
+ method: "delete",
222
+ url: "/folders/" + folder_id + ""
223
+ });
224
+ }
225
+ function listFolderAccesses({ folder_id }) {
226
+ return axiosInstance({
227
+ operationId: "listFolderAccesses",
228
+ method: "get",
229
+ url: "/folders/" + folder_id + "/access"
230
+ });
231
+ }
232
+ //--------------------------------------------------------------------------
233
+ // Grants member access to the targeted folder.
234
+ function grantMemberAccessToFolder({ folder_id, member_type, member_id, access }) {
235
+ return axiosInstance({
236
+ operationId: "grantMemberAccessToFolder",
237
+ method: "put",
238
+ url: "/folders/" + folder_id + "/access/" + member_type + "/" + member_id + "",
239
+ data: {
240
+ access: access
241
+ }
242
+ });
243
+ }
244
+ //--------------------------------------------------------------------------
245
+ // Revokes member access to a target folder.
246
+ function revokeMemberAccessToFolder({ folder_id, member_type, member_id }) {
247
+ return axiosInstance({
248
+ operationId: "revokeMemberAccessToFolder",
249
+ method: "delete",
250
+ url: "/folders/" + folder_id + "/access/" + member_type + "/" + member_id + ""
251
+ });
252
+ }
253
+ function createSubfolder({ folder_id, folder_name, subfolders }) {
254
+ return axiosInstance({
255
+ operationId: "createSubfolder",
256
+ method: "post",
257
+ url: "/folders/" + folder_id + "/folders",
258
+ data: {
259
+ folder_name: folder_name,
260
+ subfolders: subfolders
261
+ }
262
+ });
263
+ }
264
+ function listFolderSubFolders({ folder_id, depth = 0 }) {
265
+ return axiosInstance({
266
+ operationId: "listFolderSubFolders",
267
+ method: "get",
268
+ url: "/folders/" + folder_id + "/folders",
269
+ params: {
270
+ depth: depth
271
+ }
272
+ });
273
+ }
274
+ function uploadSourceFiles({ folder_id, body }) {
275
+ return axiosInstance({
276
+ operationId: "uploadSourceFiles",
277
+ method: "post",
278
+ url: "/folders/" + folder_id + "/source-files",
279
+ headers: {
280
+ "Content-Type": "multipart/form-data"
281
+ },
282
+ data: body
283
+ });
284
+ }
285
+ function getSourceFilesInFolder({ folder_id, offset = 0, limit = 10 }) {
286
+ return axiosInstance({
287
+ operationId: "getSourceFilesInFolder",
288
+ method: "get",
289
+ url: "/folders/" + folder_id + "/source-files",
290
+ params: {
291
+ offset: offset,
292
+ limit: limit
293
+ }
294
+ });
295
+ }
296
+ //--------------------------------------------------------------------------
297
+ // Move source files inside the specified folder.
298
+ function moveSourceFiles({ folder_id, sourceFileIds }) {
299
+ return axiosInstance({
300
+ operationId: "moveSourceFiles",
301
+ method: "put",
302
+ url: "/folders/" + folder_id + "/source-files",
303
+ data: sourceFileIds
304
+ });
305
+ }
306
+ function getUploadTasksInFolder({ folder_id, offset = 0, limit = 10 }) {
307
+ return axiosInstance({
308
+ operationId: "getUploadTasksInFolder",
309
+ method: "get",
310
+ url: "/folders/" + folder_id + "/upload-tasks",
311
+ params: {
312
+ offset: offset,
313
+ limit: limit
314
+ }
315
+ });
316
+ }
317
+ function getFolderAssets({ folder_id, offset = 0, limit = 10 }) {
318
+ return axiosInstance({
319
+ operationId: "getFolderAssets",
320
+ method: "get",
321
+ url: "/folders/" + folder_id + "/assets",
322
+ params: {
323
+ offset: offset,
324
+ limit: limit
325
+ }
326
+ });
327
+ }
328
+ //--------------------------------------------------------------------------
329
+ // Move assets inside the specified folder.
330
+ function moveAssets({ folder_id, assetIds }) {
331
+ return axiosInstance({
332
+ operationId: "moveAssets",
333
+ method: "put",
334
+ url: "/folders/" + folder_id + "/assets",
335
+ data: assetIds
336
+ });
337
+ }
338
+ function createAsset({ folder_id, asset_container_creatable, assetCreationOptions }) {
339
+ return axiosInstance({
340
+ operationId: "createAsset",
341
+ method: "post",
342
+ url: "/folders/" + folder_id + "/assets/" + asset_container_creatable + "",
343
+ data: assetCreationOptions
344
+ });
345
+ }
346
+ function getSessionsInFolder({ folder_id }) {
347
+ return axiosInstance({
348
+ operationId: "getSessionsInFolder",
349
+ method: "get",
350
+ url: "/folders/" + folder_id + "/sessions"
351
+ });
352
+ }
353
+ function listSourceFiles({ offset = 0, limit = 10 }) {
354
+ return axiosInstance({
355
+ operationId: "listSourceFiles",
356
+ method: "get",
357
+ url: "/source-files",
358
+ params: {
359
+ offset: offset,
360
+ limit: limit
361
+ }
362
+ });
363
+ }
364
+ //--------------------------------------------------------------------------
365
+ // Deletes the target source files. Deleting a source file is permanent.
366
+ function deleteSourceFiles({ sourceFileIds }) {
367
+ return axiosInstance({
368
+ operationId: "deleteSourceFiles",
369
+ method: "delete",
370
+ url: "/source-files",
371
+ data: sourceFileIds
372
+ });
373
+ }
374
+ //--------------------------------------------------------------------------
375
+ // Downloads the target source file.
376
+ function downloadSourceFile({ source_file_id }) {
377
+ return axiosInstance({
378
+ operationId: "downloadSourceFile",
379
+ method: "get",
380
+ url: "/source-files/" + source_file_id + "",
381
+ responseType: "arraybuffer"
382
+ });
383
+ }
384
+ function getSourceFileDetails({ source_file_id }) {
385
+ return axiosInstance({
386
+ operationId: "getSourceFileDetails",
387
+ method: "get",
388
+ url: "/source-files/" + source_file_id + "/details"
389
+ });
390
+ }
391
+ //--------------------------------------------------------------------------
392
+ // Updates details for a specific source file.
393
+ function updateSourceFileDetails({ source_file_id, source_file_name }) {
394
+ return axiosInstance({
395
+ operationId: "updateSourceFileDetails",
396
+ method: "patch",
397
+ url: "/source-files/" + source_file_id + "/details",
398
+ data: {
399
+ source_file_name: source_file_name
400
+ }
401
+ });
402
+ }
403
+ function getSourceFileAssets({ source_file_id }) {
404
+ return axiosInstance({
405
+ operationId: "getSourceFileAssets",
406
+ method: "get",
407
+ url: "/source-files/" + source_file_id + "/assets"
408
+ });
409
+ }
410
+ function getUploadTask({ upload_task_id }) {
411
+ return axiosInstance({
412
+ operationId: "getUploadTask",
413
+ method: "get",
414
+ url: "/upload-tasks/" + upload_task_id + ""
415
+ });
416
+ }
417
+ function listAssets({ offset = 0, limit = 10 }) {
418
+ return axiosInstance({
419
+ operationId: "listAssets",
420
+ method: "get",
421
+ url: "/assets",
422
+ params: {
423
+ offset: offset,
424
+ limit: limit
425
+ }
426
+ });
427
+ }
428
+ //--------------------------------------------------------------------------
429
+ // Batch delete assets. You **MUST NOT** reference assets.
430
+ function deleteAssets({ assetIds }) {
431
+ return axiosInstance({
432
+ operationId: "deleteAssets",
433
+ method: "delete",
434
+ url: "/assets",
435
+ data: assetIds
436
+ });
437
+ }
438
+ //--------------------------------------------------------------------------
439
+ // Deletes the asset.
440
+ function deleteAsset({ asset_container, asset_id }) {
441
+ return axiosInstance({
442
+ operationId: "deleteAsset",
443
+ method: "delete",
444
+ url: "/assets/" + asset_container + "/" + asset_id + ""
445
+ });
446
+ }
447
+ function getAssetSourceFile({ asset_container, asset_id }) {
448
+ return axiosInstance({
449
+ operationId: "getAssetSourceFile",
450
+ method: "get",
451
+ url: "/assets/" + asset_container + "/" + asset_id + "/source-file"
452
+ });
453
+ }
454
+ function getAssetDetails({ asset_container, asset_id }) {
455
+ return axiosInstance({
456
+ operationId: "getAssetDetails",
457
+ method: "get",
458
+ url: "/assets/" + asset_container + "/" + asset_id + "/details"
459
+ });
460
+ }
461
+ function getAssetFolder({ asset_container, asset_id }) {
462
+ return axiosInstance({
463
+ operationId: "getAssetFolder",
464
+ method: "get",
465
+ url: "/assets/" + asset_container + "/" + asset_id + "/folder"
466
+ });
467
+ }
468
+ function getAssetDependencies({ asset_container, asset_id, format = 'flat', depth = 'all', filter }) {
469
+ return axiosInstance({
470
+ operationId: "getAssetDependencies",
471
+ method: "get",
472
+ url: "/assets/" + asset_container + "/" + asset_id + "/dependencies",
473
+ params: {
474
+ format: format,
475
+ depth: depth,
476
+ filter: filter
477
+ }
478
+ });
479
+ }
480
+ function getAssetReferences({ asset_container, asset_id }) {
481
+ return axiosInstance({
482
+ operationId: "getAssetReferences",
483
+ method: "get",
484
+ url: "/assets/" + asset_container + "/" + asset_id + "/references"
485
+ });
486
+ }
487
+ function getAssetDescription({ asset_container, asset_id }) {
488
+ return axiosInstance({
489
+ operationId: "getAssetDescription",
490
+ method: "get",
491
+ url: "/assets/" + asset_container + "/" + asset_id + "/description"
492
+ });
493
+ }
494
+ function updateAssetDescription({ asset_container, asset_id, assetDescription }) {
495
+ return axiosInstance({
496
+ operationId: "updateAssetDescription",
497
+ method: "patch",
498
+ url: "/assets/" + asset_container + "/" + asset_id + "/description",
499
+ data: assetDescription
500
+ });
501
+ }
502
+ //--------------------------------------------------------------------------
503
+ // Gets the asset payload from the specified asset.
504
+ function getAssetPayload({ asset_container_with_payload, asset_id }) {
505
+ return axiosInstance({
506
+ operationId: "getAssetPayload",
507
+ method: "get",
508
+ url: "/assets/" + asset_container_with_payload + "/" + asset_id + "/payload",
509
+ responseType: "arraybuffer"
510
+ });
511
+ }
512
+ function getAssetHistory({ asset_container, asset_id }) {
513
+ return axiosInstance({
514
+ operationId: "getAssetHistory",
515
+ method: "get",
516
+ url: "/assets/" + asset_container + "/" + asset_id + "/history"
517
+ });
518
+ }
519
+ function getAssetMeta({ asset_container, asset_id }) {
520
+ return axiosInstance({
521
+ operationId: "getAssetMeta",
522
+ method: "get",
523
+ url: "/assets/" + asset_container + "/" + asset_id + "/meta"
524
+ });
525
+ }
526
+ //--------------------------------------------------------------------------
527
+ // Gets the code of the specified asset.
528
+ function getAssetCode({ asset_container_with_code, asset_id }) {
529
+ return axiosInstance({
530
+ operationId: "getAssetCode",
531
+ method: "get",
532
+ url: "/assets/" + asset_container_with_code + "/" + asset_id + "/code"
533
+ });
534
+ }
535
+ //--------------------------------------------------------------------------
536
+ // Gets the asset thumbnail from the specified asset.
537
+ function getAssetThumbnail({ asset_container, asset_id, size, default_url }) {
538
+ return axiosInstance({
539
+ operationId: "getAssetThumbnail",
540
+ method: "get",
541
+ url: "/assets/" + asset_container + "/" + asset_id + "/thumbnail",
542
+ params: {
543
+ size: size,
544
+ default_url: default_url
545
+ }
546
+ });
547
+ }
548
+ //--------------------------------------------------------------------------
549
+ // Assigns a thumbnail to the specified asset.
550
+ function setAssetThumbnail({ asset_container, asset_id, body }, contentType) {
551
+ return axiosInstance({
552
+ operationId: "setAssetThumbnail",
553
+ method: "put",
554
+ url: "/assets/" + asset_container + "/" + asset_id + "/thumbnail",
555
+ headers: {
556
+ "Content-Type": contentType
557
+ },
558
+ data: body
559
+ });
560
+ }
561
+ function getAssetCustomTypes({ asset_container_with_custom_types, asset_id }) {
562
+ return axiosInstance({
563
+ operationId: "getAssetCustomTypes",
564
+ method: "get",
565
+ url: "/assets/" + asset_container_with_custom_types + "/" + asset_id + "/custom-types"
566
+ });
567
+ }
568
+ //--------------------------------------------------------------------------
569
+ // Packages and downloads the target asset.
570
+ function packageAsset({ asset_container, asset_id }) {
571
+ return axiosInstance({
572
+ operationId: "packageAsset",
573
+ method: "get",
574
+ url: "/assets/" + asset_container + "/" + asset_id + "/package",
575
+ responseType: "arraybuffer"
576
+ });
577
+ }
578
+ //--------------------------------------------------------------------------
579
+ // Downloads an asset payload in a given format. Only mesh is supported for the moment. This endpoint requires special export permission.
580
+ function exportAsset({ asset_container_exportable, asset_id, format, scale = 1 }) {
581
+ return axiosInstance({
582
+ operationId: "exportAsset",
583
+ method: "get",
584
+ url: "/assets/" + asset_container_exportable + "/" + asset_id + "/exports/" + format + "",
585
+ responseType: "arraybuffer",
586
+ params: {
587
+ scale: scale
588
+ }
589
+ });
590
+ }
591
+ function getSceneSessions({ scene_id }) {
592
+ return axiosInstance({
593
+ operationId: "getSceneSessions",
594
+ method: "get",
595
+ url: "/assets/scenes/" + scene_id + "/sessions"
596
+ });
597
+ }
598
+ function getSceneAABB({ scene_id }) {
599
+ return axiosInstance({
600
+ operationId: "getSceneAABB",
601
+ method: "get",
602
+ url: "/assets/scenes/" + scene_id + "/aabb"
603
+ });
604
+ }
605
+ function getEntity({ scene_id, entity_id, compute_global_transform = false }) {
606
+ return axiosInstance({
607
+ operationId: "getEntity",
608
+ method: "get",
609
+ url: "/assets/scenes/" + scene_id + "/entities/" + entity_id + "",
610
+ params: {
611
+ compute_global_transform: compute_global_transform
612
+ }
613
+ });
614
+ }
615
+ function updateEntity({ scene_id, entity_id, entity }) {
616
+ return axiosInstance({
617
+ operationId: "updateEntity",
618
+ method: "patch",
619
+ url: "/assets/scenes/" + scene_id + "/entities/" + entity_id + "",
620
+ data: entity
621
+ });
622
+ }
623
+ //--------------------------------------------------------------------------
624
+ // Delete a specific entity from a scene
625
+ function deleteEntity({ scene_id, entity_id }) {
626
+ return axiosInstance({
627
+ operationId: "deleteEntity",
628
+ method: "delete",
629
+ url: "/assets/scenes/" + scene_id + "/entities/" + entity_id + ""
630
+ });
631
+ }
632
+ function createSession({ scene_id }) {
633
+ return axiosInstance({
634
+ operationId: "createSession",
635
+ method: "post",
636
+ url: "/sessions",
637
+ data: {
638
+ scene_id: scene_id
639
+ }
640
+ });
641
+ }
642
+ function getSession({ session_id }) {
643
+ return axiosInstance({
644
+ operationId: "getSession",
645
+ method: "get",
646
+ url: "/sessions/" + session_id + ""
647
+ });
648
+ }
649
+ //--------------------------------------------------------------------------
650
+ // Forcefully terminates a session.
651
+ function killSession({ session_id }) {
652
+ return axiosInstance({
653
+ operationId: "killSession",
654
+ method: "delete",
655
+ url: "/sessions/" + session_id + ""
656
+ });
657
+ }
658
+ function joinSession({ session_id }) {
659
+ return axiosInstance({
660
+ operationId: "joinSession",
661
+ method: "post",
662
+ url: "/sessions/" + session_id + "/clients"
663
+ });
664
+ }
665
+ //--------------------------------------------------------------------------
666
+ // Kick a client from a running session.
667
+ function kickClientFromSession({ session_id, client_id }) {
668
+ return axiosInstance({
669
+ operationId: "kickClientFromSession",
670
+ method: "delete",
671
+ url: "/sessions/" + session_id + "/clients/" + client_id + ""
672
+ });
673
+ }
674
+ function joinSessionAsGuest() {
675
+ return axiosInstance({
676
+ operationId: "joinSessionAsGuest",
677
+ method: "post",
678
+ url: "/sessions/guests"
679
+ });
680
+ }
681
+ function generateGuestToken({ session_id }) {
682
+ return axiosInstance({
683
+ operationId: "generateGuestToken",
684
+ method: "post",
685
+ url: "/sessions/" + session_id + "/guests"
686
+ });
609
687
  }
610
688
 
611
- //--------------------------------------------------------------------------
612
- //------------------------------------------------------------------------------
613
- function setApiKey(apiKey) {
614
- axiosInstance.defaults.headers.common['api_key'] = apiKey;
615
- delete axiosInstance.defaults.headers.common['user_token'];
616
- }
617
- //------------------------------------------------------------------------------
618
- function setUserToken(userToken) {
619
- axiosInstance.defaults.headers.common['user_token'] = userToken;
620
- delete axiosInstance.defaults.headers.common['api_key'];
621
- }
622
- function setBaseUrl(url) {
623
- axiosInstance.defaults.baseURL = url;
624
- }
689
+ //------------------------------------------------------------------------------
690
+ function setApiKey(apiKey) {
691
+ axiosInstance.defaults.headers.common['api_key'] = apiKey;
692
+ delete axiosInstance.defaults.headers.common['user_token'];
693
+ }
694
+ //------------------------------------------------------------------------------
695
+ function setUserToken(userToken) {
696
+ axiosInstance.defaults.headers.common['user_token'] = userToken;
697
+ delete axiosInstance.defaults.headers.common['api_key'];
698
+ }
699
+ //------------------------------------------------------------------------------
700
+ function setBaseUrl(url) {
701
+ axiosInstance.defaults.baseURL = url;
702
+ }
703
+ //------------------------------------------------------------------------------
704
+ class ServiceError extends Error {
705
+ errorCode;
706
+ httpCode;
707
+ message;
708
+ //--------------------------------------------------------------------------
709
+ constructor(errorCode, httpCode, message) {
710
+ super();
711
+ this.errorCode = errorCode;
712
+ this.httpCode = httpCode;
713
+ this.message = message;
714
+ }
715
+ }
716
+ //------------------------------------------------------------------------------
717
+ class ApiError extends ServiceError {
718
+ serviceError;
719
+ constructor(errorCode, status, message, serviceError) {
720
+ super(errorCode, status, message);
721
+ this.serviceError = serviceError;
722
+ }
723
+ }
724
+ //------------------------------------------------------------------------------
725
+ class UnexpectedServiceError extends ServiceError {
726
+ unexpectedError;
727
+ constructor(status, unexpectedError) {
728
+ super(0, status, 'Unexpected service error error');
729
+ this.unexpectedError = unexpectedError;
730
+ }
731
+ }
732
+ //------------------------------------------------------------------------------
733
+ function installInterceptors() {
734
+ const CLIENT_ERROR = 400;
735
+ const INTERNAL_SERVER_ERROR = 500;
736
+ axiosInstance.interceptors.response.use(successFulResponse => {
737
+ if (successFulResponse.config.responseType === 'stream') {
738
+ successFulResponse.data.pause();
739
+ }
740
+ return successFulResponse;
741
+ }, error => {
742
+ if (!error.response) {
743
+ return Promise.reject(error);
744
+ }
745
+ const axiosError = error;
746
+ const status = axiosError.response?.status || INTERNAL_SERVER_ERROR;
747
+ const errorData = axiosError.response?.data;
748
+ if (!errorData &&
749
+ axiosError.request.method === 'HEAD' &&
750
+ status >= CLIENT_ERROR &&
751
+ status < INTERNAL_SERVER_ERROR) {
752
+ return axiosError.response;
753
+ }
754
+ if (!errorData || !('error' in errorData)) {
755
+ return Promise.reject(new UnexpectedServiceError(status, errorData));
756
+ }
757
+ const serviceError = errorData.error;
758
+ return Promise.reject(new ApiError(serviceError.errorCode, status, serviceError.message, serviceError));
759
+ });
760
+ }
761
+ //------------------------------------------------------------------------------
762
+ installInterceptors();
625
763
 
626
- export { axiosInstance, createAsset, createFolder, createGroup, createSession, createSubfolder, deleteAsset, deleteAssets, deleteFolder, deleteGroup, deleteSourceFiles, deleteUser, downloadSourceFile, exportAsset, generateUserToken, getAssetCode, getAssetCustomTypes, getAssetDependencies, getAssetDescription, getAssetDetails, getAssetFolder, getAssetHistory, getAssetMeta, getAssetPayload, getAssetReferences, getAssetSourceFile, getAssetThumbnail, getEntity, getFolderAssets, getFolderInfo, getGroup, getSceneAABB, getSceneSessions, getSession, getSessionsInFolder, getSourceFileAssets, getSourceFileDetails, getSourceFilesInFolder, getUploadTask, getUploadTasksInFolder, getUser, getUserGroups, getUserUploadTasks, grantMemberAccessToFolder, grantMemberAccessToGroup, joinSession, kickClientFromSession, killSession, listAssets, listFolderAccesses, listFolderSubFolders, listFolders, listSourceFiles, listUsers, moveAssets, moveFolders, moveSourceFiles, packageAsset, registerUser, revokeMemberAccessToFolder, revokeMemberAccessToGroup, setApiKey, setAssetThumbnail, setBaseUrl, setUserToken, updateAssetDescription, updateFolder, updateGroupDescription, updateSourceFileDetails, updateUser, uploadSourceFiles };
764
+ export { ApiError, UnexpectedServiceError, axiosInstance, createAsset, createFolder, createGroup, createSession, createSubfolder, deleteAsset, deleteAssets, deleteEntity, deleteFolder, deleteGroup, deleteSourceFiles, deleteUser, downloadSourceFile, exportAsset, generateGuestToken, generateUserToken, getAssetCode, getAssetCustomTypes, getAssetDependencies, getAssetDescription, getAssetDetails, getAssetFolder, getAssetHistory, getAssetMeta, getAssetPayload, getAssetReferences, getAssetSourceFile, getAssetThumbnail, getEntity, getFolderAssets, getFolderInfo, getGroup, getSceneAABB, getSceneSessions, getSession, getSessionsInFolder, getSourceFileAssets, getSourceFileDetails, getSourceFilesInFolder, getUploadTask, getUploadTasksInFolder, getUser, getUserGroups, getUserUploadTasks, grantMemberAccessToFolder, grantMemberAccessToGroup, joinSession, joinSessionAsGuest, kickClientFromSession, killSession, listAssets, listFolderAccesses, listFolderSubFolders, listFolders, listSourceFiles, listUsers, moveAssets, moveFolders, moveSourceFiles, packageAsset, registerUser, revokeMemberAccessToFolder, revokeMemberAccessToGroup, setApiKey, setAssetThumbnail, setBaseURL, setBaseUrl, setUserToken, updateAssetDescription, updateEntity, updateFolder, updateGroupDescription, updateSourceFileDetails, updateUser, uploadSourceFiles };
627
765
  //# sourceMappingURL=index.esm.js.map