attio 0.0.1-experimental.20241219 → 0.0.1-experimental.20241226
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/package.json +1 -1
- package/schema.graphql +8 -1
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -152,10 +152,11 @@ type ActorReferenceValue {
|
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
"""An actor inside Attio."""
|
|
155
|
-
union Actor = User | SystemActor | APITokenActor | Workflow
|
|
155
|
+
union Actor = User | SystemActor | APITokenActor | App | Workflow
|
|
156
156
|
|
|
157
157
|
"""An Attio user."""
|
|
158
158
|
type User {
|
|
159
|
+
id: String!
|
|
159
160
|
email: String!
|
|
160
161
|
name: String!
|
|
161
162
|
}
|
|
@@ -170,6 +171,11 @@ type APITokenActor {
|
|
|
170
171
|
type: String!
|
|
171
172
|
}
|
|
172
173
|
|
|
174
|
+
"""An Attio app."""
|
|
175
|
+
type App {
|
|
176
|
+
type: String!
|
|
177
|
+
}
|
|
178
|
+
|
|
173
179
|
"""An Attio workflow."""
|
|
174
180
|
type Workflow {
|
|
175
181
|
type: String!
|
|
@@ -247,6 +253,7 @@ type Query {
|
|
|
247
253
|
"""Slug of the record's object."""
|
|
248
254
|
object: String!
|
|
249
255
|
): Record
|
|
256
|
+
currentUser: User!
|
|
250
257
|
}
|
|
251
258
|
|
|
252
259
|
"""The person object in the workspace."""
|