@seamapi/types 1.231.0 → 1.233.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.
@@ -9446,6 +9446,15 @@ declare const _default: {
9446
9446
  };
9447
9447
  device: {
9448
9448
  properties: {
9449
+ can_hvac_cool: {
9450
+ type: string;
9451
+ };
9452
+ can_hvac_heat: {
9453
+ type: string;
9454
+ };
9455
+ can_hvac_heat_cool: {
9456
+ type: string;
9457
+ };
9449
9458
  can_program_offline_access_codes: {
9450
9459
  type: string;
9451
9460
  };
@@ -9467,6 +9476,9 @@ declare const _default: {
9467
9476
  can_simulate_removal: {
9468
9477
  type: string;
9469
9478
  };
9479
+ can_turn_off_hvac: {
9480
+ type: string;
9481
+ };
9470
9482
  capabilities_supported: {
9471
9483
  description: string;
9472
9484
  items: {
@@ -10739,6 +10751,15 @@ declare const _default: {
10739
10751
  };
10740
10752
  device_provider: {
10741
10753
  properties: {
10754
+ can_hvac_cool: {
10755
+ type: string;
10756
+ };
10757
+ can_hvac_heat: {
10758
+ type: string;
10759
+ };
10760
+ can_hvac_heat_cool: {
10761
+ type: string;
10762
+ };
10742
10763
  can_program_offline_access_codes: {
10743
10764
  type: string;
10744
10765
  };
@@ -10760,6 +10781,9 @@ declare const _default: {
10760
10781
  can_simulate_removal: {
10761
10782
  type: string;
10762
10783
  };
10784
+ can_turn_off_hvac: {
10785
+ type: string;
10786
+ };
10763
10787
  device_provider_name: {
10764
10788
  enum: string[];
10765
10789
  type: string;
@@ -10917,6 +10941,15 @@ declare const _default: {
10917
10941
  };
10918
10942
  phone: {
10919
10943
  properties: {
10944
+ can_hvac_cool: {
10945
+ type: string;
10946
+ };
10947
+ can_hvac_heat: {
10948
+ type: string;
10949
+ };
10950
+ can_hvac_heat_cool: {
10951
+ type: string;
10952
+ };
10920
10953
  can_program_offline_access_codes: {
10921
10954
  type: string;
10922
10955
  };
@@ -10938,6 +10971,9 @@ declare const _default: {
10938
10971
  can_simulate_removal: {
10939
10972
  type: string;
10940
10973
  };
10974
+ can_turn_off_hvac: {
10975
+ type: string;
10976
+ };
10941
10977
  capabilities_supported: {
10942
10978
  description: string;
10943
10979
  items: {
@@ -11237,6 +11273,15 @@ declare const _default: {
11237
11273
  };
11238
11274
  unmanaged_device: {
11239
11275
  properties: {
11276
+ can_hvac_cool: {
11277
+ type: string;
11278
+ };
11279
+ can_hvac_heat: {
11280
+ type: string;
11281
+ };
11282
+ can_hvac_heat_cool: {
11283
+ type: string;
11284
+ };
11240
11285
  can_program_offline_access_codes: {
11241
11286
  type: string;
11242
11287
  };
@@ -11258,6 +11303,9 @@ declare const _default: {
11258
11303
  can_simulate_removal: {
11259
11304
  type: string;
11260
11305
  };
11306
+ can_turn_off_hvac: {
11307
+ type: string;
11308
+ };
11261
11309
  capabilities_supported: {
11262
11310
  description: string;
11263
11311
  items: {
@@ -16286,6 +16334,83 @@ declare const _default: {
16286
16334
  'x-fern-sdk-return-value': string;
16287
16335
  };
16288
16336
  };
16337
+ '/acs/users/unmanaged/list': {
16338
+ post: {
16339
+ operationId: string;
16340
+ requestBody: {
16341
+ content: {
16342
+ 'application/json': {
16343
+ schema: {
16344
+ properties: {
16345
+ acs_system_id: {
16346
+ format: string;
16347
+ type: string;
16348
+ };
16349
+ };
16350
+ required: string[];
16351
+ type: string;
16352
+ };
16353
+ };
16354
+ };
16355
+ };
16356
+ responses: {
16357
+ 200: {
16358
+ content: {
16359
+ 'application/json': {
16360
+ schema: {
16361
+ properties: {
16362
+ acs_users: {
16363
+ items: {
16364
+ $ref: string;
16365
+ };
16366
+ type: string;
16367
+ };
16368
+ ok: {
16369
+ type: string;
16370
+ };
16371
+ };
16372
+ required: string[];
16373
+ type: string;
16374
+ };
16375
+ };
16376
+ };
16377
+ description: string;
16378
+ };
16379
+ 400: {
16380
+ description: string;
16381
+ };
16382
+ 401: {
16383
+ description: string;
16384
+ };
16385
+ };
16386
+ security: ({
16387
+ client_session: never[];
16388
+ pat_with_workspace?: never;
16389
+ console_session?: never;
16390
+ api_key?: never;
16391
+ } | {
16392
+ pat_with_workspace: never[];
16393
+ client_session?: never;
16394
+ console_session?: never;
16395
+ api_key?: never;
16396
+ } | {
16397
+ console_session: never[];
16398
+ client_session?: never;
16399
+ pat_with_workspace?: never;
16400
+ api_key?: never;
16401
+ } | {
16402
+ api_key: never[];
16403
+ client_session?: never;
16404
+ pat_with_workspace?: never;
16405
+ console_session?: never;
16406
+ })[];
16407
+ summary: string;
16408
+ tags: string[];
16409
+ 'x-fern-sdk-group-name': string[];
16410
+ 'x-fern-sdk-method-name': string;
16411
+ 'x-fern-sdk-return-value': string;
16412
+ };
16413
+ };
16289
16414
  '/acs/users/unsuspend': {
16290
16415
  post: {
16291
16416
  operationId: string;
@@ -28063,6 +28188,50 @@ interface Routes {
28063
28188
  };
28064
28189
  };
28065
28190
  };
28191
+ '/acs/users/unmanaged/list': {
28192
+ route: '/acs/users/unmanaged/list';
28193
+ method: 'GET' | 'POST';
28194
+ queryParams: {};
28195
+ jsonBody: {};
28196
+ commonParams: {
28197
+ acs_system_id: string;
28198
+ };
28199
+ formData: {};
28200
+ jsonResponse: {
28201
+ acs_users: Array<{
28202
+ acs_user_id: string;
28203
+ acs_system_id: string;
28204
+ hid_acs_system_id?: string | undefined;
28205
+ workspace_id: string;
28206
+ created_at: string;
28207
+ display_name: string;
28208
+ external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
28209
+ external_type_display_name?: string | undefined;
28210
+ is_suspended: boolean;
28211
+ access_schedule?: {
28212
+ starts_at: string;
28213
+ ends_at: string;
28214
+ } | undefined;
28215
+ user_identity_id?: string | undefined;
28216
+ user_identity_full_name?: (string | null) | undefined;
28217
+ user_identity_email_address?: (string | null) | undefined;
28218
+ user_identity_phone_number?: (string | null) | undefined;
28219
+ latest_desired_state_synced_with_provider_at?: string | undefined;
28220
+ is_latest_desired_state_synced_with_provider?: boolean | undefined;
28221
+ warnings: Array<{
28222
+ created_at: string;
28223
+ message: string;
28224
+ warning_code: 'being_deleted';
28225
+ }>;
28226
+ full_name?: string | undefined;
28227
+ /**
28228
+ * @deprecated use email_address. */
28229
+ email?: string | undefined;
28230
+ email_address?: string | undefined;
28231
+ phone_number?: string | undefined;
28232
+ }>;
28233
+ };
28234
+ };
28066
28235
  '/acs/users/unsuspend': {
28067
28236
  route: '/acs/users/unsuspend';
28068
28237
  method: 'POST';
@@ -29664,6 +29833,10 @@ interface Routes {
29664
29833
  can_remotely_lock?: boolean | undefined;
29665
29834
  can_program_offline_access_codes?: boolean | undefined;
29666
29835
  can_program_online_access_codes?: boolean | undefined;
29836
+ can_hvac_heat?: boolean | undefined;
29837
+ can_hvac_cool?: boolean | undefined;
29838
+ can_hvac_heat_cool?: boolean | undefined;
29839
+ can_turn_off_hvac?: boolean | undefined;
29667
29840
  can_simulate_removal?: boolean | undefined;
29668
29841
  can_simulate_connection?: boolean | undefined;
29669
29842
  can_simulate_disconnection?: boolean | undefined;
@@ -29688,8 +29861,8 @@ interface Routes {
29688
29861
  created_before?: Date | undefined;
29689
29862
  user_identifier_key?: string | undefined;
29690
29863
  custom_metadata_has?: Record<string, string | boolean> | undefined;
29691
- include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
29692
- exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
29864
+ include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
29865
+ exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
29693
29866
  };
29694
29867
  formData: {};
29695
29868
  jsonResponse: {
@@ -30079,6 +30252,10 @@ interface Routes {
30079
30252
  can_remotely_lock?: boolean | undefined;
30080
30253
  can_program_offline_access_codes?: boolean | undefined;
30081
30254
  can_program_online_access_codes?: boolean | undefined;
30255
+ can_hvac_heat?: boolean | undefined;
30256
+ can_hvac_cool?: boolean | undefined;
30257
+ can_hvac_heat_cool?: boolean | undefined;
30258
+ can_turn_off_hvac?: boolean | undefined;
30082
30259
  can_simulate_removal?: boolean | undefined;
30083
30260
  can_simulate_connection?: boolean | undefined;
30084
30261
  can_simulate_disconnection?: boolean | undefined;
@@ -30104,6 +30281,10 @@ interface Routes {
30104
30281
  can_remotely_lock?: boolean | undefined;
30105
30282
  can_program_offline_access_codes?: boolean | undefined;
30106
30283
  can_program_online_access_codes?: boolean | undefined;
30284
+ can_hvac_heat?: boolean | undefined;
30285
+ can_hvac_cool?: boolean | undefined;
30286
+ can_hvac_heat_cool?: boolean | undefined;
30287
+ can_turn_off_hvac?: boolean | undefined;
30107
30288
  can_simulate_removal?: boolean | undefined;
30108
30289
  can_simulate_connection?: boolean | undefined;
30109
30290
  can_simulate_disconnection?: boolean | undefined;
@@ -30244,6 +30425,10 @@ interface Routes {
30244
30425
  can_remotely_lock?: boolean | undefined;
30245
30426
  can_program_offline_access_codes?: boolean | undefined;
30246
30427
  can_program_online_access_codes?: boolean | undefined;
30428
+ can_hvac_heat?: boolean | undefined;
30429
+ can_hvac_cool?: boolean | undefined;
30430
+ can_hvac_heat_cool?: boolean | undefined;
30431
+ can_turn_off_hvac?: boolean | undefined;
30247
30432
  can_simulate_removal?: boolean | undefined;
30248
30433
  can_simulate_connection?: boolean | undefined;
30249
30434
  can_simulate_disconnection?: boolean | undefined;
@@ -30268,8 +30453,8 @@ interface Routes {
30268
30453
  created_before?: Date | undefined;
30269
30454
  user_identifier_key?: string | undefined;
30270
30455
  custom_metadata_has?: Record<string, string | boolean> | undefined;
30271
- include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
30272
- exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
30456
+ include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
30457
+ exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
30273
30458
  };
30274
30459
  formData: {};
30275
30460
  jsonResponse: {
@@ -30363,6 +30548,10 @@ interface Routes {
30363
30548
  can_remotely_lock?: boolean | undefined;
30364
30549
  can_program_offline_access_codes?: boolean | undefined;
30365
30550
  can_program_online_access_codes?: boolean | undefined;
30551
+ can_hvac_heat?: boolean | undefined;
30552
+ can_hvac_cool?: boolean | undefined;
30553
+ can_hvac_heat_cool?: boolean | undefined;
30554
+ can_turn_off_hvac?: boolean | undefined;
30366
30555
  can_simulate_removal?: boolean | undefined;
30367
30556
  can_simulate_connection?: boolean | undefined;
30368
30557
  can_simulate_disconnection?: boolean | undefined;
@@ -30862,6 +31051,10 @@ interface Routes {
30862
31051
  can_remotely_lock?: boolean | undefined;
30863
31052
  can_program_offline_access_codes?: boolean | undefined;
30864
31053
  can_program_online_access_codes?: boolean | undefined;
31054
+ can_hvac_heat?: boolean | undefined;
31055
+ can_hvac_cool?: boolean | undefined;
31056
+ can_hvac_heat_cool?: boolean | undefined;
31057
+ can_turn_off_hvac?: boolean | undefined;
30865
31058
  can_simulate_removal?: boolean | undefined;
30866
31059
  can_simulate_connection?: boolean | undefined;
30867
31060
  can_simulate_disconnection?: boolean | undefined;
@@ -31252,6 +31445,10 @@ interface Routes {
31252
31445
  can_remotely_lock?: boolean | undefined;
31253
31446
  can_program_offline_access_codes?: boolean | undefined;
31254
31447
  can_program_online_access_codes?: boolean | undefined;
31448
+ can_hvac_heat?: boolean | undefined;
31449
+ can_hvac_cool?: boolean | undefined;
31450
+ can_hvac_heat_cool?: boolean | undefined;
31451
+ can_turn_off_hvac?: boolean | undefined;
31255
31452
  can_simulate_removal?: boolean | undefined;
31256
31453
  can_simulate_connection?: boolean | undefined;
31257
31454
  can_simulate_disconnection?: boolean | undefined;
@@ -31276,8 +31473,8 @@ interface Routes {
31276
31473
  created_before?: Date | undefined;
31277
31474
  user_identifier_key?: string | undefined;
31278
31475
  custom_metadata_has?: Record<string, string | boolean> | undefined;
31279
- include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
31280
- exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
31476
+ include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
31477
+ exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
31281
31478
  };
31282
31479
  formData: {};
31283
31480
  jsonResponse: {
@@ -31667,6 +31864,10 @@ interface Routes {
31667
31864
  can_remotely_lock?: boolean | undefined;
31668
31865
  can_program_offline_access_codes?: boolean | undefined;
31669
31866
  can_program_online_access_codes?: boolean | undefined;
31867
+ can_hvac_heat?: boolean | undefined;
31868
+ can_hvac_cool?: boolean | undefined;
31869
+ can_hvac_heat_cool?: boolean | undefined;
31870
+ can_turn_off_hvac?: boolean | undefined;
31670
31871
  can_simulate_removal?: boolean | undefined;
31671
31872
  can_simulate_connection?: boolean | undefined;
31672
31873
  can_simulate_disconnection?: boolean | undefined;
@@ -32057,6 +32258,10 @@ interface Routes {
32057
32258
  can_remotely_lock?: boolean | undefined;
32058
32259
  can_program_offline_access_codes?: boolean | undefined;
32059
32260
  can_program_online_access_codes?: boolean | undefined;
32261
+ can_hvac_heat?: boolean | undefined;
32262
+ can_hvac_cool?: boolean | undefined;
32263
+ can_hvac_heat_cool?: boolean | undefined;
32264
+ can_turn_off_hvac?: boolean | undefined;
32060
32265
  can_simulate_removal?: boolean | undefined;
32061
32266
  can_simulate_connection?: boolean | undefined;
32062
32267
  can_simulate_disconnection?: boolean | undefined;
@@ -32863,8 +33068,8 @@ interface Routes {
32863
33068
  created_before?: Date | undefined;
32864
33069
  user_identifier_key?: string | undefined;
32865
33070
  custom_metadata_has?: Record<string, string | boolean> | undefined;
32866
- include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
32867
- exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
33071
+ include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
33072
+ exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
32868
33073
  };
32869
33074
  formData: {};
32870
33075
  jsonResponse: {
@@ -33254,6 +33459,10 @@ interface Routes {
33254
33459
  can_remotely_lock?: boolean | undefined;
33255
33460
  can_program_offline_access_codes?: boolean | undefined;
33256
33461
  can_program_online_access_codes?: boolean | undefined;
33462
+ can_hvac_heat?: boolean | undefined;
33463
+ can_hvac_cool?: boolean | undefined;
33464
+ can_hvac_heat_cool?: boolean | undefined;
33465
+ can_turn_off_hvac?: boolean | undefined;
33257
33466
  can_simulate_removal?: boolean | undefined;
33258
33467
  can_simulate_connection?: boolean | undefined;
33259
33468
  can_simulate_disconnection?: boolean | undefined;
@@ -33644,6 +33853,10 @@ interface Routes {
33644
33853
  can_remotely_lock?: boolean | undefined;
33645
33854
  can_program_offline_access_codes?: boolean | undefined;
33646
33855
  can_program_online_access_codes?: boolean | undefined;
33856
+ can_hvac_heat?: boolean | undefined;
33857
+ can_hvac_cool?: boolean | undefined;
33858
+ can_hvac_heat_cool?: boolean | undefined;
33859
+ can_turn_off_hvac?: boolean | undefined;
33647
33860
  can_simulate_removal?: boolean | undefined;
33648
33861
  can_simulate_connection?: boolean | undefined;
33649
33862
  can_simulate_disconnection?: boolean | undefined;
@@ -34921,6 +35134,10 @@ interface Routes {
34921
35134
  can_remotely_lock?: boolean | undefined;
34922
35135
  can_program_offline_access_codes?: boolean | undefined;
34923
35136
  can_program_online_access_codes?: boolean | undefined;
35137
+ can_hvac_heat?: boolean | undefined;
35138
+ can_hvac_cool?: boolean | undefined;
35139
+ can_hvac_heat_cool?: boolean | undefined;
35140
+ can_turn_off_hvac?: boolean | undefined;
34924
35141
  can_simulate_removal?: boolean | undefined;
34925
35142
  can_simulate_connection?: boolean | undefined;
34926
35143
  can_simulate_disconnection?: boolean | undefined;
@@ -35004,6 +35221,10 @@ interface Routes {
35004
35221
  can_remotely_lock?: boolean | undefined;
35005
35222
  can_program_offline_access_codes?: boolean | undefined;
35006
35223
  can_program_online_access_codes?: boolean | undefined;
35224
+ can_hvac_heat?: boolean | undefined;
35225
+ can_hvac_cool?: boolean | undefined;
35226
+ can_hvac_heat_cool?: boolean | undefined;
35227
+ can_turn_off_hvac?: boolean | undefined;
35007
35228
  can_simulate_removal?: boolean | undefined;
35008
35229
  can_simulate_connection?: boolean | undefined;
35009
35230
  can_simulate_disconnection?: boolean | undefined;
@@ -35932,6 +36153,10 @@ interface Routes {
35932
36153
  can_remotely_lock?: boolean | undefined;
35933
36154
  can_program_offline_access_codes?: boolean | undefined;
35934
36155
  can_program_online_access_codes?: boolean | undefined;
36156
+ can_hvac_heat?: boolean | undefined;
36157
+ can_hvac_cool?: boolean | undefined;
36158
+ can_hvac_heat_cool?: boolean | undefined;
36159
+ can_turn_off_hvac?: boolean | undefined;
35935
36160
  can_simulate_removal?: boolean | undefined;
35936
36161
  can_simulate_connection?: boolean | undefined;
35937
36162
  can_simulate_disconnection?: boolean | undefined;
@@ -36710,8 +36935,8 @@ interface Routes {
36710
36935
  created_before?: Date | undefined;
36711
36936
  user_identifier_key?: string | undefined;
36712
36937
  custom_metadata_has?: Record<string, string | boolean> | undefined;
36713
- include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
36714
- exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
36938
+ include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
36939
+ exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
36715
36940
  };
36716
36941
  formData: {};
36717
36942
  jsonResponse: {
@@ -37101,6 +37326,10 @@ interface Routes {
37101
37326
  can_remotely_lock?: boolean | undefined;
37102
37327
  can_program_offline_access_codes?: boolean | undefined;
37103
37328
  can_program_online_access_codes?: boolean | undefined;
37329
+ can_hvac_heat?: boolean | undefined;
37330
+ can_hvac_cool?: boolean | undefined;
37331
+ can_hvac_heat_cool?: boolean | undefined;
37332
+ can_turn_off_hvac?: boolean | undefined;
37104
37333
  can_simulate_removal?: boolean | undefined;
37105
37334
  can_simulate_connection?: boolean | undefined;
37106
37335
  can_simulate_disconnection?: boolean | undefined;
@@ -38451,6 +38680,10 @@ interface Routes {
38451
38680
  can_remotely_lock?: boolean | undefined;
38452
38681
  can_program_offline_access_codes?: boolean | undefined;
38453
38682
  can_program_online_access_codes?: boolean | undefined;
38683
+ can_hvac_heat?: boolean | undefined;
38684
+ can_hvac_cool?: boolean | undefined;
38685
+ can_hvac_heat_cool?: boolean | undefined;
38686
+ can_turn_off_hvac?: boolean | undefined;
38454
38687
  can_simulate_removal?: boolean | undefined;
38455
38688
  can_simulate_connection?: boolean | undefined;
38456
38689
  can_simulate_disconnection?: boolean | undefined;
@@ -38843,6 +39076,10 @@ interface Routes {
38843
39076
  can_remotely_lock?: boolean | undefined;
38844
39077
  can_program_offline_access_codes?: boolean | undefined;
38845
39078
  can_program_online_access_codes?: boolean | undefined;
39079
+ can_hvac_heat?: boolean | undefined;
39080
+ can_hvac_cool?: boolean | undefined;
39081
+ can_hvac_heat_cool?: boolean | undefined;
39082
+ can_turn_off_hvac?: boolean | undefined;
38846
39083
  can_simulate_removal?: boolean | undefined;
38847
39084
  can_simulate_connection?: boolean | undefined;
38848
39085
  can_simulate_disconnection?: boolean | undefined;
@@ -1257,6 +1257,15 @@ declare const _default: {
1257
1257
  };
1258
1258
  device: {
1259
1259
  properties: {
1260
+ can_hvac_cool: {
1261
+ type: string;
1262
+ };
1263
+ can_hvac_heat: {
1264
+ type: string;
1265
+ };
1266
+ can_hvac_heat_cool: {
1267
+ type: string;
1268
+ };
1260
1269
  can_program_offline_access_codes: {
1261
1270
  type: string;
1262
1271
  };
@@ -1278,6 +1287,9 @@ declare const _default: {
1278
1287
  can_simulate_removal: {
1279
1288
  type: string;
1280
1289
  };
1290
+ can_turn_off_hvac: {
1291
+ type: string;
1292
+ };
1281
1293
  capabilities_supported: {
1282
1294
  description: string;
1283
1295
  items: {
@@ -2550,6 +2562,15 @@ declare const _default: {
2550
2562
  };
2551
2563
  device_provider: {
2552
2564
  properties: {
2565
+ can_hvac_cool: {
2566
+ type: string;
2567
+ };
2568
+ can_hvac_heat: {
2569
+ type: string;
2570
+ };
2571
+ can_hvac_heat_cool: {
2572
+ type: string;
2573
+ };
2553
2574
  can_program_offline_access_codes: {
2554
2575
  type: string;
2555
2576
  };
@@ -2571,6 +2592,9 @@ declare const _default: {
2571
2592
  can_simulate_removal: {
2572
2593
  type: string;
2573
2594
  };
2595
+ can_turn_off_hvac: {
2596
+ type: string;
2597
+ };
2574
2598
  device_provider_name: {
2575
2599
  enum: string[];
2576
2600
  type: string;
@@ -2728,6 +2752,15 @@ declare const _default: {
2728
2752
  };
2729
2753
  phone: {
2730
2754
  properties: {
2755
+ can_hvac_cool: {
2756
+ type: string;
2757
+ };
2758
+ can_hvac_heat: {
2759
+ type: string;
2760
+ };
2761
+ can_hvac_heat_cool: {
2762
+ type: string;
2763
+ };
2731
2764
  can_program_offline_access_codes: {
2732
2765
  type: string;
2733
2766
  };
@@ -2749,6 +2782,9 @@ declare const _default: {
2749
2782
  can_simulate_removal: {
2750
2783
  type: string;
2751
2784
  };
2785
+ can_turn_off_hvac: {
2786
+ type: string;
2787
+ };
2752
2788
  capabilities_supported: {
2753
2789
  description: string;
2754
2790
  items: {
@@ -3048,6 +3084,15 @@ declare const _default: {
3048
3084
  };
3049
3085
  unmanaged_device: {
3050
3086
  properties: {
3087
+ can_hvac_cool: {
3088
+ type: string;
3089
+ };
3090
+ can_hvac_heat: {
3091
+ type: string;
3092
+ };
3093
+ can_hvac_heat_cool: {
3094
+ type: string;
3095
+ };
3051
3096
  can_program_offline_access_codes: {
3052
3097
  type: string;
3053
3098
  };
@@ -3069,6 +3114,9 @@ declare const _default: {
3069
3114
  can_simulate_removal: {
3070
3115
  type: string;
3071
3116
  };
3117
+ can_turn_off_hvac: {
3118
+ type: string;
3119
+ };
3072
3120
  capabilities_supported: {
3073
3121
  description: string;
3074
3122
  items: {
@@ -8097,6 +8145,83 @@ declare const _default: {
8097
8145
  'x-fern-sdk-return-value': string;
8098
8146
  };
8099
8147
  };
8148
+ '/acs/users/unmanaged/list': {
8149
+ post: {
8150
+ operationId: string;
8151
+ requestBody: {
8152
+ content: {
8153
+ 'application/json': {
8154
+ schema: {
8155
+ properties: {
8156
+ acs_system_id: {
8157
+ format: string;
8158
+ type: string;
8159
+ };
8160
+ };
8161
+ required: string[];
8162
+ type: string;
8163
+ };
8164
+ };
8165
+ };
8166
+ };
8167
+ responses: {
8168
+ 200: {
8169
+ content: {
8170
+ 'application/json': {
8171
+ schema: {
8172
+ properties: {
8173
+ acs_users: {
8174
+ items: {
8175
+ $ref: string;
8176
+ };
8177
+ type: string;
8178
+ };
8179
+ ok: {
8180
+ type: string;
8181
+ };
8182
+ };
8183
+ required: string[];
8184
+ type: string;
8185
+ };
8186
+ };
8187
+ };
8188
+ description: string;
8189
+ };
8190
+ 400: {
8191
+ description: string;
8192
+ };
8193
+ 401: {
8194
+ description: string;
8195
+ };
8196
+ };
8197
+ security: ({
8198
+ client_session: never[];
8199
+ pat_with_workspace?: never;
8200
+ console_session?: never;
8201
+ api_key?: never;
8202
+ } | {
8203
+ pat_with_workspace: never[];
8204
+ client_session?: never;
8205
+ console_session?: never;
8206
+ api_key?: never;
8207
+ } | {
8208
+ console_session: never[];
8209
+ client_session?: never;
8210
+ pat_with_workspace?: never;
8211
+ api_key?: never;
8212
+ } | {
8213
+ api_key: never[];
8214
+ client_session?: never;
8215
+ pat_with_workspace?: never;
8216
+ console_session?: never;
8217
+ })[];
8218
+ summary: string;
8219
+ tags: string[];
8220
+ 'x-fern-sdk-group-name': string[];
8221
+ 'x-fern-sdk-method-name': string;
8222
+ 'x-fern-sdk-return-value': string;
8223
+ };
8224
+ };
8100
8225
  '/acs/users/unsuspend': {
8101
8226
  post: {
8102
8227
  operationId: string;