gdrivekit 1.0.9 → 1.1.1

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/README.md +8 -3
  2. package/dist/index.js +9345 -212
  3. package/package.json +4 -2
package/README.md CHANGED
@@ -87,6 +87,7 @@ main();
87
87
  | `renameFile()` | Rename an existing file |
88
88
  | `updateFile()` | Update file metadata or content |
89
89
  | `getFileInfo()` | Get details of a specific file |
90
+ | `getFileIdByName()` | Fetch file ID by its name |
90
91
  | `getCompleteFileInfo()` | Get complete file metadata including all fields |
91
92
  | `moveFile()` | Move file to another folder using file ID |
92
93
  | `moveFileByName()` | Move file by its name |
@@ -95,8 +96,10 @@ main();
95
96
  ---
96
97
 
97
98
  ### **MetaData Operation**
99
+
100
+ | Method | Description |
98
101
  | `getImageMetadata()` | Get image metadata (EXIF data, dimensions, etc.) |
99
- | `getVideoMetadata()` | Get video metadata (duration, dimensions, etc.) |
102
+ | `getVideoMetadata()` | Get video metadata (duration, dimensions, etc.) |
100
103
 
101
104
  ---
102
105
 
@@ -106,6 +109,7 @@ main();
106
109
  | --------------------- | --------------------------------------- |
107
110
  | `createFolder()` | Create a new folder |
108
111
  | `deleteFolder()` | Delete an existing folder |
112
+ | `getFolderIdByName()` | Fetch folder ID by its name |
109
113
  | `listFoldersByName()` | List all folders with a specific name |
110
114
  | `listAllFolders()` | List all folders in Drive |
111
115
  | `listFilesInFolder()` | List all files within a specific folder |
@@ -162,8 +166,8 @@ main();
162
166
  | `shareFile()` | Share a file with a user |
163
167
  | `fileExists()` | Check if a file exists |
164
168
  | `getStorageQuota()` | Get storage quota information |
165
- | `getFolderIdByName()` | Fetch folder ID by its name |
166
- | `getFileIdByName()` | Fetch file ID by its name |
169
+ | `createStream()` | Create stream for any Google Drive file (audio, video, image, doc, etc.) |
170
+
167
171
 
168
172
  ---
169
173
 
@@ -171,6 +175,7 @@ main();
171
175
 
172
176
  | Method | Description |
173
177
  | ----------------------- | ----------------------------------------- |
178
+ | `createJsonFile()` | Create a new JSON file |
174
179
  | `readJsonFileData()` | Read JSON file content |
175
180
  | `addJsonKeyValue()` | Add a new key-value pair to a JSON file |
176
181
  | `updateJsonFieldAndValues()` | Update an existing field in a JSON file |