@seamapi/types 1.505.0 → 1.507.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.
@@ -58018,7 +58018,9 @@ export type Routes = {
58018
58018
  jsonBody: {};
58019
58019
  commonParams: {
58020
58020
  /** IDs of the spaces that you want to get along with their related resources. */
58021
- space_ids: string[];
58021
+ space_ids?: string[] | undefined;
58022
+ /** Keys of the spaces that you want to get along with their related resources. */
58023
+ space_keys?: string[] | undefined;
58022
58024
  include?: ('spaces' | 'devices' | 'acs_entrances' | 'connected_accounts' | 'acs_systems')[] | undefined;
58023
58025
  exclude?: ('spaces' | 'devices' | 'acs_entrances' | 'connected_accounts' | 'acs_systems')[] | undefined;
58024
58026
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.505.0",
3
+ "version": "1.507.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -41234,7 +41234,7 @@ export default {
41234
41234
  '/devices/simulate/disconnect_from_hub': {
41235
41235
  post: {
41236
41236
  description:
41237
- 'Simulates taking the Wi‑Fi hub (bridge) offline for a device.\nOnly applicable for sandbox workspaces and currently\nimplemented for August and TTLock locks.\nThis will set the corresponding `hub_disconnected` or\n`ttlock_lock_not_paired_to_gateway` error on the device.',
41237
+ 'Simulates taking the Wi‑Fi hub (bridge) offline for a device.\nOnly applicable for sandbox workspaces and currently\nimplemented for August, TTLock, and IglooHome devices.\nThis will set the corresponding `hub_disconnected` or\n`ttlock_lock_not_paired_to_gateway` error on the device, or mark the\nIglooHome bridge offline in sandbox.',
41238
41238
  operationId: 'devicesSimulateDisconnectFromHubPost',
41239
41239
  requestBody: {
41240
41240
  content: {
@@ -49696,7 +49696,6 @@ export default {
49696
49696
  {
49697
49697
  in: 'query',
49698
49698
  name: 'space_ids',
49699
- required: true,
49700
49699
  schema: {
49701
49700
  description:
49702
49701
  'IDs of the spaces that you want to get along with their related resources.',
@@ -49704,10 +49703,19 @@ export default {
49704
49703
  type: 'array',
49705
49704
  },
49706
49705
  },
49706
+ {
49707
+ in: 'query',
49708
+ name: 'space_keys',
49709
+ schema: {
49710
+ description:
49711
+ 'Keys of the spaces that you want to get along with their related resources.',
49712
+ items: { type: 'string' },
49713
+ type: 'array',
49714
+ },
49715
+ },
49707
49716
  {
49708
49717
  in: 'query',
49709
49718
  name: 'include',
49710
- required: false,
49711
49719
  schema: {
49712
49720
  items: {
49713
49721
  enum: [
@@ -49725,7 +49733,6 @@ export default {
49725
49733
  {
49726
49734
  in: 'query',
49727
49735
  name: 'exclude',
49728
- required: false,
49729
49736
  schema: {
49730
49737
  items: {
49731
49738
  enum: [
@@ -49844,8 +49851,13 @@ export default {
49844
49851
  items: { format: 'uuid', type: 'string' },
49845
49852
  type: 'array',
49846
49853
  },
49854
+ space_keys: {
49855
+ description:
49856
+ 'Keys of the spaces that you want to get along with their related resources.',
49857
+ items: { type: 'string' },
49858
+ type: 'array',
49859
+ },
49847
49860
  },
49848
- required: ['space_ids'],
49849
49861
  type: 'object',
49850
49862
  },
49851
49863
  },
@@ -68958,7 +68958,9 @@ export type Routes = {
68958
68958
  jsonBody: {}
68959
68959
  commonParams: {
68960
68960
  /** IDs of the spaces that you want to get along with their related resources. */
68961
- space_ids: string[]
68961
+ space_ids?: string[] | undefined
68962
+ /** Keys of the spaces that you want to get along with their related resources. */
68963
+ space_keys?: string[] | undefined
68962
68964
  include?:
68963
68965
  | (
68964
68966
  | 'spaces'