@seamapi/types 1.570.0 → 1.572.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 +7136 -137
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6021 -1072
- package/dist/index.cjs +7136 -137
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +0 -5
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +0 -3
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +0 -3
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +18 -74
- package/lib/seam/connect/models/batch.js +6 -1
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +0 -3
- package/lib/seam/connect/models/devices/device.js +0 -3
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +0 -20
- package/lib/seam/connect/openapi.d.ts +5172 -148
- package/lib/seam/connect/openapi.js +7133 -132
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -54
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +0 -5
- package/src/lib/seam/connect/models/batch.ts +6 -1
- package/src/lib/seam/connect/models/devices/device.ts +0 -3
- package/src/lib/seam/connect/openapi.ts +8381 -136
- package/src/lib/seam/connect/route-types.ts +1 -54
|
@@ -32,7 +32,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
32
32
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33
33
|
device_id: z.ZodString;
|
|
34
34
|
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
35
|
-
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
36
35
|
nickname: z.ZodOptional<z.ZodString>;
|
|
37
36
|
display_name: z.ZodString;
|
|
38
37
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -2860,6 +2859,8 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2860
2859
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2861
2860
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
2862
2861
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
2862
|
+
} & {
|
|
2863
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
2863
2864
|
}, "strip", z.ZodTypeAny, {
|
|
2864
2865
|
display_name: string;
|
|
2865
2866
|
device_id: string;
|
|
@@ -3036,7 +3037,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3036
3037
|
})[];
|
|
3037
3038
|
custom_metadata: Record<string, string | boolean>;
|
|
3038
3039
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
3039
|
-
space_ids: string[];
|
|
3040
3040
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
3041
3041
|
properties: {
|
|
3042
3042
|
name: string;
|
|
@@ -3498,6 +3498,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3498
3498
|
timezone?: string | undefined;
|
|
3499
3499
|
} | null;
|
|
3500
3500
|
is_managed: true;
|
|
3501
|
+
space_ids: string[];
|
|
3501
3502
|
can_remotely_unlock?: boolean | undefined;
|
|
3502
3503
|
can_remotely_lock?: boolean | undefined;
|
|
3503
3504
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -3691,7 +3692,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3691
3692
|
})[];
|
|
3692
3693
|
custom_metadata: Record<string, string | boolean>;
|
|
3693
3694
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
3694
|
-
space_ids: string[];
|
|
3695
3695
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
3696
3696
|
properties: {
|
|
3697
3697
|
name: string;
|
|
@@ -4153,6 +4153,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4153
4153
|
timezone?: string | undefined;
|
|
4154
4154
|
} | null;
|
|
4155
4155
|
is_managed: true;
|
|
4156
|
+
space_ids: string[];
|
|
4156
4157
|
can_remotely_unlock?: boolean | undefined;
|
|
4157
4158
|
can_remotely_lock?: boolean | undefined;
|
|
4158
4159
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -4274,13 +4275,10 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4274
4275
|
privacy_mode?: boolean | undefined;
|
|
4275
4276
|
}>>;
|
|
4276
4277
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
4277
|
-
access_point_name: z.ZodString;
|
|
4278
4278
|
access_point_profile: z.ZodString;
|
|
4279
4279
|
}, "strip", z.ZodTypeAny, {
|
|
4280
|
-
access_point_name: string;
|
|
4281
4280
|
access_point_profile: string;
|
|
4282
4281
|
}, {
|
|
4283
|
-
access_point_name: string;
|
|
4284
4282
|
access_point_profile: string;
|
|
4285
4283
|
}>>;
|
|
4286
4284
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -4386,7 +4384,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4386
4384
|
room_number: string;
|
|
4387
4385
|
} | undefined;
|
|
4388
4386
|
dormakaba_community_metadata?: {
|
|
4389
|
-
access_point_name: string;
|
|
4390
4387
|
access_point_profile: string;
|
|
4391
4388
|
} | undefined;
|
|
4392
4389
|
salto_space_metadata?: {
|
|
@@ -4451,7 +4448,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4451
4448
|
room_number: string;
|
|
4452
4449
|
} | undefined;
|
|
4453
4450
|
dormakaba_community_metadata?: {
|
|
4454
|
-
access_point_name: string;
|
|
4455
4451
|
access_point_profile: string;
|
|
4456
4452
|
} | undefined;
|
|
4457
4453
|
salto_space_metadata?: {
|
|
@@ -5319,7 +5315,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5319
5315
|
})[];
|
|
5320
5316
|
custom_metadata: Record<string, string | boolean>;
|
|
5321
5317
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
5322
|
-
space_ids: string[];
|
|
5323
5318
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
5324
5319
|
properties: {
|
|
5325
5320
|
name: string;
|
|
@@ -5781,6 +5776,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5781
5776
|
timezone?: string | undefined;
|
|
5782
5777
|
} | null;
|
|
5783
5778
|
is_managed: true;
|
|
5779
|
+
space_ids: string[];
|
|
5784
5780
|
can_remotely_unlock?: boolean | undefined;
|
|
5785
5781
|
can_remotely_lock?: boolean | undefined;
|
|
5786
5782
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -5850,7 +5846,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5850
5846
|
room_number: string;
|
|
5851
5847
|
} | undefined;
|
|
5852
5848
|
dormakaba_community_metadata?: {
|
|
5853
|
-
access_point_name: string;
|
|
5854
5849
|
access_point_profile: string;
|
|
5855
5850
|
} | undefined;
|
|
5856
5851
|
salto_space_metadata?: {
|
|
@@ -6188,7 +6183,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6188
6183
|
})[];
|
|
6189
6184
|
custom_metadata: Record<string, string | boolean>;
|
|
6190
6185
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
6191
|
-
space_ids: string[];
|
|
6192
6186
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
6193
6187
|
properties: {
|
|
6194
6188
|
name: string;
|
|
@@ -6650,6 +6644,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6650
6644
|
timezone?: string | undefined;
|
|
6651
6645
|
} | null;
|
|
6652
6646
|
is_managed: true;
|
|
6647
|
+
space_ids: string[];
|
|
6653
6648
|
can_remotely_unlock?: boolean | undefined;
|
|
6654
6649
|
can_remotely_lock?: boolean | undefined;
|
|
6655
6650
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -6719,7 +6714,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6719
6714
|
room_number: string;
|
|
6720
6715
|
} | undefined;
|
|
6721
6716
|
dormakaba_community_metadata?: {
|
|
6722
|
-
access_point_name: string;
|
|
6723
6717
|
access_point_profile: string;
|
|
6724
6718
|
} | undefined;
|
|
6725
6719
|
salto_space_metadata?: {
|
|
@@ -6903,7 +6897,6 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
6903
6897
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6904
6898
|
device_id: z.ZodString;
|
|
6905
6899
|
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
6906
|
-
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
6907
6900
|
nickname: z.ZodOptional<z.ZodString>;
|
|
6908
6901
|
display_name: z.ZodString;
|
|
6909
6902
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -9907,7 +9900,6 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9907
9900
|
})[];
|
|
9908
9901
|
custom_metadata: Record<string, string | boolean>;
|
|
9909
9902
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
9910
|
-
space_ids: string[];
|
|
9911
9903
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
9912
9904
|
properties: {
|
|
9913
9905
|
name: string;
|
|
@@ -10562,7 +10554,6 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10562
10554
|
})[];
|
|
10563
10555
|
custom_metadata: Record<string, string | boolean>;
|
|
10564
10556
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
10565
|
-
space_ids: string[];
|
|
10566
10557
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
10567
10558
|
properties: {
|
|
10568
10559
|
name: string;
|
|
@@ -11145,13 +11136,10 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11145
11136
|
privacy_mode?: boolean | undefined;
|
|
11146
11137
|
}>>;
|
|
11147
11138
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
11148
|
-
access_point_name: z.ZodString;
|
|
11149
11139
|
access_point_profile: z.ZodString;
|
|
11150
11140
|
}, "strip", z.ZodTypeAny, {
|
|
11151
|
-
access_point_name: string;
|
|
11152
11141
|
access_point_profile: string;
|
|
11153
11142
|
}, {
|
|
11154
|
-
access_point_name: string;
|
|
11155
11143
|
access_point_profile: string;
|
|
11156
11144
|
}>>;
|
|
11157
11145
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -11257,7 +11245,6 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11257
11245
|
room_number: string;
|
|
11258
11246
|
} | undefined;
|
|
11259
11247
|
dormakaba_community_metadata?: {
|
|
11260
|
-
access_point_name: string;
|
|
11261
11248
|
access_point_profile: string;
|
|
11262
11249
|
} | undefined;
|
|
11263
11250
|
salto_space_metadata?: {
|
|
@@ -11322,7 +11309,6 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11322
11309
|
room_number: string;
|
|
11323
11310
|
} | undefined;
|
|
11324
11311
|
dormakaba_community_metadata?: {
|
|
11325
|
-
access_point_name: string;
|
|
11326
11312
|
access_point_profile: string;
|
|
11327
11313
|
} | undefined;
|
|
11328
11314
|
salto_space_metadata?: {
|
|
@@ -12365,7 +12351,6 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12365
12351
|
})[];
|
|
12366
12352
|
custom_metadata: Record<string, string | boolean>;
|
|
12367
12353
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
12368
|
-
space_ids: string[];
|
|
12369
12354
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
12370
12355
|
properties: {
|
|
12371
12356
|
name: string;
|
|
@@ -12896,7 +12881,6 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12896
12881
|
room_number: string;
|
|
12897
12882
|
} | undefined;
|
|
12898
12883
|
dormakaba_community_metadata?: {
|
|
12899
|
-
access_point_name: string;
|
|
12900
12884
|
access_point_profile: string;
|
|
12901
12885
|
} | undefined;
|
|
12902
12886
|
salto_space_metadata?: {
|
|
@@ -13280,7 +13264,6 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13280
13264
|
})[];
|
|
13281
13265
|
custom_metadata: Record<string, string | boolean>;
|
|
13282
13266
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
13283
|
-
space_ids: string[];
|
|
13284
13267
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
13285
13268
|
properties: {
|
|
13286
13269
|
name: string;
|
|
@@ -13811,7 +13794,6 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13811
13794
|
room_number: string;
|
|
13812
13795
|
} | undefined;
|
|
13813
13796
|
dormakaba_community_metadata?: {
|
|
13814
|
-
access_point_name: string;
|
|
13815
13797
|
access_point_profile: string;
|
|
13816
13798
|
} | undefined;
|
|
13817
13799
|
salto_space_metadata?: {
|
|
@@ -14041,7 +14023,6 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
14041
14023
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14042
14024
|
device_id: z.ZodString;
|
|
14043
14025
|
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
14044
|
-
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
14045
14026
|
nickname: z.ZodOptional<z.ZodString>;
|
|
14046
14027
|
display_name: z.ZodString;
|
|
14047
14028
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -17045,7 +17026,6 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17045
17026
|
})[];
|
|
17046
17027
|
custom_metadata: Record<string, string | boolean>;
|
|
17047
17028
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
17048
|
-
space_ids: string[];
|
|
17049
17029
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
17050
17030
|
properties: {
|
|
17051
17031
|
name: string;
|
|
@@ -17700,7 +17680,6 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17700
17680
|
})[];
|
|
17701
17681
|
custom_metadata: Record<string, string | boolean>;
|
|
17702
17682
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
17703
|
-
space_ids: string[];
|
|
17704
17683
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
17705
17684
|
properties: {
|
|
17706
17685
|
name: string;
|
|
@@ -18283,13 +18262,10 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18283
18262
|
privacy_mode?: boolean | undefined;
|
|
18284
18263
|
}>>;
|
|
18285
18264
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
18286
|
-
access_point_name: z.ZodString;
|
|
18287
18265
|
access_point_profile: z.ZodString;
|
|
18288
18266
|
}, "strip", z.ZodTypeAny, {
|
|
18289
|
-
access_point_name: string;
|
|
18290
18267
|
access_point_profile: string;
|
|
18291
18268
|
}, {
|
|
18292
|
-
access_point_name: string;
|
|
18293
18269
|
access_point_profile: string;
|
|
18294
18270
|
}>>;
|
|
18295
18271
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -18395,7 +18371,6 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18395
18371
|
room_number: string;
|
|
18396
18372
|
} | undefined;
|
|
18397
18373
|
dormakaba_community_metadata?: {
|
|
18398
|
-
access_point_name: string;
|
|
18399
18374
|
access_point_profile: string;
|
|
18400
18375
|
} | undefined;
|
|
18401
18376
|
salto_space_metadata?: {
|
|
@@ -18460,7 +18435,6 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18460
18435
|
room_number: string;
|
|
18461
18436
|
} | undefined;
|
|
18462
18437
|
dormakaba_community_metadata?: {
|
|
18463
|
-
access_point_name: string;
|
|
18464
18438
|
access_point_profile: string;
|
|
18465
18439
|
} | undefined;
|
|
18466
18440
|
salto_space_metadata?: {
|
|
@@ -18536,10 +18510,10 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18536
18510
|
created_at: string;
|
|
18537
18511
|
warning_code: "being_deleted";
|
|
18538
18512
|
}[];
|
|
18539
|
-
space_ids: string[];
|
|
18540
18513
|
access_grant_id: string;
|
|
18541
18514
|
user_identity_id: string;
|
|
18542
18515
|
location_ids: string[];
|
|
18516
|
+
space_ids: string[];
|
|
18543
18517
|
requested_access_methods: {
|
|
18544
18518
|
display_name: string;
|
|
18545
18519
|
created_at: string;
|
|
@@ -18564,10 +18538,10 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18564
18538
|
created_at: string;
|
|
18565
18539
|
warning_code: "being_deleted";
|
|
18566
18540
|
}[];
|
|
18567
|
-
space_ids: string[];
|
|
18568
18541
|
access_grant_id: string;
|
|
18569
18542
|
user_identity_id: string;
|
|
18570
18543
|
location_ids: string[];
|
|
18544
|
+
space_ids: string[];
|
|
18571
18545
|
requested_access_methods: {
|
|
18572
18546
|
display_name: string;
|
|
18573
18547
|
created_at: string;
|
|
@@ -18924,7 +18898,6 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18924
18898
|
})[];
|
|
18925
18899
|
custom_metadata: Record<string, string | boolean>;
|
|
18926
18900
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
18927
|
-
space_ids: string[];
|
|
18928
18901
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
18929
18902
|
properties: {
|
|
18930
18903
|
name: string;
|
|
@@ -19455,7 +19428,6 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19455
19428
|
room_number: string;
|
|
19456
19429
|
} | undefined;
|
|
19457
19430
|
dormakaba_community_metadata?: {
|
|
19458
|
-
access_point_name: string;
|
|
19459
19431
|
access_point_profile: string;
|
|
19460
19432
|
} | undefined;
|
|
19461
19433
|
salto_space_metadata?: {
|
|
@@ -19482,10 +19454,10 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19482
19454
|
created_at: string;
|
|
19483
19455
|
warning_code: "being_deleted";
|
|
19484
19456
|
}[];
|
|
19485
|
-
space_ids: string[];
|
|
19486
19457
|
access_grant_id: string;
|
|
19487
19458
|
user_identity_id: string;
|
|
19488
19459
|
location_ids: string[];
|
|
19460
|
+
space_ids: string[];
|
|
19489
19461
|
requested_access_methods: {
|
|
19490
19462
|
display_name: string;
|
|
19491
19463
|
created_at: string;
|
|
@@ -19735,7 +19707,6 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19735
19707
|
})[];
|
|
19736
19708
|
custom_metadata: Record<string, string | boolean>;
|
|
19737
19709
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
19738
|
-
space_ids: string[];
|
|
19739
19710
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
19740
19711
|
properties: {
|
|
19741
19712
|
name: string;
|
|
@@ -20266,7 +20237,6 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
20266
20237
|
room_number: string;
|
|
20267
20238
|
} | undefined;
|
|
20268
20239
|
dormakaba_community_metadata?: {
|
|
20269
|
-
access_point_name: string;
|
|
20270
20240
|
access_point_profile: string;
|
|
20271
20241
|
} | undefined;
|
|
20272
20242
|
salto_space_metadata?: {
|
|
@@ -20293,10 +20263,10 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
20293
20263
|
created_at: string;
|
|
20294
20264
|
warning_code: "being_deleted";
|
|
20295
20265
|
}[];
|
|
20296
|
-
space_ids: string[];
|
|
20297
20266
|
access_grant_id: string;
|
|
20298
20267
|
user_identity_id: string;
|
|
20299
20268
|
location_ids: string[];
|
|
20269
|
+
space_ids: string[];
|
|
20300
20270
|
requested_access_methods: {
|
|
20301
20271
|
display_name: string;
|
|
20302
20272
|
created_at: string;
|
|
@@ -20563,7 +20533,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
20563
20533
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20564
20534
|
device_id: z.ZodString;
|
|
20565
20535
|
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
20566
|
-
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
20567
20536
|
nickname: z.ZodOptional<z.ZodString>;
|
|
20568
20537
|
display_name: z.ZodString;
|
|
20569
20538
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -23567,7 +23536,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23567
23536
|
})[];
|
|
23568
23537
|
custom_metadata: Record<string, string | boolean>;
|
|
23569
23538
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
23570
|
-
space_ids: string[];
|
|
23571
23539
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
23572
23540
|
properties: {
|
|
23573
23541
|
name: string;
|
|
@@ -24222,7 +24190,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24222
24190
|
})[];
|
|
24223
24191
|
custom_metadata: Record<string, string | boolean>;
|
|
24224
24192
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
24225
|
-
space_ids: string[];
|
|
24226
24193
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
24227
24194
|
properties: {
|
|
24228
24195
|
name: string;
|
|
@@ -24805,13 +24772,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24805
24772
|
privacy_mode?: boolean | undefined;
|
|
24806
24773
|
}>>;
|
|
24807
24774
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
24808
|
-
access_point_name: z.ZodString;
|
|
24809
24775
|
access_point_profile: z.ZodString;
|
|
24810
24776
|
}, "strip", z.ZodTypeAny, {
|
|
24811
|
-
access_point_name: string;
|
|
24812
24777
|
access_point_profile: string;
|
|
24813
24778
|
}, {
|
|
24814
|
-
access_point_name: string;
|
|
24815
24779
|
access_point_profile: string;
|
|
24816
24780
|
}>>;
|
|
24817
24781
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -24917,7 +24881,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24917
24881
|
room_number: string;
|
|
24918
24882
|
} | undefined;
|
|
24919
24883
|
dormakaba_community_metadata?: {
|
|
24920
|
-
access_point_name: string;
|
|
24921
24884
|
access_point_profile: string;
|
|
24922
24885
|
} | undefined;
|
|
24923
24886
|
salto_space_metadata?: {
|
|
@@ -24982,7 +24945,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24982
24945
|
room_number: string;
|
|
24983
24946
|
} | undefined;
|
|
24984
24947
|
dormakaba_community_metadata?: {
|
|
24985
|
-
access_point_name: string;
|
|
24986
24948
|
access_point_profile: string;
|
|
24987
24949
|
} | undefined;
|
|
24988
24950
|
salto_space_metadata?: {
|
|
@@ -31163,7 +31125,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
31163
31125
|
unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
|
|
31164
31126
|
device_id: z.ZodString;
|
|
31165
31127
|
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
31166
|
-
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
31167
31128
|
nickname: z.ZodOptional<z.ZodString>;
|
|
31168
31129
|
display_name: z.ZodString;
|
|
31169
31130
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -35161,10 +35122,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
35161
35122
|
created_at: string;
|
|
35162
35123
|
warning_code: "being_deleted";
|
|
35163
35124
|
}[];
|
|
35164
|
-
space_ids: string[];
|
|
35165
35125
|
access_grant_id: string;
|
|
35166
35126
|
user_identity_id: string;
|
|
35167
35127
|
location_ids: string[];
|
|
35128
|
+
space_ids: string[];
|
|
35168
35129
|
requested_access_methods: {
|
|
35169
35130
|
display_name: string;
|
|
35170
35131
|
created_at: string;
|
|
@@ -35189,10 +35150,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
35189
35150
|
created_at: string;
|
|
35190
35151
|
warning_code: "being_deleted";
|
|
35191
35152
|
}[];
|
|
35192
|
-
space_ids: string[];
|
|
35193
35153
|
access_grant_id: string;
|
|
35194
35154
|
user_identity_id: string;
|
|
35195
35155
|
location_ids: string[];
|
|
35156
|
+
space_ids: string[];
|
|
35196
35157
|
requested_access_methods: {
|
|
35197
35158
|
display_name: string;
|
|
35198
35159
|
created_at: string;
|
|
@@ -41634,7 +41595,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41634
41595
|
})[];
|
|
41635
41596
|
custom_metadata: Record<string, string | boolean>;
|
|
41636
41597
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
41637
|
-
space_ids: string[];
|
|
41638
41598
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
41639
41599
|
properties: {
|
|
41640
41600
|
name: string;
|
|
@@ -42165,7 +42125,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42165
42125
|
room_number: string;
|
|
42166
42126
|
} | undefined;
|
|
42167
42127
|
dormakaba_community_metadata?: {
|
|
42168
|
-
access_point_name: string;
|
|
42169
42128
|
access_point_profile: string;
|
|
42170
42129
|
} | undefined;
|
|
42171
42130
|
salto_space_metadata?: {
|
|
@@ -42327,10 +42286,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42327
42286
|
created_at: string;
|
|
42328
42287
|
warning_code: "being_deleted";
|
|
42329
42288
|
}[];
|
|
42330
|
-
space_ids: string[];
|
|
42331
42289
|
access_grant_id: string;
|
|
42332
42290
|
user_identity_id: string;
|
|
42333
42291
|
location_ids: string[];
|
|
42292
|
+
space_ids: string[];
|
|
42334
42293
|
requested_access_methods: {
|
|
42335
42294
|
display_name: string;
|
|
42336
42295
|
created_at: string;
|
|
@@ -45604,7 +45563,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45604
45563
|
})[];
|
|
45605
45564
|
custom_metadata: Record<string, string | boolean>;
|
|
45606
45565
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
45607
|
-
space_ids: string[];
|
|
45608
45566
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
45609
45567
|
properties: {
|
|
45610
45568
|
name: string;
|
|
@@ -46135,7 +46093,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46135
46093
|
room_number: string;
|
|
46136
46094
|
} | undefined;
|
|
46137
46095
|
dormakaba_community_metadata?: {
|
|
46138
|
-
access_point_name: string;
|
|
46139
46096
|
access_point_profile: string;
|
|
46140
46097
|
} | undefined;
|
|
46141
46098
|
salto_space_metadata?: {
|
|
@@ -46297,10 +46254,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46297
46254
|
created_at: string;
|
|
46298
46255
|
warning_code: "being_deleted";
|
|
46299
46256
|
}[];
|
|
46300
|
-
space_ids: string[];
|
|
46301
46257
|
access_grant_id: string;
|
|
46302
46258
|
user_identity_id: string;
|
|
46303
46259
|
location_ids: string[];
|
|
46260
|
+
space_ids: string[];
|
|
46304
46261
|
requested_access_methods: {
|
|
46305
46262
|
display_name: string;
|
|
46306
46263
|
created_at: string;
|
|
@@ -49580,7 +49537,6 @@ export declare const batch: z.ZodObject<{
|
|
|
49580
49537
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
49581
49538
|
device_id: z.ZodString;
|
|
49582
49539
|
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
49583
|
-
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
49584
49540
|
nickname: z.ZodOptional<z.ZodString>;
|
|
49585
49541
|
display_name: z.ZodString;
|
|
49586
49542
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -52584,7 +52540,6 @@ export declare const batch: z.ZodObject<{
|
|
|
52584
52540
|
})[];
|
|
52585
52541
|
custom_metadata: Record<string, string | boolean>;
|
|
52586
52542
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
52587
|
-
space_ids: string[];
|
|
52588
52543
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
52589
52544
|
properties: {
|
|
52590
52545
|
name: string;
|
|
@@ -53239,7 +53194,6 @@ export declare const batch: z.ZodObject<{
|
|
|
53239
53194
|
})[];
|
|
53240
53195
|
custom_metadata: Record<string, string | boolean>;
|
|
53241
53196
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
53242
|
-
space_ids: string[];
|
|
53243
53197
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
53244
53198
|
properties: {
|
|
53245
53199
|
name: string;
|
|
@@ -53822,13 +53776,10 @@ export declare const batch: z.ZodObject<{
|
|
|
53822
53776
|
privacy_mode?: boolean | undefined;
|
|
53823
53777
|
}>>;
|
|
53824
53778
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
53825
|
-
access_point_name: z.ZodString;
|
|
53826
53779
|
access_point_profile: z.ZodString;
|
|
53827
53780
|
}, "strip", z.ZodTypeAny, {
|
|
53828
|
-
access_point_name: string;
|
|
53829
53781
|
access_point_profile: string;
|
|
53830
53782
|
}, {
|
|
53831
|
-
access_point_name: string;
|
|
53832
53783
|
access_point_profile: string;
|
|
53833
53784
|
}>>;
|
|
53834
53785
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -53934,7 +53885,6 @@ export declare const batch: z.ZodObject<{
|
|
|
53934
53885
|
room_number: string;
|
|
53935
53886
|
} | undefined;
|
|
53936
53887
|
dormakaba_community_metadata?: {
|
|
53937
|
-
access_point_name: string;
|
|
53938
53888
|
access_point_profile: string;
|
|
53939
53889
|
} | undefined;
|
|
53940
53890
|
salto_space_metadata?: {
|
|
@@ -53999,7 +53949,6 @@ export declare const batch: z.ZodObject<{
|
|
|
53999
53949
|
room_number: string;
|
|
54000
53950
|
} | undefined;
|
|
54001
53951
|
dormakaba_community_metadata?: {
|
|
54002
|
-
access_point_name: string;
|
|
54003
53952
|
access_point_profile: string;
|
|
54004
53953
|
} | undefined;
|
|
54005
53954
|
salto_space_metadata?: {
|
|
@@ -60180,7 +60129,6 @@ export declare const batch: z.ZodObject<{
|
|
|
60180
60129
|
unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
|
|
60181
60130
|
device_id: z.ZodString;
|
|
60182
60131
|
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
60183
|
-
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
60184
60132
|
nickname: z.ZodOptional<z.ZodString>;
|
|
60185
60133
|
display_name: z.ZodString;
|
|
60186
60134
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -63806,10 +63754,10 @@ export declare const batch: z.ZodObject<{
|
|
|
63806
63754
|
created_at: string;
|
|
63807
63755
|
warning_code: "being_deleted";
|
|
63808
63756
|
}[];
|
|
63809
|
-
space_ids: string[];
|
|
63810
63757
|
access_grant_id: string;
|
|
63811
63758
|
user_identity_id: string;
|
|
63812
63759
|
location_ids: string[];
|
|
63760
|
+
space_ids: string[];
|
|
63813
63761
|
requested_access_methods: {
|
|
63814
63762
|
display_name: string;
|
|
63815
63763
|
created_at: string;
|
|
@@ -63834,10 +63782,10 @@ export declare const batch: z.ZodObject<{
|
|
|
63834
63782
|
created_at: string;
|
|
63835
63783
|
warning_code: "being_deleted";
|
|
63836
63784
|
}[];
|
|
63837
|
-
space_ids: string[];
|
|
63838
63785
|
access_grant_id: string;
|
|
63839
63786
|
user_identity_id: string;
|
|
63840
63787
|
location_ids: string[];
|
|
63788
|
+
space_ids: string[];
|
|
63841
63789
|
requested_access_methods: {
|
|
63842
63790
|
display_name: string;
|
|
63843
63791
|
created_at: string;
|
|
@@ -70279,7 +70227,6 @@ export declare const batch: z.ZodObject<{
|
|
|
70279
70227
|
})[];
|
|
70280
70228
|
custom_metadata: Record<string, string | boolean>;
|
|
70281
70229
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
70282
|
-
space_ids: string[];
|
|
70283
70230
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
70284
70231
|
properties: {
|
|
70285
70232
|
name: string;
|
|
@@ -70810,7 +70757,6 @@ export declare const batch: z.ZodObject<{
|
|
|
70810
70757
|
room_number: string;
|
|
70811
70758
|
} | undefined;
|
|
70812
70759
|
dormakaba_community_metadata?: {
|
|
70813
|
-
access_point_name: string;
|
|
70814
70760
|
access_point_profile: string;
|
|
70815
70761
|
} | undefined;
|
|
70816
70762
|
salto_space_metadata?: {
|
|
@@ -70903,10 +70849,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70903
70849
|
created_at: string;
|
|
70904
70850
|
warning_code: "being_deleted";
|
|
70905
70851
|
}[];
|
|
70906
|
-
space_ids: string[];
|
|
70907
70852
|
access_grant_id: string;
|
|
70908
70853
|
user_identity_id: string;
|
|
70909
70854
|
location_ids: string[];
|
|
70855
|
+
space_ids: string[];
|
|
70910
70856
|
requested_access_methods: {
|
|
70911
70857
|
display_name: string;
|
|
70912
70858
|
created_at: string;
|
|
@@ -74180,7 +74126,6 @@ export declare const batch: z.ZodObject<{
|
|
|
74180
74126
|
})[];
|
|
74181
74127
|
custom_metadata: Record<string, string | boolean>;
|
|
74182
74128
|
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
74183
|
-
space_ids: string[];
|
|
74184
74129
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
74185
74130
|
properties: {
|
|
74186
74131
|
name: string;
|
|
@@ -74711,7 +74656,6 @@ export declare const batch: z.ZodObject<{
|
|
|
74711
74656
|
room_number: string;
|
|
74712
74657
|
} | undefined;
|
|
74713
74658
|
dormakaba_community_metadata?: {
|
|
74714
|
-
access_point_name: string;
|
|
74715
74659
|
access_point_profile: string;
|
|
74716
74660
|
} | undefined;
|
|
74717
74661
|
salto_space_metadata?: {
|
|
@@ -74804,10 +74748,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74804
74748
|
created_at: string;
|
|
74805
74749
|
warning_code: "being_deleted";
|
|
74806
74750
|
}[];
|
|
74807
|
-
space_ids: string[];
|
|
74808
74751
|
access_grant_id: string;
|
|
74809
74752
|
user_identity_id: string;
|
|
74810
74753
|
location_ids: string[];
|
|
74754
|
+
space_ids: string[];
|
|
74811
74755
|
requested_access_methods: {
|
|
74812
74756
|
display_name: string;
|
|
74813
74757
|
created_at: string;
|