@seamapi/types 1.656.0 → 1.658.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.
@@ -7489,6 +7489,125 @@ export default {
7489
7489
  ],
7490
7490
  'x-route-path': '/action_attempts',
7491
7491
  },
7492
+ batch: {
7493
+ description: 'A batch of workspace resources.',
7494
+ properties: {
7495
+ access_codes: {
7496
+ items: { $ref: '#/components/schemas/access_code' },
7497
+ type: 'array',
7498
+ },
7499
+ access_grants: {
7500
+ items: { $ref: '#/components/schemas/access_grant' },
7501
+ type: 'array',
7502
+ },
7503
+ access_methods: {
7504
+ items: { $ref: '#/components/schemas/access_method' },
7505
+ type: 'array',
7506
+ },
7507
+ acs_access_groups: {
7508
+ items: { $ref: '#/components/schemas/acs_access_group' },
7509
+ type: 'array',
7510
+ },
7511
+ acs_credentials: {
7512
+ items: { $ref: '#/components/schemas/acs_credential' },
7513
+ type: 'array',
7514
+ },
7515
+ acs_encoders: {
7516
+ items: { $ref: '#/components/schemas/acs_encoder' },
7517
+ type: 'array',
7518
+ },
7519
+ acs_entrances: {
7520
+ items: { $ref: '#/components/schemas/acs_entrance' },
7521
+ type: 'array',
7522
+ },
7523
+ acs_systems: {
7524
+ items: { $ref: '#/components/schemas/acs_system' },
7525
+ type: 'array',
7526
+ },
7527
+ acs_users: {
7528
+ items: { $ref: '#/components/schemas/acs_user' },
7529
+ type: 'array',
7530
+ },
7531
+ action_attempts: {
7532
+ items: { $ref: '#/components/schemas/action_attempt' },
7533
+ type: 'array',
7534
+ },
7535
+ client_sessions: {
7536
+ items: { $ref: '#/components/schemas/client_session' },
7537
+ type: 'array',
7538
+ },
7539
+ connect_webviews: {
7540
+ items: { $ref: '#/components/schemas/connect_webview' },
7541
+ type: 'array',
7542
+ },
7543
+ connected_accounts: {
7544
+ items: { $ref: '#/components/schemas/connected_account' },
7545
+ type: 'array',
7546
+ },
7547
+ customization_profiles: {
7548
+ items: { $ref: '#/components/schemas/customization_profile' },
7549
+ type: 'array',
7550
+ },
7551
+ devices: {
7552
+ items: { $ref: '#/components/schemas/device' },
7553
+ type: 'array',
7554
+ },
7555
+ events: {
7556
+ items: { $ref: '#/components/schemas/event' },
7557
+ type: 'array',
7558
+ },
7559
+ instant_keys: {
7560
+ items: { $ref: '#/components/schemas/instant_key' },
7561
+ type: 'array',
7562
+ },
7563
+ noise_thresholds: {
7564
+ items: { $ref: '#/components/schemas/noise_threshold' },
7565
+ type: 'array',
7566
+ },
7567
+ spaces: {
7568
+ items: { $ref: '#/components/schemas/space' },
7569
+ type: 'array',
7570
+ },
7571
+ thermostat_daily_programs: {
7572
+ items: { $ref: '#/components/schemas/thermostat_daily_program' },
7573
+ type: 'array',
7574
+ },
7575
+ thermostat_schedules: {
7576
+ items: { $ref: '#/components/schemas/thermostat_schedule' },
7577
+ type: 'array',
7578
+ },
7579
+ unmanaged_access_codes: {
7580
+ items: { $ref: '#/components/schemas/unmanaged_access_code' },
7581
+ type: 'array',
7582
+ },
7583
+ unmanaged_acs_access_groups: {
7584
+ items: { $ref: '#/components/schemas/unmanaged_acs_access_group' },
7585
+ type: 'array',
7586
+ },
7587
+ unmanaged_acs_credentials: {
7588
+ items: { $ref: '#/components/schemas/unmanaged_acs_credential' },
7589
+ type: 'array',
7590
+ },
7591
+ unmanaged_acs_users: {
7592
+ items: { $ref: '#/components/schemas/unmanaged_acs_user' },
7593
+ type: 'array',
7594
+ },
7595
+ unmanaged_devices: {
7596
+ items: { $ref: '#/components/schemas/unmanaged_device' },
7597
+ type: 'array',
7598
+ },
7599
+ user_identities: {
7600
+ items: { $ref: '#/components/schemas/user_identity' },
7601
+ type: 'array',
7602
+ },
7603
+ workspaces: {
7604
+ items: { $ref: '#/components/schemas/workspace' },
7605
+ type: 'array',
7606
+ },
7607
+ },
7608
+ type: 'object',
7609
+ 'x-route-path': '/workspaces',
7610
+ },
7492
7611
  bridge_client_session: {
7493
7612
  description: 'Represents a [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge) client session.',
7494
7613
  properties: {
@@ -10317,8 +10436,12 @@ export default {
10317
10436
  description: 'Device name for an Ultraloq device.',
10318
10437
  type: 'string',
10319
10438
  },
10439
+ device_type: {
10440
+ description: 'Device type for an Ultraloq device.',
10441
+ type: 'string',
10442
+ },
10320
10443
  },
10321
- required: ['device_id', 'device_name'],
10444
+ required: ['device_id', 'device_name', 'device_type'],
10322
10445
  type: 'object',
10323
10446
  },
