@xuda.io/drive_module 1.1.1470 → 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.
Files changed (3) hide show
  1. package/index_ms.mjs +47 -60
  2. package/index_msa.mjs +47 -60
  3. package/package.json +1 -1
package/index_ms.mjs CHANGED
@@ -101,10 +101,6 @@ export const get_drive_files_workspace = async function (...args) {
101
101
  return await broker.send_to_queue("get_drive_files_workspace", ...args);
102
102
  };
103
103
 
104
- export const get_drive_files_studio = async function (...args) {
105
- return await broker.send_to_queue("get_drive_files_studio", ...args);
106
- };
107
-
108
104
  export const get_drive_files_user = async function (...args) {
109
105
  return await broker.send_to_queue("get_drive_files_user", ...args);
110
106
  };
@@ -113,10 +109,6 @@ export const get_drive_file_info_workspace = async function (...args) {
113
109
  return await broker.send_to_queue("get_drive_file_info_workspace", ...args);
114
110
  };
115
111
 
116
- export const get_drive_file_info_studio = async function (...args) {
117
- return await broker.send_to_queue("get_drive_file_info_studio", ...args);
118
- };
119
-
120
112
  export const get_drive_file_info_user = async function (...args) {
121
113
  return await broker.send_to_queue("get_drive_file_info_user", ...args);
122
114
  };
@@ -125,10 +117,6 @@ export const delete_drive_files_workspace = async function (...args) {
125
117
  return await broker.send_to_queue("delete_drive_files_workspace", ...args);
126
118
  };
127
119
 
128
- export const delete_drive_files_studio = async function (...args) {
129
- return await broker.send_to_queue("delete_drive_files_studio", ...args);
130
- };
131
-
132
120
  export const delete_drive_files_user = async function (...args) {
133
121
  return await broker.send_to_queue("delete_drive_files_user", ...args);
134
122
  };
@@ -137,10 +125,6 @@ export const extract_drive_file_workspace = async function (...args) {
137
125
  return await broker.send_to_queue("extract_drive_file_workspace", ...args);
138
126
  };
139
127
 
140
- export const extract_drive_file_studio = async function (...args) {
141
- return await broker.send_to_queue("extract_drive_file_studio", ...args);
142
- };
143
-
144
128
  export const extract_drive_file_user = async function (...args) {
145
129
  return await broker.send_to_queue("extract_drive_file_user", ...args);
146
130
  };
@@ -149,10 +133,6 @@ export const upload_drive_file_workspace = async function (...args) {
149
133
  return await broker.send_to_queue("upload_drive_file_workspace", ...args);
150
134
  };
151
135
 
152
- export const upload_drive_file_studio = async function (...args) {
153
- return await broker.send_to_queue("upload_drive_file_studio", ...args);
154
- };
155
-
156
136
  export const upload_drive_file_user = async function (...args) {
157
137
  return await broker.send_to_queue("upload_drive_file_user", ...args);
158
138
  };
@@ -161,10 +141,6 @@ export const update_drive_file_workspace = async function (...args) {
161
141
  return await broker.send_to_queue("update_drive_file_workspace", ...args);
162
142
  };
163
143
 
164
- export const update_drive_file_studio = async function (...args) {
165
- return await broker.send_to_queue("update_drive_file_studio", ...args);
166
- };
167
-
168
144
  export const update_drive_file_user = async function (...args) {
169
145
  return await broker.send_to_queue("update_drive_file_user", ...args);
170
146
  };
@@ -173,10 +149,6 @@ export const create_drive_folder_workspace = async function (...args) {
173
149
  return await broker.send_to_queue("create_drive_folder_workspace", ...args);
174
150
  };
175
151
 
176
- export const create_drive_folder_studio = async function (...args) {
177
- return await broker.send_to_queue("create_drive_folder_studio", ...args);
178
- };
179
-
180
152
  export const create_drive_folder_user = async function (...args) {
181
153
  return await broker.send_to_queue("create_drive_folder_user", ...args);
182
154
  };
