@seamapi/types 0.16.0 → 0.17.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.
@@ -569,6 +569,8 @@ export interface Routes {
569
569
  user_identifier_key: string | null;
570
570
  created_at: string;
571
571
  device_count: number;
572
+ connected_account_ids: string[];
573
+ connect_webview_ids: string[];
572
574
  workspace_id: string;
573
575
  }>;
574
576
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "0.16.0",
3
+ "version": "0.17.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -590,6 +590,8 @@ export interface Routes {
590
590
  user_identifier_key: string | null
591
591
  created_at: string
592
592
  device_count: number
593
+ connected_account_ids: string[]
594
+ connect_webview_ids: string[]
593
595
  workspace_id: string
594
596
  }>
595
597
  }