@xuda.io/drive_module 1.1.1489 → 1.1.1491
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/index.mjs +424 -5
- package/index.mjs.premerge.bak +3514 -0
- package/index_ms.mjs +88 -0
- package/index_msa.mjs +88 -0
- package/package.json +1 -1
package/index_ms.mjs
CHANGED
|
@@ -45,6 +45,30 @@ export const rename_drive_folder = async function (...args) {
|
|
|
45
45
|
return await broker.send_to_queue("rename_drive_folder", ...args);
|
|
46
46
|
};
|
|
47
47
|
|
|
48
|
+
export const move_drive_files = async function (...args) {
|
|
49
|
+
return await broker.send_to_queue("move_drive_files", ...args);
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export const trash_drive_files = async function (...args) {
|
|
53
|
+
return await broker.send_to_queue("trash_drive_files", ...args);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export const get_trashed_files = async function (...args) {
|
|
57
|
+
return await broker.send_to_queue("get_trashed_files", ...args);
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export const restore_trashed_files = async function (...args) {
|
|
61
|
+
return await broker.send_to_queue("restore_trashed_files", ...args);
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
export const purge_trashed_files = async function (...args) {
|
|
65
|
+
return await broker.send_to_queue("purge_trashed_files", ...args);
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
export const get_drive_breakdown = async function (...args) {
|
|
69
|
+
return await broker.send_to_queue("get_drive_breakdown", ...args);
|
|
70
|
+
};
|
|
71
|
+
|
|
48
72
|
export const update_drive_file_sharing_mode = async function (...args) {
|
|
49
73
|
return await broker.send_to_queue("update_drive_file_sharing_mode", ...args);
|
|
50
74
|
};
|
|
@@ -253,6 +277,62 @@ export const star_drive_file_user = async function (...args) {
|
|
|
253
277
|
return await broker.send_to_queue("star_drive_file_user", ...args);
|
|
254
278
|
};
|
|
255
279
|
|
|
280
|
+
export const move_drive_files_workspace = async function (...args) {
|
|
281
|
+
return await broker.send_to_queue("move_drive_files_workspace", ...args);
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
export const move_drive_files_user = async function (...args) {
|
|
285
|
+
return await broker.send_to_queue("move_drive_files_user", ...args);
|
|
286
|
+
};
|
|
287
|
+
|
|
288
|
+
export const get_drive_size_workspace = async function (...args) {
|
|
289
|
+
return await broker.send_to_queue("get_drive_size_workspace", ...args);
|
|
290
|
+
};
|
|
291
|
+
|
|
292
|
+
export const get_drive_size_user = async function (...args) {
|
|
293
|
+
return await broker.send_to_queue("get_drive_size_user", ...args);
|
|
294
|
+
};
|
|
295
|
+
|
|
296
|
+
export const trash_drive_files_workspace = async function (...args) {
|
|
297
|
+
return await broker.send_to_queue("trash_drive_files_workspace", ...args);
|
|
298
|
+
};
|
|
299
|
+
|
|
300
|
+
export const trash_drive_files_user = async function (...args) {
|
|
301
|
+
return await broker.send_to_queue("trash_drive_files_user", ...args);
|
|
302
|
+
};
|
|
303
|
+
|
|
304
|
+
export const get_trashed_files_workspace = async function (...args) {
|
|
305
|
+
return await broker.send_to_queue("get_trashed_files_workspace", ...args);
|
|
306
|
+
};
|
|
307
|
+
|
|
308
|
+
export const get_trashed_files_user = async function (...args) {
|
|
309
|
+
return await broker.send_to_queue("get_trashed_files_user", ...args);
|
|
310
|
+
};
|
|
311
|
+
|
|
312
|
+
export const restore_trashed_files_workspace = async function (...args) {
|
|
313
|
+
return await broker.send_to_queue("restore_trashed_files_workspace", ...args);
|
|
314
|
+
};
|
|
315
|
+
|
|
316
|
+
export const restore_trashed_files_user = async function (...args) {
|
|
317
|
+
return await broker.send_to_queue("restore_trashed_files_user", ...args);
|
|
318
|
+
};
|
|
319
|
+
|
|
320
|
+
export const purge_trashed_files_workspace = async function (...args) {
|
|
321
|
+
return await broker.send_to_queue("purge_trashed_files_workspace", ...args);
|
|
322
|
+
};
|
|
323
|
+
|
|
324
|
+
export const purge_trashed_files_user = async function (...args) {
|
|
325
|
+
return await broker.send_to_queue("purge_trashed_files_user", ...args);
|
|
326
|
+
};
|
|
327
|
+
|
|
328
|
+
export const get_drive_breakdown_workspace = async function (...args) {
|
|
329
|
+
return await broker.send_to_queue("get_drive_breakdown_workspace", ...args);
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
export const get_drive_breakdown_user = async function (...args) {
|
|
333
|
+
return await broker.send_to_queue("get_drive_breakdown_user", ...args);
|
|
334
|
+
};
|
|
335
|
+
|
|
256
336
|
export const delete_file_bulk_workspace = async function (...args) {
|
|
257
337
|
return await broker.send_to_queue("delete_file_bulk_workspace", ...args);
|
|
258
338
|
};
|
|
@@ -357,6 +437,14 @@ export const star_drive_file_studio = async function (...args) {
|
|
|
357
437
|
return await broker.send_to_queue("star_drive_file_studio", ...args);
|
|
358
438
|
};
|
|
359
439
|
|
|
440
|
+
export const move_drive_files_studio = async function (...args) {
|
|
441
|
+
return await broker.send_to_queue("move_drive_files_studio", ...args);
|
|
442
|
+
};
|
|
443
|
+
|
|
444
|
+
export const get_drive_size_studio = async function (...args) {
|
|
445
|
+
return await broker.send_to_queue("get_drive_size_studio", ...args);
|
|
446
|
+
};
|
|
447
|
+
|
|
360
448
|
export const delete_file_bulk_studio = async function (...args) {
|
|
361
449
|
return await broker.send_to_queue("delete_file_bulk_studio", ...args);
|
|
362
450
|
};
|
package/index_msa.mjs
CHANGED
|
@@ -45,6 +45,30 @@ export const rename_drive_folder = function (...args) {
|
|
|
45
45
|
broker.send_to_queue_async("rename_drive_folder", ...args);
|
|
46
46
|
};
|
|
47
47
|
|
|
48
|
+
export const move_drive_files = function (...args) {
|
|
49
|
+
broker.send_to_queue_async("move_drive_files", ...args);
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export const trash_drive_files = function (...args) {
|
|
53
|
+
broker.send_to_queue_async("trash_drive_files", ...args);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export const get_trashed_files = function (...args) {
|
|
57
|
+
broker.send_to_queue_async("get_trashed_files", ...args);
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export const restore_trashed_files = function (...args) {
|
|
61
|
+
broker.send_to_queue_async("restore_trashed_files", ...args);
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
export const purge_trashed_files = function (...args) {
|
|
65
|
+
broker.send_to_queue_async("purge_trashed_files", ...args);
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
export const get_drive_breakdown = function (...args) {
|
|
69
|
+
broker.send_to_queue_async("get_drive_breakdown", ...args);
|
|
70
|
+
};
|
|
71
|
+
|
|
48
72
|
export const update_drive_file_sharing_mode = function (...args) {
|
|
49
73
|
broker.send_to_queue_async("update_drive_file_sharing_mode", ...args);
|
|
50
74
|
};
|
|
@@ -253,6 +277,62 @@ export const star_drive_file_user = function (...args) {
|
|
|
253
277
|
broker.send_to_queue_async("star_drive_file_user", ...args);
|
|
254
278
|
};
|
|
255
279
|
|
|
280
|
+
export const move_drive_files_workspace = function (...args) {
|
|
281
|
+
broker.send_to_queue_async("move_drive_files_workspace", ...args);
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
export const move_drive_files_user = function (...args) {
|
|
285
|
+
broker.send_to_queue_async("move_drive_files_user", ...args);
|
|
286
|
+
};
|
|
287
|
+
|
|
288
|
+
export const get_drive_size_workspace = function (...args) {
|
|
289
|
+
broker.send_to_queue_async("get_drive_size_workspace", ...args);
|
|
290
|
+
};
|
|
291
|
+
|
|
292
|
+
export const get_drive_size_user = function (...args) {
|
|
293
|
+
broker.send_to_queue_async("get_drive_size_user", ...args);
|
|
294
|
+
};
|
|
295
|
+
|
|
296
|
+
export const trash_drive_files_workspace = function (...args) {
|
|
297
|
+
broker.send_to_queue_async("trash_drive_files_workspace", ...args);
|
|
298
|
+
};
|
|
299
|
+
|
|
300
|
+
export const trash_drive_files_user = function (...args) {
|
|
301
|
+
broker.send_to_queue_async("trash_drive_files_user", ...args);
|
|
302
|
+
};
|
|
303
|
+
|
|
304
|
+
export const get_trashed_files_workspace = function (...args) {
|
|
305
|
+
broker.send_to_queue_async("get_trashed_files_workspace", ...args);
|
|
306
|
+
};
|
|
307
|
+
|
|
308
|
+
export const get_trashed_files_user = function (...args) {
|
|
309
|
+
broker.send_to_queue_async("get_trashed_files_user", ...args);
|
|
310
|
+
};
|
|
311
|
+
|
|
312
|
+
export const restore_trashed_files_workspace = function (...args) {
|
|
313
|
+
broker.send_to_queue_async("restore_trashed_files_workspace", ...args);
|
|
314
|
+
};
|
|
315
|
+
|
|
316
|
+
export const restore_trashed_files_user = function (...args) {
|
|
317
|
+
broker.send_to_queue_async("restore_trashed_files_user", ...args);
|
|
318
|
+
};
|
|
319
|
+
|
|
320
|
+
export const purge_trashed_files_workspace = function (...args) {
|
|
321
|
+
broker.send_to_queue_async("purge_trashed_files_workspace", ...args);
|
|
322
|
+
};
|
|
323
|
+
|
|
324
|
+
export const purge_trashed_files_user = function (...args) {
|
|
325
|
+
broker.send_to_queue_async("purge_trashed_files_user", ...args);
|
|
326
|
+
};
|
|
327
|
+
|
|
328
|
+
export const get_drive_breakdown_workspace = function (...args) {
|
|
329
|
+
broker.send_to_queue_async("get_drive_breakdown_workspace", ...args);
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
export const get_drive_breakdown_user = function (...args) {
|
|
333
|
+
broker.send_to_queue_async("get_drive_breakdown_user", ...args);
|
|
334
|
+
};
|
|
335
|
+
|
|
256
336
|
export const delete_file_bulk_workspace = function (...args) {
|
|
257
337
|
broker.send_to_queue_async("delete_file_bulk_workspace", ...args);
|
|
258
338
|
};
|
|
@@ -357,6 +437,14 @@ export const star_drive_file_studio = function (...args) {
|
|
|
357
437
|
broker.send_to_queue_async("star_drive_file_studio", ...args);
|
|
358
438
|
};
|
|
359
439
|
|
|
440
|
+
export const move_drive_files_studio = function (...args) {
|
|
441
|
+
broker.send_to_queue_async("move_drive_files_studio", ...args);
|
|
442
|
+
};
|
|
443
|
+
|
|
444
|
+
export const get_drive_size_studio = function (...args) {
|
|
445
|
+
broker.send_to_queue_async("get_drive_size_studio", ...args);
|
|
446
|
+
};
|
|
447
|
+
|
|
360
448
|
export const delete_file_bulk_studio = function (...args) {
|
|
361
449
|
broker.send_to_queue_async("delete_file_bulk_studio", ...args);
|
|
362
450
|
};
|