@xuda.io/drive_module 1.1.1100 → 1.1.1101
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.js +5 -5
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2369,23 +2369,23 @@ exports.update_drive_addons = async function (req, job_id) {
|
|
|
2369
2369
|
let drive_addons = {};
|
|
2370
2370
|
|
|
2371
2371
|
if (typeof ocr !== "undefined") {
|
|
2372
|
-
|
|
2372
|
+
drive_addons.ocr = ocr;
|
|
2373
2373
|
}
|
|
2374
2374
|
|
|
2375
2375
|
if (typeof image_convertor !== "undefined") {
|
|
2376
|
-
|
|
2376
|
+
drive_addons.image_convertor = image_convertor;
|
|
2377
2377
|
}
|
|
2378
2378
|
|
|
2379
2379
|
if (typeof video_ai !== "undefined") {
|
|
2380
|
-
|
|
2380
|
+
drive_addons.video_ai = video_ai;
|
|
2381
2381
|
}
|
|
2382
2382
|
|
|
2383
2383
|
if (typeof ai_component_generator !== "undefined") {
|
|
2384
|
-
|
|
2384
|
+
drive_addons.ai_component_generator = ocr;
|
|
2385
2385
|
}
|
|
2386
2386
|
|
|
2387
2387
|
if (typeof edit_image !== "undefined") {
|
|
2388
|
-
|
|
2388
|
+
drive_addons.edit_image = edit_image;
|
|
2389
2389
|
}
|
|
2390
2390
|
};
|
|
2391
2391
|
|