@seamapi/types 1.566.0 → 1.568.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 +140 -7752
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +293 -5777
- package/dist/index.cjs +140 -7752
- 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 +3 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +3 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +587 -132
- package/lib/seam/connect/models/batch.js +6 -12
- 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 +16 -0
- package/lib/seam/connect/openapi.d.ts +157 -5711
- package/lib/seam/connect/openapi.js +131 -7745
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +54 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +3 -0
- package/src/lib/seam/connect/models/batch.ts +6 -12
- package/src/lib/seam/connect/models/devices/device.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +134 -9095
- package/src/lib/seam/connect/route-types.ts +54 -2
|
@@ -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;
|
|
@@ -4175,6 +4174,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4175
4174
|
acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4176
4175
|
acs_system_id: z.ZodString;
|
|
4177
4176
|
acs_entrance_id: z.ZodString;
|
|
4177
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
4178
4178
|
created_at: z.ZodString;
|
|
4179
4179
|
display_name: z.ZodString;
|
|
4180
4180
|
connected_account_id: z.ZodString;
|
|
@@ -4335,8 +4335,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4335
4335
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
4336
4336
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
4337
4337
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
4338
|
-
} & {
|
|
4339
|
-
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
4340
4338
|
}, "strip", z.ZodTypeAny, {
|
|
4341
4339
|
display_name: string;
|
|
4342
4340
|
created_at: string;
|
|
@@ -5321,6 +5319,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5321
5319
|
})[];
|
|
5322
5320
|
custom_metadata: Record<string, string | boolean>;
|
|
5323
5321
|
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[];
|
|
5324
5323
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
5325
5324
|
properties: {
|
|
5326
5325
|
name: string;
|
|
@@ -5782,7 +5781,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5782
5781
|
timezone?: string | undefined;
|
|
5783
5782
|
} | null;
|
|
5784
5783
|
is_managed: true;
|
|
5785
|
-
space_ids: string[];
|
|
5786
5784
|
can_remotely_unlock?: boolean | undefined;
|
|
5787
5785
|
can_remotely_lock?: boolean | undefined;
|
|
5788
5786
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -6190,6 +6188,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6190
6188
|
})[];
|
|
6191
6189
|
custom_metadata: Record<string, string | boolean>;
|
|
6192
6190
|
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[];
|
|
6193
6192
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
6194
6193
|
properties: {
|
|
6195
6194
|
name: string;
|
|
@@ -6651,7 +6650,6 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6651
6650
|
timezone?: string | undefined;
|
|
6652
6651
|
} | null;
|
|
6653
6652
|
is_managed: true;
|
|
6654
|
-
space_ids: string[];
|
|
6655
6653
|
can_remotely_unlock?: boolean | undefined;
|
|
6656
6654
|
can_remotely_lock?: boolean | undefined;
|
|
6657
6655
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -6905,6 +6903,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
6905
6903
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6906
6904
|
device_id: z.ZodString;
|
|
6907
6905
|
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">;
|
|
6908
6907
|
nickname: z.ZodOptional<z.ZodString>;
|
|
6909
6908
|
display_name: z.ZodString;
|
|
6910
6909
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -9908,6 +9907,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9908
9907
|
})[];
|
|
9909
9908
|
custom_metadata: Record<string, string | boolean>;
|
|
9910
9909
|
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
9911
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
9912
9912
|
properties: {
|
|
9913
9913
|
name: string;
|
|
@@ -10562,6 +10562,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10562
10562
|
})[];
|
|
10563
10563
|
custom_metadata: Record<string, string | boolean>;
|
|
10564
10564
|
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[];
|
|
10565
10566
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
10566
10567
|
properties: {
|
|
10567
10568
|
name: string;
|
|
@@ -11044,6 +11045,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11044
11045
|
acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11045
11046
|
acs_system_id: z.ZodString;
|
|
11046
11047
|
acs_entrance_id: z.ZodString;
|
|
11048
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
11047
11049
|
created_at: z.ZodString;
|
|
11048
11050
|
display_name: z.ZodString;
|
|
11049
11051
|
connected_account_id: z.ZodString;
|
|
@@ -11212,6 +11214,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11212
11214
|
error_code: string;
|
|
11213
11215
|
}[];
|
|
11214
11216
|
connected_account_id: string;
|
|
11217
|
+
space_ids: string[];
|
|
11215
11218
|
acs_system_id: string;
|
|
11216
11219
|
acs_entrance_id: string;
|
|
11217
11220
|
salto_ks_metadata?: {
|
|
@@ -11276,6 +11279,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11276
11279
|
error_code: string;
|
|
11277
11280
|
}[];
|
|
11278
11281
|
connected_account_id: string;
|
|
11282
|
+
space_ids: string[];
|
|
11279
11283
|
acs_system_id: string;
|
|
11280
11284
|
acs_entrance_id: string;
|
|
11281
11285
|
salto_ks_metadata?: {
|
|
@@ -12361,6 +12365,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12361
12365
|
})[];
|
|
12362
12366
|
custom_metadata: Record<string, string | boolean>;
|
|
12363
12367
|
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[];
|
|
12364
12369
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
12365
12370
|
properties: {
|
|
12366
12371
|
name: string;
|
|
@@ -12848,6 +12853,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12848
12853
|
error_code: string;
|
|
12849
12854
|
}[];
|
|
12850
12855
|
connected_account_id: string;
|
|
12856
|
+
space_ids: string[];
|
|
12851
12857
|
acs_system_id: string;
|
|
12852
12858
|
acs_entrance_id: string;
|
|
12853
12859
|
salto_ks_metadata?: {
|
|
@@ -13274,6 +13280,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13274
13280
|
})[];
|
|
13275
13281
|
custom_metadata: Record<string, string | boolean>;
|
|
13276
13282
|
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[];
|
|
13277
13284
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
13278
13285
|
properties: {
|
|
13279
13286
|
name: string;
|
|
@@ -13761,6 +13768,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13761
13768
|
error_code: string;
|
|
13762
13769
|
}[];
|
|
13763
13770
|
connected_account_id: string;
|
|
13771
|
+
space_ids: string[];
|
|
13764
13772
|
acs_system_id: string;
|
|
13765
13773
|
acs_entrance_id: string;
|
|
13766
13774
|
salto_ks_metadata?: {
|
|
@@ -14033,6 +14041,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
14033
14041
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14034
14042
|
device_id: z.ZodString;
|
|
14035
14043
|
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">;
|
|
14036
14045
|
nickname: z.ZodOptional<z.ZodString>;
|
|
14037
14046
|
display_name: z.ZodString;
|
|
14038
14047
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -17036,6 +17045,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17036
17045
|
})[];
|
|
17037
17046
|
custom_metadata: Record<string, string | boolean>;
|
|
17038
17047
|
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[];
|
|
17039
17049
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
17040
17050
|
properties: {
|
|
17041
17051
|
name: string;
|
|
@@ -17690,6 +17700,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17690
17700
|
})[];
|
|
17691
17701
|
custom_metadata: Record<string, string | boolean>;
|
|
17692
17702
|
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[];
|
|
17693
17704
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
17694
17705
|
properties: {
|
|
17695
17706
|
name: string;
|
|
@@ -18172,6 +18183,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18172
18183
|
acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18173
18184
|
acs_system_id: z.ZodString;
|
|
18174
18185
|
acs_entrance_id: z.ZodString;
|
|
18186
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
18175
18187
|
created_at: z.ZodString;
|
|
18176
18188
|
display_name: z.ZodString;
|
|
18177
18189
|
connected_account_id: z.ZodString;
|
|
@@ -18340,6 +18352,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18340
18352
|
error_code: string;
|
|
18341
18353
|
}[];
|
|
18342
18354
|
connected_account_id: string;
|
|
18355
|
+
space_ids: string[];
|
|
18343
18356
|
acs_system_id: string;
|
|
18344
18357
|
acs_entrance_id: string;
|
|
18345
18358
|
salto_ks_metadata?: {
|
|
@@ -18404,6 +18417,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18404
18417
|
error_code: string;
|
|
18405
18418
|
}[];
|
|
18406
18419
|
connected_account_id: string;
|
|
18420
|
+
space_ids: string[];
|
|
18407
18421
|
acs_system_id: string;
|
|
18408
18422
|
acs_entrance_id: string;
|
|
18409
18423
|
salto_ks_metadata?: {
|
|
@@ -18461,6 +18475,267 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18461
18475
|
access_point_name: string;
|
|
18462
18476
|
} | undefined;
|
|
18463
18477
|
}>, "many">>;
|
|
18478
|
+
access_grants: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18479
|
+
workspace_id: z.ZodString;
|
|
18480
|
+
access_grant_id: z.ZodString;
|
|
18481
|
+
access_grant_key: z.ZodOptional<z.ZodString>;
|
|
18482
|
+
user_identity_id: z.ZodString;
|
|
18483
|
+
location_ids: z.ZodArray<z.ZodString, "many">;
|
|
18484
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
18485
|
+
requested_access_methods: z.ZodArray<z.ZodObject<{
|
|
18486
|
+
display_name: z.ZodString;
|
|
18487
|
+
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
18488
|
+
code: z.ZodOptional<z.ZodString>;
|
|
18489
|
+
created_at: z.ZodString;
|
|
18490
|
+
created_access_method_ids: z.ZodArray<z.ZodString, "many">;
|
|
18491
|
+
}, "strip", z.ZodTypeAny, {
|
|
18492
|
+
display_name: string;
|
|
18493
|
+
created_at: string;
|
|
18494
|
+
mode: "code" | "card" | "mobile_key";
|
|
18495
|
+
created_access_method_ids: string[];
|
|
18496
|
+
code?: string | undefined;
|
|
18497
|
+
}, {
|
|
18498
|
+
display_name: string;
|
|
18499
|
+
created_at: string;
|
|
18500
|
+
mode: "code" | "card" | "mobile_key";
|
|
18501
|
+
created_access_method_ids: string[];
|
|
18502
|
+
code?: string | undefined;
|
|
18503
|
+
}>, "many">;
|
|
18504
|
+
access_method_ids: z.ZodArray<z.ZodString, "many">;
|
|
18505
|
+
client_session_token: z.ZodOptional<z.ZodString>;
|
|
18506
|
+
name: z.ZodNullable<z.ZodString>;
|
|
18507
|
+
display_name: z.ZodString;
|
|
18508
|
+
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
18509
|
+
created_at: z.ZodString;
|
|
18510
|
+
starts_at: z.ZodString;
|
|
18511
|
+
ends_at: z.ZodNullable<z.ZodString>;
|
|
18512
|
+
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
18513
|
+
created_at: z.ZodString;
|
|
18514
|
+
message: z.ZodString;
|
|
18515
|
+
} & {
|
|
18516
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
18517
|
+
}, "strip", z.ZodTypeAny, {
|
|
18518
|
+
message: string;
|
|
18519
|
+
created_at: string;
|
|
18520
|
+
warning_code: "being_deleted";
|
|
18521
|
+
}, {
|
|
18522
|
+
message: string;
|
|
18523
|
+
created_at: string;
|
|
18524
|
+
warning_code: "being_deleted";
|
|
18525
|
+
}>]>, "many">;
|
|
18526
|
+
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
18527
|
+
}, "strip", z.ZodTypeAny, {
|
|
18528
|
+
name: string | null;
|
|
18529
|
+
display_name: string;
|
|
18530
|
+
workspace_id: string;
|
|
18531
|
+
created_at: string;
|
|
18532
|
+
starts_at: string;
|
|
18533
|
+
ends_at: string | null;
|
|
18534
|
+
warnings: {
|
|
18535
|
+
message: string;
|
|
18536
|
+
created_at: string;
|
|
18537
|
+
warning_code: "being_deleted";
|
|
18538
|
+
}[];
|
|
18539
|
+
space_ids: string[];
|
|
18540
|
+
access_grant_id: string;
|
|
18541
|
+
user_identity_id: string;
|
|
18542
|
+
location_ids: string[];
|
|
18543
|
+
requested_access_methods: {
|
|
18544
|
+
display_name: string;
|
|
18545
|
+
created_at: string;
|
|
18546
|
+
mode: "code" | "card" | "mobile_key";
|
|
18547
|
+
created_access_method_ids: string[];
|
|
18548
|
+
code?: string | undefined;
|
|
18549
|
+
}[];
|
|
18550
|
+
access_method_ids: string[];
|
|
18551
|
+
access_grant_key?: string | undefined;
|
|
18552
|
+
client_session_token?: string | undefined;
|
|
18553
|
+
instant_key_url?: string | undefined;
|
|
18554
|
+
customization_profile_id?: string | undefined;
|
|
18555
|
+
}, {
|
|
18556
|
+
name: string | null;
|
|
18557
|
+
display_name: string;
|
|
18558
|
+
workspace_id: string;
|
|
18559
|
+
created_at: string;
|
|
18560
|
+
starts_at: string;
|
|
18561
|
+
ends_at: string | null;
|
|
18562
|
+
warnings: {
|
|
18563
|
+
message: string;
|
|
18564
|
+
created_at: string;
|
|
18565
|
+
warning_code: "being_deleted";
|
|
18566
|
+
}[];
|
|
18567
|
+
space_ids: string[];
|
|
18568
|
+
access_grant_id: string;
|
|
18569
|
+
user_identity_id: string;
|
|
18570
|
+
location_ids: string[];
|
|
18571
|
+
requested_access_methods: {
|
|
18572
|
+
display_name: string;
|
|
18573
|
+
created_at: string;
|
|
18574
|
+
mode: "code" | "card" | "mobile_key";
|
|
18575
|
+
created_access_method_ids: string[];
|
|
18576
|
+
code?: string | undefined;
|
|
18577
|
+
}[];
|
|
18578
|
+
access_method_ids: string[];
|
|
18579
|
+
access_grant_key?: string | undefined;
|
|
18580
|
+
client_session_token?: string | undefined;
|
|
18581
|
+
instant_key_url?: string | undefined;
|
|
18582
|
+
customization_profile_id?: string | undefined;
|
|
18583
|
+
}>, "many">>;
|
|
18584
|
+
access_methods: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18585
|
+
workspace_id: z.ZodString;
|
|
18586
|
+
access_method_id: z.ZodString;
|
|
18587
|
+
display_name: z.ZodString;
|
|
18588
|
+
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
18589
|
+
created_at: z.ZodString;
|
|
18590
|
+
issued_at: z.ZodNullable<z.ZodString>;
|
|
18591
|
+
is_issued: z.ZodBoolean;
|
|
18592
|
+
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
18593
|
+
client_session_token: z.ZodOptional<z.ZodString>;
|
|
18594
|
+
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
18595
|
+
code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18596
|
+
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
18597
|
+
created_at: z.ZodString;
|
|
18598
|
+
message: z.ZodString;
|
|
18599
|
+
} & {
|
|
18600
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
18601
|
+
}, "strip", z.ZodTypeAny, {
|
|
18602
|
+
message: string;
|
|
18603
|
+
created_at: string;
|
|
18604
|
+
warning_code: "being_deleted";
|
|
18605
|
+
}, {
|
|
18606
|
+
message: string;
|
|
18607
|
+
created_at: string;
|
|
18608
|
+
warning_code: "being_deleted";
|
|
18609
|
+
}>]>, "many">;
|
|
18610
|
+
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
18611
|
+
}, "strip", z.ZodTypeAny, {
|
|
18612
|
+
display_name: string;
|
|
18613
|
+
workspace_id: string;
|
|
18614
|
+
created_at: string;
|
|
18615
|
+
warnings: {
|
|
18616
|
+
message: string;
|
|
18617
|
+
created_at: string;
|
|
18618
|
+
warning_code: "being_deleted";
|
|
18619
|
+
}[];
|
|
18620
|
+
mode: "code" | "card" | "mobile_key";
|
|
18621
|
+
access_method_id: string;
|
|
18622
|
+
issued_at: string | null;
|
|
18623
|
+
is_issued: boolean;
|
|
18624
|
+
code?: string | null | undefined;
|
|
18625
|
+
client_session_token?: string | undefined;
|
|
18626
|
+
instant_key_url?: string | undefined;
|
|
18627
|
+
customization_profile_id?: string | undefined;
|
|
18628
|
+
is_encoding_required?: boolean | undefined;
|
|
18629
|
+
}, {
|
|
18630
|
+
display_name: string;
|
|
18631
|
+
workspace_id: string;
|
|
18632
|
+
created_at: string;
|
|
18633
|
+
warnings: {
|
|
18634
|
+
message: string;
|
|
18635
|
+
created_at: string;
|
|
18636
|
+
warning_code: "being_deleted";
|
|
18637
|
+
}[];
|
|
18638
|
+
mode: "code" | "card" | "mobile_key";
|
|
18639
|
+
access_method_id: string;
|
|
18640
|
+
issued_at: string | null;
|
|
18641
|
+
is_issued: boolean;
|
|
18642
|
+
code?: string | null | undefined;
|
|
18643
|
+
client_session_token?: string | undefined;
|
|
18644
|
+
instant_key_url?: string | undefined;
|
|
18645
|
+
customization_profile_id?: string | undefined;
|
|
18646
|
+
is_encoding_required?: boolean | undefined;
|
|
18647
|
+
}>, "many">>;
|
|
18648
|
+
instant_keys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18649
|
+
instant_key_id: z.ZodString;
|
|
18650
|
+
workspace_id: z.ZodString;
|
|
18651
|
+
created_at: z.ZodString;
|
|
18652
|
+
instant_key_url: z.ZodString;
|
|
18653
|
+
client_session_id: z.ZodString;
|
|
18654
|
+
user_identity_id: z.ZodString;
|
|
18655
|
+
expires_at: z.ZodString;
|
|
18656
|
+
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
18657
|
+
customization: z.ZodOptional<z.ZodObject<{
|
|
18658
|
+
primary_color: z.ZodOptional<z.ZodString>;
|
|
18659
|
+
secondary_color: z.ZodOptional<z.ZodString>;
|
|
18660
|
+
logo_url: z.ZodOptional<z.ZodString>;
|
|
18661
|
+
}, "strip", z.ZodTypeAny, {
|
|
18662
|
+
logo_url?: string | undefined;
|
|
18663
|
+
primary_color?: string | undefined;
|
|
18664
|
+
secondary_color?: string | undefined;
|
|
18665
|
+
}, {
|
|
18666
|
+
logo_url?: string | undefined;
|
|
18667
|
+
primary_color?: string | undefined;
|
|
18668
|
+
secondary_color?: string | undefined;
|
|
18669
|
+
}>>;
|
|
18670
|
+
}, "strip", z.ZodTypeAny, {
|
|
18671
|
+
workspace_id: string;
|
|
18672
|
+
created_at: string;
|
|
18673
|
+
user_identity_id: string;
|
|
18674
|
+
instant_key_url: string;
|
|
18675
|
+
client_session_id: string;
|
|
18676
|
+
expires_at: string;
|
|
18677
|
+
instant_key_id: string;
|
|
18678
|
+
customization_profile_id?: string | undefined;
|
|
18679
|
+
customization?: {
|
|
18680
|
+
logo_url?: string | undefined;
|
|
18681
|
+
primary_color?: string | undefined;
|
|
18682
|
+
secondary_color?: string | undefined;
|
|
18683
|
+
} | undefined;
|
|
18684
|
+
}, {
|
|
18685
|
+
workspace_id: string;
|
|
18686
|
+
created_at: string;
|
|
18687
|
+
user_identity_id: string;
|
|
18688
|
+
instant_key_url: string;
|
|
18689
|
+
client_session_id: string;
|
|
18690
|
+
expires_at: string;
|
|
18691
|
+
instant_key_id: string;
|
|
18692
|
+
customization_profile_id?: string | undefined;
|
|
18693
|
+
customization?: {
|
|
18694
|
+
logo_url?: string | undefined;
|
|
18695
|
+
primary_color?: string | undefined;
|
|
18696
|
+
secondary_color?: string | undefined;
|
|
18697
|
+
} | undefined;
|
|
18698
|
+
}>, "many">>;
|
|
18699
|
+
client_sessions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18700
|
+
client_session_id: z.ZodString;
|
|
18701
|
+
workspace_id: z.ZodString;
|
|
18702
|
+
created_at: z.ZodString;
|
|
18703
|
+
expires_at: z.ZodString;
|
|
18704
|
+
token: z.ZodString;
|
|
18705
|
+
user_identifier_key: z.ZodNullable<z.ZodString>;
|
|
18706
|
+
device_count: z.ZodNumber;
|
|
18707
|
+
customer_key: z.ZodOptional<z.ZodString>;
|
|
18708
|
+
connected_account_ids: z.ZodArray<z.ZodString, "many">;
|
|
18709
|
+
connect_webview_ids: z.ZodArray<z.ZodString, "many">;
|
|
18710
|
+
user_identity_ids: z.ZodArray<z.ZodString, "many">;
|
|
18711
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
18712
|
+
}, "strip", z.ZodTypeAny, {
|
|
18713
|
+
workspace_id: string;
|
|
18714
|
+
created_at: string;
|
|
18715
|
+
connected_account_ids: string[];
|
|
18716
|
+
client_session_id: string;
|
|
18717
|
+
expires_at: string;
|
|
18718
|
+
token: string;
|
|
18719
|
+
user_identifier_key: string | null;
|
|
18720
|
+
device_count: number;
|
|
18721
|
+
connect_webview_ids: string[];
|
|
18722
|
+
user_identity_ids: string[];
|
|
18723
|
+
customer_key?: string | undefined;
|
|
18724
|
+
user_identity_id?: string | undefined;
|
|
18725
|
+
}, {
|
|
18726
|
+
workspace_id: string;
|
|
18727
|
+
created_at: string;
|
|
18728
|
+
connected_account_ids: string[];
|
|
18729
|
+
client_session_id: string;
|
|
18730
|
+
expires_at: string;
|
|
18731
|
+
token: string;
|
|
18732
|
+
user_identifier_key: string | null;
|
|
18733
|
+
device_count: number;
|
|
18734
|
+
connect_webview_ids: string[];
|
|
18735
|
+
user_identity_ids: string[];
|
|
18736
|
+
customer_key?: string | undefined;
|
|
18737
|
+
user_identity_id?: string | undefined;
|
|
18738
|
+
}>, "many">>;
|
|
18464
18739
|
}, "strip", z.ZodTypeAny, {
|
|
18465
18740
|
batch_type: "access_methods";
|
|
18466
18741
|
spaces?: {
|
|
@@ -18649,6 +18924,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18649
18924
|
})[];
|
|
18650
18925
|
custom_metadata: Record<string, string | boolean>;
|
|
18651
18926
|
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[];
|
|
18652
18928
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
18653
18929
|
properties: {
|
|
18654
18930
|
name: string;
|
|
@@ -19136,6 +19412,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19136
19412
|
error_code: string;
|
|
19137
19413
|
}[];
|
|
19138
19414
|
connected_account_id: string;
|
|
19415
|
+
space_ids: string[];
|
|
19139
19416
|
acs_system_id: string;
|
|
19140
19417
|
acs_entrance_id: string;
|
|
19141
19418
|
salto_ks_metadata?: {
|
|
@@ -19193,6 +19470,83 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19193
19470
|
access_point_name: string;
|
|
19194
19471
|
} | undefined;
|
|
19195
19472
|
}[] | undefined;
|
|
19473
|
+
access_grants?: {
|
|
19474
|
+
name: string | null;
|
|
19475
|
+
display_name: string;
|
|
19476
|
+
workspace_id: string;
|
|
19477
|
+
created_at: string;
|
|
19478
|
+
starts_at: string;
|
|
19479
|
+
ends_at: string | null;
|
|
19480
|
+
warnings: {
|
|
19481
|
+
message: string;
|
|
19482
|
+
created_at: string;
|
|
19483
|
+
warning_code: "being_deleted";
|
|
19484
|
+
}[];
|
|
19485
|
+
space_ids: string[];
|
|
19486
|
+
access_grant_id: string;
|
|
19487
|
+
user_identity_id: string;
|
|
19488
|
+
location_ids: string[];
|
|
19489
|
+
requested_access_methods: {
|
|
19490
|
+
display_name: string;
|
|
19491
|
+
created_at: string;
|
|
19492
|
+
mode: "code" | "card" | "mobile_key";
|
|
19493
|
+
created_access_method_ids: string[];
|
|
19494
|
+
code?: string | undefined;
|
|
19495
|
+
}[];
|
|
19496
|
+
access_method_ids: string[];
|
|
19497
|
+
access_grant_key?: string | undefined;
|
|
19498
|
+
client_session_token?: string | undefined;
|
|
19499
|
+
instant_key_url?: string | undefined;
|
|
19500
|
+
customization_profile_id?: string | undefined;
|
|
19501
|
+
}[] | undefined;
|
|
19502
|
+
access_methods?: {
|
|
19503
|
+
display_name: string;
|
|
19504
|
+
workspace_id: string;
|
|
19505
|
+
created_at: string;
|
|
19506
|
+
warnings: {
|
|
19507
|
+
message: string;
|
|
19508
|
+
created_at: string;
|
|
19509
|
+
warning_code: "being_deleted";
|
|
19510
|
+
}[];
|
|
19511
|
+
mode: "code" | "card" | "mobile_key";
|
|
19512
|
+
access_method_id: string;
|
|
19513
|
+
issued_at: string | null;
|
|
19514
|
+
is_issued: boolean;
|
|
19515
|
+
code?: string | null | undefined;
|
|
19516
|
+
client_session_token?: string | undefined;
|
|
19517
|
+
instant_key_url?: string | undefined;
|
|
19518
|
+
customization_profile_id?: string | undefined;
|
|
19519
|
+
is_encoding_required?: boolean | undefined;
|
|
19520
|
+
}[] | undefined;
|
|
19521
|
+
instant_keys?: {
|
|
19522
|
+
workspace_id: string;
|
|
19523
|
+
created_at: string;
|
|
19524
|
+
user_identity_id: string;
|
|
19525
|
+
instant_key_url: string;
|
|
19526
|
+
client_session_id: string;
|
|
19527
|
+
expires_at: string;
|
|
19528
|
+
instant_key_id: string;
|
|
19529
|
+
customization_profile_id?: string | undefined;
|
|
19530
|
+
customization?: {
|
|
19531
|
+
logo_url?: string | undefined;
|
|
19532
|
+
primary_color?: string | undefined;
|
|
19533
|
+
secondary_color?: string | undefined;
|
|
19534
|
+
} | undefined;
|
|
19535
|
+
}[] | undefined;
|
|
19536
|
+
client_sessions?: {
|
|
19537
|
+
workspace_id: string;
|
|
19538
|
+
created_at: string;
|
|
19539
|
+
connected_account_ids: string[];
|
|
19540
|
+
client_session_id: string;
|
|
19541
|
+
expires_at: string;
|
|
19542
|
+
token: string;
|
|
19543
|
+
user_identifier_key: string | null;
|
|
19544
|
+
device_count: number;
|
|
19545
|
+
connect_webview_ids: string[];
|
|
19546
|
+
user_identity_ids: string[];
|
|
19547
|
+
customer_key?: string | undefined;
|
|
19548
|
+
user_identity_id?: string | undefined;
|
|
19549
|
+
}[] | undefined;
|
|
19196
19550
|
}, {
|
|
19197
19551
|
batch_type: "access_methods";
|
|
19198
19552
|
spaces?: {
|
|
@@ -19381,6 +19735,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19381
19735
|
})[];
|
|
19382
19736
|
custom_metadata: Record<string, string | boolean>;
|
|
19383
19737
|
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[];
|
|
19384
19739
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
19385
19740
|
properties: {
|
|
19386
19741
|
name: string;
|
|
@@ -19868,6 +20223,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19868
20223
|
error_code: string;
|
|
19869
20224
|
}[];
|
|
19870
20225
|
connected_account_id: string;
|
|
20226
|
+
space_ids: string[];
|
|
19871
20227
|
acs_system_id: string;
|
|
19872
20228
|
acs_entrance_id: string;
|
|
19873
20229
|
salto_ks_metadata?: {
|
|
@@ -19925,6 +20281,83 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19925
20281
|
access_point_name: string;
|
|
19926
20282
|
} | undefined;
|
|
19927
20283
|
}[] | undefined;
|
|
20284
|
+
access_grants?: {
|
|
20285
|
+
name: string | null;
|
|
20286
|
+
display_name: string;
|
|
20287
|
+
workspace_id: string;
|
|
20288
|
+
created_at: string;
|
|
20289
|
+
starts_at: string;
|
|
20290
|
+
ends_at: string | null;
|
|
20291
|
+
warnings: {
|
|
20292
|
+
message: string;
|
|
20293
|
+
created_at: string;
|
|
20294
|
+
warning_code: "being_deleted";
|
|
20295
|
+
}[];
|
|
20296
|
+
space_ids: string[];
|
|
20297
|
+
access_grant_id: string;
|
|
20298
|
+
user_identity_id: string;
|
|
20299
|
+
location_ids: string[];
|
|
20300
|
+
requested_access_methods: {
|
|
20301
|
+
display_name: string;
|
|
20302
|
+
created_at: string;
|
|
20303
|
+
mode: "code" | "card" | "mobile_key";
|
|
20304
|
+
created_access_method_ids: string[];
|
|
20305
|
+
code?: string | undefined;
|
|
20306
|
+
}[];
|
|
20307
|
+
access_method_ids: string[];
|
|
20308
|
+
access_grant_key?: string | undefined;
|
|
20309
|
+
client_session_token?: string | undefined;
|
|
20310
|
+
instant_key_url?: string | undefined;
|
|
20311
|
+
customization_profile_id?: string | undefined;
|
|
20312
|
+
}[] | undefined;
|
|
20313
|
+
access_methods?: {
|
|
20314
|
+
display_name: string;
|
|
20315
|
+
workspace_id: string;
|
|
20316
|
+
created_at: string;
|
|
20317
|
+
warnings: {
|
|
20318
|
+
message: string;
|
|
20319
|
+
created_at: string;
|
|
20320
|
+
warning_code: "being_deleted";
|
|
20321
|
+
}[];
|
|
20322
|
+
mode: "code" | "card" | "mobile_key";
|
|
20323
|
+
access_method_id: string;
|
|
20324
|
+
issued_at: string | null;
|
|
20325
|
+
is_issued: boolean;
|
|
20326
|
+
code?: string | null | undefined;
|
|
20327
|
+
client_session_token?: string | undefined;
|
|
20328
|
+
instant_key_url?: string | undefined;
|
|
20329
|
+
customization_profile_id?: string | undefined;
|
|
20330
|
+
is_encoding_required?: boolean | undefined;
|
|
20331
|
+
}[] | undefined;
|
|
20332
|
+
instant_keys?: {
|
|
20333
|
+
workspace_id: string;
|
|
20334
|
+
created_at: string;
|
|
20335
|
+
user_identity_id: string;
|
|
20336
|
+
instant_key_url: string;
|
|
20337
|
+
client_session_id: string;
|
|
20338
|
+
expires_at: string;
|
|
20339
|
+
instant_key_id: string;
|
|
20340
|
+
customization_profile_id?: string | undefined;
|
|
20341
|
+
customization?: {
|
|
20342
|
+
logo_url?: string | undefined;
|
|
20343
|
+
primary_color?: string | undefined;
|
|
20344
|
+
secondary_color?: string | undefined;
|
|
20345
|
+
} | undefined;
|
|
20346
|
+
}[] | undefined;
|
|
20347
|
+
client_sessions?: {
|
|
20348
|
+
workspace_id: string;
|
|
20349
|
+
created_at: string;
|
|
20350
|
+
connected_account_ids: string[];
|
|
20351
|
+
client_session_id: string;
|
|
20352
|
+
expires_at: string;
|
|
20353
|
+
token: string;
|
|
20354
|
+
user_identifier_key: string | null;
|
|
20355
|
+
device_count: number;
|
|
20356
|
+
connect_webview_ids: string[];
|
|
20357
|
+
user_identity_ids: string[];
|
|
20358
|
+
customer_key?: string | undefined;
|
|
20359
|
+
user_identity_id?: string | undefined;
|
|
20360
|
+
}[] | undefined;
|
|
19928
20361
|
}>;
|
|
19929
20362
|
export declare const workspaces_batch: z.ZodObject<{
|
|
19930
20363
|
batch_type: z.ZodLiteral<"workspaces">;
|
|
@@ -20130,6 +20563,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
20130
20563
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20131
20564
|
device_id: z.ZodString;
|
|
20132
20565
|
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">;
|
|
20133
20567
|
nickname: z.ZodOptional<z.ZodString>;
|
|
20134
20568
|
display_name: z.ZodString;
|
|
20135
20569
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -23133,6 +23567,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23133
23567
|
})[];
|
|
23134
23568
|
custom_metadata: Record<string, string | boolean>;
|
|
23135
23569
|
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[];
|
|
23136
23571
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
23137
23572
|
properties: {
|
|
23138
23573
|
name: string;
|
|
@@ -23787,6 +24222,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23787
24222
|
})[];
|
|
23788
24223
|
custom_metadata: Record<string, string | boolean>;
|
|
23789
24224
|
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[];
|
|
23790
24226
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
23791
24227
|
properties: {
|
|
23792
24228
|
name: string;
|
|
@@ -24269,6 +24705,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24269
24705
|
acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
24270
24706
|
acs_system_id: z.ZodString;
|
|
24271
24707
|
acs_entrance_id: z.ZodString;
|
|
24708
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
24272
24709
|
created_at: z.ZodString;
|
|
24273
24710
|
display_name: z.ZodString;
|
|
24274
24711
|
connected_account_id: z.ZodString;
|
|
@@ -24437,6 +24874,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24437
24874
|
error_code: string;
|
|
24438
24875
|
}[];
|
|
24439
24876
|
connected_account_id: string;
|
|
24877
|
+
space_ids: string[];
|
|
24440
24878
|
acs_system_id: string;
|
|
24441
24879
|
acs_entrance_id: string;
|
|
24442
24880
|
salto_ks_metadata?: {
|
|
@@ -24501,6 +24939,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24501
24939
|
error_code: string;
|
|
24502
24940
|
}[];
|
|
24503
24941
|
connected_account_id: string;
|
|
24942
|
+
space_ids: string[];
|
|
24504
24943
|
acs_system_id: string;
|
|
24505
24944
|
acs_entrance_id: string;
|
|
24506
24945
|
salto_ks_metadata?: {
|
|
@@ -30724,6 +31163,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
30724
31163
|
unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
|
|
30725
31164
|
device_id: z.ZodString;
|
|
30726
31165
|
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">;
|
|
30727
31167
|
nickname: z.ZodOptional<z.ZodString>;
|
|
30728
31168
|
display_name: z.ZodString;
|
|
30729
31169
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -34721,10 +35161,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
34721
35161
|
created_at: string;
|
|
34722
35162
|
warning_code: "being_deleted";
|
|
34723
35163
|
}[];
|
|
35164
|
+
space_ids: string[];
|
|
34724
35165
|
access_grant_id: string;
|
|
34725
35166
|
user_identity_id: string;
|
|
34726
35167
|
location_ids: string[];
|
|
34727
|
-
space_ids: string[];
|
|
34728
35168
|
requested_access_methods: {
|
|
34729
35169
|
display_name: string;
|
|
34730
35170
|
created_at: string;
|
|
@@ -34749,10 +35189,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
34749
35189
|
created_at: string;
|
|
34750
35190
|
warning_code: "being_deleted";
|
|
34751
35191
|
}[];
|
|
35192
|
+
space_ids: string[];
|
|
34752
35193
|
access_grant_id: string;
|
|
34753
35194
|
user_identity_id: string;
|
|
34754
35195
|
location_ids: string[];
|
|
34755
|
-
space_ids: string[];
|
|
34756
35196
|
requested_access_methods: {
|
|
34757
35197
|
display_name: string;
|
|
34758
35198
|
created_at: string;
|
|
@@ -41194,6 +41634,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41194
41634
|
})[];
|
|
41195
41635
|
custom_metadata: Record<string, string | boolean>;
|
|
41196
41636
|
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[];
|
|
41197
41638
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
41198
41639
|
properties: {
|
|
41199
41640
|
name: string;
|
|
@@ -41681,6 +42122,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41681
42122
|
error_code: string;
|
|
41682
42123
|
}[];
|
|
41683
42124
|
connected_account_id: string;
|
|
42125
|
+
space_ids: string[];
|
|
41684
42126
|
acs_system_id: string;
|
|
41685
42127
|
acs_entrance_id: string;
|
|
41686
42128
|
salto_ks_metadata?: {
|
|
@@ -41885,10 +42327,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41885
42327
|
created_at: string;
|
|
41886
42328
|
warning_code: "being_deleted";
|
|
41887
42329
|
}[];
|
|
42330
|
+
space_ids: string[];
|
|
41888
42331
|
access_grant_id: string;
|
|
41889
42332
|
user_identity_id: string;
|
|
41890
42333
|
location_ids: string[];
|
|
41891
|
-
space_ids: string[];
|
|
41892
42334
|
requested_access_methods: {
|
|
41893
42335
|
display_name: string;
|
|
41894
42336
|
created_at: string;
|
|
@@ -41967,6 +42409,35 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41967
42409
|
customization_profile_id?: string | undefined;
|
|
41968
42410
|
is_encoding_required?: boolean | undefined;
|
|
41969
42411
|
}[] | undefined;
|
|
42412
|
+
instant_keys?: {
|
|
42413
|
+
workspace_id: string;
|
|
42414
|
+
created_at: string;
|
|
42415
|
+
user_identity_id: string;
|
|
42416
|
+
instant_key_url: string;
|
|
42417
|
+
client_session_id: string;
|
|
42418
|
+
expires_at: string;
|
|
42419
|
+
instant_key_id: string;
|
|
42420
|
+
customization_profile_id?: string | undefined;
|
|
42421
|
+
customization?: {
|
|
42422
|
+
logo_url?: string | undefined;
|
|
42423
|
+
primary_color?: string | undefined;
|
|
42424
|
+
secondary_color?: string | undefined;
|
|
42425
|
+
} | undefined;
|
|
42426
|
+
}[] | undefined;
|
|
42427
|
+
client_sessions?: {
|
|
42428
|
+
workspace_id: string;
|
|
42429
|
+
created_at: string;
|
|
42430
|
+
connected_account_ids: string[];
|
|
42431
|
+
client_session_id: string;
|
|
42432
|
+
expires_at: string;
|
|
42433
|
+
token: string;
|
|
42434
|
+
user_identifier_key: string | null;
|
|
42435
|
+
device_count: number;
|
|
42436
|
+
connect_webview_ids: string[];
|
|
42437
|
+
user_identity_ids: string[];
|
|
42438
|
+
customer_key?: string | undefined;
|
|
42439
|
+
user_identity_id?: string | undefined;
|
|
42440
|
+
}[] | undefined;
|
|
41970
42441
|
workspaces?: {
|
|
41971
42442
|
name: string;
|
|
41972
42443
|
workspace_id: string;
|
|
@@ -42986,20 +43457,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42986
43457
|
result: null;
|
|
42987
43458
|
action_type: "UNLOCK_DOOR";
|
|
42988
43459
|
})[] | undefined;
|
|
42989
|
-
client_sessions?: {
|
|
42990
|
-
workspace_id: string;
|
|
42991
|
-
created_at: string;
|
|
42992
|
-
connected_account_ids: string[];
|
|
42993
|
-
client_session_id: string;
|
|
42994
|
-
expires_at: string;
|
|
42995
|
-
token: string;
|
|
42996
|
-
user_identifier_key: string | null;
|
|
42997
|
-
device_count: number;
|
|
42998
|
-
connect_webview_ids: string[];
|
|
42999
|
-
user_identity_ids: string[];
|
|
43000
|
-
customer_key?: string | undefined;
|
|
43001
|
-
user_identity_id?: string | undefined;
|
|
43002
|
-
}[] | undefined;
|
|
43003
43460
|
unmanaged_acs_users?: {
|
|
43004
43461
|
display_name: string;
|
|
43005
43462
|
workspace_id: string;
|
|
@@ -44323,21 +44780,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
44323
44780
|
event_type: "phone.deactivated";
|
|
44324
44781
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
44325
44782
|
})[] | undefined;
|
|
44326
|
-
instant_keys?: {
|
|
44327
|
-
workspace_id: string;
|
|
44328
|
-
created_at: string;
|
|
44329
|
-
user_identity_id: string;
|
|
44330
|
-
instant_key_url: string;
|
|
44331
|
-
client_session_id: string;
|
|
44332
|
-
expires_at: string;
|
|
44333
|
-
instant_key_id: string;
|
|
44334
|
-
customization_profile_id?: string | undefined;
|
|
44335
|
-
customization?: {
|
|
44336
|
-
logo_url?: string | undefined;
|
|
44337
|
-
primary_color?: string | undefined;
|
|
44338
|
-
secondary_color?: string | undefined;
|
|
44339
|
-
} | undefined;
|
|
44340
|
-
}[] | undefined;
|
|
44341
44783
|
access_codes?: {
|
|
44342
44784
|
code: string | null;
|
|
44343
44785
|
type: "time_bound" | "ongoing";
|
|
@@ -45162,6 +45604,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45162
45604
|
})[];
|
|
45163
45605
|
custom_metadata: Record<string, string | boolean>;
|
|
45164
45606
|
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[];
|
|
45165
45608
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
45166
45609
|
properties: {
|
|
45167
45610
|
name: string;
|
|
@@ -45649,6 +46092,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45649
46092
|
error_code: string;
|
|
45650
46093
|
}[];
|
|
45651
46094
|
connected_account_id: string;
|
|
46095
|
+
space_ids: string[];
|
|
45652
46096
|
acs_system_id: string;
|
|
45653
46097
|
acs_entrance_id: string;
|
|
45654
46098
|
salto_ks_metadata?: {
|
|
@@ -45853,10 +46297,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45853
46297
|
created_at: string;
|
|
45854
46298
|
warning_code: "being_deleted";
|
|
45855
46299
|
}[];
|
|
46300
|
+
space_ids: string[];
|
|
45856
46301
|
access_grant_id: string;
|
|
45857
46302
|
user_identity_id: string;
|
|
45858
46303
|
location_ids: string[];
|
|
45859
|
-
space_ids: string[];
|
|
45860
46304
|
requested_access_methods: {
|
|
45861
46305
|
display_name: string;
|
|
45862
46306
|
created_at: string;
|
|
@@ -45935,6 +46379,35 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45935
46379
|
customization_profile_id?: string | undefined;
|
|
45936
46380
|
is_encoding_required?: boolean | undefined;
|
|
45937
46381
|
}[] | undefined;
|
|
46382
|
+
instant_keys?: {
|
|
46383
|
+
workspace_id: string;
|
|
46384
|
+
created_at: string;
|
|
46385
|
+
user_identity_id: string;
|
|
46386
|
+
instant_key_url: string;
|
|
46387
|
+
client_session_id: string;
|
|
46388
|
+
expires_at: string;
|
|
46389
|
+
instant_key_id: string;
|
|
46390
|
+
customization_profile_id?: string | undefined;
|
|
46391
|
+
customization?: {
|
|
46392
|
+
logo_url?: string | undefined;
|
|
46393
|
+
primary_color?: string | undefined;
|
|
46394
|
+
secondary_color?: string | undefined;
|
|
46395
|
+
} | undefined;
|
|
46396
|
+
}[] | undefined;
|
|
46397
|
+
client_sessions?: {
|
|
46398
|
+
workspace_id: string;
|
|
46399
|
+
created_at: string;
|
|
46400
|
+
connected_account_ids: string[];
|
|
46401
|
+
client_session_id: string;
|
|
46402
|
+
expires_at: string;
|
|
46403
|
+
token: string;
|
|
46404
|
+
user_identifier_key: string | null;
|
|
46405
|
+
device_count: number;
|
|
46406
|
+
connect_webview_ids: string[];
|
|
46407
|
+
user_identity_ids: string[];
|
|
46408
|
+
customer_key?: string | undefined;
|
|
46409
|
+
user_identity_id?: string | undefined;
|
|
46410
|
+
}[] | undefined;
|
|
45938
46411
|
workspaces?: {
|
|
45939
46412
|
name: string;
|
|
45940
46413
|
workspace_id: string;
|
|
@@ -46954,20 +47427,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46954
47427
|
result: null;
|
|
46955
47428
|
action_type: "UNLOCK_DOOR";
|
|
46956
47429
|
})[] | undefined;
|
|
46957
|
-
client_sessions?: {
|
|
46958
|
-
workspace_id: string;
|
|
46959
|
-
created_at: string;
|
|
46960
|
-
connected_account_ids: string[];
|
|
46961
|
-
client_session_id: string;
|
|
46962
|
-
expires_at: string;
|
|
46963
|
-
token: string;
|
|
46964
|
-
user_identifier_key: string | null;
|
|
46965
|
-
device_count: number;
|
|
46966
|
-
connect_webview_ids: string[];
|
|
46967
|
-
user_identity_ids: string[];
|
|
46968
|
-
customer_key?: string | undefined;
|
|
46969
|
-
user_identity_id?: string | undefined;
|
|
46970
|
-
}[] | undefined;
|
|
46971
47430
|
unmanaged_acs_users?: {
|
|
46972
47431
|
display_name: string;
|
|
46973
47432
|
workspace_id: string;
|
|
@@ -48291,21 +48750,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
48291
48750
|
event_type: "phone.deactivated";
|
|
48292
48751
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
48293
48752
|
})[] | undefined;
|
|
48294
|
-
instant_keys?: {
|
|
48295
|
-
workspace_id: string;
|
|
48296
|
-
created_at: string;
|
|
48297
|
-
user_identity_id: string;
|
|
48298
|
-
instant_key_url: string;
|
|
48299
|
-
client_session_id: string;
|
|
48300
|
-
expires_at: string;
|
|
48301
|
-
instant_key_id: string;
|
|
48302
|
-
customization_profile_id?: string | undefined;
|
|
48303
|
-
customization?: {
|
|
48304
|
-
logo_url?: string | undefined;
|
|
48305
|
-
primary_color?: string | undefined;
|
|
48306
|
-
secondary_color?: string | undefined;
|
|
48307
|
-
} | undefined;
|
|
48308
|
-
}[] | undefined;
|
|
48309
48753
|
access_codes?: {
|
|
48310
48754
|
code: string | null;
|
|
48311
48755
|
type: "time_bound" | "ongoing";
|
|
@@ -49136,6 +49580,7 @@ export declare const batch: z.ZodObject<{
|
|
|
49136
49580
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
49137
49581
|
device_id: z.ZodString;
|
|
49138
49582
|
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">;
|
|
49139
49584
|
nickname: z.ZodOptional<z.ZodString>;
|
|
49140
49585
|
display_name: z.ZodString;
|
|
49141
49586
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -52139,6 +52584,7 @@ export declare const batch: z.ZodObject<{
|
|
|
52139
52584
|
})[];
|
|
52140
52585
|
custom_metadata: Record<string, string | boolean>;
|
|
52141
52586
|
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[];
|
|
52142
52588
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
52143
52589
|
properties: {
|
|
52144
52590
|
name: string;
|
|
@@ -52793,6 +53239,7 @@ export declare const batch: z.ZodObject<{
|
|
|
52793
53239
|
})[];
|
|
52794
53240
|
custom_metadata: Record<string, string | boolean>;
|
|
52795
53241
|
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[];
|
|
52796
53243
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
52797
53244
|
properties: {
|
|
52798
53245
|
name: string;
|
|
@@ -53275,6 +53722,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53275
53722
|
acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
53276
53723
|
acs_system_id: z.ZodString;
|
|
53277
53724
|
acs_entrance_id: z.ZodString;
|
|
53725
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
53278
53726
|
created_at: z.ZodString;
|
|
53279
53727
|
display_name: z.ZodString;
|
|
53280
53728
|
connected_account_id: z.ZodString;
|
|
@@ -53443,6 +53891,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53443
53891
|
error_code: string;
|
|
53444
53892
|
}[];
|
|
53445
53893
|
connected_account_id: string;
|
|
53894
|
+
space_ids: string[];
|
|
53446
53895
|
acs_system_id: string;
|
|
53447
53896
|
acs_entrance_id: string;
|
|
53448
53897
|
salto_ks_metadata?: {
|
|
@@ -53507,6 +53956,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53507
53956
|
error_code: string;
|
|
53508
53957
|
}[];
|
|
53509
53958
|
connected_account_id: string;
|
|
53959
|
+
space_ids: string[];
|
|
53510
53960
|
acs_system_id: string;
|
|
53511
53961
|
acs_entrance_id: string;
|
|
53512
53962
|
salto_ks_metadata?: {
|
|
@@ -59730,6 +60180,7 @@ export declare const batch: z.ZodObject<{
|
|
|
59730
60180
|
unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
|
|
59731
60181
|
device_id: z.ZodString;
|
|
59732
60182
|
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">;
|
|
59733
60184
|
nickname: z.ZodOptional<z.ZodString>;
|
|
59734
60185
|
display_name: z.ZodString;
|
|
59735
60186
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -63355,10 +63806,10 @@ export declare const batch: z.ZodObject<{
|
|
|
63355
63806
|
created_at: string;
|
|
63356
63807
|
warning_code: "being_deleted";
|
|
63357
63808
|
}[];
|
|
63809
|
+
space_ids: string[];
|
|
63358
63810
|
access_grant_id: string;
|
|
63359
63811
|
user_identity_id: string;
|
|
63360
63812
|
location_ids: string[];
|
|
63361
|
-
space_ids: string[];
|
|
63362
63813
|
requested_access_methods: {
|
|
63363
63814
|
display_name: string;
|
|
63364
63815
|
created_at: string;
|
|
@@ -63383,10 +63834,10 @@ export declare const batch: z.ZodObject<{
|
|
|
63383
63834
|
created_at: string;
|
|
63384
63835
|
warning_code: "being_deleted";
|
|
63385
63836
|
}[];
|
|
63837
|
+
space_ids: string[];
|
|
63386
63838
|
access_grant_id: string;
|
|
63387
63839
|
user_identity_id: string;
|
|
63388
63840
|
location_ids: string[];
|
|
63389
|
-
space_ids: string[];
|
|
63390
63841
|
requested_access_methods: {
|
|
63391
63842
|
display_name: string;
|
|
63392
63843
|
created_at: string;
|
|
@@ -69828,6 +70279,7 @@ export declare const batch: z.ZodObject<{
|
|
|
69828
70279
|
})[];
|
|
69829
70280
|
custom_metadata: Record<string, string | boolean>;
|
|
69830
70281
|
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[];
|
|
69831
70283
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
69832
70284
|
properties: {
|
|
69833
70285
|
name: string;
|
|
@@ -70315,6 +70767,7 @@ export declare const batch: z.ZodObject<{
|
|
|
70315
70767
|
error_code: string;
|
|
70316
70768
|
}[];
|
|
70317
70769
|
connected_account_id: string;
|
|
70770
|
+
space_ids: string[];
|
|
70318
70771
|
acs_system_id: string;
|
|
70319
70772
|
acs_entrance_id: string;
|
|
70320
70773
|
salto_ks_metadata?: {
|
|
@@ -70450,10 +70903,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70450
70903
|
created_at: string;
|
|
70451
70904
|
warning_code: "being_deleted";
|
|
70452
70905
|
}[];
|
|
70906
|
+
space_ids: string[];
|
|
70453
70907
|
access_grant_id: string;
|
|
70454
70908
|
user_identity_id: string;
|
|
70455
70909
|
location_ids: string[];
|
|
70456
|
-
space_ids: string[];
|
|
70457
70910
|
requested_access_methods: {
|
|
70458
70911
|
display_name: string;
|
|
70459
70912
|
created_at: string;
|
|
@@ -70532,6 +70985,35 @@ export declare const batch: z.ZodObject<{
|
|
|
70532
70985
|
customization_profile_id?: string | undefined;
|
|
70533
70986
|
is_encoding_required?: boolean | undefined;
|
|
70534
70987
|
}[] | undefined;
|
|
70988
|
+
instant_keys?: {
|
|
70989
|
+
workspace_id: string;
|
|
70990
|
+
created_at: string;
|
|
70991
|
+
user_identity_id: string;
|
|
70992
|
+
instant_key_url: string;
|
|
70993
|
+
client_session_id: string;
|
|
70994
|
+
expires_at: string;
|
|
70995
|
+
instant_key_id: string;
|
|
70996
|
+
customization_profile_id?: string | undefined;
|
|
70997
|
+
customization?: {
|
|
70998
|
+
logo_url?: string | undefined;
|
|
70999
|
+
primary_color?: string | undefined;
|
|
71000
|
+
secondary_color?: string | undefined;
|
|
71001
|
+
} | undefined;
|
|
71002
|
+
}[] | undefined;
|
|
71003
|
+
client_sessions?: {
|
|
71004
|
+
workspace_id: string;
|
|
71005
|
+
created_at: string;
|
|
71006
|
+
connected_account_ids: string[];
|
|
71007
|
+
client_session_id: string;
|
|
71008
|
+
expires_at: string;
|
|
71009
|
+
token: string;
|
|
71010
|
+
user_identifier_key: string | null;
|
|
71011
|
+
device_count: number;
|
|
71012
|
+
connect_webview_ids: string[];
|
|
71013
|
+
user_identity_ids: string[];
|
|
71014
|
+
customer_key?: string | undefined;
|
|
71015
|
+
user_identity_id?: string | undefined;
|
|
71016
|
+
}[] | undefined;
|
|
70535
71017
|
workspaces?: {
|
|
70536
71018
|
name: string;
|
|
70537
71019
|
workspace_id: string;
|
|
@@ -71551,20 +72033,6 @@ export declare const batch: z.ZodObject<{
|
|
|
71551
72033
|
result: null;
|
|
71552
72034
|
action_type: "UNLOCK_DOOR";
|
|
71553
72035
|
})[] | undefined;
|
|
71554
|
-
client_sessions?: {
|
|
71555
|
-
workspace_id: string;
|
|
71556
|
-
created_at: string;
|
|
71557
|
-
connected_account_ids: string[];
|
|
71558
|
-
client_session_id: string;
|
|
71559
|
-
expires_at: string;
|
|
71560
|
-
token: string;
|
|
71561
|
-
user_identifier_key: string | null;
|
|
71562
|
-
device_count: number;
|
|
71563
|
-
connect_webview_ids: string[];
|
|
71564
|
-
user_identity_ids: string[];
|
|
71565
|
-
customer_key?: string | undefined;
|
|
71566
|
-
user_identity_id?: string | undefined;
|
|
71567
|
-
}[] | undefined;
|
|
71568
72036
|
unmanaged_acs_users?: {
|
|
71569
72037
|
display_name: string;
|
|
71570
72038
|
workspace_id: string;
|
|
@@ -72888,21 +73356,6 @@ export declare const batch: z.ZodObject<{
|
|
|
72888
73356
|
event_type: "phone.deactivated";
|
|
72889
73357
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
72890
73358
|
})[] | undefined;
|
|
72891
|
-
instant_keys?: {
|
|
72892
|
-
workspace_id: string;
|
|
72893
|
-
created_at: string;
|
|
72894
|
-
user_identity_id: string;
|
|
72895
|
-
instant_key_url: string;
|
|
72896
|
-
client_session_id: string;
|
|
72897
|
-
expires_at: string;
|
|
72898
|
-
instant_key_id: string;
|
|
72899
|
-
customization_profile_id?: string | undefined;
|
|
72900
|
-
customization?: {
|
|
72901
|
-
logo_url?: string | undefined;
|
|
72902
|
-
primary_color?: string | undefined;
|
|
72903
|
-
secondary_color?: string | undefined;
|
|
72904
|
-
} | undefined;
|
|
72905
|
-
}[] | undefined;
|
|
72906
73359
|
access_codes?: {
|
|
72907
73360
|
code: string | null;
|
|
72908
73361
|
type: "time_bound" | "ongoing";
|
|
@@ -73727,6 +74180,7 @@ export declare const batch: z.ZodObject<{
|
|
|
73727
74180
|
})[];
|
|
73728
74181
|
custom_metadata: Record<string, string | boolean>;
|
|
73729
74182
|
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[];
|
|
73730
74184
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
73731
74185
|
properties: {
|
|
73732
74186
|
name: string;
|
|
@@ -74214,6 +74668,7 @@ export declare const batch: z.ZodObject<{
|
|
|
74214
74668
|
error_code: string;
|
|
74215
74669
|
}[];
|
|
74216
74670
|
connected_account_id: string;
|
|
74671
|
+
space_ids: string[];
|
|
74217
74672
|
acs_system_id: string;
|
|
74218
74673
|
acs_entrance_id: string;
|
|
74219
74674
|
salto_ks_metadata?: {
|
|
@@ -74349,10 +74804,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74349
74804
|
created_at: string;
|
|
74350
74805
|
warning_code: "being_deleted";
|
|
74351
74806
|
}[];
|
|
74807
|
+
space_ids: string[];
|
|
74352
74808
|
access_grant_id: string;
|
|
74353
74809
|
user_identity_id: string;
|
|
74354
74810
|
location_ids: string[];
|
|
74355
|
-
space_ids: string[];
|
|
74356
74811
|
requested_access_methods: {
|
|
74357
74812
|
display_name: string;
|
|
74358
74813
|
created_at: string;
|
|
@@ -74431,6 +74886,35 @@ export declare const batch: z.ZodObject<{
|
|
|
74431
74886
|
customization_profile_id?: string | undefined;
|
|
74432
74887
|
is_encoding_required?: boolean | undefined;
|
|
74433
74888
|
}[] | undefined;
|
|
74889
|
+
instant_keys?: {
|
|
74890
|
+
workspace_id: string;
|
|
74891
|
+
created_at: string;
|
|
74892
|
+
user_identity_id: string;
|
|
74893
|
+
instant_key_url: string;
|
|
74894
|
+
client_session_id: string;
|
|
74895
|
+
expires_at: string;
|
|
74896
|
+
instant_key_id: string;
|
|
74897
|
+
customization_profile_id?: string | undefined;
|
|
74898
|
+
customization?: {
|
|
74899
|
+
logo_url?: string | undefined;
|
|
74900
|
+
primary_color?: string | undefined;
|
|
74901
|
+
secondary_color?: string | undefined;
|
|
74902
|
+
} | undefined;
|
|
74903
|
+
}[] | undefined;
|
|
74904
|
+
client_sessions?: {
|
|
74905
|
+
workspace_id: string;
|
|
74906
|
+
created_at: string;
|
|
74907
|
+
connected_account_ids: string[];
|
|
74908
|
+
client_session_id: string;
|
|
74909
|
+
expires_at: string;
|
|
74910
|
+
token: string;
|
|
74911
|
+
user_identifier_key: string | null;
|
|
74912
|
+
device_count: number;
|
|
74913
|
+
connect_webview_ids: string[];
|
|
74914
|
+
user_identity_ids: string[];
|
|
74915
|
+
customer_key?: string | undefined;
|
|
74916
|
+
user_identity_id?: string | undefined;
|
|
74917
|
+
}[] | undefined;
|
|
74434
74918
|
workspaces?: {
|
|
74435
74919
|
name: string;
|
|
74436
74920
|
workspace_id: string;
|
|
@@ -75450,20 +75934,6 @@ export declare const batch: z.ZodObject<{
|
|
|
75450
75934
|
result: null;
|
|
75451
75935
|
action_type: "UNLOCK_DOOR";
|
|
75452
75936
|
})[] | undefined;
|
|
75453
|
-
client_sessions?: {
|
|
75454
|
-
workspace_id: string;
|
|
75455
|
-
created_at: string;
|
|
75456
|
-
connected_account_ids: string[];
|
|
75457
|
-
client_session_id: string;
|
|
75458
|
-
expires_at: string;
|
|
75459
|
-
token: string;
|
|
75460
|
-
user_identifier_key: string | null;
|
|
75461
|
-
device_count: number;
|
|
75462
|
-
connect_webview_ids: string[];
|
|
75463
|
-
user_identity_ids: string[];
|
|
75464
|
-
customer_key?: string | undefined;
|
|
75465
|
-
user_identity_id?: string | undefined;
|
|
75466
|
-
}[] | undefined;
|
|
75467
75937
|
unmanaged_acs_users?: {
|
|
75468
75938
|
display_name: string;
|
|
75469
75939
|
workspace_id: string;
|
|
@@ -76787,21 +77257,6 @@ export declare const batch: z.ZodObject<{
|
|
|
76787
77257
|
event_type: "phone.deactivated";
|
|
76788
77258
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
76789
77259
|
})[] | undefined;
|
|
76790
|
-
instant_keys?: {
|
|
76791
|
-
workspace_id: string;
|
|
76792
|
-
created_at: string;
|
|
76793
|
-
user_identity_id: string;
|
|
76794
|
-
instant_key_url: string;
|
|
76795
|
-
client_session_id: string;
|
|
76796
|
-
expires_at: string;
|
|
76797
|
-
instant_key_id: string;
|
|
76798
|
-
customization_profile_id?: string | undefined;
|
|
76799
|
-
customization?: {
|
|
76800
|
-
logo_url?: string | undefined;
|
|
76801
|
-
primary_color?: string | undefined;
|
|
76802
|
-
secondary_color?: string | undefined;
|
|
76803
|
-
} | undefined;
|
|
76804
|
-
}[] | undefined;
|
|
76805
77260
|
access_codes?: {
|
|
76806
77261
|
code: string | null;
|
|
76807
77262
|
type: "time_bound" | "ongoing";
|