attio-cli 0.2.0 → 0.3.0

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 +48 -2
  2. package/dist/attio.js +825 -83
  3. package/package.json +3 -2
package/README.md CHANGED
@@ -51,14 +51,18 @@ attio config claude-md >> CLAUDE.md
51
51
  | `attio records create <object>` | Create a new record |
52
52
  | `attio records update <object> <id>` | Update an existing record |
53
53
  | `attio records delete <object> <id>` | Delete a record |
54
- | `attio records upsert <object>` | Create or update a record by matching attribute |
55
- | `attio records search <object>` | Full-text search across records |
54
+ | `attio records assert <object>` | Create or update a record by matching attribute |
55
+ | `attio records upsert <object>` | Alias for `records assert` |
56
+ | `attio records search <query>` | Full-text search across one or more objects |
57
+ | `attio records values <object> <id>` | List current and historic attribute values |
58
+ | `attio records entries <object> <id>` | List list entries where this record is the parent |
56
59
  | **People** | |
57
60
  | `attio people list` | List people |
58
61
  | `attio people get <id>` | Get a person by ID |
59
62
  | `attio people create` | Create a person |
60
63
  | `attio people update <id>` | Update a person |
61
64
  | `attio people delete <id>` | Delete a person |
65
+ | `attio people assert` | Assert (upsert) a person by matching attribute |
62
66
  | `attio people search <query>` | Search people by name or email |
63
67
  | **Companies** | |
64
68
  | `attio companies list` | List companies |
@@ -66,7 +70,32 @@ attio config claude-md >> CLAUDE.md
66
70
  | `attio companies create` | Create a company |
67
71
  | `attio companies update <id>` | Update a company |
68
72
  | `attio companies delete <id>` | Delete a company |
73
+ | `attio companies assert` | Assert (upsert) a company by matching attribute |
69
74
  | `attio companies search <query>` | Search companies by name or domain |
75
+ | **Deals** | |
76
+ | `attio deals list` | List deals |
77
+ | `attio deals get <id>` | Get a deal by ID |
78
+ | `attio deals create` | Create a deal |
79
+ | `attio deals update <id>` | Update a deal |
80
+ | `attio deals delete <id>` | Delete a deal |
81
+ | `attio deals assert` | Assert (upsert) a deal by matching attribute |
82
+ | `attio deals search <query>` | Search deals |
83
+ | **Users** | |
84
+ | `attio users list` | List users |
85
+ | `attio users get <id>` | Get a user by ID |
86
+ | `attio users create` | Create a user |
87
+ | `attio users update <id>` | Update a user |
88
+ | `attio users delete <id>` | Delete a user |
89
+ | `attio users assert` | Assert (upsert) a user by matching attribute |
90
+ | `attio users search <query>` | Search users |
91
+ | **Workspaces (Standard Object)** | |
92
+ | `attio workspaces list` | List workspace records |
93
+ | `attio workspaces get <id>` | Get a workspace record by ID |
94
+ | `attio workspaces create` | Create a workspace record |
95
+ | `attio workspaces update <id>` | Update a workspace record |
96
+ | `attio workspaces delete <id>` | Delete a workspace record |
97
+ | `attio workspaces assert` | Assert (upsert) a workspace record by matching attribute |
98
+ | `attio workspaces search <query>` | Search workspace records |
70
99
  | **Lists** | |
71
100
  | `attio lists list` | List all lists |
72
101
  | `attio lists get <id>` | Get a specific list |
@@ -74,6 +103,7 @@ attio config claude-md >> CLAUDE.md
74
103
  | `attio entries list <list>` | List entries in a list |
75
104
  | `attio entries get <list> <id>` | Get a specific entry |
76
105
  | `attio entries create <list>` | Add an entry to a list |
106
+ | `attio entries assert <list>` | Assert (upsert) an entry by parent record |
77
107
  | `attio entries update <list> <id>` | Update a list entry |
78
108
  | `attio entries delete <list> <id>` | Remove an entry from a list |
79
109
  | **Tasks** | |
@@ -91,6 +121,22 @@ attio config claude-md >> CLAUDE.md
91
121
  | `attio comments list` | List comments on a thread |
92
122
  | `attio comments create` | Create a comment |
93
123
  | `attio comments delete <id>` | Delete a comment |
124
+ | **Threads** | |
125
+ | `attio threads list` | List threaded conversations |
126
+ | `attio threads get <id>` | Get a thread by ID |
127
+ | **Meetings (Beta)** | |
128
+ | `attio meetings list` | List meetings (beta endpoint) |
129
+ | `attio meetings get <id>` | Get a meeting (beta endpoint) |
130
+ | **Recordings (Beta)** | |
131
+ | `attio recordings list --meeting <id>` | List call recordings for a meeting |
132
+ | `attio recordings get <id> --meeting <id>` | Get a call recording, optionally with transcript |
133
+ | **Webhooks** | |
134
+ | `attio webhooks events` | List supported webhook event types |
135
+ | `attio webhooks list` | List webhooks |
136
+ | `attio webhooks get <id>` | Get a webhook by ID |
137
+ | `attio webhooks create` | Create a webhook |
138
+ | `attio webhooks update <id>` | Update a webhook |
139
+ | `attio webhooks delete <id>` | Delete a webhook |
94
140
  | **Members** | |
95
141
  | `attio members list` | List workspace members |
96
142
  | **Config** | |