@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.
- package/dist/connect.cjs +107 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +247 -10
- package/lib/seam/connect/openapi.d.ts +125 -0
- package/lib/seam/connect/openapi.js +107 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +122 -10
- package/package.json +2 -2
- package/src/lib/seam/connect/openapi.ts +107 -0
- package/src/lib/seam/connect/route-types.ts +162 -0
|
@@ -3326,6 +3326,50 @@ export interface Routes {
|
|
|
3326
3326
|
};
|
|
3327
3327
|
};
|
|
3328
3328
|
};
|
|
3329
|
+
'/acs/users/unmanaged/list': {
|
|
3330
|
+
route: '/acs/users/unmanaged/list';
|
|
3331
|
+
method: 'GET' | 'POST';
|
|
3332
|
+
queryParams: {};
|
|
3333
|
+
jsonBody: {};
|
|
3334
|
+
commonParams: {
|
|
3335
|
+
acs_system_id: string;
|
|
3336
|
+
};
|
|
3337
|
+
formData: {};
|
|
3338
|
+
jsonResponse: {
|
|
3339
|
+
acs_users: Array<{
|
|
3340
|
+
acs_user_id: string;
|
|
3341
|
+
acs_system_id: string;
|
|
3342
|
+
hid_acs_system_id?: string | undefined;
|
|
3343
|
+
workspace_id: string;
|
|
3344
|
+
created_at: string;
|
|
3345
|
+
display_name: string;
|
|
3346
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
3347
|
+
external_type_display_name?: string | undefined;
|
|
3348
|
+
is_suspended: boolean;
|
|
3349
|
+
access_schedule?: {
|
|
3350
|
+
starts_at: string;
|
|
3351
|
+
ends_at: string;
|
|
3352
|
+
} | undefined;
|
|
3353
|
+
user_identity_id?: string | undefined;
|
|
3354
|
+
user_identity_full_name?: (string | null) | undefined;
|
|
3355
|
+
user_identity_email_address?: (string | null) | undefined;
|
|
3356
|
+
user_identity_phone_number?: (string | null) | undefined;
|
|
3357
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3358
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3359
|
+
warnings: Array<{
|
|
3360
|
+
created_at: string;
|
|
3361
|
+
message: string;
|
|
3362
|
+
warning_code: 'being_deleted';
|
|
3363
|
+
}>;
|
|
3364
|
+
full_name?: string | undefined;
|
|
3365
|
+
/**
|
|
3366
|
+
* @deprecated use email_address. */
|
|
3367
|
+
email?: string | undefined;
|
|
3368
|
+
email_address?: string | undefined;
|
|
3369
|
+
phone_number?: string | undefined;
|
|
3370
|
+
}>;
|
|
3371
|
+
};
|
|
3372
|
+
};
|
|
3329
3373
|
'/acs/users/unsuspend': {
|
|
3330
3374
|
route: '/acs/users/unsuspend';
|
|
3331
3375
|
method: 'POST';
|
|
@@ -4927,6 +4971,10 @@ export interface Routes {
|
|
|
4927
4971
|
can_remotely_lock?: boolean | undefined;
|
|
4928
4972
|
can_program_offline_access_codes?: boolean | undefined;
|
|
4929
4973
|
can_program_online_access_codes?: boolean | undefined;
|
|
4974
|
+
can_hvac_heat?: boolean | undefined;
|
|
4975
|
+
can_hvac_cool?: boolean | undefined;
|
|
4976
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
4977
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
4930
4978
|
can_simulate_removal?: boolean | undefined;
|
|
4931
4979
|
can_simulate_connection?: boolean | undefined;
|
|
4932
4980
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -4951,8 +4999,8 @@ export interface Routes {
|
|
|
4951
4999
|
created_before?: Date | undefined;
|
|
4952
5000
|
user_identifier_key?: string | undefined;
|
|
4953
5001
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
4954
|
-
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;
|
|
4955
|
-
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;
|
|
5002
|
+
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;
|
|
5003
|
+
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;
|
|
4956
5004
|
};
|
|
4957
5005
|
formData: {};
|
|
4958
5006
|
jsonResponse: {
|
|
@@ -5342,6 +5390,10 @@ export interface Routes {
|
|
|
5342
5390
|
can_remotely_lock?: boolean | undefined;
|
|
5343
5391
|
can_program_offline_access_codes?: boolean | undefined;
|
|
5344
5392
|
can_program_online_access_codes?: boolean | undefined;
|
|
5393
|
+
can_hvac_heat?: boolean | undefined;
|
|
5394
|
+
can_hvac_cool?: boolean | undefined;
|
|
5395
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
5396
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
5345
5397
|
can_simulate_removal?: boolean | undefined;
|
|
5346
5398
|
can_simulate_connection?: boolean | undefined;
|
|
5347
5399
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -5367,6 +5419,10 @@ export interface Routes {
|
|
|
5367
5419
|
can_remotely_lock?: boolean | undefined;
|
|
5368
5420
|
can_program_offline_access_codes?: boolean | undefined;
|
|
5369
5421
|
can_program_online_access_codes?: boolean | undefined;
|
|
5422
|
+
can_hvac_heat?: boolean | undefined;
|
|
5423
|
+
can_hvac_cool?: boolean | undefined;
|
|
5424
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
5425
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
5370
5426
|
can_simulate_removal?: boolean | undefined;
|
|
5371
5427
|
can_simulate_connection?: boolean | undefined;
|
|
5372
5428
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -5507,6 +5563,10 @@ export interface Routes {
|
|
|
5507
5563
|
can_remotely_lock?: boolean | undefined;
|
|
5508
5564
|
can_program_offline_access_codes?: boolean | undefined;
|
|
5509
5565
|
can_program_online_access_codes?: boolean | undefined;
|
|
5566
|
+
can_hvac_heat?: boolean | undefined;
|
|
5567
|
+
can_hvac_cool?: boolean | undefined;
|
|
5568
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
5569
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
5510
5570
|
can_simulate_removal?: boolean | undefined;
|
|
5511
5571
|
can_simulate_connection?: boolean | undefined;
|
|
5512
5572
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -5531,8 +5591,8 @@ export interface Routes {
|
|
|
5531
5591
|
created_before?: Date | undefined;
|
|
5532
5592
|
user_identifier_key?: string | undefined;
|
|
5533
5593
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
5534
|
-
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;
|
|
5535
|
-
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;
|
|
5594
|
+
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;
|
|
5595
|
+
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;
|
|
5536
5596
|
};
|
|
5537
5597
|
formData: {};
|
|
5538
5598
|
jsonResponse: {
|
|
@@ -5626,6 +5686,10 @@ export interface Routes {
|
|
|
5626
5686
|
can_remotely_lock?: boolean | undefined;
|
|
5627
5687
|
can_program_offline_access_codes?: boolean | undefined;
|
|
5628
5688
|
can_program_online_access_codes?: boolean | undefined;
|
|
5689
|
+
can_hvac_heat?: boolean | undefined;
|
|
5690
|
+
can_hvac_cool?: boolean | undefined;
|
|
5691
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
5692
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
5629
5693
|
can_simulate_removal?: boolean | undefined;
|
|
5630
5694
|
can_simulate_connection?: boolean | undefined;
|
|
5631
5695
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -6125,6 +6189,10 @@ export interface Routes {
|
|
|
6125
6189
|
can_remotely_lock?: boolean | undefined;
|
|
6126
6190
|
can_program_offline_access_codes?: boolean | undefined;
|
|
6127
6191
|
can_program_online_access_codes?: boolean | undefined;
|
|
6192
|
+
can_hvac_heat?: boolean | undefined;
|
|
6193
|
+
can_hvac_cool?: boolean | undefined;
|
|
6194
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
6195
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
6128
6196
|
can_simulate_removal?: boolean | undefined;
|
|
6129
6197
|
can_simulate_connection?: boolean | undefined;
|
|
6130
6198
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -6515,6 +6583,10 @@ export interface Routes {
|
|
|
6515
6583
|
can_remotely_lock?: boolean | undefined;
|
|
6516
6584
|
can_program_offline_access_codes?: boolean | undefined;
|
|
6517
6585
|
can_program_online_access_codes?: boolean | undefined;
|
|
6586
|
+
can_hvac_heat?: boolean | undefined;
|
|
6587
|
+
can_hvac_cool?: boolean | undefined;
|
|
6588
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
6589
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
6518
6590
|
can_simulate_removal?: boolean | undefined;
|
|
6519
6591
|
can_simulate_connection?: boolean | undefined;
|
|
6520
6592
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -6539,8 +6611,8 @@ export interface Routes {
|
|
|
6539
6611
|
created_before?: Date | undefined;
|
|
6540
6612
|
user_identifier_key?: string | undefined;
|
|
6541
6613
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
6542
|
-
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;
|
|
6543
|
-
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;
|
|
6614
|
+
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;
|
|
6615
|
+
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;
|
|
6544
6616
|
};
|
|
6545
6617
|
formData: {};
|
|
6546
6618
|
jsonResponse: {
|
|
@@ -6930,6 +7002,10 @@ export interface Routes {
|
|
|
6930
7002
|
can_remotely_lock?: boolean | undefined;
|
|
6931
7003
|
can_program_offline_access_codes?: boolean | undefined;
|
|
6932
7004
|
can_program_online_access_codes?: boolean | undefined;
|
|
7005
|
+
can_hvac_heat?: boolean | undefined;
|
|
7006
|
+
can_hvac_cool?: boolean | undefined;
|
|
7007
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
7008
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
6933
7009
|
can_simulate_removal?: boolean | undefined;
|
|
6934
7010
|
can_simulate_connection?: boolean | undefined;
|
|
6935
7011
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -7320,6 +7396,10 @@ export interface Routes {
|
|
|
7320
7396
|
can_remotely_lock?: boolean | undefined;
|
|
7321
7397
|
can_program_offline_access_codes?: boolean | undefined;
|
|
7322
7398
|
can_program_online_access_codes?: boolean | undefined;
|
|
7399
|
+
can_hvac_heat?: boolean | undefined;
|
|
7400
|
+
can_hvac_cool?: boolean | undefined;
|
|
7401
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
7402
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
7323
7403
|
can_simulate_removal?: boolean | undefined;
|
|
7324
7404
|
can_simulate_connection?: boolean | undefined;
|
|
7325
7405
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -8126,8 +8206,8 @@ export interface Routes {
|
|
|
8126
8206
|
created_before?: Date | undefined;
|
|
8127
8207
|
user_identifier_key?: string | undefined;
|
|
8128
8208
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
8129
|
-
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;
|
|
8130
|
-
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;
|
|
8209
|
+
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;
|
|
8210
|
+
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;
|
|
8131
8211
|
};
|
|
8132
8212
|
formData: {};
|
|
8133
8213
|
jsonResponse: {
|
|
@@ -8517,6 +8597,10 @@ export interface Routes {
|
|
|
8517
8597
|
can_remotely_lock?: boolean | undefined;
|
|
8518
8598
|
can_program_offline_access_codes?: boolean | undefined;
|
|
8519
8599
|
can_program_online_access_codes?: boolean | undefined;
|
|
8600
|
+
can_hvac_heat?: boolean | undefined;
|
|
8601
|
+
can_hvac_cool?: boolean | undefined;
|
|
8602
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
8603
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
8520
8604
|
can_simulate_removal?: boolean | undefined;
|
|
8521
8605
|
can_simulate_connection?: boolean | undefined;
|
|
8522
8606
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -8907,6 +8991,10 @@ export interface Routes {
|
|
|
8907
8991
|
can_remotely_lock?: boolean | undefined;
|
|
8908
8992
|
can_program_offline_access_codes?: boolean | undefined;
|
|
8909
8993
|
can_program_online_access_codes?: boolean | undefined;
|
|
8994
|
+
can_hvac_heat?: boolean | undefined;
|
|
8995
|
+
can_hvac_cool?: boolean | undefined;
|
|
8996
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
8997
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
8910
8998
|
can_simulate_removal?: boolean | undefined;
|
|
8911
8999
|
can_simulate_connection?: boolean | undefined;
|
|
8912
9000
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -10184,6 +10272,10 @@ export interface Routes {
|
|
|
10184
10272
|
can_remotely_lock?: boolean | undefined;
|
|
10185
10273
|
can_program_offline_access_codes?: boolean | undefined;
|
|
10186
10274
|
can_program_online_access_codes?: boolean | undefined;
|
|
10275
|
+
can_hvac_heat?: boolean | undefined;
|
|
10276
|
+
can_hvac_cool?: boolean | undefined;
|
|
10277
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
10278
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
10187
10279
|
can_simulate_removal?: boolean | undefined;
|
|
10188
10280
|
can_simulate_connection?: boolean | undefined;
|
|
10189
10281
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -10267,6 +10359,10 @@ export interface Routes {
|
|
|
10267
10359
|
can_remotely_lock?: boolean | undefined;
|
|
10268
10360
|
can_program_offline_access_codes?: boolean | undefined;
|
|
10269
10361
|
can_program_online_access_codes?: boolean | undefined;
|
|
10362
|
+
can_hvac_heat?: boolean | undefined;
|
|
10363
|
+
can_hvac_cool?: boolean | undefined;
|
|
10364
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
10365
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
10270
10366
|
can_simulate_removal?: boolean | undefined;
|
|
10271
10367
|
can_simulate_connection?: boolean | undefined;
|
|
10272
10368
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -11195,6 +11291,10 @@ export interface Routes {
|
|
|
11195
11291
|
can_remotely_lock?: boolean | undefined;
|
|
11196
11292
|
can_program_offline_access_codes?: boolean | undefined;
|
|
11197
11293
|
can_program_online_access_codes?: boolean | undefined;
|
|
11294
|
+
can_hvac_heat?: boolean | undefined;
|
|
11295
|
+
can_hvac_cool?: boolean | undefined;
|
|
11296
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
11297
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
11198
11298
|
can_simulate_removal?: boolean | undefined;
|
|
11199
11299
|
can_simulate_connection?: boolean | undefined;
|
|
11200
11300
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -11973,8 +12073,8 @@ export interface Routes {
|
|
|
11973
12073
|
created_before?: Date | undefined;
|
|
11974
12074
|
user_identifier_key?: string | undefined;
|
|
11975
12075
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
11976
|
-
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;
|
|
11977
|
-
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;
|
|
12076
|
+
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;
|
|
12077
|
+
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;
|
|
11978
12078
|
};
|
|
11979
12079
|
formData: {};
|
|
11980
12080
|
jsonResponse: {
|
|
@@ -12364,6 +12464,10 @@ export interface Routes {
|
|
|
12364
12464
|
can_remotely_lock?: boolean | undefined;
|
|
12365
12465
|
can_program_offline_access_codes?: boolean | undefined;
|
|
12366
12466
|
can_program_online_access_codes?: boolean | undefined;
|
|
12467
|
+
can_hvac_heat?: boolean | undefined;
|
|
12468
|
+
can_hvac_cool?: boolean | undefined;
|
|
12469
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
12470
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
12367
12471
|
can_simulate_removal?: boolean | undefined;
|
|
12368
12472
|
can_simulate_connection?: boolean | undefined;
|
|
12369
12473
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -13714,6 +13818,10 @@ export interface Routes {
|
|
|
13714
13818
|
can_remotely_lock?: boolean | undefined;
|
|
13715
13819
|
can_program_offline_access_codes?: boolean | undefined;
|
|
13716
13820
|
can_program_online_access_codes?: boolean | undefined;
|
|
13821
|
+
can_hvac_heat?: boolean | undefined;
|
|
13822
|
+
can_hvac_cool?: boolean | undefined;
|
|
13823
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
13824
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
13717
13825
|
can_simulate_removal?: boolean | undefined;
|
|
13718
13826
|
can_simulate_connection?: boolean | undefined;
|
|
13719
13827
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -14106,6 +14214,10 @@ export interface Routes {
|
|
|
14106
14214
|
can_remotely_lock?: boolean | undefined;
|
|
14107
14215
|
can_program_offline_access_codes?: boolean | undefined;
|
|
14108
14216
|
can_program_online_access_codes?: boolean | undefined;
|
|
14217
|
+
can_hvac_heat?: boolean | undefined;
|
|
14218
|
+
can_hvac_cool?: boolean | undefined;
|
|
14219
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
14220
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
14109
14221
|
can_simulate_removal?: boolean | undefined;
|
|
14110
14222
|
can_simulate_connection?: boolean | undefined;
|
|
14111
14223
|
can_simulate_disconnection?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.233.0",
|
|
4
4
|
"description": "TypeScript types for the Seam API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"zod": "^3.21.4"
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
|
-
"@seamapi/blueprint": "^0.
|
|
95
|
+
"@seamapi/blueprint": "^0.14.0",
|
|
96
96
|
"@types/node": "^20.8.10",
|
|
97
97
|
"concurrently": "^8.2.0",
|
|
98
98
|
"del-cli": "^5.0.0",
|
|
@@ -2030,6 +2030,9 @@ export default {
|
|
|
2030
2030
|
},
|
|
2031
2031
|
device: {
|
|
2032
2032
|
properties: {
|
|
2033
|
+
can_hvac_cool: { type: 'boolean' },
|
|
2034
|
+
can_hvac_heat: { type: 'boolean' },
|
|
2035
|
+
can_hvac_heat_cool: { type: 'boolean' },
|
|
2033
2036
|
can_program_offline_access_codes: { type: 'boolean' },
|
|
2034
2037
|
can_program_online_access_codes: { type: 'boolean' },
|
|
2035
2038
|
can_remotely_lock: { type: 'boolean' },
|
|
@@ -2037,6 +2040,7 @@ export default {
|
|
|
2037
2040
|
can_simulate_connection: { type: 'boolean' },
|
|
2038
2041
|
can_simulate_disconnection: { type: 'boolean' },
|
|
2039
2042
|
can_simulate_removal: { type: 'boolean' },
|
|
2043
|
+
can_turn_off_hvac: { type: 'boolean' },
|
|
2040
2044
|
capabilities_supported: {
|
|
2041
2045
|
description:
|
|
2042
2046
|
'Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
|
|
@@ -3145,6 +3149,9 @@ export default {
|
|
|
3145
3149
|
},
|
|
3146
3150
|
device_provider: {
|
|
3147
3151
|
properties: {
|
|
3152
|
+
can_hvac_cool: { type: 'boolean' },
|
|
3153
|
+
can_hvac_heat: { type: 'boolean' },
|
|
3154
|
+
can_hvac_heat_cool: { type: 'boolean' },
|
|
3148
3155
|
can_program_offline_access_codes: { type: 'boolean' },
|
|
3149
3156
|
can_program_online_access_codes: { type: 'boolean' },
|
|
3150
3157
|
can_remotely_lock: { type: 'boolean' },
|
|
@@ -3152,6 +3159,7 @@ export default {
|
|
|
3152
3159
|
can_simulate_connection: { type: 'boolean' },
|
|
3153
3160
|
can_simulate_disconnection: { type: 'boolean' },
|
|
3154
3161
|
can_simulate_removal: { type: 'boolean' },
|
|
3162
|
+
can_turn_off_hvac: { type: 'boolean' },
|
|
3155
3163
|
device_provider_name: {
|
|
3156
3164
|
enum: [
|
|
3157
3165
|
'akuvox',
|
|
@@ -3293,6 +3301,9 @@ export default {
|
|
|
3293
3301
|
},
|
|
3294
3302
|
phone: {
|
|
3295
3303
|
properties: {
|
|
3304
|
+
can_hvac_cool: { type: 'boolean' },
|
|
3305
|
+
can_hvac_heat: { type: 'boolean' },
|
|
3306
|
+
can_hvac_heat_cool: { type: 'boolean' },
|
|
3296
3307
|
can_program_offline_access_codes: { type: 'boolean' },
|
|
3297
3308
|
can_program_online_access_codes: { type: 'boolean' },
|
|
3298
3309
|
can_remotely_lock: { type: 'boolean' },
|
|
@@ -3300,6 +3311,7 @@ export default {
|
|
|
3300
3311
|
can_simulate_connection: { type: 'boolean' },
|
|
3301
3312
|
can_simulate_disconnection: { type: 'boolean' },
|
|
3302
3313
|
can_simulate_removal: { type: 'boolean' },
|
|
3314
|
+
can_turn_off_hvac: { type: 'boolean' },
|
|
3303
3315
|
capabilities_supported: {
|
|
3304
3316
|
description:
|
|
3305
3317
|
'Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
|
|
@@ -3591,6 +3603,9 @@ export default {
|
|
|
3591
3603
|
},
|
|
3592
3604
|
unmanaged_device: {
|
|
3593
3605
|
properties: {
|
|
3606
|
+
can_hvac_cool: { type: 'boolean' },
|
|
3607
|
+
can_hvac_heat: { type: 'boolean' },
|
|
3608
|
+
can_hvac_heat_cool: { type: 'boolean' },
|
|
3594
3609
|
can_program_offline_access_codes: { type: 'boolean' },
|
|
3595
3610
|
can_program_online_access_codes: { type: 'boolean' },
|
|
3596
3611
|
can_remotely_lock: { type: 'boolean' },
|
|
@@ -3598,6 +3613,7 @@ export default {
|
|
|
3598
3613
|
can_simulate_connection: { type: 'boolean' },
|
|
3599
3614
|
can_simulate_disconnection: { type: 'boolean' },
|
|
3600
3615
|
can_simulate_removal: { type: 'boolean' },
|
|
3616
|
+
can_turn_off_hvac: { type: 'boolean' },
|
|
3601
3617
|
capabilities_supported: {
|
|
3602
3618
|
description:
|
|
3603
3619
|
'Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
|
|
@@ -7076,6 +7092,57 @@ export default {
|
|
|
7076
7092
|
'x-fern-sdk-return-value': 'acs_user',
|
|
7077
7093
|
},
|
|
7078
7094
|
},
|
|
7095
|
+
'/acs/users/unmanaged/list': {
|
|
7096
|
+
post: {
|
|
7097
|
+
operationId: 'acsUsersUnmanagedListPost',
|
|
7098
|
+
requestBody: {
|
|
7099
|
+
content: {
|
|
7100
|
+
'application/json': {
|
|
7101
|
+
schema: {
|
|
7102
|
+
properties: {
|
|
7103
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
7104
|
+
},
|
|
7105
|
+
required: ['acs_system_id'],
|
|
7106
|
+
type: 'object',
|
|
7107
|
+
},
|
|
7108
|
+
},
|
|
7109
|
+
},
|
|
7110
|
+
},
|
|
7111
|
+
responses: {
|
|
7112
|
+
200: {
|
|
7113
|
+
content: {
|
|
7114
|
+
'application/json': {
|
|
7115
|
+
schema: {
|
|
7116
|
+
properties: {
|
|
7117
|
+
acs_users: {
|
|
7118
|
+
items: { $ref: '#/components/schemas/acs_user' },
|
|
7119
|
+
type: 'array',
|
|
7120
|
+
},
|
|
7121
|
+
ok: { type: 'boolean' },
|
|
7122
|
+
},
|
|
7123
|
+
required: ['acs_users', 'ok'],
|
|
7124
|
+
type: 'object',
|
|
7125
|
+
},
|
|
7126
|
+
},
|
|
7127
|
+
},
|
|
7128
|
+
description: 'OK',
|
|
7129
|
+
},
|
|
7130
|
+
400: { description: 'Bad Request' },
|
|
7131
|
+
401: { description: 'Unauthorized' },
|
|
7132
|
+
},
|
|
7133
|
+
security: [
|
|
7134
|
+
{ client_session: [] },
|
|
7135
|
+
{ pat_with_workspace: [] },
|
|
7136
|
+
{ console_session: [] },
|
|
7137
|
+
{ api_key: [] },
|
|
7138
|
+
],
|
|
7139
|
+
summary: '/acs/users/unmanaged/list',
|
|
7140
|
+
tags: ['/acs'],
|
|
7141
|
+
'x-fern-sdk-group-name': ['acs', 'users', 'unmanaged'],
|
|
7142
|
+
'x-fern-sdk-method-name': 'list',
|
|
7143
|
+
'x-fern-sdk-return-value': 'acs_users',
|
|
7144
|
+
},
|
|
7145
|
+
},
|
|
7079
7146
|
'/acs/users/unsuspend': {
|
|
7080
7147
|
post: {
|
|
7081
7148
|
operationId: 'acsUsersUnsuspendPost',
|
|
@@ -8599,6 +8666,10 @@ export default {
|
|
|
8599
8666
|
'can_remotely_lock',
|
|
8600
8667
|
'can_program_offline_access_codes',
|
|
8601
8668
|
'can_program_online_access_codes',
|
|
8669
|
+
'can_hvac_heat',
|
|
8670
|
+
'can_hvac_cool',
|
|
8671
|
+
'can_hvac_heat_cool',
|
|
8672
|
+
'can_turn_off_hvac',
|
|
8602
8673
|
'can_simulate_removal',
|
|
8603
8674
|
'can_simulate_connection',
|
|
8604
8675
|
'can_simulate_disconnection',
|
|
@@ -8614,6 +8685,10 @@ export default {
|
|
|
8614
8685
|
'can_remotely_lock',
|
|
8615
8686
|
'can_program_offline_access_codes',
|
|
8616
8687
|
'can_program_online_access_codes',
|
|
8688
|
+
'can_hvac_heat',
|
|
8689
|
+
'can_hvac_cool',
|
|
8690
|
+
'can_hvac_heat_cool',
|
|
8691
|
+
'can_turn_off_hvac',
|
|
8617
8692
|
'can_simulate_removal',
|
|
8618
8693
|
'can_simulate_connection',
|
|
8619
8694
|
'can_simulate_disconnection',
|
|
@@ -9073,6 +9148,10 @@ export default {
|
|
|
9073
9148
|
'can_remotely_lock',
|
|
9074
9149
|
'can_program_offline_access_codes',
|
|
9075
9150
|
'can_program_online_access_codes',
|
|
9151
|
+
'can_hvac_heat',
|
|
9152
|
+
'can_hvac_cool',
|
|
9153
|
+
'can_hvac_heat_cool',
|
|
9154
|
+
'can_turn_off_hvac',
|
|
9076
9155
|
'can_simulate_removal',
|
|
9077
9156
|
'can_simulate_connection',
|
|
9078
9157
|
'can_simulate_disconnection',
|
|
@@ -9088,6 +9167,10 @@ export default {
|
|
|
9088
9167
|
'can_remotely_lock',
|
|
9089
9168
|
'can_program_offline_access_codes',
|
|
9090
9169
|
'can_program_online_access_codes',
|
|
9170
|
+
'can_hvac_heat',
|
|
9171
|
+
'can_hvac_cool',
|
|
9172
|
+
'can_hvac_heat_cool',
|
|
9173
|
+
'can_turn_off_hvac',
|
|
9091
9174
|
'can_simulate_removal',
|
|
9092
9175
|
'can_simulate_connection',
|
|
9093
9176
|
'can_simulate_disconnection',
|
|
@@ -9825,6 +9908,10 @@ export default {
|
|
|
9825
9908
|
'can_remotely_lock',
|
|
9826
9909
|
'can_program_offline_access_codes',
|
|
9827
9910
|
'can_program_online_access_codes',
|
|
9911
|
+
'can_hvac_heat',
|
|
9912
|
+
'can_hvac_cool',
|
|
9913
|
+
'can_hvac_heat_cool',
|
|
9914
|
+
'can_turn_off_hvac',
|
|
9828
9915
|
'can_simulate_removal',
|
|
9829
9916
|
'can_simulate_connection',
|
|
9830
9917
|
'can_simulate_disconnection',
|
|
@@ -9840,6 +9927,10 @@ export default {
|
|
|
9840
9927
|
'can_remotely_lock',
|
|
9841
9928
|
'can_program_offline_access_codes',
|
|
9842
9929
|
'can_program_online_access_codes',
|
|
9930
|
+
'can_hvac_heat',
|
|
9931
|
+
'can_hvac_cool',
|
|
9932
|
+
'can_hvac_heat_cool',
|
|
9933
|
+
'can_turn_off_hvac',
|
|
9843
9934
|
'can_simulate_removal',
|
|
9844
9935
|
'can_simulate_connection',
|
|
9845
9936
|
'can_simulate_disconnection',
|
|
@@ -10262,6 +10353,10 @@ export default {
|
|
|
10262
10353
|
'can_remotely_lock',
|
|
10263
10354
|
'can_program_offline_access_codes',
|
|
10264
10355
|
'can_program_online_access_codes',
|
|
10356
|
+
'can_hvac_heat',
|
|
10357
|
+
'can_hvac_cool',
|
|
10358
|
+
'can_hvac_heat_cool',
|
|
10359
|
+
'can_turn_off_hvac',
|
|
10265
10360
|
'can_simulate_removal',
|
|
10266
10361
|
'can_simulate_connection',
|
|
10267
10362
|
'can_simulate_disconnection',
|
|
@@ -10277,6 +10372,10 @@ export default {
|
|
|
10277
10372
|
'can_remotely_lock',
|
|
10278
10373
|
'can_program_offline_access_codes',
|
|
10279
10374
|
'can_program_online_access_codes',
|
|
10375
|
+
'can_hvac_heat',
|
|
10376
|
+
'can_hvac_cool',
|
|
10377
|
+
'can_hvac_heat_cool',
|
|
10378
|
+
'can_turn_off_hvac',
|
|
10280
10379
|
'can_simulate_removal',
|
|
10281
10380
|
'can_simulate_connection',
|
|
10282
10381
|
'can_simulate_disconnection',
|
|
@@ -11847,6 +11946,10 @@ export default {
|
|
|
11847
11946
|
'can_remotely_lock',
|
|
11848
11947
|
'can_program_offline_access_codes',
|
|
11849
11948
|
'can_program_online_access_codes',
|
|
11949
|
+
'can_hvac_heat',
|
|
11950
|
+
'can_hvac_cool',
|
|
11951
|
+
'can_hvac_heat_cool',
|
|
11952
|
+
'can_turn_off_hvac',
|
|
11850
11953
|
'can_simulate_removal',
|
|
11851
11954
|
'can_simulate_connection',
|
|
11852
11955
|
'can_simulate_disconnection',
|
|
@@ -11862,6 +11965,10 @@ export default {
|
|
|
11862
11965
|
'can_remotely_lock',
|
|
11863
11966
|
'can_program_offline_access_codes',
|
|
11864
11967
|
'can_program_online_access_codes',
|
|
11968
|
+
'can_hvac_heat',
|
|
11969
|
+
'can_hvac_cool',
|
|
11970
|
+
'can_hvac_heat_cool',
|
|
11971
|
+
'can_turn_off_hvac',
|
|
11865
11972
|
'can_simulate_removal',
|
|
11866
11973
|
'can_simulate_connection',
|
|
11867
11974
|
'can_simulate_disconnection',
|