@@ -185,10 +157,6 @@ export const rename_drive_file_workspace = async function (...args) {
185
157
  return await broker.send_to_queue("rename_drive_file_workspace", ...args);
186
158
  };
187
159
 
188
- export const rename_drive_file_studio = async function (...args) {
189
- return await broker.send_to_queue("rename_drive_file_studio", ...args);
190
- };
191
-
192
160
  export const rename_drive_file_user = async function (...args) {
193
161
  return await broker.send_to_queue("rename_drive_file_user", ...args);
194
162
  };
@@ -197,10 +165,6 @@ export const rename_drive_folder_workspace = async function (...args) {
197
165
  return await broker.send_to_queue("rename_drive_folder_workspace", ...args);
198
166
  };
199
167
 
200
- export const rename_drive_folder_studio = async function (...args) {
201
- return await broker.send_to_queue("rename_drive_folder_studio", ...args);
202
- };
203
-
204
168
  export const rename_drive_folder_user = async function (...args) {
205
169
  return await broker.send_to_queue("rename_drive_folder_user", ...args);
206
170
  };
@@ -209,10 +173,6 @@ export const update_drive_file_sharing_mode_workspace = async function (...args)
209
173
  return await broker.send_to_queue("update_drive_file_sharing_mode_workspace", ...args);
210
174
  };
211
175
 
212
- export const update_drive_file_sharing_mode_studio = async function (...args) {
213
- return await broker.send_to_queue("update_drive_file_sharing_mode_studio", ...args);
214
- };
215
-
216
176
  export const update_drive_file_sharing_mode_user = async function (...args) {
217
177
  return await broker.send_to_queue("update_drive_file_sharing_mode_user", ...args);
218
178
  };
@@ -221,10 +181,6 @@ export const delete_file_bulk_workspace = async function (...args) {
221
181
  return await broker.send_to_queue("delete_file_bulk_workspace", ...args);
222
182
  };
223
183
 
224
- export const delete_file_bulk_studio = async function (...args) {
225
- return await broker.send_to_queue("delete_file_bulk_studio", ...args);
226
- };
227
-
228
184
  export const delete_file_bulk_user = async function (...args) {
229
185
  return await broker.send_to_queue("delete_file_bulk_user", ...args);
230
186
  };
@@ -237,14 +193,6 @@ export const check_drive_files_workspace = async function (...args) {
237
193
  return await broker.send_to_queue("check_drive_files_workspace", ...args);
238
194
  };
239
195
 
240
- export const check_drive_file_studio = async function (...args) {
241
- return await broker.send_to_queue("check_drive_file_studio", ...args);
242
- };
243
-
244
- export const check_drive_files_studio = async function (...args) {
245
- return await broker.send_to_queue("check_drive_files_studio", ...args);
246
- };
247
-
248
196
  export const check_drive_file_user = async function (...args) {
249
197
  return await broker.send_to_queue("check_drive_file_user", ...args);
250
198
  };
@@ -257,10 +205,6 @@ export const update_drive_file_tags_workspace = async function (...args) {
257
205
  return await broker.send_to_queue("update_drive_file_tags_workspace", ...args);
258
206
  };
259
207
 
260
- export const update_drive_file_tags_studio = async function (...args) {
261
- return await broker.send_to_queue("update_drive_file_tags_studio", ...args);
262
- };
263
-
264
208
  export const update_drive_file_tags_user = async function (...args) {
265
209
  return await broker.send_to_queue("update_drive_file_tags_user", ...args);
266
210
  };
@@ -269,10 +213,6 @@ export const update_drive_addons_workspace = async function (...args) {
269
213
  return await broker.send_to_queue("update_drive_addons_workspace", ...args);
270
214
  };
271
215
 
272
- export const update_drive_addons_studio = async function (...args) {
273
- return await broker.send_to_queue("update_drive_addons_studio", ...args);
274
- };
275
-
276
216
  export const update_drive_addons_user = async function (...args) {
277
217
  return await broker.send_to_queue("update_drive_addons_user", ...args);
278
218
  };
