@seamapi/types 1.834.0 → 1.835.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.
@@ -68938,6 +68938,8 @@ export type Routes = {
68938
68938
  customer_key?: string | undefined;
68939
68939
  /** Collection key. */
68940
68940
  collection_key?: string | undefined;
68941
+ /** Connected account to scope auto-mapping to. Filters partner resources by the matching connector and limits available devices/entrances to this account. */
68942
+ connected_account_id?: string | undefined;
68941
68943
  };
68942
68944
  formData: {};
68943
68945
  jsonResponse: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.834.0",
3
+ "version": "1.835.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -73442,6 +73442,16 @@ const openapi: OpenAPISpec = {
73442
73442
  name: 'collection_key',
73443
73443
  schema: { description: 'Collection key.', type: 'string' },
73444
73444
  },
73445
+ {
73446
+ in: 'query',
73447
+ name: 'connected_account_id',
73448
+ schema: {
73449
+ description:
73450
+ 'Connected account to scope auto-mapping to. Filters partner resources by the matching connector and limits available devices/entrances to this account.',
73451
+ format: 'uuid',
73452
+ type: 'string',
73453
+ },
73454
+ },
73445
73455
  ],
73446
73456
  responses: {
73447
73457
  200: {
@@ -73557,6 +73567,12 @@ const openapi: OpenAPISpec = {
73557
73567
  description: 'Collection key.',
73558
73568
  type: 'string',
73559
73569
  },
73570
+ connected_account_id: {
73571
+ description:
73572
+ 'Connected account to scope auto-mapping to. Filters partner resources by the matching connector and limits available devices/entrances to this account.',
73573
+ format: 'uuid',
73574
+ type: 'string',
73575
+ },
73560
73576
  customer_key: {
73561
73577
  description: 'Customer key for which to auto-map spaces.',
73562
73578
  type: 'string',
@@ -82239,6 +82239,8 @@ export type Routes = {
82239
82239
  customer_key?: string | undefined
82240
82240
  /** Collection key. */
82241
82241
  collection_key?: string | undefined
82242
+ /** Connected account to scope auto-mapping to. Filters partner resources by the matching connector and limits available devices/entrances to this account. */
82243
+ connected_account_id?: string | undefined
82242
82244
  }
82243
82245
  formData: {}
82244
82246
  jsonResponse: {