@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.
- package/dist/connect.cjs +14 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +14 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +16 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -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
|
@@ -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: {
|