attio 0.0.1-experimental.20250425.1 → 0.0.1-experimental.20250506

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/package.json +1 -1
  2. package/schema.graphql +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attio",
3
- "version": "0.0.1-experimental.20250425.1",
3
+ "version": "0.0.1-experimental.20250506",
4
4
  "bin": "lib/attio.js",
5
5
  "type": "module",
6
6
  "files": [
package/schema.graphql CHANGED
@@ -254,6 +254,7 @@ type Query {
254
254
  object: String!
255
255
  ): Record
256
256
  currentUser: User!
257
+ currentWorkspace: Workspace!
257
258
  }
258
259
 
259
260
  """The person object in the workspace."""
@@ -477,4 +478,10 @@ type users implements IObject {
477
478
  """ID of the user record."""
478
479
  id: String!
479
480
  ): UserRecord!
481
+ }
482
+
483
+ type Workspace {
484
+ id: String!
485
+ name: String!
486
+ slug: String!
480
487
  }