@seamapi/types 1.571.0 → 1.573.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 +119 -7146
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +60 -5089
- package/dist/index.cjs +119 -7146
- 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 +39 -53
- package/lib/seam/connect/models/batch.js +1 -6
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.js +3 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +1 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +0 -20
- package/lib/seam/connect/openapi.d.ts +140 -5180
- package/lib/seam/connect/openapi.js +117 -7140
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +34 -21
- 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 +1 -6
- package/src/lib/seam/connect/models/devices/device.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +122 -8393
- package/src/lib/seam/connect/route-types.ts +34 -21
|
@@ -32,6 +32,7 @@ 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">;
|
|
35
36
|
nickname: z.ZodOptional<z.ZodString>;
|
|
36
37
|
display_name: z.ZodString;
|
|
37
38
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -2859,8 +2860,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2859
2860
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2860
2861
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
2861
2862
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
2862
|
-
} & {
|
|
2863
|
-
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
2864
2863
|
}, "strip", z.ZodTypeAny, {
|
|
2865
2864
|
display_name: string;
|
|
2866
2865
|
device_id: string;
|
|
@@ -3037,6 +3036,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3037
3036
|
})[];
|
|
3038
3037
|
custom_metadata: Record<string, string | boolean>;
|
|
3039
3038
|
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,7 +3498,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3498
3498
|
timezone?: string | undefined;
|
|
3499
3499
|
} | null;
|
|
3500
3500
|
is_managed: true;
|
|
3501
|
-
space_ids: string[];
|
|
3502
3501
|
can_remotely_unlock?: boolean | undefined;
|
|
3503
3502
|
can_remotely_lock?: boolean | undefined;
|
|
3504
3503
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -3692,6 +3691,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3692
3691
|
})[];
|
|
3693
3692
|
custom_metadata: Record<string, string | boolean>;
|
|
3694
3693
|
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,7 +4153,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4153
4153
|
timezone?: string | undefined;
|
|
4154
4154
|
} | null;
|
|
4155
4155
|
is_managed: true;
|
|
4156
|
-
space_ids: string[];
|
|
4157
4156
|
can_remotely_unlock?: boolean | undefined;
|
|
4158
4157
|
can_remotely_lock?: boolean | undefined;
|
|
4159
4158
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -4275,13 +4274,10 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4275
4274
|
privacy_mode?: boolean | undefined;
|
|
4276
4275
|
}>>;
|
|
4277
4276
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
4278
|
-
access_point_name: z.ZodString;
|
|
4279
4277
|
access_point_profile: z.ZodString;
|
|
4280
4278
|
}, "strip", z.ZodTypeAny, {
|
|
4281
|
-
access_point_name: string;
|
|
4282
4279
|
access_point_profile: string;
|
|
4283
4280
|
}, {
|
|
4284
|
-
access_point_name: string;
|
|
4285
4281
|
access_point_profile: string;
|
|
4286
4282
|
}>>;
|
|
4287
4283
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -4387,7 +4383,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4387
4383
|
room_number: string;
|
|
4388
4384
|
} | undefined;
|
|
4389
4385
|
dormakaba_community_metadata?: {
|
|
4390
|
-
access_point_name: string;
|
|
4391
4386
|
access_point_profile: string;
|
|
4392
4387
|
} | undefined;
|
|
4393
4388
|
salto_space_metadata?: {
|
|
@@ -4452,7 +4447,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4452
4447
|
room_number: string;
|
|
4453
4448
|
} | undefined;
|
|
4454
4449
|
dormakaba_community_metadata?: {
|
|
4455
|
-
access_point_name: string;
|
|
4456
4450
|
access_point_profile: string;
|
|
4457
4451
|
} | undefined;
|
|
4458
4452
|
salto_space_metadata?: {
|
|
@@ -5320,6 +5314,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5320
5314
|
})[];
|
|
5321
5315
|
custom_metadata: Record<string, string | boolean>;
|
|
5322
5316
|
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");
|
|
5317
|
+
space_ids: string[];
|
|
5323
5318
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
5324
5319
|
properties: {
|
|
5325
5320
|
name: string;
|
|
@@ -5781,7 +5776,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5781
5776
|
timezone?: string | undefined;
|
|
5782
5777
|
} | null;
|
|
5783
5778
|
is_managed: true;
|
|
5784
|
-
space_ids: string[];
|
|
5785
5779
|
can_remotely_unlock?: boolean | undefined;
|
|
5786
5780
|
can_remotely_lock?: boolean | undefined;
|
|
5787
5781
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -5851,7 +5845,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5851
5845
|
room_number: string;
|
|
5852
5846
|
} | undefined;
|
|
5853
5847
|
dormakaba_community_metadata?: {
|
|
5854
|
-
access_point_name: string;
|
|
5855
5848
|
access_point_profile: string;
|
|
5856
5849
|
} | undefined;
|
|
5857
5850
|
salto_space_metadata?: {
|
|
@@ -6189,6 +6182,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6189
6182
|
})[];
|
|
6190
6183
|
custom_metadata: Record<string, string | boolean>;
|
|
6191
6184
|
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");
|
|
6185
|
+
space_ids: string[];
|
|
6192
6186
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
6193
6187
|
properties: {
|
|
6194
6188
|
name: string;
|
|
@@ -6650,7 +6644,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6650
6644
|
timezone?: string | undefined;
|
|
6651
6645
|
} | null;
|
|
6652
6646
|
is_managed: true;
|
|
6653
|
-
space_ids: string[];
|
|
6654
6647
|
can_remotely_unlock?: boolean | undefined;
|
|
6655
6648
|
can_remotely_lock?: boolean | undefined;
|
|
6656
6649
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -6720,7 +6713,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6720
6713
|
room_number: string;
|
|
6721
6714
|
} | undefined;
|
|
6722
6715
|
dormakaba_community_metadata?: {
|
|
6723
|
-
access_point_name: string;
|
|
6724
6716
|
access_point_profile: string;
|
|
6725
6717
|
} | undefined;
|
|
6726
6718
|
salto_space_metadata?: {
|
|
@@ -6904,6 +6896,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
6904
6896
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6905
6897
|
device_id: z.ZodString;
|
|
6906
6898
|
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"]>]>;
|
|
6899
|
+
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,6 +9900,7 @@ 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");
|
|
9903
|
+
space_ids: string[];
|
|
9910
9904
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
9911
9905
|
properties: {
|
|
9912
9906
|
name: string;
|
|
@@ -10561,6 +10555,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10561
10555
|
})[];
|
|
10562
10556
|
custom_metadata: Record<string, string | boolean>;
|
|
10563
10557
|
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");
|
|
10558
|
+
space_ids: string[];
|
|
10564
10559
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
10565
10560
|
properties: {
|
|
10566
10561
|
name: string;
|
|
@@ -11143,13 +11138,10 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11143
11138
|
privacy_mode?: boolean | undefined;
|
|
11144
11139
|
}>>;
|
|
11145
11140
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
11146
|
-
access_point_name: z.ZodString;
|
|
11147
11141
|
access_point_profile: z.ZodString;
|
|
11148
11142
|
}, "strip", z.ZodTypeAny, {
|
|
11149
|
-
access_point_name: string;
|
|
11150
11143
|
access_point_profile: string;
|
|
11151
11144
|
}, {
|
|
11152
|
-
access_point_name: string;
|
|
11153
11145
|
access_point_profile: string;
|
|
11154
11146
|
}>>;
|
|
11155
11147
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -11255,7 +11247,6 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11255
11247
|
room_number: string;
|
|
11256
11248
|
} | undefined;
|
|
11257
11249
|
dormakaba_community_metadata?: {
|
|
11258
|
-
access_point_name: string;
|
|
11259
11250
|
access_point_profile: string;
|
|
11260
11251
|
} | undefined;
|
|
11261
11252
|
salto_space_metadata?: {
|
|
@@ -11320,7 +11311,6 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11320
11311
|
room_number: string;
|
|
11321
11312
|
} | undefined;
|
|
11322
11313
|
dormakaba_community_metadata?: {
|
|
11323
|
-
access_point_name: string;
|
|
11324
11314
|
access_point_profile: string;
|
|
11325
11315
|
} | undefined;
|
|
11326
11316
|
salto_space_metadata?: {
|
|
@@ -12363,6 +12353,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12363
12353
|
})[];
|
|
12364
12354
|
custom_metadata: Record<string, string | boolean>;
|
|
12365
12355
|
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");
|
|
12356
|
+
space_ids: string[];
|
|
12366
12357
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
12367
12358
|
properties: {
|
|
12368
12359
|
name: string;
|
|
@@ -12893,7 +12884,6 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12893
12884
|
room_number: string;
|
|
12894
12885
|
} | undefined;
|
|
12895
12886
|
dormakaba_community_metadata?: {
|
|
12896
|
-
access_point_name: string;
|
|
12897
12887
|
access_point_profile: string;
|
|
12898
12888
|
} | undefined;
|
|
12899
12889
|
salto_space_metadata?: {
|
|
@@ -13277,6 +13267,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13277
13267
|
})[];
|
|
13278
13268
|
custom_metadata: Record<string, string | boolean>;
|
|
13279
13269
|
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");
|
|
13270
|
+
space_ids: string[];
|
|
13280
13271
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
13281
13272
|
properties: {
|
|
13282
13273
|
name: string;
|
|
@@ -13807,7 +13798,6 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13807
13798
|
room_number: string;
|
|
13808
13799
|
} | undefined;
|
|
13809
13800
|
dormakaba_community_metadata?: {
|
|
13810
|
-
access_point_name: string;
|
|
13811
13801
|
access_point_profile: string;
|
|
13812
13802
|
} | undefined;
|
|
13813
13803
|
salto_space_metadata?: {
|
|
@@ -14037,6 +14027,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
14037
14027
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14038
14028
|
device_id: z.ZodString;
|
|
14039
14029
|
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"]>]>;
|
|
14030
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
14040
14031
|
nickname: z.ZodOptional<z.ZodString>;
|
|
14041
14032
|
display_name: z.ZodString;
|
|
14042
14033
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -17040,6 +17031,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17040
17031
|
})[];
|
|
17041
17032
|
custom_metadata: Record<string, string | boolean>;
|
|
17042
17033
|
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");
|
|
17034
|
+
space_ids: string[];
|
|
17043
17035
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
17044
17036
|
properties: {
|
|
17045
17037
|
name: string;
|
|
@@ -17694,6 +17686,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17694
17686
|
})[];
|
|
17695
17687
|
custom_metadata: Record<string, string | boolean>;
|
|
17696
17688
|
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");
|
|
17689
|
+
space_ids: string[];
|
|
17697
17690
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
17698
17691
|
properties: {
|
|
17699
17692
|
name: string;
|
|
@@ -18276,13 +18269,10 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18276
18269
|
privacy_mode?: boolean | undefined;
|
|
18277
18270
|
}>>;
|
|
18278
18271
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
18279
|
-
access_point_name: z.ZodString;
|
|
18280
18272
|
access_point_profile: z.ZodString;
|
|
18281
18273
|
}, "strip", z.ZodTypeAny, {
|
|
18282
|
-
access_point_name: string;
|
|
18283
18274
|
access_point_profile: string;
|
|
18284
18275
|
}, {
|
|
18285
|
-
access_point_name: string;
|
|
18286
18276
|
access_point_profile: string;
|
|
18287
18277
|
}>>;
|
|
18288
18278
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -18388,7 +18378,6 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18388
18378
|
room_number: string;
|
|
18389
18379
|
} | undefined;
|
|
18390
18380
|
dormakaba_community_metadata?: {
|
|
18391
|
-
access_point_name: string;
|
|
18392
18381
|
access_point_profile: string;
|
|
18393
18382
|
} | undefined;
|
|
18394
18383
|
salto_space_metadata?: {
|
|
@@ -18453,7 +18442,6 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18453
18442
|
room_number: string;
|
|
18454
18443
|
} | undefined;
|
|
18455
18444
|
dormakaba_community_metadata?: {
|
|
18456
|
-
access_point_name: string;
|
|
18457
18445
|
access_point_profile: string;
|
|
18458
18446
|
} | undefined;
|
|
18459
18447
|
salto_space_metadata?: {
|
|
@@ -18529,10 +18517,10 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18529
18517
|
created_at: string;
|
|
18530
18518
|
warning_code: "being_deleted";
|
|
18531
18519
|
}[];
|
|
18520
|
+
space_ids: string[];
|
|
18532
18521
|
access_grant_id: string;
|
|
18533
18522
|
user_identity_id: string;
|
|
18534
18523
|
location_ids: string[];
|
|
18535
|
-
space_ids: string[];
|
|
18536
18524
|
requested_access_methods: {
|
|
18537
18525
|
display_name: string;
|
|
18538
18526
|
created_at: string;
|
|
@@ -18557,10 +18545,10 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18557
18545
|
created_at: string;
|
|
18558
18546
|
warning_code: "being_deleted";
|
|
18559
18547
|
}[];
|
|
18548
|
+
space_ids: string[];
|
|
18560
18549
|
access_grant_id: string;
|
|
18561
18550
|
user_identity_id: string;
|
|
18562
18551
|
location_ids: string[];
|
|
18563
|
-
space_ids: string[];
|
|
18564
18552
|
requested_access_methods: {
|
|
18565
18553
|
display_name: string;
|
|
18566
18554
|
created_at: string;
|
|
@@ -18917,6 +18905,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18917
18905
|
})[];
|
|
18918
18906
|
custom_metadata: Record<string, string | boolean>;
|
|
18919
18907
|
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");
|
|
18908
|
+
space_ids: string[];
|
|
18920
18909
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
18921
18910
|
properties: {
|
|
18922
18911
|
name: string;
|
|
@@ -19447,7 +19436,6 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19447
19436
|
room_number: string;
|
|
19448
19437
|
} | undefined;
|
|
19449
19438
|
dormakaba_community_metadata?: {
|
|
19450
|
-
access_point_name: string;
|
|
19451
19439
|
access_point_profile: string;
|
|
19452
19440
|
} | undefined;
|
|
19453
19441
|
salto_space_metadata?: {
|
|
@@ -19474,10 +19462,10 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19474
19462
|
created_at: string;
|
|
19475
19463
|
warning_code: "being_deleted";
|
|
19476
19464
|
}[];
|
|
19465
|
+
space_ids: string[];
|
|
19477
19466
|
access_grant_id: string;
|
|
19478
19467
|
user_identity_id: string;
|
|
19479
19468
|
location_ids: string[];
|
|
19480
|
-
space_ids: string[];
|
|
19481
19469
|
requested_access_methods: {
|
|
19482
19470
|
display_name: string;
|
|
19483
19471
|
created_at: string;
|
|
@@ -19727,6 +19715,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19727
19715
|
})[];
|
|
19728
19716
|
custom_metadata: Record<string, string | boolean>;
|
|
19729
19717
|
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");
|
|
19718
|
+
space_ids: string[];
|
|
19730
19719
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
19731
19720
|
properties: {
|
|
19732
19721
|
name: string;
|
|
@@ -20257,7 +20246,6 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
20257
20246
|
room_number: string;
|
|
20258
20247
|
} | undefined;
|
|
20259
20248
|
dormakaba_community_metadata?: {
|
|
20260
|
-
access_point_name: string;
|
|
20261
20249
|
access_point_profile: string;
|
|
20262
20250
|
} | undefined;
|
|
20263
20251
|
salto_space_metadata?: {
|
|
@@ -20284,10 +20272,10 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
20284
20272
|
created_at: string;
|
|
20285
20273
|
warning_code: "being_deleted";
|
|
20286
20274
|
}[];
|
|
20275
|
+
space_ids: string[];
|
|
20287
20276
|
access_grant_id: string;
|
|
20288
20277
|
user_identity_id: string;
|
|
20289
20278
|
location_ids: string[];
|
|
20290
|
-
space_ids: string[];
|
|
20291
20279
|
requested_access_methods: {
|
|
20292
20280
|
display_name: string;
|
|
20293
20281
|
created_at: string;
|
|
@@ -20554,6 +20542,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
20554
20542
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20555
20543
|
device_id: z.ZodString;
|
|
20556
20544
|
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"]>]>;
|
|
20545
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
20557
20546
|
nickname: z.ZodOptional<z.ZodString>;
|
|
20558
20547
|
display_name: z.ZodString;
|
|
20559
20548
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -23557,6 +23546,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23557
23546
|
})[];
|
|
23558
23547
|
custom_metadata: Record<string, string | boolean>;
|
|
23559
23548
|
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");
|
|
23549
|
+
space_ids: string[];
|
|
23560
23550
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
23561
23551
|
properties: {
|
|
23562
23552
|
name: string;
|
|
@@ -24211,6 +24201,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24211
24201
|
})[];
|
|
24212
24202
|
custom_metadata: Record<string, string | boolean>;
|
|
24213
24203
|
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");
|
|
24204
|
+
space_ids: string[];
|
|
24214
24205
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
24215
24206
|
properties: {
|
|
24216
24207
|
name: string;
|
|
@@ -24793,13 +24784,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24793
24784
|
privacy_mode?: boolean | undefined;
|
|
24794
24785
|
}>>;
|
|
24795
24786
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
24796
|
-
access_point_name: z.ZodString;
|
|
24797
24787
|
access_point_profile: z.ZodString;
|
|
24798
24788
|
}, "strip", z.ZodTypeAny, {
|
|
24799
|
-
access_point_name: string;
|
|
24800
24789
|
access_point_profile: string;
|
|
24801
24790
|
}, {
|
|
24802
|
-
access_point_name: string;
|
|
24803
24791
|
access_point_profile: string;
|
|
24804
24792
|
}>>;
|
|
24805
24793
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -24905,7 +24893,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24905
24893
|
room_number: string;
|
|
24906
24894
|
} | undefined;
|
|
24907
24895
|
dormakaba_community_metadata?: {
|
|
24908
|
-
access_point_name: string;
|
|
24909
24896
|
access_point_profile: string;
|
|
24910
24897
|
} | undefined;
|
|
24911
24898
|
salto_space_metadata?: {
|
|
@@ -24970,7 +24957,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24970
24957
|
room_number: string;
|
|
24971
24958
|
} | undefined;
|
|
24972
24959
|
dormakaba_community_metadata?: {
|
|
24973
|
-
access_point_name: string;
|
|
24974
24960
|
access_point_profile: string;
|
|
24975
24961
|
} | undefined;
|
|
24976
24962
|
salto_space_metadata?: {
|
|
@@ -31151,6 +31137,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
31151
31137
|
unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
|
|
31152
31138
|
device_id: z.ZodString;
|
|
31153
31139
|
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"]>]>;
|
|
31140
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
31154
31141
|
nickname: z.ZodOptional<z.ZodString>;
|
|
31155
31142
|
display_name: z.ZodString;
|
|
31156
31143
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -35148,10 +35135,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
35148
35135
|
created_at: string;
|
|
35149
35136
|
warning_code: "being_deleted";
|
|
35150
35137
|
}[];
|
|
35138
|
+
space_ids: string[];
|
|
35151
35139
|
access_grant_id: string;
|
|
35152
35140
|
user_identity_id: string;
|
|
35153
35141
|
location_ids: string[];
|
|
35154
|
-
space_ids: string[];
|
|
35155
35142
|
requested_access_methods: {
|
|
35156
35143
|
display_name: string;
|
|
35157
35144
|
created_at: string;
|
|
@@ -35176,10 +35163,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
35176
35163
|
created_at: string;
|
|
35177
35164
|
warning_code: "being_deleted";
|
|
35178
35165
|
}[];
|
|
35166
|
+
space_ids: string[];
|
|
35179
35167
|
access_grant_id: string;
|
|
35180
35168
|
user_identity_id: string;
|
|
35181
35169
|
location_ids: string[];
|
|
35182
|
-
space_ids: string[];
|
|
35183
35170
|
requested_access_methods: {
|
|
35184
35171
|
display_name: string;
|
|
35185
35172
|
created_at: string;
|
|
@@ -41621,6 +41608,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41621
41608
|
})[];
|
|
41622
41609
|
custom_metadata: Record<string, string | boolean>;
|
|
41623
41610
|
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");
|
|
41611
|
+
space_ids: string[];
|
|
41624
41612
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
41625
41613
|
properties: {
|
|
41626
41614
|
name: string;
|
|
@@ -42151,7 +42139,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42151
42139
|
room_number: string;
|
|
42152
42140
|
} | undefined;
|
|
42153
42141
|
dormakaba_community_metadata?: {
|
|
42154
|
-
access_point_name: string;
|
|
42155
42142
|
access_point_profile: string;
|
|
42156
42143
|
} | undefined;
|
|
42157
42144
|
salto_space_metadata?: {
|
|
@@ -42313,10 +42300,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42313
42300
|
created_at: string;
|
|
42314
42301
|
warning_code: "being_deleted";
|
|
42315
42302
|
}[];
|
|
42303
|
+
space_ids: string[];
|
|
42316
42304
|
access_grant_id: string;
|
|
42317
42305
|
user_identity_id: string;
|
|
42318
42306
|
location_ids: string[];
|
|
42319
|
-
space_ids: string[];
|
|
42320
42307
|
requested_access_methods: {
|
|
42321
42308
|
display_name: string;
|
|
42322
42309
|
created_at: string;
|
|
@@ -45590,6 +45577,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45590
45577
|
})[];
|
|
45591
45578
|
custom_metadata: Record<string, string | boolean>;
|
|
45592
45579
|
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");
|
|
45580
|
+
space_ids: string[];
|
|
45593
45581
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
45594
45582
|
properties: {
|
|
45595
45583
|
name: string;
|
|
@@ -46120,7 +46108,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46120
46108
|
room_number: string;
|
|
46121
46109
|
} | undefined;
|
|
46122
46110
|
dormakaba_community_metadata?: {
|
|
46123
|
-
access_point_name: string;
|
|
46124
46111
|
access_point_profile: string;
|
|
46125
46112
|
} | undefined;
|
|
46126
46113
|
salto_space_metadata?: {
|
|
@@ -46282,10 +46269,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46282
46269
|
created_at: string;
|
|
46283
46270
|
warning_code: "being_deleted";
|
|
46284
46271
|
}[];
|
|
46272
|
+
space_ids: string[];
|
|
46285
46273
|
access_grant_id: string;
|
|
46286
46274
|
user_identity_id: string;
|
|
46287
46275
|
location_ids: string[];
|
|
46288
|
-
space_ids: string[];
|
|
46289
46276
|
requested_access_methods: {
|
|
46290
46277
|
display_name: string;
|
|
46291
46278
|
created_at: string;
|
|
@@ -49565,6 +49552,7 @@ export declare const batch: z.ZodObject<{
|
|
|
49565
49552
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
49566
49553
|
device_id: z.ZodString;
|
|
49567
49554
|
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"]>]>;
|
|
49555
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
49568
49556
|
nickname: z.ZodOptional<z.ZodString>;
|
|
49569
49557
|
display_name: z.ZodString;
|
|
49570
49558
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -52568,6 +52556,7 @@ export declare const batch: z.ZodObject<{
|
|
|
52568
52556
|
})[];
|
|
52569
52557
|
custom_metadata: Record<string, string | boolean>;
|
|
52570
52558
|
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");
|
|
52559
|
+
space_ids: string[];
|
|
52571
52560
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
52572
52561
|
properties: {
|
|
52573
52562
|
name: string;
|
|
@@ -53222,6 +53211,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53222
53211
|
})[];
|
|
53223
53212
|
custom_metadata: Record<string, string | boolean>;
|
|
53224
53213
|
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");
|
|
53214
|
+
space_ids: string[];
|
|
53225
53215
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
53226
53216
|
properties: {
|
|
53227
53217
|
name: string;
|
|
@@ -53804,13 +53794,10 @@ export declare const batch: z.ZodObject<{
|
|
|
53804
53794
|
privacy_mode?: boolean | undefined;
|
|
53805
53795
|
}>>;
|
|
53806
53796
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
53807
|
-
access_point_name: z.ZodString;
|
|
53808
53797
|
access_point_profile: z.ZodString;
|
|
53809
53798
|
}, "strip", z.ZodTypeAny, {
|
|
53810
|
-
access_point_name: string;
|
|
53811
53799
|
access_point_profile: string;
|
|
53812
53800
|
}, {
|
|
53813
|
-
access_point_name: string;
|
|
53814
53801
|
access_point_profile: string;
|
|
53815
53802
|
}>>;
|
|
53816
53803
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -53916,7 +53903,6 @@ export declare const batch: z.ZodObject<{
|
|
|
53916
53903
|
room_number: string;
|
|
53917
53904
|
} | undefined;
|
|
53918
53905
|
dormakaba_community_metadata?: {
|
|
53919
|
-
access_point_name: string;
|
|
53920
53906
|
access_point_profile: string;
|
|
53921
53907
|
} | undefined;
|
|
53922
53908
|
salto_space_metadata?: {
|
|
@@ -53981,7 +53967,6 @@ export declare const batch: z.ZodObject<{
|
|
|
53981
53967
|
room_number: string;
|
|
53982
53968
|
} | undefined;
|
|
53983
53969
|
dormakaba_community_metadata?: {
|
|
53984
|
-
access_point_name: string;
|
|
53985
53970
|
access_point_profile: string;
|
|
53986
53971
|
} | undefined;
|
|
53987
53972
|
salto_space_metadata?: {
|
|
@@ -60162,6 +60147,7 @@ export declare const batch: z.ZodObject<{
|
|
|
60162
60147
|
unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
|
|
60163
60148
|
device_id: z.ZodString;
|
|
60164
60149
|
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"]>]>;
|
|
60150
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
60165
60151
|
nickname: z.ZodOptional<z.ZodString>;
|
|
60166
60152
|
display_name: z.ZodString;
|
|
60167
60153
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -63787,10 +63773,10 @@ export declare const batch: z.ZodObject<{
|
|
|
63787
63773
|
created_at: string;
|
|
63788
63774
|
warning_code: "being_deleted";
|
|
63789
63775
|
}[];
|
|
63776
|
+
space_ids: string[];
|
|
63790
63777
|
access_grant_id: string;
|
|
63791
63778
|
user_identity_id: string;
|
|
63792
63779
|
location_ids: string[];
|
|
63793
|
-
space_ids: string[];
|
|
63794
63780
|
requested_access_methods: {
|
|
63795
63781
|
display_name: string;
|
|
63796
63782
|
created_at: string;
|
|
@@ -63815,10 +63801,10 @@ export declare const batch: z.ZodObject<{
|
|
|
63815
63801
|
created_at: string;
|
|
63816
63802
|
warning_code: "being_deleted";
|
|
63817
63803
|
}[];
|
|
63804
|
+
space_ids: string[];
|
|
63818
63805
|
access_grant_id: string;
|
|
63819
63806
|
user_identity_id: string;
|
|
63820
63807
|
location_ids: string[];
|
|
63821
|
-
space_ids: string[];
|
|
63822
63808
|
requested_access_methods: {
|
|
63823
63809
|
display_name: string;
|
|
63824
63810
|
created_at: string;
|
|
@@ -70260,6 +70246,7 @@ export declare const batch: z.ZodObject<{
|
|
|
70260
70246
|
})[];
|
|
70261
70247
|
custom_metadata: Record<string, string | boolean>;
|
|
70262
70248
|
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");
|
|
70249
|
+
space_ids: string[];
|
|
70263
70250
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
70264
70251
|
properties: {
|
|
70265
70252
|
name: string;
|
|
@@ -70790,7 +70777,6 @@ export declare const batch: z.ZodObject<{
|
|
|
70790
70777
|
room_number: string;
|
|
70791
70778
|
} | undefined;
|
|
70792
70779
|
dormakaba_community_metadata?: {
|
|
70793
|
-
access_point_name: string;
|
|
70794
70780
|
access_point_profile: string;
|
|
70795
70781
|
} | undefined;
|
|
70796
70782
|
salto_space_metadata?: {
|
|
@@ -70883,10 +70869,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70883
70869
|
created_at: string;
|
|
70884
70870
|
warning_code: "being_deleted";
|
|
70885
70871
|
}[];
|
|
70872
|
+
space_ids: string[];
|
|
70886
70873
|
access_grant_id: string;
|
|
70887
70874
|
user_identity_id: string;
|
|
70888
70875
|
location_ids: string[];
|
|
70889
|
-
space_ids: string[];
|
|
70890
70876
|
requested_access_methods: {
|
|
70891
70877
|
display_name: string;
|
|
70892
70878
|
created_at: string;
|
|
@@ -74160,6 +74146,7 @@ export declare const batch: z.ZodObject<{
|
|
|
74160
74146
|
})[];
|
|
74161
74147
|
custom_metadata: Record<string, string | boolean>;
|
|
74162
74148
|
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");
|
|
74149
|
+
space_ids: string[];
|
|
74163
74150
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
74164
74151
|
properties: {
|
|
74165
74152
|
name: string;
|
|
@@ -74690,7 +74677,6 @@ export declare const batch: z.ZodObject<{
|
|
|
74690
74677
|
room_number: string;
|
|
74691
74678
|
} | undefined;
|
|
74692
74679
|
dormakaba_community_metadata?: {
|
|
74693
|
-
access_point_name: string;
|
|
74694
74680
|
access_point_profile: string;
|
|
74695
74681
|
} | undefined;
|
|
74696
74682
|
salto_space_metadata?: {
|
|
@@ -74783,10 +74769,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74783
74769
|
created_at: string;
|
|
74784
74770
|
warning_code: "being_deleted";
|
|
74785
74771
|
}[];
|
|
74772
|
+
space_ids: string[];
|
|
74786
74773
|
access_grant_id: string;
|
|
74787
74774
|
user_identity_id: string;
|
|
74788
74775
|
location_ids: string[];
|
|
74789
|
-
space_ids: string[];
|
|
74790
74776
|
requested_access_methods: {
|
|
74791
74777
|
display_name: string;
|
|
74792
74778
|
created_at: string;
|