gdrivekit 1.0.6 → 1.0.7
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/README.md +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -59,8 +59,7 @@ After that, you **don’t need to call it again** unless you delete your tokens
|
|
|
59
59
|
Once tokens are generated, you can initialize the Google Drive service and perform file operations:
|
|
60
60
|
|
|
61
61
|
```ts
|
|
62
|
-
import { operations } from "gdrivekit";
|
|
63
|
-
import { initDriveService } from "./drivers/services";
|
|
62
|
+
import { initDriveService, operations } from "gdrivekit";
|
|
64
63
|
|
|
65
64
|
async function main() {
|
|
66
65
|
initDriveService();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gdrivekit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "A lightweight Google Drive toolkit for File Management. Handle Google Drive operations easily — upload, download, and other file operations in a few lines of code.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|