@@ -296,3 +236,50 @@ export const find_contact_query = async function (...args) {
296
236
  export const file_upload_validator = async function (...args) {
297
237
  return await broker.send_to_queue("file_upload_validator", ...args);
298
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
@@ -101,10 +101,6 @@ export const get_drive_files_workspace = function (...args) {
101
101
  broker.send_to_queue_async("get_drive_files_workspace", ...args);
102
102
  };
103
103
 
104
- export const get_drive_files_studio = function (...args) {
105
- broker.send_to_queue_async("get_drive_files_studio", ...args);
106
- };
107
-
108
104
  export const get_drive_files_user = function (...args) {
109
105
  broker.send_to_queue_async("get_drive_files_user", ...args);
110
106
  };
@@ -113,10 +109,6 @@ export const get_drive_file_info_workspace = function (...args) {
113
109
  broker.send_to_queue_async("get_drive_file_info_workspace", ...args);
114
110
  };
115
111
 
116
- export const get_drive_file_info_studio = function (...args) {
117
- broker.send_to_queue_async("get_drive_file_info_studio", ...args);
118
- };
119
-
120
112
  export const get_drive_file_info_user = function (...args) {
121
113
  broker.send_to_queue_async("get_drive_file_info_user", ...args);
122
114
  };
@@ -125,10 +117,6 @@ export const delete_drive_files_workspace = function (...args) {
125
117
  broker.send_to_queue_async("delete_drive_files_workspace", ...args);
126
118
  };
127
119
 
128
- export const delete_drive_files_studio = function (...args) {
129
- broker.send_to_queue_async("delete_drive_files_studio", ...args);
130
- };
131
-
132
120
  export const delete_drive_files_user = function (...args) {
133
121
  broker.send_to_queue_async("delete_drive_files_user", ...args);
134
122
  };
@@ -137,10 +125,6 @@ export const extract_drive_file_workspace = function (...args) {
137
125
  broker.send_to_queue_async("extract_drive_file_workspace", ...args);
138
126
  };
139
127
 
140
- export const extract_drive_file_studio = function (...args) {
141
- broker.send_to_queue_async("extract_drive_file_studio", ...args);
142
- };
143
-
144
128
  export const extract_drive_file_user = function (...args) {
145
129
  broker.send_to_queue_async("extract_drive_file_user", ...args);
146
130
  };
@@ -149,10 +133,6 @@ export const upload_drive_file_workspace = function (...args) {
149
133
  broker.send_to_queue_async("upload_drive_file_workspace", ...args);
150
134
  };
151
135
 
152
- export const upload_drive_file_studio = function (...args) {
153
- broker.send_to_queue_async("upload_drive_file_studio", ...args);
154
- };
155
-
156
136
  export const upload_drive_file_user = function (...args) {
157
137
  broker.send_to_queue_async("upload_drive_file_user", ...args);
158
138
  };
@@ -161,10 +141,6 @@ export const update_drive_file_workspace = function (...args) {
161
141
  broker.send_to_queue_async("update_drive_file_workspace", ...args);
162
142
  };
163
143
 
164
- export const update_drive_file_studio = function (...args) {
165
- broker.send_to_queue_async("update_drive_file_studio", ...args);
166
- };
167
-
168
144
  export const update_drive_file_user = function (...args) {
169
145
  broker.send_to_queue_async("update_drive_file_user", ...args);
170
146
  };
@@ -173,10 +149,6 @@ export const create_drive_folder_workspace = function (...args) {
173
149
  broker.send_to_queue_async("create_drive_folder_workspace", ...args);
174
150
  };
175
151
 
176
- export const create_drive_folder_studio = function (...args) {
177
- broker.send_to_queue_async("create_drive_folder_studio", ...args);
178
- };
179
-
180
152
  export const create_drive_folder_user = function (...args) {
181
153
  broker.send_to_queue_async("create_drive_folder_user", ...args);
182
154
  };
@@ -185,10 +157,6 @@ export const rename_drive_file_workspace = function (...args) {
185
157
  broker.send_to_queue_async("rename_drive_file_workspace", ...args);
186
158
  };
187
159
 
188
- export const rename_drive_file_studio = function (...args) {
189
- broker.send_to_queue_async("rename_drive_file_studio", ...args);
190
- };
191
-
192
160
  export const rename_drive_file_user = function (...args) {
193
161
  broker.send_to_queue_async("rename_drive_file_user", ...args);
194
162
  };
@@ -197,10 +165,6 @@ export const rename_drive_folder_workspace = function (...args) {
197
165
  broker.send_to_queue_async("rename_drive_folder_workspace", ...args);
198
166
  };
199
167
 
200
- export const rename_drive_folder_studio = function (...args) {
201
- broker.send_to_queue_async("rename_drive_folder_studio", ...args);
202
- };
203
-
204
168
  export const rename_drive_folder_user = function (...args) {
205
169
  broker.send_to_queue_async("rename_drive_folder_user", ...args);
206
170
  };
@@ -209,10 +173,6 @@ export const update_drive_file_sharing_mode_workspace = function (...args) {
209
173
  broker.send_to_queue_async("update_drive_file_sharing_mode_workspace", ...args);
210
174
  };
211
175
 
212
- export const update_drive_file_sharing_mode_studio = function (...args) {
213
- broker.send_to_queue_async("update_drive_file_sharing_mode_studio", ...args);
214
- };
215
-
216
176
  export const update_drive_file_sharing_mode_user = function (...args) {
217
177
  broker.send_to_queue_async("update_drive_file_sharing_mode_user", ...args);
218
178
  };
@@ -221,10 +181,6 @@ export const delete_file_bulk_workspace = function (...args) {
221
181
  broker.send_to_queue_async("delete_file_bulk_workspace", ...args);
222
182
  };
223
183
 
224
- export const delete_file_bulk_studio = function (...args) {
225
- broker.send_to_queue_async("delete_file_bulk_studio", ...args);
226
- };
227
-
228
184
  export const delete_file_bulk_user = function (...args) {
229
185
  broker.send_to_queue_async("delete_file_bulk_user", ...args);
230
186
  };
@@ -237,14 +193,6 @@ export const check_drive_files_workspace = function (...args) {
237
193
  broker.send_to_queue_async("check_drive_files_workspace", ...args);
238
194
  };
239
195
 
240
- export const check_drive_file_studio = function (...args) {
241
- broker.send_to_queue_async("check_drive_file_studio", ...args);
242
- };
243
-
244
- export const check_drive_files_studio = function (...args) {
245
- broker.send_to_queue_async("check_drive_files_studio", ...args);
246
- };
247
-
248
196
  export const check_drive_file_user = function (...args) {
249
197
  broker.send_to_queue_async("check_drive_file_user", ...args);
250
198
  };
@@ -257,10 +205,6 @@ export const update_drive_file_tags_workspace = function (...args) {
257
205
  broker.send_to_queue_async("update_drive_file_tags_workspace", ...args);
258
206
  };
259
207
 
260
- export const update_drive_file_tags_studio = function (...args) {
261
- broker.send_to_queue_async("update_drive_file_tags_studio", ...args);
262
- };
263
-
264
208
  export const update_drive_file_tags_user = function (...args) {
265
209
  broker.send_to_queue_async("update_drive_file_tags_user", ...args);
266
210
  };
@@ -269,10 +213,6 @@ export const update_drive_addons_workspace = function (...args) {
269
213
  broker.send_to_queue_async("update_drive_addons_workspace", ...args);
270
214
  };
271
215
 
272
- export const update_drive_addons_studio = function (...args) {
273
- broker.send_to_queue_async("update_drive_addons_studio", ...args);
274
- };
275
-
276
216
  export const update_drive_addons_user = function (...args) {
277
217
  broker.send_to_queue_async("update_drive_addons_user", ...args);
278
218
  };
@@ -296,3 +236,50 @@ export const find_contact_query = function (...args) {
296
236
  export const file_upload_validator = function (...args) {
297
237
  broker.send_to_queue_async("file_upload_validator", ...args);
298
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
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/drive_module",
3
- "version": "1.1.1470",
3
+ "version": "1.1.1472",
4
4
  "description": "Xuda Drive Server Module",
5
5
  "main": "index.mjs",
6
6
  "dependencies": {