@xuda.io/drive_module 1.1.1471 → 1.1.1472
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_ms.mjs +47 -0
- package/index_msa.mjs +47 -0
- package/package.json +1 -1
package/index_ms.mjs
CHANGED
|
@@ -236,3 +236,50 @@ export const find_contact_query = async function (...args) {
|
|
|
236
236
|
export const file_upload_validator = async function (...args) {
|
|
237
237
|
return await broker.send_to_queue("file_upload_validator", ...args);
|
|
238
238
|
};
|
|
239
|
+
|
|
240
|
+
// drive-type variant proxies (studio variants missing from generator)
|
|
241
|
+
export const create_drive_folder_studio = async function (...args) {
|
|
242
|
+
return await broker.send_to_queue("create_drive_folder_studio", ...args);
|
|
243
|
+
};
|
|
244
|
+
export const upload_drive_file_studio = async function (...args) {
|
|
245
|
+
return await broker.send_to_queue("upload_drive_file_studio", ...args);
|
|
246
|
+
};
|
|
247
|
+
export const check_drive_file_studio = async function (...args) {
|
|
248
|
+
return await broker.send_to_queue("check_drive_file_studio", ...args);
|
|
249
|
+
};
|
|
250
|
+
export const check_drive_files_studio = async function (...args) {
|
|
251
|
+
return await broker.send_to_queue("check_drive_files_studio", ...args);
|
|
252
|
+
};
|
|
253
|
+
export const delete_drive_files_studio = async function (...args) {
|
|
254
|
+
return await broker.send_to_queue("delete_drive_files_studio", ...args);
|
|
255
|
+
};
|
|
256
|
+
export const delete_file_bulk_studio = async function (...args) {
|
|
257
|
+
return await broker.send_to_queue("delete_file_bulk_studio", ...args);
|
|
258
|
+
};
|
|
259
|
+
export const extract_drive_file_studio = async function (...args) {
|
|
260
|
+
return await broker.send_to_queue("extract_drive_file_studio", ...args);
|
|
261
|
+
};
|
|
262
|
+
export const get_drive_file_info_studio = async function (...args) {
|
|
263
|
+
return await broker.send_to_queue("get_drive_file_info_studio", ...args);
|
|
264
|
+
};
|
|
265
|
+
export const get_drive_files_studio = async function (...args) {
|
|
266
|
+
return await broker.send_to_queue("get_drive_files_studio", ...args);
|
|
267
|
+
};
|
|
268
|
+
export const rename_drive_file_studio = async function (...args) {
|
|
269
|
+
return await broker.send_to_queue("rename_drive_file_studio", ...args);
|
|
270
|
+
};
|
|
271
|
+
export const rename_drive_folder_studio = async function (...args) {
|
|
272
|
+
return await broker.send_to_queue("rename_drive_folder_studio", ...args);
|
|
273
|
+
};
|
|
274
|
+
export const update_drive_addons_studio = async function (...args) {
|
|
275
|
+
return await broker.send_to_queue("update_drive_addons_studio", ...args);
|
|
276
|
+
};
|
|
277
|
+
export const update_drive_file_sharing_mode_studio = async function (...args) {
|
|
278
|
+
return await broker.send_to_queue("update_drive_file_sharing_mode_studio", ...args);
|
|
279
|
+
};
|
|
280
|
+
export const update_drive_file_studio = async function (...args) {
|
|
281
|
+
return await broker.send_to_queue("update_drive_file_studio", ...args);
|
|
282
|
+
};
|
|
283
|
+
export const update_drive_file_tags_studio = async function (...args) {
|
|
284
|
+
return await broker.send_to_queue("update_drive_file_tags_studio", ...args);
|
|
285
|
+
};
|
package/index_msa.mjs
CHANGED
|
@@ -236,3 +236,50 @@ export const find_contact_query = function (...args) {
|
|
|
236
236
|
export const file_upload_validator = function (...args) {
|
|
237
237
|
broker.send_to_queue_async("file_upload_validator", ...args);
|
|
238
238
|
};
|
|
239
|
+
|
|
240
|
+
// drive-type variant proxies (studio variants missing from generator)
|
|
241
|
+
export const create_drive_folder_studio = function (...args) {
|
|
242
|
+
broker.send_to_queue_async("create_drive_folder_studio", ...args);
|
|
243
|
+
};
|
|
244
|
+
export const upload_drive_file_studio = function (...args) {
|
|
245
|
+
broker.send_to_queue_async("upload_drive_file_studio", ...args);
|
|
246
|
+
};
|
|
247
|
+
export const check_drive_file_studio = function (...args) {
|
|
248
|
+
broker.send_to_queue_async("check_drive_file_studio", ...args);
|
|
249
|
+
};
|
|
250
|
+
export const check_drive_files_studio = function (...args) {
|
|
251
|
+
broker.send_to_queue_async("check_drive_files_studio", ...args);
|
|
252
|
+
};
|
|
253
|
+
export const delete_drive_files_studio = function (...args) {
|
|
254
|
+
broker.send_to_queue_async("delete_drive_files_studio", ...args);
|
|
255
|
+
};
|
|
256
|
+
export const delete_file_bulk_studio = function (...args) {
|
|
257
|
+
broker.send_to_queue_async("delete_file_bulk_studio", ...args);
|
|
258
|
+
};
|
|
259
|
+
export const extract_drive_file_studio = function (...args) {
|
|
260
|
+
broker.send_to_queue_async("extract_drive_file_studio", ...args);
|
|
261
|
+
};
|
|
262
|
+
export const get_drive_file_info_studio = function (...args) {
|
|
263
|
+
broker.send_to_queue_async("get_drive_file_info_studio", ...args);
|
|
264
|
+
};
|
|
265
|
+
export const get_drive_files_studio = function (...args) {
|
|
266
|
+
broker.send_to_queue_async("get_drive_files_studio", ...args);
|
|
267
|
+
};
|
|
268
|
+
export const rename_drive_file_studio = function (...args) {
|
|
269
|
+
broker.send_to_queue_async("rename_drive_file_studio", ...args);
|
|
270
|
+
};
|
|
271
|
+
export const rename_drive_folder_studio = function (...args) {
|
|
272
|
+
broker.send_to_queue_async("rename_drive_folder_studio", ...args);
|
|
273
|
+
};
|
|
274
|
+
export const update_drive_addons_studio = function (...args) {
|
|
275
|
+
broker.send_to_queue_async("update_drive_addons_studio", ...args);
|
|
276
|
+
};
|
|
277
|
+
export const update_drive_file_sharing_mode_studio = function (...args) {
|
|
278
|
+
broker.send_to_queue_async("update_drive_file_sharing_mode_studio", ...args);
|
|
279
|
+
};
|
|
280
|
+
export const update_drive_file_studio = function (...args) {
|
|
281
|
+
broker.send_to_queue_async("update_drive_file_studio", ...args);
|
|
282
|
+
};
|
|
283
|
+
export const update_drive_file_tags_studio = function (...args) {
|
|
284
|
+
broker.send_to_queue_async("update_drive_file_tags_studio", ...args);
|
|
285
|
+
};
|