@xuda.io/drive_module 1.1.1475 → 1.1.1476
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 +741 -7
- package/index_ms.mjs +112 -8
- package/index_msa.mjs +218 -114
- package/index_msaa.mjs +350 -0
- package/package.json +1 -1
package/index_ms.mjs
CHANGED
|
@@ -97,6 +97,58 @@ export const update_drive_addons = async function (...args) {
|
|
|
97
97
|
return await broker.send_to_queue("update_drive_addons", ...args);
|
|
98
98
|
};
|
|
99
99
|
|
|
100
|
+
export const list_site_files = async function (...args) {
|
|
101
|
+
return await broker.send_to_queue("list_site_files", ...args);
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
export const read_site_file = async function (...args) {
|
|
105
|
+
return await broker.send_to_queue("read_site_file", ...args);
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
export const write_site_file = async function (...args) {
|
|
109
|
+
return await broker.send_to_queue("write_site_file", ...args);
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
export const ingest_static_site_source = async function (...args) {
|
|
113
|
+
return await broker.send_to_queue("ingest_static_site_source", ...args);
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
export const read_static_site_source = async function (...args) {
|
|
117
|
+
return await broker.send_to_queue("read_static_site_source", ...args);
|
|
118
|
+
};
|
|
119
|
+
|
|
120
|
+
export const get_static_site_dir = async function (...args) {
|
|
121
|
+
return await broker.send_to_queue("get_static_site_dir", ...args);
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
export const list_static_site_folders = async function (...args) {
|
|
125
|
+
return await broker.send_to_queue("list_static_site_folders", ...args);
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
export const cleanup_static_site_drafts = async function (...args) {
|
|
129
|
+
return await broker.send_to_queue("cleanup_static_site_drafts", ...args);
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
export const get_static_site_preview_url = async function (...args) {
|
|
133
|
+
return await broker.send_to_queue("get_static_site_preview_url", ...args);
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
export const restore_site_fs_from_manifest = async function (...args) {
|
|
137
|
+
return await broker.send_to_queue("restore_site_fs_from_manifest", ...args);
|
|
138
|
+
};
|
|
139
|
+
|
|
140
|
+
export const read_user_drive_folder = async function (...args) {
|
|
141
|
+
return await broker.send_to_queue("read_user_drive_folder", ...args);
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
export const put_site_files = async function (...args) {
|
|
145
|
+
return await broker.send_to_queue("put_site_files", ...args);
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
export const delete_site_files = async function (...args) {
|
|
149
|
+
return await broker.send_to_queue("delete_site_files", ...args);
|
|
150
|
+
};
|
|
151
|
+
|
|
100
152
|
export const get_drive_files_workspace = async function (...args) {
|
|
101
153
|
return await broker.send_to_queue("get_drive_files_workspace", ...args);
|
|
102
154
|
};
|
|
@@ -137,10 +189,6 @@ export const upload_drive_file_user = async function (...args) {
|
|
|
137
189
|
return await broker.send_to_queue("upload_drive_file_user", ...args);
|
|
138
190
|
};
|
|
139
191
|
|
|
140
|
-
export const upload_drive_file_studio = async function (...args) {
|
|
141
|
-
return await broker.send_to_queue("upload_drive_file_studio", ...args);
|
|
142
|
-
};
|
|
143
|
-
|
|
144
192
|
export const update_drive_file_workspace = async function (...args) {
|
|
145
193
|
return await broker.send_to_queue("update_drive_file_workspace", ...args);
|
|
146
194
|
};
|
|
@@ -153,10 +201,6 @@ export const create_drive_folder_workspace = async function (...args) {
|
|
|
153
201
|
return await broker.send_to_queue("create_drive_folder_workspace", ...args);
|
|
154
202
|
};
|
|
155
203
|
|
|
156
|
-
export const create_drive_folder_studio = async function (...args) {
|
|
157
|
-
return await broker.send_to_queue("create_drive_folder_studio", ...args);
|
|
158
|
-
};
|
|
159
|
-
|
|
160
204
|
export const create_drive_folder_user = async function (...args) {
|
|
161
205
|
return await broker.send_to_queue("create_drive_folder_user", ...args);
|
|
162
206
|
};
|
|
@@ -244,3 +288,63 @@ export const find_contact_query = async function (...args) {
|
|
|
244
288
|
export const file_upload_validator = async function (...args) {
|
|
245
289
|
return await broker.send_to_queue("file_upload_validator", ...args);
|
|
246
290
|
};
|
|
291
|
+
|
|
292
|
+
export const get_drive_files_studio = async function (...args) {
|
|
293
|
+
return await broker.send_to_queue("get_drive_files_studio", ...args);
|
|
294
|
+
};
|
|
295
|
+
|
|
296
|
+
export const get_drive_file_info_studio = async function (...args) {
|
|
297
|
+
return await broker.send_to_queue("get_drive_file_info_studio", ...args);
|
|
298
|
+
};
|
|
299
|
+
|
|
300
|
+
export const delete_drive_files_studio = async function (...args) {
|
|
301
|
+
return await broker.send_to_queue("delete_drive_files_studio", ...args);
|
|
302
|
+
};
|
|
303
|
+
|
|
304
|
+
export const extract_drive_file_studio = async function (...args) {
|
|
305
|
+
return await broker.send_to_queue("extract_drive_file_studio", ...args);
|
|
306
|
+
};
|
|
307
|
+
|
|
308
|
+
export const upload_drive_file_studio = async function (...args) {
|
|
309
|
+
return await broker.send_to_queue("upload_drive_file_studio", ...args);
|
|
310
|
+
};
|
|
311
|
+
|
|
312
|
+
export const update_drive_file_studio = async function (...args) {
|
|
313
|
+
return await broker.send_to_queue("update_drive_file_studio", ...args);
|
|
314
|
+
};
|
|
315
|
+
|
|
316
|
+
export const create_drive_folder_studio = async function (...args) {
|
|
317
|
+
return await broker.send_to_queue("create_drive_folder_studio", ...args);
|
|
318
|
+
};
|
|
319
|
+
|
|
320
|
+
export const rename_drive_file_studio = async function (...args) {
|
|
321
|
+
return await broker.send_to_queue("rename_drive_file_studio", ...args);
|
|
322
|
+
};
|
|
323
|
+
|
|
324
|
+
export const rename_drive_folder_studio = async function (...args) {
|
|
325
|
+
return await broker.send_to_queue("rename_drive_folder_studio", ...args);
|
|
326
|
+
};
|
|
327
|
+
|
|
328
|
+
export const update_drive_file_sharing_mode_studio = async function (...args) {
|
|
329
|
+
return await broker.send_to_queue("update_drive_file_sharing_mode_studio", ...args);
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
export const delete_file_bulk_studio = async function (...args) {
|
|
333
|
+
return await broker.send_to_queue("delete_file_bulk_studio", ...args);
|
|
334
|
+
};
|
|
335
|
+
|
|
336
|
+
export const check_drive_file_studio = async function (...args) {
|
|
337
|
+
return await broker.send_to_queue("check_drive_file_studio", ...args);
|
|
338
|
+
};
|
|
339
|
+
|
|
340
|
+
export const check_drive_files_studio = async function (...args) {
|
|
341
|
+
return await broker.send_to_queue("check_drive_files_studio", ...args);
|
|
342
|
+
};
|
|
343
|
+
|
|
344
|
+
export const update_drive_file_tags_studio = async function (...args) {
|
|
345
|
+
return await broker.send_to_queue("update_drive_file_tags_studio", ...args);
|
|
346
|
+
};
|
|
347
|
+
|
|
348
|
+
export const update_drive_addons_studio = async function (...args) {
|
|
349
|
+
return await broker.send_to_queue("update_drive_addons_studio", ...args);
|
|
350
|
+
};
|
package/index_msa.mjs
CHANGED
|
@@ -17,230 +17,334 @@
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
export const get_drive_files =
|
|
21
|
-
|
|
20
|
+
export const get_drive_files = async function (...args) {
|
|
21
|
+
return await broker.send_to_queue("get_drive_files", ...args);
|
|
22
22
|
};
|
|
23
23
|
|
|
24
|
-
export const get_drive_file_info =
|
|
25
|
-
|
|
24
|
+
export const get_drive_file_info = async function (...args) {
|
|
25
|
+
return await broker.send_to_queue("get_drive_file_info", ...args);
|
|
26
26
|
};
|
|
27
27
|
|
|
28
|
-
export const delete_drive_files =
|
|
29
|
-
|
|
28
|
+
export const delete_drive_files = async function (...args) {
|
|
29
|
+
return await broker.send_to_queue("delete_drive_files", ...args);
|
|
30
30
|
};
|
|
31
31
|
|
|
32
|
-
export const update_drive_file =
|
|
33
|
-
|
|
32
|
+
export const update_drive_file = async function (...args) {
|
|
33
|
+
return await broker.send_to_queue("update_drive_file", ...args);
|
|
34
34
|
};
|
|
35
35
|
|
|
36
|
-
export const create_drive_folder =
|
|
37
|
-
|
|
36
|
+
export const create_drive_folder = async function (...args) {
|
|
37
|
+
return await broker.send_to_queue("create_drive_folder", ...args);
|
|
38
38
|
};
|
|
39
39
|
|
|
40
|
-
export const rename_drive_file =
|
|
41
|
-
|
|
40
|
+
export const rename_drive_file = async function (...args) {
|
|
41
|
+
return await broker.send_to_queue("rename_drive_file", ...args);
|
|
42
42
|
};
|
|
43
43
|
|
|
44
|
-
export const rename_drive_folder =
|
|
45
|
-
|
|
44
|
+
export const rename_drive_folder = async function (...args) {
|
|
45
|
+
return await broker.send_to_queue("rename_drive_folder", ...args);
|
|
46
46
|
};
|
|
47
47
|
|
|
48
|
-
export const update_drive_file_sharing_mode =
|
|
49
|
-
|
|
48
|
+
export const update_drive_file_sharing_mode = async function (...args) {
|
|
49
|
+
return await broker.send_to_queue("update_drive_file_sharing_mode", ...args);
|
|
50
50
|
};
|
|
51
51
|
|
|
52
|
-
export const extract_drive_file =
|
|
53
|
-
|
|
52
|
+
export const extract_drive_file = async function (...args) {
|
|
53
|
+
return await broker.send_to_queue("extract_drive_file", ...args);
|
|
54
54
|
};
|
|
55
55
|
|
|
56
|
-
export const delete_file_bulk =
|
|
57
|
-
|
|
56
|
+
export const delete_file_bulk = async function (...args) {
|
|
57
|
+
return await broker.send_to_queue("delete_file_bulk", ...args);
|
|
58
58
|
};
|
|
59
59
|
|
|
60
|
-
export const upload_drive_file =
|
|
61
|
-
|
|
60
|
+
export const upload_drive_file = async function (...args) {
|
|
61
|
+
return await broker.send_to_queue("upload_drive_file", ...args);
|
|
62
62
|
};
|
|
63
63
|
|
|
64
|
-
export const check_drive_files =
|
|
65
|
-
|
|
64
|
+
export const check_drive_files = async function (...args) {
|
|
65
|
+
return await broker.send_to_queue("check_drive_files", ...args);
|
|
66
66
|
};
|
|
67
67
|
|
|
68
|
-
export const check_drive_file =
|
|
69
|
-
|
|
68
|
+
export const check_drive_file = async function (...args) {
|
|
69
|
+
return await broker.send_to_queue("check_drive_file", ...args);
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
export const run_drive_pending_ocr =
|
|
73
|
-
|
|
72
|
+
export const run_drive_pending_ocr = async function (...args) {
|
|
73
|
+
return await broker.send_to_queue("run_drive_pending_ocr", ...args);
|
|
74
74
|
};
|
|
75
75
|
|
|
76
|
-
export const get_drive_size =
|
|
77
|
-
|
|
76
|
+
export const get_drive_size = async function (...args) {
|
|
77
|
+
return await broker.send_to_queue("get_drive_size", ...args);
|
|
78
78
|
};
|
|
79
79
|
|
|
80
|
-
export const copy_file_to_another_bucket =
|
|
81
|
-
|
|
80
|
+
export const copy_file_to_another_bucket = async function (...args) {
|
|
81
|
+
return await broker.send_to_queue("copy_file_to_another_bucket", ...args);
|
|
82
82
|
};
|
|
83
83
|
|
|
84
|
-
export const delete_file_from_bucket =
|
|
85
|
-
|
|
84
|
+
export const delete_file_from_bucket = async function (...args) {
|
|
85
|
+
return await broker.send_to_queue("delete_file_from_bucket", ...args);
|
|
86
86
|
};
|
|
87
87
|
|
|
88
|
-
export const update_drive_file_tags =
|
|
89
|
-
|
|
88
|
+
export const update_drive_file_tags = async function (...args) {
|
|
89
|
+
return await broker.send_to_queue("update_drive_file_tags", ...args);
|
|
90
90
|
};
|
|
91
91
|
|
|
92
|
-
export const compile_javascript_program_in_studio_drive =
|
|
93
|
-
|
|
92
|
+
export const compile_javascript_program_in_studio_drive = async function (...args) {
|
|
93
|
+
return await broker.send_to_queue("compile_javascript_program_in_studio_drive", ...args);
|
|
94
94
|
};
|
|
95
95
|
|
|
96
|
-
export const update_drive_addons =
|
|
97
|
-
|
|
96
|
+
export const update_drive_addons = async function (...args) {
|
|
97
|
+
return await broker.send_to_queue("update_drive_addons", ...args);
|
|
98
98
|
};
|
|
99
99
|
|
|
100
|
-
export const
|
|
101
|
-
|
|
100
|
+
export const list_site_files = async function (...args) {
|
|
101
|
+
return await broker.send_to_queue("list_site_files", ...args);
|
|
102
102
|
};
|
|
103
103
|
|
|
104
|
-
export const
|
|
105
|
-
|
|
104
|
+
export const read_site_file = async function (...args) {
|
|
105
|
+
return await broker.send_to_queue("read_site_file", ...args);
|
|
106
106
|
};
|
|
107
107
|
|
|
108
|
-
export const
|
|
109
|
-
|
|
108
|
+
export const write_site_file = async function (...args) {
|
|
109
|
+
return await broker.send_to_queue("write_site_file", ...args);
|
|
110
110
|
};
|
|
111
111
|
|
|
112
|
-
export const
|
|
113
|
-
|
|
112
|
+
export const ingest_static_site_source = async function (...args) {
|
|
113
|
+
return await broker.send_to_queue("ingest_static_site_source", ...args);
|
|
114
114
|
};
|
|
115
115
|
|
|
116
|
-
export const
|
|
117
|
-
|
|
116
|
+
export const read_static_site_source = async function (...args) {
|
|
117
|
+
return await broker.send_to_queue("read_static_site_source", ...args);
|
|
118
118
|
};
|
|
119
119
|
|
|
120
|
-
export const
|
|
121
|
-
|
|
120
|
+
export const get_static_site_dir = async function (...args) {
|
|
121
|
+
return await broker.send_to_queue("get_static_site_dir", ...args);
|
|
122
122
|
};
|
|
123
123
|
|
|
124
|
-
export const
|
|
125
|
-
|
|
124
|
+
export const list_static_site_folders = async function (...args) {
|
|
125
|
+
return await broker.send_to_queue("list_static_site_folders", ...args);
|
|
126
126
|
};
|
|
127
127
|
|
|
128
|
-
export const
|
|
129
|
-
|
|
128
|
+
export const cleanup_static_site_drafts = async function (...args) {
|
|
129
|
+
return await broker.send_to_queue("cleanup_static_site_drafts", ...args);
|
|
130
130
|
};
|
|
131
131
|
|
|
132
|
-
export const
|
|
133
|
-
|
|
132
|
+
export const get_static_site_preview_url = async function (...args) {
|
|
133
|
+
return await broker.send_to_queue("get_static_site_preview_url", ...args);
|
|
134
134
|
};
|
|
135
135
|
|
|
136
|
-
export const
|
|
137
|
-
|
|
136
|
+
export const restore_site_fs_from_manifest = async function (...args) {
|
|
137
|
+
return await broker.send_to_queue("restore_site_fs_from_manifest", ...args);
|
|
138
138
|
};
|
|
139
139
|
|
|
140
|
-
export const
|
|
141
|
-
|
|
140
|
+
export const read_user_drive_folder = async function (...args) {
|
|
141
|
+
return await broker.send_to_queue("read_user_drive_folder", ...args);
|
|
142
142
|
};
|
|
143
143
|
|
|
144
|
-
export const
|
|
145
|
-
|
|
144
|
+
export const put_site_files = async function (...args) {
|
|
145
|
+
return await broker.send_to_queue("put_site_files", ...args);
|
|
146
146
|
};
|
|
147
147
|
|
|
148
|
-
export const
|
|
149
|
-
|
|
148
|
+
export const delete_site_files = async function (...args) {
|
|
149
|
+
return await broker.send_to_queue("delete_site_files", ...args);
|
|
150
150
|
};
|
|
151
151
|
|
|
152
|
-
export const
|
|
153
|
-
|
|
152
|
+
export const get_drive_files_workspace = async function (...args) {
|
|
153
|
+
return await broker.send_to_queue("get_drive_files_workspace", ...args);
|
|
154
154
|
};
|
|
155
155
|
|
|
156
|
-
export const
|
|
157
|
-
|
|
156
|
+
export const get_drive_files_user = async function (...args) {
|
|
157
|
+
return await broker.send_to_queue("get_drive_files_user", ...args);
|
|
158
158
|
};
|
|
159
159
|
|
|
160
|
-
export const
|
|
161
|
-
|
|
160
|
+
export const get_drive_file_info_workspace = async function (...args) {
|
|
161
|
+
return await broker.send_to_queue("get_drive_file_info_workspace", ...args);
|
|
162
162
|
};
|
|
163
163
|
|
|
164
|
-
export const
|
|
165
|
-
|
|
164
|
+
export const get_drive_file_info_user = async function (...args) {
|
|
165
|
+
return await broker.send_to_queue("get_drive_file_info_user", ...args);
|
|
166
166
|
};
|
|
167
167
|
|
|
168
|
-
export const
|
|
169
|
-
|
|
168
|
+
export const delete_drive_files_workspace = async function (...args) {
|
|
169
|
+
return await broker.send_to_queue("delete_drive_files_workspace", ...args);
|
|
170
170
|
};
|
|
171
171
|
|
|
172
|
-
export const
|
|
173
|
-
|
|
172
|
+
export const delete_drive_files_user = async function (...args) {
|
|
173
|
+
return await broker.send_to_queue("delete_drive_files_user", ...args);
|
|
174
174
|
};
|
|
175
175
|
|
|
176
|
-
export const
|
|
177
|
-
|
|
176
|
+
export const extract_drive_file_workspace = async function (...args) {
|
|
177
|
+
return await broker.send_to_queue("extract_drive_file_workspace", ...args);
|
|
178
178
|
};
|
|
179
179
|
|
|
180
|
-
export const
|
|
181
|
-
|
|
180
|
+
export const extract_drive_file_user = async function (...args) {
|
|
181
|
+
return await broker.send_to_queue("extract_drive_file_user", ...args);
|
|
182
182
|
};
|
|
183
183
|
|
|
184
|
-
export const
|
|
185
|
-
|
|
184
|
+
export const upload_drive_file_workspace = async function (...args) {
|
|
185
|
+
return await broker.send_to_queue("upload_drive_file_workspace", ...args);
|
|
186
186
|
};
|
|
187
187
|
|
|
188
|
-
export const
|
|
189
|
-
|
|
188
|
+
export const upload_drive_file_user = async function (...args) {
|
|
189
|
+
return await broker.send_to_queue("upload_drive_file_user", ...args);
|
|
190
190
|
};
|
|
191
191
|
|
|
192
|
-
export const
|
|
193
|
-
|
|
192
|
+
export const update_drive_file_workspace = async function (...args) {
|
|
193
|
+
return await broker.send_to_queue("update_drive_file_workspace", ...args);
|
|
194
194
|
};
|
|
195
195
|
|
|
196
|
-
export const
|
|
197
|
-
|
|
196
|
+
export const update_drive_file_user = async function (...args) {
|
|
197
|
+
return await broker.send_to_queue("update_drive_file_user", ...args);
|
|
198
198
|
};
|
|
199
199
|
|
|
200
|
-
export const
|
|
201
|
-
|
|
200
|
+
export const create_drive_folder_workspace = async function (...args) {
|
|
201
|
+
return await broker.send_to_queue("create_drive_folder_workspace", ...args);
|
|
202
202
|
};
|
|
203
203
|
|
|
204
|
-
export const
|
|
205
|
-
|
|
204
|
+
export const create_drive_folder_user = async function (...args) {
|
|
205
|
+
return await broker.send_to_queue("create_drive_folder_user", ...args);
|
|
206
206
|
};
|
|
207
207
|
|
|
208
|
-
export const
|
|
209
|
-
|
|
208
|
+
export const rename_drive_file_workspace = async function (...args) {
|
|
209
|
+
return await broker.send_to_queue("rename_drive_file_workspace", ...args);
|
|
210
210
|
};
|
|
211
211
|
|
|
212
|
-
export const
|
|
213
|
-
|
|
212
|
+
export const rename_drive_file_user = async function (...args) {
|
|
213
|
+
return await broker.send_to_queue("rename_drive_file_user", ...args);
|
|
214
214
|
};
|
|
215
215
|
|
|
216
|
-
export const
|
|
217
|
-
|
|
216
|
+
export const rename_drive_folder_workspace = async function (...args) {
|
|
217
|
+
return await broker.send_to_queue("rename_drive_folder_workspace", ...args);
|
|
218
218
|
};
|
|
219
219
|
|
|
220
|
-
export const
|
|
221
|
-
|
|
220
|
+
export const rename_drive_folder_user = async function (...args) {
|
|
221
|
+
return await broker.send_to_queue("rename_drive_folder_user", ...args);
|
|
222
222
|
};
|
|
223
223
|
|
|
224
|
-
export const
|
|
225
|
-
|
|
224
|
+
export const update_drive_file_sharing_mode_workspace = async function (...args) {
|
|
225
|
+
return await broker.send_to_queue("update_drive_file_sharing_mode_workspace", ...args);
|
|
226
226
|
};
|
|
227
227
|
|
|
228
|
-
export const
|
|
229
|
-
|
|
228
|
+
export const update_drive_file_sharing_mode_user = async function (...args) {
|
|
229
|
+
return await broker.send_to_queue("update_drive_file_sharing_mode_user", ...args);
|
|
230
230
|
};
|
|
231
231
|
|
|
232
|
-
export const
|
|
233
|
-
|
|
232
|
+
export const delete_file_bulk_workspace = async function (...args) {
|
|
233
|
+
return await broker.send_to_queue("delete_file_bulk_workspace", ...args);
|
|
234
234
|
};
|
|
235
235
|
|
|
236
|
-
export const
|
|
237
|
-
|
|
236
|
+
export const delete_file_bulk_user = async function (...args) {
|
|
237
|
+
return await broker.send_to_queue("delete_file_bulk_user", ...args);
|
|
238
238
|
};
|
|
239
239
|
|
|
240
|
-
export const
|
|
241
|
-
|
|
240
|
+
export const check_drive_file_workspace = async function (...args) {
|
|
241
|
+
return await broker.send_to_queue("check_drive_file_workspace", ...args);
|
|
242
242
|
};
|
|
243
243
|
|
|
244
|
-
export const
|
|
245
|
-
|
|
244
|
+
export const check_drive_files_workspace = async function (...args) {
|
|
245
|
+
return await broker.send_to_queue("check_drive_files_workspace", ...args);
|
|
246
|
+
};
|
|
247
|
+
|
|
248
|
+
export const check_drive_file_user = async function (...args) {
|
|
249
|
+
return await broker.send_to_queue("check_drive_file_user", ...args);
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
export const check_drive_files_user = async function (...args) {
|
|
253
|
+
return await broker.send_to_queue("check_drive_files_user", ...args);
|
|
254
|
+
};
|
|
255
|
+
|
|
256
|
+
export const update_drive_file_tags_workspace = async function (...args) {
|
|
257
|
+
return await broker.send_to_queue("update_drive_file_tags_workspace", ...args);
|
|
258
|
+
};
|
|
259
|
+
|
|
260
|
+
export const update_drive_file_tags_user = async function (...args) {
|
|
261
|
+
return await broker.send_to_queue("update_drive_file_tags_user", ...args);
|
|
262
|
+
};
|
|
263
|
+
|
|
264
|
+
export const update_drive_addons_workspace = async function (...args) {
|
|
265
|
+
return await broker.send_to_queue("update_drive_addons_workspace", ...args);
|
|
266
|
+
};
|
|
267
|
+
|
|
268
|
+
export const update_drive_addons_user = async function (...args) {
|
|
269
|
+
return await broker.send_to_queue("update_drive_addons_user", ...args);
|
|
270
|
+
};
|
|
271
|
+
|
|
272
|
+
export const getExtensionFromUrl = async function (...args) {
|
|
273
|
+
return await broker.send_to_queue("getExtensionFromUrl", ...args);
|
|
274
|
+
};
|
|
275
|
+
|
|
276
|
+
export const get_user_drive_file = async function (...args) {
|
|
277
|
+
return await broker.send_to_queue("get_user_drive_file", ...args);
|
|
278
|
+
};
|
|
279
|
+
|
|
280
|
+
export const save_user_drive_file = async function (...args) {
|
|
281
|
+
return await broker.send_to_queue("save_user_drive_file", ...args);
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
export const find_contact_query = async function (...args) {
|
|
285
|
+
return await broker.send_to_queue("find_contact_query", ...args);
|
|
286
|
+
};
|
|
287
|
+
|
|
288
|
+
export const file_upload_validator = async function (...args) {
|
|
289
|
+
return await broker.send_to_queue("file_upload_validator", ...args);
|
|
290
|
+
};
|
|
291
|
+
|
|
292
|
+
export const get_drive_files_studio = async function (...args) {
|
|
293
|
+
return await broker.send_to_queue("get_drive_files_studio", ...args);
|
|
294
|
+
};
|
|
295
|
+
|
|
296
|
+
export const get_drive_file_info_studio = async function (...args) {
|
|
297
|
+
return await broker.send_to_queue("get_drive_file_info_studio", ...args);
|
|
298
|
+
};
|
|
299
|
+
|
|
300
|
+
export const delete_drive_files_studio = async function (...args) {
|
|
301
|
+
return await broker.send_to_queue("delete_drive_files_studio", ...args);
|
|
302
|
+
};
|
|
303
|
+
|
|
304
|
+
export const extract_drive_file_studio = async function (...args) {
|
|
305
|
+
return await broker.send_to_queue("extract_drive_file_studio", ...args);
|
|
306
|
+
};
|
|
307
|
+
|
|
308
|
+
export const upload_drive_file_studio = async function (...args) {
|
|
309
|
+
return await broker.send_to_queue("upload_drive_file_studio", ...args);
|
|
310
|
+
};
|
|
311
|
+
|
|
312
|
+
export const update_drive_file_studio = async function (...args) {
|
|
313
|
+
return await broker.send_to_queue("update_drive_file_studio", ...args);
|
|
314
|
+
};
|
|
315
|
+
|
|
316
|
+
export const create_drive_folder_studio = async function (...args) {
|
|
317
|
+
return await broker.send_to_queue("create_drive_folder_studio", ...args);
|
|
318
|
+
};
|
|
319
|
+
|
|
320
|
+
export const rename_drive_file_studio = async function (...args) {
|
|
321
|
+
return await broker.send_to_queue("rename_drive_file_studio", ...args);
|
|
322
|
+
};
|
|
323
|
+
|
|
324
|
+
export const rename_drive_folder_studio = async function (...args) {
|
|
325
|
+
return await broker.send_to_queue("rename_drive_folder_studio", ...args);
|
|
326
|
+
};
|
|
327
|
+
|
|
328
|
+
export const update_drive_file_sharing_mode_studio = async function (...args) {
|
|
329
|
+
return await broker.send_to_queue("update_drive_file_sharing_mode_studio", ...args);
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
export const delete_file_bulk_studio = async function (...args) {
|
|
333
|
+
return await broker.send_to_queue("delete_file_bulk_studio", ...args);
|
|
334
|
+
};
|
|
335
|
+
|
|
336
|
+
export const check_drive_file_studio = async function (...args) {
|
|
337
|
+
return await broker.send_to_queue("check_drive_file_studio", ...args);
|
|
338
|
+
};
|
|
339
|
+
|
|
340
|
+
export const check_drive_files_studio = async function (...args) {
|
|
341
|
+
return await broker.send_to_queue("check_drive_files_studio", ...args);
|
|
342
|
+
};
|
|
343
|
+
|
|
344
|
+
export const update_drive_file_tags_studio = async function (...args) {
|
|
345
|
+
return await broker.send_to_queue("update_drive_file_tags_studio", ...args);
|
|
346
|
+
};
|
|
347
|
+
|
|
348
|
+
export const update_drive_addons_studio = async function (...args) {
|
|
349
|
+
return await broker.send_to_queue("update_drive_addons_studio", ...args);
|
|
246
350
|
};
|