@plotday/tool-google-contacts 0.2.0 → 0.2.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.
- package/README.md +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -5,15 +5,15 @@ A Plot tool for syncing with Google Contacts.
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install @plotday/tool-google-contacts @plotday/
|
|
8
|
+
npm install @plotday/tool-google-contacts @plotday/agent
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
13
|
```typescript
|
|
14
|
-
import { Agent, Tools } from "@plotday/
|
|
14
|
+
import { Agent, Tools } from "@plotday/agent";
|
|
15
15
|
import { GoogleContacts } from "@plotday/tool-google-contacts";
|
|
16
|
-
import { Integrations, AuthLevel, AuthProvider } from "@plotday/
|
|
16
|
+
import { Integrations, AuthLevel, AuthProvider } from "@plotday/agent/tools/integrations";
|
|
17
17
|
|
|
18
18
|
export default class extends Agent {
|
|
19
19
|
private googleContacts: GoogleContacts;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"description": "Sync with Google Contacts",
|
|
5
5
|
"author": "Plot <team@plot.day> (https://plot.day)",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"version": "0.2.
|
|
7
|
+
"version": "0.2.1",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"main": "./dist/index.js",
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"LICENSE"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@plotday/
|
|
23
|
+
"@plotday/agent": "^0.18.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"typescript": "^5.9.3"
|