@theholocron/google-client 0.2.0 → 0.2.2

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 (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,7 +15,7 @@ import { google, googleAuth } from "@theholocron/google-client";
15
15
 
16
16
  // Service account auth (env vars — see Auth section)
17
17
  const authClient = await googleAuth([
18
- "https://www.googleapis.com/auth/spreadsheets.readonly",
18
+ "https://www.googleapis.com/auth/spreadsheets.readonly",
19
19
  ]);
20
20
 
21
21
  // Read a spreadsheet
@@ -56,7 +56,7 @@ GOOGLE_REDIRECT_URI=http://localhost:4000/oauth2callback # optional
56
56
  import { oauth } from "@theholocron/google-client";
57
57
 
58
58
  const authClient = await oauth([
59
- "https://www.googleapis.com/auth/spreadsheets",
59
+ "https://www.googleapis.com/auth/spreadsheets",
60
60
  ]);
61
61
  ```
62
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/google-client",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "A TypeScript client for Google Workspace APIs (Docs, Sheets)",
5
5
  "homepage": "https://github.com/theholocron/clients/tree/main/packages/google-client#readme",
6
6
  "bugs": "https://github.com/theholocron/clients/issues",