@xuda.io/drive_module 1.1.1135 → 1.1.1137
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 +3 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -644,6 +644,7 @@ exports.create_drive_folder = async function (req, job_id, headers) {
|
|
|
644
644
|
folder_name,
|
|
645
645
|
uid,
|
|
646
646
|
date_created: Date.now(),
|
|
647
|
+
date_modified: 0,
|
|
647
648
|
ip: headers?.['cf-connecting-ip'],
|
|
648
649
|
country: headers?.['cf-ipcountry'],
|
|
649
650
|
is_folder: true,
|
|
@@ -942,6 +943,7 @@ exports.extract_drive_file = async function (req, job_id, headers) {
|
|
|
942
943
|
app_id: app_id_reference,
|
|
943
944
|
app_id_reference: app_id_master,
|
|
944
945
|
date_created: Date.now(),
|
|
946
|
+
date_modified: 0,
|
|
945
947
|
ip: headers['cf-connecting-ip'],
|
|
946
948
|
country: headers['cf-ipcountry'],
|
|
947
949
|
file_ext: ext,
|
|
@@ -1035,6 +1037,7 @@ exports.upload_drive_file = async function (req, job_id, headers, file_obj) {
|
|
|
1035
1037
|
uid,
|
|
1036
1038
|
type: 'file',
|
|
1037
1039
|
date_created: Date.now(),
|
|
1040
|
+
date_modified: 0,
|
|
1038
1041
|
ip: headers['cf-connecting-ip'],
|
|
1039
1042
|
country: headers['cf-ipcountry'],
|
|
1040
1043
|
file_ext: ext,
|