10324
10447
  visionline_metadata: {
@@ -26208,6 +26331,7 @@ export default {
26208
26331
  },
26209
26332
  },
26210
26333
  type: 'object',
26334
+ 'x-route-path': '/workspaces',
26211
26335
  },
26212
26336
  ok: { type: 'boolean' },
26213
26337
  },
@@ -26337,6 +26461,7 @@ export default {
26337
26461
  },
26338
26462
  },
26339
26463
  type: 'object',
26464
+ 'x-route-path': '/workspaces',
26340
26465
  },
26341
26466
  ok: { type: 'boolean' },
26342
26467
  },
@@ -28161,6 +28286,7 @@ export default {
28161
28286
  },
28162
28287
  },
28163
28288
  type: 'object',
28289
+ 'x-route-path': '/workspaces',
28164
28290
  },
28165
28291
  ok: { type: 'boolean' },
28166
28292
  },
@@ -28298,6 +28424,7 @@ export default {
28298
28424
  },
28299
28425
  },
28300
28426
  type: 'object',
28427
+ 'x-route-path': '/workspaces',
28301
28428
  },
28302
28429
  ok: { type: 'boolean' },
28303
28430
  },
@@ -52885,6 +53012,7 @@ export default {
52885
53012
  },
52886
53013
  },
52887
53014
  type: 'object',
53015
+ 'x-route-path': '/workspaces',
52888
53016
  },
52889
53017
  ok: { type: 'boolean' },
52890
53018
  },
@@ -53003,6 +53131,7 @@ export default {
53003
53131
  },
53004
53132
  },
53005
53133
  type: 'object',
53134
+ 'x-route-path': '/workspaces',
53006
53135
  },
53007
53136
  ok: { type: 'boolean' },
53008
53137
  },
@@ -61038,6 +61167,7 @@ export default {
61038
61167
  },
61039
61168
  },
61040
61169
  type: 'object',
61170
+ 'x-route-path': '/workspaces',
61041
61171
  },
61042
61172
  ok: { type: 'boolean' },
61043
61173
  },
@@ -61262,6 +61392,7 @@ export default {
61262
61392
  },
61263
61393
  },
61264
61394
  type: 'object',
61395
+ 'x-route-path': '/workspaces',
61265
61396
  },
61266
61397
  ok: { type: 'boolean' },
61267
61398
  },