@seamapi/types 1.286.1 → 1.286.3
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 +205 -60
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +458 -211
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +14 -14
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +18 -18
- package/lib/seam/connect/models/action-attempts/action-attempt.js +4 -4
- package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/{encode-card.d.ts → encode-credential.d.ts} +11 -11
- package/lib/seam/connect/models/action-attempts/{encode-card.js → encode-credential.js} +6 -6
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -0
- package/lib/seam/connect/models/action-attempts/{scan-card.d.ts → scan-credential.d.ts} +11 -11
- package/lib/seam/connect/models/action-attempts/{scan-card.js → scan-credential.js} +7 -7
- package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +13 -0
- package/lib/seam/connect/models/devices/device-metadata.js +3 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +5 -3
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +22 -3
- package/lib/seam/connect/models/devices/phone.d.ts +14 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +16 -3
- package/lib/seam/connect/models/events/acs/credentials.d.ts +61 -0
- package/lib/seam/connect/models/events/acs/credentials.js +9 -1
- package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
- package/lib/seam/connect/models/events/acs/index.d.ts +30 -0
- package/lib/seam/connect/models/events/action-attempts.d.ts +177 -0
- package/lib/seam/connect/models/events/action-attempts.js +16 -0
- package/lib/seam/connect/models/events/action-attempts.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +147 -1
- package/lib/seam/connect/models/events/seam-event.js +2 -0
- package/lib/seam/connect/models/events/seam-event.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +24 -2
- package/lib/seam/connect/openapi.js +133 -37
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +217 -170
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +4 -4
- package/src/lib/seam/connect/models/action-attempts/{encode-card.ts → encode-credential.ts} +8 -6
- package/src/lib/seam/connect/models/action-attempts/{scan-card.ts → scan-credential.ts} +9 -7
- package/src/lib/seam/connect/models/devices/device-metadata.ts +3 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/models/events/acs/credentials.ts +10 -1
- package/src/lib/seam/connect/models/events/action-attempts.ts +19 -0
- package/src/lib/seam/connect/models/events/seam-event.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +138 -37
- package/src/lib/seam/connect/route-types.ts +245 -170
- package/lib/seam/connect/models/action-attempts/encode-card.js.map +0 -1
- package/lib/seam/connect/models/action-attempts/scan-card.js.map +0 -1
package/dist/connect.d.cts
CHANGED
|
@@ -871,6 +871,13 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
871
871
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
872
872
|
}[] | undefined;
|
|
873
873
|
} | undefined;
|
|
874
|
+
assa_abloy_vostio_metadata?: {
|
|
875
|
+
door_name: string;
|
|
876
|
+
door_type: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator";
|
|
877
|
+
door_number?: number | undefined;
|
|
878
|
+
stand_open?: boolean | undefined;
|
|
879
|
+
pms_id?: string | undefined;
|
|
880
|
+
} | undefined;
|
|
874
881
|
latch_metadata?: {
|
|
875
882
|
door_name: string;
|
|
876
883
|
is_connected: boolean;
|
|
@@ -880,13 +887,6 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
880
887
|
dormakaba_community_metadata?: {
|
|
881
888
|
access_point_name: string;
|
|
882
889
|
} | undefined;
|
|
883
|
-
assa_abloy_vostio_metadata?: {
|
|
884
|
-
door_name: string;
|
|
885
|
-
door_type: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator";
|
|
886
|
-
door_number?: number | undefined;
|
|
887
|
-
stand_open?: boolean | undefined;
|
|
888
|
-
pms_id?: string | undefined;
|
|
889
|
-
} | undefined;
|
|
890
890
|
}, {
|
|
891
891
|
created_at: string;
|
|
892
892
|
errors: {
|
|
@@ -914,6 +914,13 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
914
914
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
915
915
|
}[] | undefined;
|
|
916
916
|
} | undefined;
|
|
917
|
+
assa_abloy_vostio_metadata?: {
|
|
918
|
+
door_name: string;
|
|
919
|
+
door_type: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator";
|
|
920
|
+
door_number?: number | undefined;
|
|
921
|
+
stand_open?: boolean | undefined;
|
|
922
|
+
pms_id?: string | undefined;
|
|
923
|
+
} | undefined;
|
|
917
924
|
latch_metadata?: {
|
|
918
925
|
door_name: string;
|
|
919
926
|
is_connected: boolean;
|
|
@@ -923,13 +930,6 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
923
930
|
dormakaba_community_metadata?: {
|
|
924
931
|
access_point_name: string;
|
|
925
932
|
} | undefined;
|
|
926
|
-
assa_abloy_vostio_metadata?: {
|
|
927
|
-
door_name: string;
|
|
928
|
-
door_type: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator";
|
|
929
|
-
door_number?: number | undefined;
|
|
930
|
-
stand_open?: boolean | undefined;
|
|
931
|
-
pms_id?: string | undefined;
|
|
932
|
-
} | undefined;
|
|
933
933
|
}>;
|
|
934
934
|
type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
935
935
|
|
|
@@ -1786,19 +1786,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1786
1786
|
result: z.ZodNull;
|
|
1787
1787
|
error: z.ZodNull;
|
|
1788
1788
|
}>, {
|
|
1789
|
-
action_type: z.ZodLiteral<"
|
|
1789
|
+
action_type: z.ZodLiteral<"SCAN_CREDENTIAL">;
|
|
1790
1790
|
}>, "strip", z.ZodTypeAny, {
|
|
1791
1791
|
status: "pending";
|
|
1792
1792
|
action_attempt_id: string;
|
|
1793
1793
|
error: null;
|
|
1794
1794
|
result: null;
|
|
1795
|
-
action_type: "
|
|
1795
|
+
action_type: "SCAN_CREDENTIAL";
|
|
1796
1796
|
}, {
|
|
1797
1797
|
status: "pending";
|
|
1798
1798
|
action_attempt_id: string;
|
|
1799
1799
|
error: null;
|
|
1800
1800
|
result: null;
|
|
1801
|
-
action_type: "
|
|
1801
|
+
action_type: "SCAN_CREDENTIAL";
|
|
1802
1802
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1803
1803
|
action_attempt_id: z.ZodString;
|
|
1804
1804
|
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
@@ -1806,7 +1806,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1806
1806
|
status: z.ZodLiteral<"success">;
|
|
1807
1807
|
error: z.ZodNull;
|
|
1808
1808
|
}>, {
|
|
1809
|
-
action_type: z.ZodLiteral<"
|
|
1809
|
+
action_type: z.ZodLiteral<"SCAN_CREDENTIAL">;
|
|
1810
1810
|
result: z.ZodObject<{
|
|
1811
1811
|
acs_credential_on_encoder: z.ZodObject<{
|
|
1812
1812
|
created_at: z.ZodNullable<z.ZodString>;
|
|
@@ -2535,7 +2535,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2535
2535
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2536
2536
|
} | null;
|
|
2537
2537
|
};
|
|
2538
|
-
action_type: "
|
|
2538
|
+
action_type: "SCAN_CREDENTIAL";
|
|
2539
2539
|
}, {
|
|
2540
2540
|
status: "success";
|
|
2541
2541
|
action_attempt_id: string;
|
|
@@ -2648,7 +2648,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2648
2648
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2649
2649
|
} | null;
|
|
2650
2650
|
};
|
|
2651
|
-
action_type: "
|
|
2651
|
+
action_type: "SCAN_CREDENTIAL";
|
|
2652
2652
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
2653
2653
|
action_attempt_id: z.ZodString;
|
|
2654
2654
|
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
@@ -2656,7 +2656,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2656
2656
|
status: z.ZodLiteral<"error">;
|
|
2657
2657
|
result: z.ZodNull;
|
|
2658
2658
|
}>, {
|
|
2659
|
-
action_type: z.ZodLiteral<"
|
|
2659
|
+
action_type: z.ZodLiteral<"SCAN_CREDENTIAL">;
|
|
2660
2660
|
error: z.ZodUnion<[z.ZodObject<{
|
|
2661
2661
|
type: z.ZodLiteral<"uncategorized_error">;
|
|
2662
2662
|
message: z.ZodString;
|
|
@@ -2699,7 +2699,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2699
2699
|
type: "no_card_on_encoder";
|
|
2700
2700
|
};
|
|
2701
2701
|
result: null;
|
|
2702
|
-
action_type: "
|
|
2702
|
+
action_type: "SCAN_CREDENTIAL";
|
|
2703
2703
|
}, {
|
|
2704
2704
|
status: "error";
|
|
2705
2705
|
action_attempt_id: string;
|
|
@@ -2714,7 +2714,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2714
2714
|
type: "no_card_on_encoder";
|
|
2715
2715
|
};
|
|
2716
2716
|
result: null;
|
|
2717
|
-
action_type: "
|
|
2717
|
+
action_type: "SCAN_CREDENTIAL";
|
|
2718
2718
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
2719
2719
|
action_attempt_id: z.ZodString;
|
|
2720
2720
|
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
@@ -2723,19 +2723,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2723
2723
|
result: z.ZodNull;
|
|
2724
2724
|
error: z.ZodNull;
|
|
2725
2725
|
}>, {
|
|
2726
|
-
action_type: z.ZodLiteral<"
|
|
2726
|
+
action_type: z.ZodLiteral<"ENCODE_CREDENTIAL">;
|
|
2727
2727
|
}>, "strip", z.ZodTypeAny, {
|
|
2728
2728
|
status: "pending";
|
|
2729
2729
|
action_attempt_id: string;
|
|
2730
2730
|
error: null;
|
|
2731
2731
|
result: null;
|
|
2732
|
-
action_type: "
|
|
2732
|
+
action_type: "ENCODE_CREDENTIAL";
|
|
2733
2733
|
}, {
|
|
2734
2734
|
status: "pending";
|
|
2735
2735
|
action_attempt_id: string;
|
|
2736
2736
|
error: null;
|
|
2737
2737
|
result: null;
|
|
2738
|
-
action_type: "
|
|
2738
|
+
action_type: "ENCODE_CREDENTIAL";
|
|
2739
2739
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
2740
2740
|
action_attempt_id: z.ZodString;
|
|
2741
2741
|
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
@@ -2743,7 +2743,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2743
2743
|
status: z.ZodLiteral<"success">;
|
|
2744
2744
|
error: z.ZodNull;
|
|
2745
2745
|
}>, {
|
|
2746
|
-
action_type: z.ZodLiteral<"
|
|
2746
|
+
action_type: z.ZodLiteral<"ENCODE_CREDENTIAL">;
|
|
2747
2747
|
result: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2748
2748
|
acs_credential_id: z.ZodString;
|
|
2749
2749
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3132,7 +3132,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3132
3132
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3133
3133
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3134
3134
|
};
|
|
3135
|
-
action_type: "
|
|
3135
|
+
action_type: "ENCODE_CREDENTIAL";
|
|
3136
3136
|
}, {
|
|
3137
3137
|
status: "success";
|
|
3138
3138
|
action_attempt_id: string;
|
|
@@ -3218,7 +3218,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3218
3218
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3219
3219
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3220
3220
|
};
|
|
3221
|
-
action_type: "
|
|
3221
|
+
action_type: "ENCODE_CREDENTIAL";
|
|
3222
3222
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3223
3223
|
action_attempt_id: z.ZodString;
|
|
3224
3224
|
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
@@ -3226,7 +3226,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3226
3226
|
status: z.ZodLiteral<"error">;
|
|
3227
3227
|
result: z.ZodNull;
|
|
3228
3228
|
}>, {
|
|
3229
|
-
action_type: z.ZodLiteral<"
|
|
3229
|
+
action_type: z.ZodLiteral<"ENCODE_CREDENTIAL">;
|
|
3230
3230
|
error: z.ZodUnion<[z.ZodObject<{
|
|
3231
3231
|
type: z.ZodLiteral<"uncategorized_error">;
|
|
3232
3232
|
message: z.ZodString;
|
|
@@ -3281,7 +3281,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3281
3281
|
type: "incompatible_card_format";
|
|
3282
3282
|
};
|
|
3283
3283
|
result: null;
|
|
3284
|
-
action_type: "
|
|
3284
|
+
action_type: "ENCODE_CREDENTIAL";
|
|
3285
3285
|
}, {
|
|
3286
3286
|
status: "error";
|
|
3287
3287
|
action_attempt_id: string;
|
|
@@ -3299,7 +3299,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3299
3299
|
type: "incompatible_card_format";
|
|
3300
3300
|
};
|
|
3301
3301
|
result: null;
|
|
3302
|
-
action_type: "
|
|
3302
|
+
action_type: "ENCODE_CREDENTIAL";
|
|
3303
3303
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3304
3304
|
action_attempt_id: z.ZodString;
|
|
3305
3305
|
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
@@ -4739,7 +4739,7 @@ declare const device_warning: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4739
4739
|
type DeviceWarning = z.infer<typeof device_warning>;
|
|
4740
4740
|
declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
4741
4741
|
device_id: z.ZodString;
|
|
4742
|
-
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<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["visionline_encoder"]>]>;
|
|
4742
|
+
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<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["visionline_encoder" | "assa_abloy_vostio_encoder"]>]>;
|
|
4743
4743
|
nickname: z.ZodOptional<z.ZodString>;
|
|
4744
4744
|
display_name: z.ZodString;
|
|
4745
4745
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -5645,6 +5645,13 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5645
5645
|
gadget_id: string;
|
|
5646
5646
|
_member_group_id?: string | undefined;
|
|
5647
5647
|
}>>;
|
|
5648
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
5649
|
+
encoder_id: z.ZodString;
|
|
5650
|
+
}, "strip", z.ZodTypeAny, {
|
|
5651
|
+
encoder_id: string;
|
|
5652
|
+
}, {
|
|
5653
|
+
encoder_id: string;
|
|
5654
|
+
}>>;
|
|
5648
5655
|
}, "strip", z.ZodTypeAny, {
|
|
5649
5656
|
august_metadata?: {
|
|
5650
5657
|
lock_id: string;
|
|
@@ -5864,6 +5871,9 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5864
5871
|
gadget_id: string;
|
|
5865
5872
|
_member_group_id?: string | undefined;
|
|
5866
5873
|
} | undefined;
|
|
5874
|
+
assa_abloy_vostio_metadata?: {
|
|
5875
|
+
encoder_id: string;
|
|
5876
|
+
} | undefined;
|
|
5867
5877
|
}, {
|
|
5868
5878
|
august_metadata?: {
|
|
5869
5879
|
lock_id: string;
|
|
@@ -6083,6 +6093,9 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6083
6093
|
gadget_id: string;
|
|
6084
6094
|
_member_group_id?: string | undefined;
|
|
6085
6095
|
} | undefined;
|
|
6096
|
+
assa_abloy_vostio_metadata?: {
|
|
6097
|
+
encoder_id: string;
|
|
6098
|
+
} | undefined;
|
|
6086
6099
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
6087
6100
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
6088
6101
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -6591,7 +6604,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6591
6604
|
custom_metadata: Record<string, string | boolean>;
|
|
6592
6605
|
display_name: string;
|
|
6593
6606
|
device_id: string;
|
|
6594
|
-
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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
|
|
6607
|
+
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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | ("visionline_encoder" | "assa_abloy_vostio_encoder");
|
|
6595
6608
|
capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
6596
6609
|
properties: {
|
|
6597
6610
|
name: string;
|
|
@@ -6857,6 +6870,9 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6857
6870
|
gadget_id: string;
|
|
6858
6871
|
_member_group_id?: string | undefined;
|
|
6859
6872
|
} | undefined;
|
|
6873
|
+
assa_abloy_vostio_metadata?: {
|
|
6874
|
+
encoder_id: string;
|
|
6875
|
+
} | undefined;
|
|
6860
6876
|
} & {
|
|
6861
6877
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
6862
6878
|
code_constraints?: ({
|
|
@@ -6994,7 +7010,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6994
7010
|
custom_metadata: Record<string, string | boolean>;
|
|
6995
7011
|
display_name: string;
|
|
6996
7012
|
device_id: string;
|
|
6997
|
-
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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
|
|
7013
|
+
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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | ("visionline_encoder" | "assa_abloy_vostio_encoder");
|
|
6998
7014
|
capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
6999
7015
|
properties: {
|
|
7000
7016
|
name: string;
|
|
@@ -7260,6 +7276,9 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7260
7276
|
gadget_id: string;
|
|
7261
7277
|
_member_group_id?: string | undefined;
|
|
7262
7278
|
} | undefined;
|
|
7279
|
+
assa_abloy_vostio_metadata?: {
|
|
7280
|
+
encoder_id: string;
|
|
7281
|
+
} | undefined;
|
|
7263
7282
|
} & {
|
|
7264
7283
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
7265
7284
|
code_constraints?: ({
|
|
@@ -7481,7 +7500,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
|
|
|
7481
7500
|
|
|
7482
7501
|
declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<Pick<z.objectUtil.extendShape<{
|
|
7483
7502
|
device_id: z.ZodString;
|
|
7484
|
-
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<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["visionline_encoder"]>]>;
|
|
7503
|
+
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<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["visionline_encoder" | "assa_abloy_vostio_encoder"]>]>;
|
|
7485
7504
|
nickname: z.ZodOptional<z.ZodString>;
|
|
7486
7505
|
display_name: z.ZodString;
|
|
7487
7506
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -8387,6 +8406,13 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
8387
8406
|
gadget_id: string;
|
|
8388
8407
|
_member_group_id?: string | undefined;
|
|
8389
8408
|
}>>;
|
|
8409
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
8410
|
+
encoder_id: z.ZodString;
|
|
8411
|
+
}, "strip", z.ZodTypeAny, {
|
|
8412
|
+
encoder_id: string;
|
|
8413
|
+
}, {
|
|
8414
|
+
encoder_id: string;
|
|
8415
|
+
}>>;
|
|
8390
8416
|
}, "strip", z.ZodTypeAny, {
|
|
8391
8417
|
august_metadata?: {
|
|
8392
8418
|
lock_id: string;
|
|
@@ -8606,6 +8632,9 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
8606
8632
|
gadget_id: string;
|
|
8607
8633
|
_member_group_id?: string | undefined;
|
|
8608
8634
|
} | undefined;
|
|
8635
|
+
assa_abloy_vostio_metadata?: {
|
|
8636
|
+
encoder_id: string;
|
|
8637
|
+
} | undefined;
|
|
8609
8638
|
}, {
|
|
8610
8639
|
august_metadata?: {
|
|
8611
8640
|
lock_id: string;
|
|
@@ -8825,6 +8854,9 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
8825
8854
|
gadget_id: string;
|
|
8826
8855
|
_member_group_id?: string | undefined;
|
|
8827
8856
|
} | undefined;
|
|
8857
|
+
assa_abloy_vostio_metadata?: {
|
|
8858
|
+
encoder_id: string;
|
|
8859
|
+
} | undefined;
|
|
8828
8860
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
8829
8861
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
8830
8862
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -9480,7 +9512,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9480
9512
|
warning_code: string;
|
|
9481
9513
|
}[];
|
|
9482
9514
|
device_id: string;
|
|
9483
|
-
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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
|
|
9515
|
+
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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | ("visionline_encoder" | "assa_abloy_vostio_encoder");
|
|
9484
9516
|
capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
9485
9517
|
properties: {
|
|
9486
9518
|
name: string;
|
|
@@ -9545,7 +9577,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9545
9577
|
warning_code: string;
|
|
9546
9578
|
}[];
|
|
9547
9579
|
device_id: string;
|
|
9548
|
-
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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
|
|
9580
|
+
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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | ("visionline_encoder" | "assa_abloy_vostio_encoder");
|
|
9549
9581
|
capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
9550
9582
|
properties: {
|
|
9551
9583
|
name: string;
|
|
@@ -10191,6 +10223,36 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<z.o
|
|
|
10191
10223
|
}, {
|
|
10192
10224
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
10193
10225
|
acs_system_id: z.ZodString;
|
|
10226
|
+
}>, {
|
|
10227
|
+
acs_credential_id: z.ZodString;
|
|
10228
|
+
}>, {
|
|
10229
|
+
event_type: z.ZodLiteral<"acs_credential.issued">;
|
|
10230
|
+
}>, "strip", z.ZodTypeAny, {
|
|
10231
|
+
created_at: string;
|
|
10232
|
+
workspace_id: string;
|
|
10233
|
+
acs_system_id: string;
|
|
10234
|
+
acs_credential_id: string;
|
|
10235
|
+
event_id: string;
|
|
10236
|
+
occurred_at: string;
|
|
10237
|
+
event_type: "acs_credential.issued";
|
|
10238
|
+
connected_account_id?: string | undefined;
|
|
10239
|
+
}, {
|
|
10240
|
+
created_at: string;
|
|
10241
|
+
workspace_id: string;
|
|
10242
|
+
acs_system_id: string;
|
|
10243
|
+
acs_credential_id: string;
|
|
10244
|
+
event_id: string;
|
|
10245
|
+
occurred_at: string;
|
|
10246
|
+
event_type: "acs_credential.issued";
|
|
10247
|
+
connected_account_id?: string | undefined;
|
|
10248
|
+
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
10249
|
+
event_id: z.ZodString;
|
|
10250
|
+
workspace_id: z.ZodString;
|
|
10251
|
+
created_at: z.ZodString;
|
|
10252
|
+
occurred_at: z.ZodString;
|
|
10253
|
+
}, {
|
|
10254
|
+
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
10255
|
+
acs_system_id: z.ZodString;
|
|
10194
10256
|
}>, {
|
|
10195
10257
|
acs_user_id: z.ZodString;
|
|
10196
10258
|
}>, {
|
|
@@ -10406,7 +10468,123 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<z.o
|
|
|
10406
10468
|
event_id: string;
|
|
10407
10469
|
occurred_at: string;
|
|
10408
10470
|
event_type: "connected_account.completed_first_sync_after_reconnection";
|
|
10409
|
-
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
10471
|
+
}>, ...(z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
10472
|
+
event_id: z.ZodString;
|
|
10473
|
+
workspace_id: z.ZodString;
|
|
10474
|
+
created_at: z.ZodString;
|
|
10475
|
+
occurred_at: z.ZodString;
|
|
10476
|
+
}, {
|
|
10477
|
+
action_attempt_id: z.ZodString;
|
|
10478
|
+
action_type: z.ZodString;
|
|
10479
|
+
status: z.ZodString;
|
|
10480
|
+
}>, {
|
|
10481
|
+
event_type: z.ZodLiteral<"action_attempt.lock_door.succeeded">;
|
|
10482
|
+
}>, "strip", z.ZodTypeAny, {
|
|
10483
|
+
status: string;
|
|
10484
|
+
created_at: string;
|
|
10485
|
+
workspace_id: string;
|
|
10486
|
+
action_attempt_id: string;
|
|
10487
|
+
action_type: string;
|
|
10488
|
+
event_id: string;
|
|
10489
|
+
occurred_at: string;
|
|
10490
|
+
event_type: "action_attempt.lock_door.succeeded";
|
|
10491
|
+
}, {
|
|
10492
|
+
status: string;
|
|
10493
|
+
created_at: string;
|
|
10494
|
+
workspace_id: string;
|
|
10495
|
+
action_attempt_id: string;
|
|
10496
|
+
action_type: string;
|
|
10497
|
+
event_id: string;
|
|
10498
|
+
occurred_at: string;
|
|
10499
|
+
event_type: "action_attempt.lock_door.succeeded";
|
|
10500
|
+
}> | z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
10501
|
+
event_id: z.ZodString;
|
|
10502
|
+
workspace_id: z.ZodString;
|
|
10503
|
+
created_at: z.ZodString;
|
|
10504
|
+
occurred_at: z.ZodString;
|
|
10505
|
+
}, {
|
|
10506
|
+
action_attempt_id: z.ZodString;
|
|
10507
|
+
action_type: z.ZodString;
|
|
10508
|
+
status: z.ZodString;
|
|
10509
|
+
}>, {
|
|
10510
|
+
event_type: z.ZodLiteral<"action_attempt.lock_door.failed">;
|
|
10511
|
+
}>, "strip", z.ZodTypeAny, {
|
|
10512
|
+
status: string;
|
|
10513
|
+
created_at: string;
|
|
10514
|
+
workspace_id: string;
|
|
10515
|
+
action_attempt_id: string;
|
|
10516
|
+
action_type: string;
|
|
10517
|
+
event_id: string;
|
|
10518
|
+
occurred_at: string;
|
|
10519
|
+
event_type: "action_attempt.lock_door.failed";
|
|
10520
|
+
}, {
|
|
10521
|
+
status: string;
|
|
10522
|
+
created_at: string;
|
|
10523
|
+
workspace_id: string;
|
|
10524
|
+
action_attempt_id: string;
|
|
10525
|
+
action_type: string;
|
|
10526
|
+
event_id: string;
|
|
10527
|
+
occurred_at: string;
|
|
10528
|
+
event_type: "action_attempt.lock_door.failed";
|
|
10529
|
+
}> | z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
10530
|
+
event_id: z.ZodString;
|
|
10531
|
+
workspace_id: z.ZodString;
|
|
10532
|
+
created_at: z.ZodString;
|
|
10533
|
+
occurred_at: z.ZodString;
|
|
10534
|
+
}, {
|
|
10535
|
+
action_attempt_id: z.ZodString;
|
|
10536
|
+
action_type: z.ZodString;
|
|
10537
|
+
status: z.ZodString;
|
|
10538
|
+
}>, {
|
|
10539
|
+
event_type: z.ZodLiteral<"action_attempt.unlock_door.succeeded">;
|
|
10540
|
+
}>, "strip", z.ZodTypeAny, {
|
|
10541
|
+
status: string;
|
|
10542
|
+
created_at: string;
|
|
10543
|
+
workspace_id: string;
|
|
10544
|
+
action_attempt_id: string;
|
|
10545
|
+
action_type: string;
|
|
10546
|
+
event_id: string;
|
|
10547
|
+
occurred_at: string;
|
|
10548
|
+
event_type: "action_attempt.unlock_door.succeeded";
|
|
10549
|
+
}, {
|
|
10550
|
+
status: string;
|
|
10551
|
+
created_at: string;
|
|
10552
|
+
workspace_id: string;
|
|
10553
|
+
action_attempt_id: string;
|
|
10554
|
+
action_type: string;
|
|
10555
|
+
event_id: string;
|
|
10556
|
+
occurred_at: string;
|
|
10557
|
+
event_type: "action_attempt.unlock_door.succeeded";
|
|
10558
|
+
}> | z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
10559
|
+
event_id: z.ZodString;
|
|
10560
|
+
workspace_id: z.ZodString;
|
|
10561
|
+
created_at: z.ZodString;
|
|
10562
|
+
occurred_at: z.ZodString;
|
|
10563
|
+
}, {
|
|
10564
|
+
action_attempt_id: z.ZodString;
|
|
10565
|
+
action_type: z.ZodString;
|
|
10566
|
+
status: z.ZodString;
|
|
10567
|
+
}>, {
|
|
10568
|
+
event_type: z.ZodLiteral<"action_attempt.unlock_door.failed">;
|
|
10569
|
+
}>, "strip", z.ZodTypeAny, {
|
|
10570
|
+
status: string;
|
|
10571
|
+
created_at: string;
|
|
10572
|
+
workspace_id: string;
|
|
10573
|
+
action_attempt_id: string;
|
|
10574
|
+
action_type: string;
|
|
10575
|
+
event_id: string;
|
|
10576
|
+
occurred_at: string;
|
|
10577
|
+
event_type: "action_attempt.unlock_door.failed";
|
|
10578
|
+
}, {
|
|
10579
|
+
status: string;
|
|
10580
|
+
created_at: string;
|
|
10581
|
+
workspace_id: string;
|
|
10582
|
+
action_attempt_id: string;
|
|
10583
|
+
action_type: string;
|
|
10584
|
+
event_id: string;
|
|
10585
|
+
occurred_at: string;
|
|
10586
|
+
event_type: "action_attempt.unlock_door.failed";
|
|
10587
|
+
}>)[], z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
10410
10588
|
event_id: z.ZodString;
|
|
10411
10589
|
workspace_id: z.ZodString;
|
|
10412
10590
|
created_at: z.ZodString;
|
|
@@ -14030,6 +14208,15 @@ declare const _default: {
|
|
|
14030
14208
|
required: string[];
|
|
14031
14209
|
type: string;
|
|
14032
14210
|
};
|
|
14211
|
+
assa_abloy_vostio_metadata: {
|
|
14212
|
+
properties: {
|
|
14213
|
+
encoder_id: {
|
|
14214
|
+
type: string;
|
|
14215
|
+
};
|
|
14216
|
+
};
|
|
14217
|
+
required: string[];
|
|
14218
|
+
type: string;
|
|
14219
|
+
};
|
|
14033
14220
|
august_metadata: {
|
|
14034
14221
|
properties: {
|
|
14035
14222
|
has_keypad: {
|
|
@@ -18305,6 +18492,7 @@ declare const _default: {
|
|
|
18305
18492
|
'x-fern-sdk-group-name': string[];
|
|
18306
18493
|
'x-fern-sdk-method-name': string;
|
|
18307
18494
|
'x-response-key': null;
|
|
18495
|
+
'x-title': string;
|
|
18308
18496
|
};
|
|
18309
18497
|
put: {
|
|
18310
18498
|
description: string;
|
|
@@ -18372,6 +18560,7 @@ declare const _default: {
|
|
|
18372
18560
|
tags: string[];
|
|
18373
18561
|
'x-fern-ignore': boolean;
|
|
18374
18562
|
'x-response-key': null;
|
|
18563
|
+
'x-title': string;
|
|
18375
18564
|
};
|
|
18376
18565
|
};
|
|
18377
18566
|
'/acs/access_groups/get': {
|
|
@@ -18441,6 +18630,7 @@ declare const _default: {
|
|
|
18441
18630
|
'x-fern-sdk-method-name': string;
|
|
18442
18631
|
'x-fern-sdk-return-value': string;
|
|
18443
18632
|
'x-response-key': string;
|
|
18633
|
+
'x-title': string;
|
|
18444
18634
|
};
|
|
18445
18635
|
};
|
|
18446
18636
|
'/acs/access_groups/list': {
|
|
@@ -18517,6 +18707,7 @@ declare const _default: {
|
|
|
18517
18707
|
'x-fern-sdk-method-name': string;
|
|
18518
18708
|
'x-fern-sdk-return-value': string;
|
|
18519
18709
|
'x-response-key': string;
|
|
18710
|
+
'x-title': string;
|
|
18520
18711
|
};
|
|
18521
18712
|
};
|
|
18522
18713
|
'/acs/access_groups/list_accessible_entrances': {
|
|
@@ -18589,6 +18780,7 @@ declare const _default: {
|
|
|
18589
18780
|
'x-fern-sdk-method-name': string;
|
|
18590
18781
|
'x-fern-sdk-return-value': string;
|
|
18591
18782
|
'x-response-key': string;
|
|
18783
|
+
'x-title': string;
|
|
18592
18784
|
};
|
|
18593
18785
|
};
|
|
18594
18786
|
'/acs/access_groups/list_users': {
|
|
@@ -18661,6 +18853,7 @@ declare const _default: {
|
|
|
18661
18853
|
'x-fern-sdk-method-name': string;
|
|
18662
18854
|
'x-fern-sdk-return-value': string;
|
|
18663
18855
|
'x-response-key': string;
|
|
18856
|
+
'x-title': string;
|
|
18664
18857
|
};
|
|
18665
18858
|
};
|
|
18666
18859
|
'/acs/access_groups/remove_user': {
|
|
@@ -18731,6 +18924,7 @@ declare const _default: {
|
|
|
18731
18924
|
'x-fern-sdk-group-name': string[];
|
|
18732
18925
|
'x-fern-sdk-method-name': string;
|
|
18733
18926
|
'x-response-key': null;
|
|
18927
|
+
'x-title': string;
|
|
18734
18928
|
};
|
|
18735
18929
|
};
|
|
18736
18930
|
'/acs/access_groups/unmanaged/get': {
|
|
@@ -19346,6 +19540,7 @@ declare const _default: {
|
|
|
19346
19540
|
description: string;
|
|
19347
19541
|
properties: {
|
|
19348
19542
|
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
19543
|
+
description: string;
|
|
19349
19544
|
format: string;
|
|
19350
19545
|
type: string;
|
|
19351
19546
|
};
|
|
@@ -20626,7 +20821,7 @@ declare const _default: {
|
|
|
20626
20821
|
'x-title': string;
|
|
20627
20822
|
};
|
|
20628
20823
|
};
|
|
20629
|
-
'/acs/encoders/
|
|
20824
|
+
'/acs/encoders/encode_credential': {
|
|
20630
20825
|
post: {
|
|
20631
20826
|
operationId: string;
|
|
20632
20827
|
requestBody: {
|
|
@@ -20635,10 +20830,12 @@ declare const _default: {
|
|
|
20635
20830
|
schema: {
|
|
20636
20831
|
properties: {
|
|
20637
20832
|
acs_credential_id: {
|
|
20833
|
+
description: string;
|
|
20638
20834
|
format: string;
|
|
20639
20835
|
type: string;
|
|
20640
20836
|
};
|
|
20641
20837
|
device_id: {
|
|
20838
|
+
description: string;
|
|
20642
20839
|
format: string;
|
|
20643
20840
|
type: string;
|
|
20644
20841
|
};
|
|
@@ -20822,7 +21019,7 @@ declare const _default: {
|
|
|
20822
21019
|
'x-undocumented': string;
|
|
20823
21020
|
};
|
|
20824
21021
|
};
|
|
20825
|
-
'/acs/encoders/
|
|
21022
|
+
'/acs/encoders/scan_credential': {
|
|
20826
21023
|
post: {
|
|
20827
21024
|
operationId: string;
|
|
20828
21025
|
requestBody: {
|
|
@@ -20831,10 +21028,12 @@ declare const _default: {
|
|
|
20831
21028
|
schema: {
|
|
20832
21029
|
properties: {
|
|
20833
21030
|
acs_system_id: {
|
|
21031
|
+
description: string;
|
|
20834
21032
|
format: string;
|
|
20835
21033
|
type: string;
|
|
20836
21034
|
};
|
|
20837
21035
|
device_id: {
|
|
21036
|
+
description: string;
|
|
20838
21037
|
format: string;
|
|
20839
21038
|
type: string;
|
|
20840
21039
|
};
|
|
@@ -21036,6 +21235,7 @@ declare const _default: {
|
|
|
21036
21235
|
'x-fern-sdk-group-name': string[];
|
|
21037
21236
|
'x-fern-sdk-method-name': string;
|
|
21038
21237
|
'x-response-key': null;
|
|
21238
|
+
'x-title': string;
|
|
21039
21239
|
};
|
|
21040
21240
|
};
|
|
21041
21241
|
'/acs/entrances/list': {
|
|
@@ -31586,15 +31786,15 @@ interface Routes {
|
|
|
31586
31786
|
status: 'pending';
|
|
31587
31787
|
result: null;
|
|
31588
31788
|
error: null;
|
|
31589
|
-
action_type: '
|
|
31789
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
31590
31790
|
} | {
|
|
31591
31791
|
/** The ID of the action attempt. */
|
|
31592
31792
|
action_attempt_id: string;
|
|
31593
31793
|
status: 'success';
|
|
31594
31794
|
error: null;
|
|
31595
|
-
action_type: '
|
|
31795
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
31596
31796
|
result: {
|
|
31597
|
-
/** Snapshot of
|
|
31797
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
31598
31798
|
acs_credential_on_encoder: {
|
|
31599
31799
|
/** Date and time the credential was created. */
|
|
31600
31800
|
created_at: string | null;
|
|
@@ -31747,7 +31947,7 @@ interface Routes {
|
|
|
31747
31947
|
action_attempt_id: string;
|
|
31748
31948
|
status: 'error';
|
|
31749
31949
|
result: null;
|
|
31750
|
-
action_type: '
|
|
31950
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
31751
31951
|
error: {
|
|
31752
31952
|
type: 'uncategorized_error';
|
|
31753
31953
|
message: string;
|
|
@@ -31764,13 +31964,13 @@ interface Routes {
|
|
|
31764
31964
|
status: 'pending';
|
|
31765
31965
|
result: null;
|
|
31766
31966
|
error: null;
|
|
31767
|
-
action_type: '
|
|
31967
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
31768
31968
|
} | {
|
|
31769
31969
|
/** The ID of the action attempt. */
|
|
31770
31970
|
action_attempt_id: string;
|
|
31771
31971
|
status: 'success';
|
|
31772
31972
|
error: null;
|
|
31773
|
-
action_type: '
|
|
31973
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
31774
31974
|
/** Means by which a user gains access at an entrance.
|
|
31775
31975
|
|
|
31776
31976
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -31894,7 +32094,7 @@ interface Routes {
|
|
|
31894
32094
|
action_attempt_id: string;
|
|
31895
32095
|
status: 'error';
|
|
31896
32096
|
result: null;
|
|
31897
|
-
action_type: '
|
|
32097
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
31898
32098
|
error: {
|
|
31899
32099
|
type: 'uncategorized_error';
|
|
31900
32100
|
message: string;
|
|
@@ -32470,15 +32670,15 @@ interface Routes {
|
|
|
32470
32670
|
status: 'pending';
|
|
32471
32671
|
result: null;
|
|
32472
32672
|
error: null;
|
|
32473
|
-
action_type: '
|
|
32673
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
32474
32674
|
} | {
|
|
32475
32675
|
/** The ID of the action attempt. */
|
|
32476
32676
|
action_attempt_id: string;
|
|
32477
32677
|
status: 'success';
|
|
32478
32678
|
error: null;
|
|
32479
|
-
action_type: '
|
|
32679
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
32480
32680
|
result: {
|
|
32481
|
-
/** Snapshot of
|
|
32681
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
32482
32682
|
acs_credential_on_encoder: {
|
|
32483
32683
|
/** Date and time the credential was created. */
|
|
32484
32684
|
created_at: string | null;
|
|
@@ -32631,7 +32831,7 @@ interface Routes {
|
|
|
32631
32831
|
action_attempt_id: string;
|
|
32632
32832
|
status: 'error';
|
|
32633
32833
|
result: null;
|
|
32634
|
-
action_type: '
|
|
32834
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
32635
32835
|
error: {
|
|
32636
32836
|
type: 'uncategorized_error';
|
|
32637
32837
|
message: string;
|
|
@@ -32648,13 +32848,13 @@ interface Routes {
|
|
|
32648
32848
|
status: 'pending';
|
|
32649
32849
|
result: null;
|
|
32650
32850
|
error: null;
|
|
32651
|
-
action_type: '
|
|
32851
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
32652
32852
|
} | {
|
|
32653
32853
|
/** The ID of the action attempt. */
|
|
32654
32854
|
action_attempt_id: string;
|
|
32655
32855
|
status: 'success';
|
|
32656
32856
|
error: null;
|
|
32657
|
-
action_type: '
|
|
32857
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
32658
32858
|
/** Means by which a user gains access at an entrance.
|
|
32659
32859
|
|
|
32660
32860
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -32778,7 +32978,7 @@ interface Routes {
|
|
|
32778
32978
|
action_attempt_id: string;
|
|
32779
32979
|
status: 'error';
|
|
32780
32980
|
result: null;
|
|
32781
|
-
action_type: '
|
|
32981
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
32782
32982
|
error: {
|
|
32783
32983
|
type: 'uncategorized_error';
|
|
32784
32984
|
message: string;
|
|
@@ -33511,15 +33711,15 @@ interface Routes {
|
|
|
33511
33711
|
status: 'pending';
|
|
33512
33712
|
result: null;
|
|
33513
33713
|
error: null;
|
|
33514
|
-
action_type: '
|
|
33714
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
33515
33715
|
} | {
|
|
33516
33716
|
/** The ID of the action attempt. */
|
|
33517
33717
|
action_attempt_id: string;
|
|
33518
33718
|
status: 'success';
|
|
33519
33719
|
error: null;
|
|
33520
|
-
action_type: '
|
|
33720
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
33521
33721
|
result: {
|
|
33522
|
-
/** Snapshot of
|
|
33722
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
33523
33723
|
acs_credential_on_encoder: {
|
|
33524
33724
|
/** Date and time the credential was created. */
|
|
33525
33725
|
created_at: string | null;
|
|
@@ -33672,7 +33872,7 @@ interface Routes {
|
|
|
33672
33872
|
action_attempt_id: string;
|
|
33673
33873
|
status: 'error';
|
|
33674
33874
|
result: null;
|
|
33675
|
-
action_type: '
|
|
33875
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
33676
33876
|
error: {
|
|
33677
33877
|
type: 'uncategorized_error';
|
|
33678
33878
|
message: string;
|
|
@@ -33689,13 +33889,13 @@ interface Routes {
|
|
|
33689
33889
|
status: 'pending';
|
|
33690
33890
|
result: null;
|
|
33691
33891
|
error: null;
|
|
33692
|
-
action_type: '
|
|
33892
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
33693
33893
|
} | {
|
|
33694
33894
|
/** The ID of the action attempt. */
|
|
33695
33895
|
action_attempt_id: string;
|
|
33696
33896
|
status: 'success';
|
|
33697
33897
|
error: null;
|
|
33698
|
-
action_type: '
|
|
33898
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
33699
33899
|
/** Means by which a user gains access at an entrance.
|
|
33700
33900
|
|
|
33701
33901
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -33819,7 +34019,7 @@ interface Routes {
|
|
|
33819
34019
|
action_attempt_id: string;
|
|
33820
34020
|
status: 'error';
|
|
33821
34021
|
result: null;
|
|
33822
|
-
action_type: '
|
|
34022
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
33823
34023
|
error: {
|
|
33824
34024
|
type: 'uncategorized_error';
|
|
33825
34025
|
message: string;
|
|
@@ -34382,15 +34582,15 @@ interface Routes {
|
|
|
34382
34582
|
status: 'pending';
|
|
34383
34583
|
result: null;
|
|
34384
34584
|
error: null;
|
|
34385
|
-
action_type: '
|
|
34585
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
34386
34586
|
} | {
|
|
34387
34587
|
/** The ID of the action attempt. */
|
|
34388
34588
|
action_attempt_id: string;
|
|
34389
34589
|
status: 'success';
|
|
34390
34590
|
error: null;
|
|
34391
|
-
action_type: '
|
|
34591
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
34392
34592
|
result: {
|
|
34393
|
-
/** Snapshot of
|
|
34593
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
34394
34594
|
acs_credential_on_encoder: {
|
|
34395
34595
|
/** Date and time the credential was created. */
|
|
34396
34596
|
created_at: string | null;
|
|
@@ -34543,7 +34743,7 @@ interface Routes {
|
|
|
34543
34743
|
action_attempt_id: string;
|
|
34544
34744
|
status: 'error';
|
|
34545
34745
|
result: null;
|
|
34546
|
-
action_type: '
|
|
34746
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
34547
34747
|
error: {
|
|
34548
34748
|
type: 'uncategorized_error';
|
|
34549
34749
|
message: string;
|
|
@@ -34560,13 +34760,13 @@ interface Routes {
|
|
|
34560
34760
|
status: 'pending';
|
|
34561
34761
|
result: null;
|
|
34562
34762
|
error: null;
|
|
34563
|
-
action_type: '
|
|
34763
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
34564
34764
|
} | {
|
|
34565
34765
|
/** The ID of the action attempt. */
|
|
34566
34766
|
action_attempt_id: string;
|
|
34567
34767
|
status: 'success';
|
|
34568
34768
|
error: null;
|
|
34569
|
-
action_type: '
|
|
34769
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
34570
34770
|
/** Means by which a user gains access at an entrance.
|
|
34571
34771
|
|
|
34572
34772
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -34690,7 +34890,7 @@ interface Routes {
|
|
|
34690
34890
|
action_attempt_id: string;
|
|
34691
34891
|
status: 'error';
|
|
34692
34892
|
result: null;
|
|
34693
|
-
action_type: '
|
|
34893
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
34694
34894
|
error: {
|
|
34695
34895
|
type: 'uncategorized_error';
|
|
34696
34896
|
message: string;
|
|
@@ -35556,6 +35756,7 @@ interface Routes {
|
|
|
35556
35756
|
allowed_acs_entrance_ids?: string[];
|
|
35557
35757
|
/** Visionline-specific metadata for the new credential. */
|
|
35558
35758
|
visionline_metadata?: {
|
|
35759
|
+
/** DEPRECATED: DO NOT USE */
|
|
35559
35760
|
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
35560
35761
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
35561
35762
|
card_function_type?: 'guest' | 'staff';
|
|
@@ -36182,13 +36383,15 @@ interface Routes {
|
|
|
36182
36383
|
};
|
|
36183
36384
|
};
|
|
36184
36385
|
};
|
|
36185
|
-
'/acs/encoders/
|
|
36186
|
-
route: '/acs/encoders/
|
|
36386
|
+
'/acs/encoders/encode_credential': {
|
|
36387
|
+
route: '/acs/encoders/encode_credential';
|
|
36187
36388
|
method: 'POST';
|
|
36188
36389
|
queryParams: {};
|
|
36189
36390
|
jsonBody: {};
|
|
36190
36391
|
commonParams: {
|
|
36392
|
+
/** ID of the encoder to use for the encoding. */
|
|
36191
36393
|
device_id: string;
|
|
36394
|
+
/** ID of the acs_credential to encode on a physical card. */
|
|
36192
36395
|
acs_credential_id: string;
|
|
36193
36396
|
};
|
|
36194
36397
|
formData: {};
|
|
@@ -36247,15 +36450,15 @@ interface Routes {
|
|
|
36247
36450
|
status: 'pending';
|
|
36248
36451
|
result: null;
|
|
36249
36452
|
error: null;
|
|
36250
|
-
action_type: '
|
|
36453
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
36251
36454
|
} | {
|
|
36252
36455
|
/** The ID of the action attempt. */
|
|
36253
36456
|
action_attempt_id: string;
|
|
36254
36457
|
status: 'success';
|
|
36255
36458
|
error: null;
|
|
36256
|
-
action_type: '
|
|
36459
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
36257
36460
|
result: {
|
|
36258
|
-
/** Snapshot of
|
|
36461
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
36259
36462
|
acs_credential_on_encoder: {
|
|
36260
36463
|
/** Date and time the credential was created. */
|
|
36261
36464
|
created_at: string | null;
|
|
@@ -36408,7 +36611,7 @@ interface Routes {
|
|
|
36408
36611
|
action_attempt_id: string;
|
|
36409
36612
|
status: 'error';
|
|
36410
36613
|
result: null;
|
|
36411
|
-
action_type: '
|
|
36614
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
36412
36615
|
error: {
|
|
36413
36616
|
type: 'uncategorized_error';
|
|
36414
36617
|
message: string;
|
|
@@ -36425,13 +36628,13 @@ interface Routes {
|
|
|
36425
36628
|
status: 'pending';
|
|
36426
36629
|
result: null;
|
|
36427
36630
|
error: null;
|
|
36428
|
-
action_type: '
|
|
36631
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
36429
36632
|
} | {
|
|
36430
36633
|
/** The ID of the action attempt. */
|
|
36431
36634
|
action_attempt_id: string;
|
|
36432
36635
|
status: 'success';
|
|
36433
36636
|
error: null;
|
|
36434
|
-
action_type: '
|
|
36637
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
36435
36638
|
/** Means by which a user gains access at an entrance.
|
|
36436
36639
|
|
|
36437
36640
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -36555,7 +36758,7 @@ interface Routes {
|
|
|
36555
36758
|
action_attempt_id: string;
|
|
36556
36759
|
status: 'error';
|
|
36557
36760
|
result: null;
|
|
36558
|
-
action_type: '
|
|
36761
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
36559
36762
|
error: {
|
|
36560
36763
|
type: 'uncategorized_error';
|
|
36561
36764
|
message: string;
|
|
@@ -36938,7 +37141,7 @@ interface Routes {
|
|
|
36938
37141
|
/** Unique identifier for the device. */
|
|
36939
37142
|
device_id: string;
|
|
36940
37143
|
/** Type of the device. */
|
|
36941
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
37144
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
36942
37145
|
/** Optional nickname to describe the device, settable through Seam */
|
|
36943
37146
|
nickname?: string | undefined;
|
|
36944
37147
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -37245,6 +37448,9 @@ interface Routes {
|
|
|
37245
37448
|
gadget_id: string;
|
|
37246
37449
|
_member_group_id?: string | undefined;
|
|
37247
37450
|
} | undefined;
|
|
37451
|
+
assa_abloy_vostio_metadata?: {
|
|
37452
|
+
encoder_id: string;
|
|
37453
|
+
} | undefined;
|
|
37248
37454
|
}) & ({
|
|
37249
37455
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
37250
37456
|
code_constraints?: (Array<{
|
|
@@ -37395,13 +37601,15 @@ interface Routes {
|
|
|
37395
37601
|
}>;
|
|
37396
37602
|
};
|
|
37397
37603
|
};
|
|
37398
|
-
'/acs/encoders/
|
|
37399
|
-
route: '/acs/encoders/
|
|
37604
|
+
'/acs/encoders/scan_credential': {
|
|
37605
|
+
route: '/acs/encoders/scan_credential';
|
|
37400
37606
|
method: 'POST';
|
|
37401
37607
|
queryParams: {};
|
|
37402
37608
|
jsonBody: {};
|
|
37403
37609
|
commonParams: {
|
|
37610
|
+
/** ID of the acs_system the encoder belongs to. */
|
|
37404
37611
|
acs_system_id: string;
|
|
37612
|
+
/** ID of the encoder to use for the scan. */
|
|
37405
37613
|
device_id: string;
|
|
37406
37614
|
};
|
|
37407
37615
|
formData: {};
|
|
@@ -37460,15 +37668,15 @@ interface Routes {
|
|
|
37460
37668
|
status: 'pending';
|
|
37461
37669
|
result: null;
|
|
37462
37670
|
error: null;
|
|
37463
|
-
action_type: '
|
|
37671
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
37464
37672
|
} | {
|
|
37465
37673
|
/** The ID of the action attempt. */
|
|
37466
37674
|
action_attempt_id: string;
|
|
37467
37675
|
status: 'success';
|
|
37468
37676
|
error: null;
|
|
37469
|
-
action_type: '
|
|
37677
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
37470
37678
|
result: {
|
|
37471
|
-
/** Snapshot of
|
|
37679
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
37472
37680
|
acs_credential_on_encoder: {
|
|
37473
37681
|
/** Date and time the credential was created. */
|
|
37474
37682
|
created_at: string | null;
|
|
@@ -37621,7 +37829,7 @@ interface Routes {
|
|
|
37621
37829
|
action_attempt_id: string;
|
|
37622
37830
|
status: 'error';
|
|
37623
37831
|
result: null;
|
|
37624
|
-
action_type: '
|
|
37832
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
37625
37833
|
error: {
|
|
37626
37834
|
type: 'uncategorized_error';
|
|
37627
37835
|
message: string;
|
|
@@ -37638,13 +37846,13 @@ interface Routes {
|
|
|
37638
37846
|
status: 'pending';
|
|
37639
37847
|
result: null;
|
|
37640
37848
|
error: null;
|
|
37641
|
-
action_type: '
|
|
37849
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
37642
37850
|
} | {
|
|
37643
37851
|
/** The ID of the action attempt. */
|
|
37644
37852
|
action_attempt_id: string;
|
|
37645
37853
|
status: 'success';
|
|
37646
37854
|
error: null;
|
|
37647
|
-
action_type: '
|
|
37855
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
37648
37856
|
/** Means by which a user gains access at an entrance.
|
|
37649
37857
|
|
|
37650
37858
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -37768,7 +37976,7 @@ interface Routes {
|
|
|
37768
37976
|
action_attempt_id: string;
|
|
37769
37977
|
status: 'error';
|
|
37770
37978
|
result: null;
|
|
37771
|
-
action_type: '
|
|
37979
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
37772
37980
|
error: {
|
|
37773
37981
|
type: 'uncategorized_error';
|
|
37774
37982
|
message: string;
|
|
@@ -39410,15 +39618,15 @@ interface Routes {
|
|
|
39410
39618
|
status: 'pending';
|
|
39411
39619
|
result: null;
|
|
39412
39620
|
error: null;
|
|
39413
|
-
action_type: '
|
|
39621
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
39414
39622
|
} | {
|
|
39415
39623
|
/** The ID of the action attempt. */
|
|
39416
39624
|
action_attempt_id: string;
|
|
39417
39625
|
status: 'success';
|
|
39418
39626
|
error: null;
|
|
39419
|
-
action_type: '
|
|
39627
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
39420
39628
|
result: {
|
|
39421
|
-
/** Snapshot of
|
|
39629
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
39422
39630
|
acs_credential_on_encoder: {
|
|
39423
39631
|
/** Date and time the credential was created. */
|
|
39424
39632
|
created_at: string | null;
|
|
@@ -39571,7 +39779,7 @@ interface Routes {
|
|
|
39571
39779
|
action_attempt_id: string;
|
|
39572
39780
|
status: 'error';
|
|
39573
39781
|
result: null;
|
|
39574
|
-
action_type: '
|
|
39782
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
39575
39783
|
error: {
|
|
39576
39784
|
type: 'uncategorized_error';
|
|
39577
39785
|
message: string;
|
|
@@ -39588,13 +39796,13 @@ interface Routes {
|
|
|
39588
39796
|
status: 'pending';
|
|
39589
39797
|
result: null;
|
|
39590
39798
|
error: null;
|
|
39591
|
-
action_type: '
|
|
39799
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
39592
39800
|
} | {
|
|
39593
39801
|
/** The ID of the action attempt. */
|
|
39594
39802
|
action_attempt_id: string;
|
|
39595
39803
|
status: 'success';
|
|
39596
39804
|
error: null;
|
|
39597
|
-
action_type: '
|
|
39805
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
39598
39806
|
/** Means by which a user gains access at an entrance.
|
|
39599
39807
|
|
|
39600
39808
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -39718,7 +39926,7 @@ interface Routes {
|
|
|
39718
39926
|
action_attempt_id: string;
|
|
39719
39927
|
status: 'error';
|
|
39720
39928
|
result: null;
|
|
39721
|
-
action_type: '
|
|
39929
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
39722
39930
|
error: {
|
|
39723
39931
|
type: 'uncategorized_error';
|
|
39724
39932
|
message: string;
|
|
@@ -40143,15 +40351,15 @@ interface Routes {
|
|
|
40143
40351
|
status: 'pending';
|
|
40144
40352
|
result: null;
|
|
40145
40353
|
error: null;
|
|
40146
|
-
action_type: '
|
|
40354
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
40147
40355
|
} | {
|
|
40148
40356
|
/** The ID of the action attempt. */
|
|
40149
40357
|
action_attempt_id: string;
|
|
40150
40358
|
status: 'success';
|
|
40151
40359
|
error: null;
|
|
40152
|
-
action_type: '
|
|
40360
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
40153
40361
|
result: {
|
|
40154
|
-
/** Snapshot of
|
|
40362
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
40155
40363
|
acs_credential_on_encoder: {
|
|
40156
40364
|
/** Date and time the credential was created. */
|
|
40157
40365
|
created_at: string | null;
|
|
@@ -40304,7 +40512,7 @@ interface Routes {
|
|
|
40304
40512
|
action_attempt_id: string;
|
|
40305
40513
|
status: 'error';
|
|
40306
40514
|
result: null;
|
|
40307
|
-
action_type: '
|
|
40515
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
40308
40516
|
error: {
|
|
40309
40517
|
type: 'uncategorized_error';
|
|
40310
40518
|
message: string;
|
|
@@ -40321,13 +40529,13 @@ interface Routes {
|
|
|
40321
40529
|
status: 'pending';
|
|
40322
40530
|
result: null;
|
|
40323
40531
|
error: null;
|
|
40324
|
-
action_type: '
|
|
40532
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
40325
40533
|
} | {
|
|
40326
40534
|
/** The ID of the action attempt. */
|
|
40327
40535
|
action_attempt_id: string;
|
|
40328
40536
|
status: 'success';
|
|
40329
40537
|
error: null;
|
|
40330
|
-
action_type: '
|
|
40538
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
40331
40539
|
/** Means by which a user gains access at an entrance.
|
|
40332
40540
|
|
|
40333
40541
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -40451,7 +40659,7 @@ interface Routes {
|
|
|
40451
40659
|
action_attempt_id: string;
|
|
40452
40660
|
status: 'error';
|
|
40453
40661
|
result: null;
|
|
40454
|
-
action_type: '
|
|
40662
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
40455
40663
|
error: {
|
|
40456
40664
|
type: 'uncategorized_error';
|
|
40457
40665
|
message: string;
|
|
@@ -41252,7 +41460,7 @@ interface Routes {
|
|
|
41252
41460
|
/** Unique identifier for the device. */
|
|
41253
41461
|
device_id: string;
|
|
41254
41462
|
/** Type of the device. */
|
|
41255
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
41463
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
41256
41464
|
/** Optional nickname to describe the device, settable through Seam */
|
|
41257
41465
|
nickname?: string | undefined;
|
|
41258
41466
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -41559,6 +41767,9 @@ interface Routes {
|
|
|
41559
41767
|
gadget_id: string;
|
|
41560
41768
|
_member_group_id?: string | undefined;
|
|
41561
41769
|
} | undefined;
|
|
41770
|
+
assa_abloy_vostio_metadata?: {
|
|
41771
|
+
encoder_id: string;
|
|
41772
|
+
} | undefined;
|
|
41562
41773
|
}) & ({
|
|
41563
41774
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
41564
41775
|
code_constraints?: (Array<{
|
|
@@ -41719,8 +41930,8 @@ interface Routes {
|
|
|
41719
41930
|
connected_account_id?: string | undefined;
|
|
41720
41931
|
connected_account_ids?: string[] | undefined;
|
|
41721
41932
|
connect_webview_id?: string | undefined;
|
|
41722
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
41723
|
-
device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
41933
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')) | undefined;
|
|
41934
|
+
device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')> | undefined;
|
|
41724
41935
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
41725
41936
|
device_ids?: string[] | undefined;
|
|
41726
41937
|
limit?: number;
|
|
@@ -41736,7 +41947,7 @@ interface Routes {
|
|
|
41736
41947
|
/** Unique identifier for the device. */
|
|
41737
41948
|
device_id: string;
|
|
41738
41949
|
/** Type of the device. */
|
|
41739
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
41950
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
41740
41951
|
/** Optional nickname to describe the device, settable through Seam */
|
|
41741
41952
|
nickname?: string | undefined;
|
|
41742
41953
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -42043,6 +42254,9 @@ interface Routes {
|
|
|
42043
42254
|
gadget_id: string;
|
|
42044
42255
|
_member_group_id?: string | undefined;
|
|
42045
42256
|
} | undefined;
|
|
42257
|
+
assa_abloy_vostio_metadata?: {
|
|
42258
|
+
encoder_id: string;
|
|
42259
|
+
} | undefined;
|
|
42046
42260
|
}) & ({
|
|
42047
42261
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
42048
42262
|
code_constraints?: (Array<{
|
|
@@ -42270,7 +42484,7 @@ interface Routes {
|
|
|
42270
42484
|
/** Unique identifier for the device. */
|
|
42271
42485
|
device_id: string;
|
|
42272
42486
|
/** Type of the device. */
|
|
42273
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
42487
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
42274
42488
|
/** Unique identifier for the account associated with the device. */
|
|
42275
42489
|
connected_account_id: string;
|
|
42276
42490
|
/** Location information for the device. */
|
|
@@ -42376,8 +42590,8 @@ interface Routes {
|
|
|
42376
42590
|
connected_account_id?: string | undefined;
|
|
42377
42591
|
connected_account_ids?: string[] | undefined;
|
|
42378
42592
|
connect_webview_id?: string | undefined;
|
|
42379
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
42380
|
-
device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
42593
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')) | undefined;
|
|
42594
|
+
device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')> | undefined;
|
|
42381
42595
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
42382
42596
|
device_ids?: string[] | undefined;
|
|
42383
42597
|
limit?: number;
|
|
@@ -42393,7 +42607,7 @@ interface Routes {
|
|
|
42393
42607
|
/** Unique identifier for the device. */
|
|
42394
42608
|
device_id: string;
|
|
42395
42609
|
/** Type of the device. */
|
|
42396
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
42610
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
42397
42611
|
/** Unique identifier for the account associated with the device. */
|
|
42398
42612
|
connected_account_id: string;
|
|
42399
42613
|
/** Location information for the device. */
|
|
@@ -42623,7 +42837,7 @@ interface Routes {
|
|
|
42623
42837
|
/** Unique identifier for the device. */
|
|
42624
42838
|
device_id: string;
|
|
42625
42839
|
/** Type of the device. */
|
|
42626
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
42840
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
42627
42841
|
/** Optional nickname to describe the device, settable through Seam */
|
|
42628
42842
|
nickname?: string | undefined;
|
|
42629
42843
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -42930,6 +43144,9 @@ interface Routes {
|
|
|
42930
43144
|
gadget_id: string;
|
|
42931
43145
|
_member_group_id?: string | undefined;
|
|
42932
43146
|
} | undefined;
|
|
43147
|
+
assa_abloy_vostio_metadata?: {
|
|
43148
|
+
encoder_id: string;
|
|
43149
|
+
} | undefined;
|
|
42933
43150
|
}) & ({
|
|
42934
43151
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
42935
43152
|
code_constraints?: (Array<{
|
|
@@ -43082,7 +43299,7 @@ interface Routes {
|
|
|
43082
43299
|
/** Unique identifier for the device. */
|
|
43083
43300
|
device_id: string;
|
|
43084
43301
|
/** Type of the device. */
|
|
43085
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
43302
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
43086
43303
|
/** Optional nickname to describe the device, settable through Seam */
|
|
43087
43304
|
nickname?: string | undefined;
|
|
43088
43305
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -43389,6 +43606,9 @@ interface Routes {
|
|
|
43389
43606
|
gadget_id: string;
|
|
43390
43607
|
_member_group_id?: string | undefined;
|
|
43391
43608
|
} | undefined;
|
|
43609
|
+
assa_abloy_vostio_metadata?: {
|
|
43610
|
+
encoder_id: string;
|
|
43611
|
+
} | undefined;
|
|
43392
43612
|
}) & ({
|
|
43393
43613
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
43394
43614
|
code_constraints?: (Array<{
|
|
@@ -43549,8 +43769,8 @@ interface Routes {
|
|
|
43549
43769
|
connected_account_id?: string | undefined;
|
|
43550
43770
|
connected_account_ids?: string[] | undefined;
|
|
43551
43771
|
connect_webview_id?: string | undefined;
|
|
43552
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
43553
|
-
device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
43772
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')) | undefined;
|
|
43773
|
+
device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')> | undefined;
|
|
43554
43774
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
43555
43775
|
device_ids?: string[] | undefined;
|
|
43556
43776
|
limit?: number;
|
|
@@ -43566,7 +43786,7 @@ interface Routes {
|
|
|
43566
43786
|
/** Unique identifier for the device. */
|
|
43567
43787
|
device_id: string;
|
|
43568
43788
|
/** Type of the device. */
|
|
43569
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
43789
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
43570
43790
|
/** Optional nickname to describe the device, settable through Seam */
|
|
43571
43791
|
nickname?: string | undefined;
|
|
43572
43792
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -43873,6 +44093,9 @@ interface Routes {
|
|
|
43873
44093
|
gadget_id: string;
|
|
43874
44094
|
_member_group_id?: string | undefined;
|
|
43875
44095
|
} | undefined;
|
|
44096
|
+
assa_abloy_vostio_metadata?: {
|
|
44097
|
+
encoder_id: string;
|
|
44098
|
+
} | undefined;
|
|
43876
44099
|
}) & ({
|
|
43877
44100
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
43878
44101
|
code_constraints?: (Array<{
|
|
@@ -44025,7 +44248,7 @@ interface Routes {
|
|
|
44025
44248
|
/** Unique identifier for the device. */
|
|
44026
44249
|
device_id: string;
|
|
44027
44250
|
/** Type of the device. */
|
|
44028
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
44251
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
44029
44252
|
/** Optional nickname to describe the device, settable through Seam */
|
|
44030
44253
|
nickname?: string | undefined;
|
|
44031
44254
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -44332,6 +44555,9 @@ interface Routes {
|
|
|
44332
44555
|
gadget_id: string;
|
|
44333
44556
|
_member_group_id?: string | undefined;
|
|
44334
44557
|
} | undefined;
|
|
44558
|
+
assa_abloy_vostio_metadata?: {
|
|
44559
|
+
encoder_id: string;
|
|
44560
|
+
} | undefined;
|
|
44335
44561
|
}) & ({
|
|
44336
44562
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
44337
44563
|
code_constraints?: (Array<{
|
|
@@ -44547,15 +44773,15 @@ interface Routes {
|
|
|
44547
44773
|
status: 'pending';
|
|
44548
44774
|
result: null;
|
|
44549
44775
|
error: null;
|
|
44550
|
-
action_type: '
|
|
44776
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
44551
44777
|
} | {
|
|
44552
44778
|
/** The ID of the action attempt. */
|
|
44553
44779
|
action_attempt_id: string;
|
|
44554
44780
|
status: 'success';
|
|
44555
44781
|
error: null;
|
|
44556
|
-
action_type: '
|
|
44782
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
44557
44783
|
result: {
|
|
44558
|
-
/** Snapshot of
|
|
44784
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
44559
44785
|
acs_credential_on_encoder: {
|
|
44560
44786
|
/** Date and time the credential was created. */
|
|
44561
44787
|
created_at: string | null;
|
|
@@ -44708,7 +44934,7 @@ interface Routes {
|
|
|
44708
44934
|
action_attempt_id: string;
|
|
44709
44935
|
status: 'error';
|
|
44710
44936
|
result: null;
|
|
44711
|
-
action_type: '
|
|
44937
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
44712
44938
|
error: {
|
|
44713
44939
|
type: 'uncategorized_error';
|
|
44714
44940
|
message: string;
|
|
@@ -44725,13 +44951,13 @@ interface Routes {
|
|
|
44725
44951
|
status: 'pending';
|
|
44726
44952
|
result: null;
|
|
44727
44953
|
error: null;
|
|
44728
|
-
action_type: '
|
|
44954
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
44729
44955
|
} | {
|
|
44730
44956
|
/** The ID of the action attempt. */
|
|
44731
44957
|
action_attempt_id: string;
|
|
44732
44958
|
status: 'success';
|
|
44733
44959
|
error: null;
|
|
44734
|
-
action_type: '
|
|
44960
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
44735
44961
|
/** Means by which a user gains access at an entrance.
|
|
44736
44962
|
|
|
44737
44963
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -44855,7 +45081,7 @@ interface Routes {
|
|
|
44855
45081
|
action_attempt_id: string;
|
|
44856
45082
|
status: 'error';
|
|
44857
45083
|
result: null;
|
|
44858
|
-
action_type: '
|
|
45084
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
44859
45085
|
error: {
|
|
44860
45086
|
type: 'uncategorized_error';
|
|
44861
45087
|
message: string;
|
|
@@ -45281,15 +45507,15 @@ interface Routes {
|
|
|
45281
45507
|
status: 'pending';
|
|
45282
45508
|
result: null;
|
|
45283
45509
|
error: null;
|
|
45284
|
-
action_type: '
|
|
45510
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
45285
45511
|
} | {
|
|
45286
45512
|
/** The ID of the action attempt. */
|
|
45287
45513
|
action_attempt_id: string;
|
|
45288
45514
|
status: 'success';
|
|
45289
45515
|
error: null;
|
|
45290
|
-
action_type: '
|
|
45516
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
45291
45517
|
result: {
|
|
45292
|
-
/** Snapshot of
|
|
45518
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
45293
45519
|
acs_credential_on_encoder: {
|
|
45294
45520
|
/** Date and time the credential was created. */
|
|
45295
45521
|
created_at: string | null;
|
|
@@ -45442,7 +45668,7 @@ interface Routes {
|
|
|
45442
45668
|
action_attempt_id: string;
|
|
45443
45669
|
status: 'error';
|
|
45444
45670
|
result: null;
|
|
45445
|
-
action_type: '
|
|
45671
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
45446
45672
|
error: {
|
|
45447
45673
|
type: 'uncategorized_error';
|
|
45448
45674
|
message: string;
|
|
@@ -45459,13 +45685,13 @@ interface Routes {
|
|
|
45459
45685
|
status: 'pending';
|
|
45460
45686
|
result: null;
|
|
45461
45687
|
error: null;
|
|
45462
|
-
action_type: '
|
|
45688
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
45463
45689
|
} | {
|
|
45464
45690
|
/** The ID of the action attempt. */
|
|
45465
45691
|
action_attempt_id: string;
|
|
45466
45692
|
status: 'success';
|
|
45467
45693
|
error: null;
|
|
45468
|
-
action_type: '
|
|
45694
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
45469
45695
|
/** Means by which a user gains access at an entrance.
|
|
45470
45696
|
|
|
45471
45697
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -45589,7 +45815,7 @@ interface Routes {
|
|
|
45589
45815
|
action_attempt_id: string;
|
|
45590
45816
|
status: 'error';
|
|
45591
45817
|
result: null;
|
|
45592
|
-
action_type: '
|
|
45818
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
45593
45819
|
error: {
|
|
45594
45820
|
type: 'uncategorized_error';
|
|
45595
45821
|
message: string;
|
|
@@ -45994,8 +46220,8 @@ interface Routes {
|
|
|
45994
46220
|
connected_account_id?: string | undefined;
|
|
45995
46221
|
connected_account_ids?: string[] | undefined;
|
|
45996
46222
|
connect_webview_id?: string | undefined;
|
|
45997
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
45998
|
-
device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
46223
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')) | undefined;
|
|
46224
|
+
device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')> | undefined;
|
|
45999
46225
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
46000
46226
|
device_ids?: string[] | undefined;
|
|
46001
46227
|
limit?: number;
|
|
@@ -46011,7 +46237,7 @@ interface Routes {
|
|
|
46011
46237
|
/** Unique identifier for the device. */
|
|
46012
46238
|
device_id: string;
|
|
46013
46239
|
/** Type of the device. */
|
|
46014
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
46240
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
46015
46241
|
/** Optional nickname to describe the device, settable through Seam */
|
|
46016
46242
|
nickname?: string | undefined;
|
|
46017
46243
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -46318,6 +46544,9 @@ interface Routes {
|
|
|
46318
46544
|
gadget_id: string;
|
|
46319
46545
|
_member_group_id?: string | undefined;
|
|
46320
46546
|
} | undefined;
|
|
46547
|
+
assa_abloy_vostio_metadata?: {
|
|
46548
|
+
encoder_id: string;
|
|
46549
|
+
} | undefined;
|
|
46321
46550
|
}) & ({
|
|
46322
46551
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
46323
46552
|
code_constraints?: (Array<{
|
|
@@ -46470,7 +46699,7 @@ interface Routes {
|
|
|
46470
46699
|
/** Unique identifier for the device. */
|
|
46471
46700
|
device_id: string;
|
|
46472
46701
|
/** Type of the device. */
|
|
46473
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
46702
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
46474
46703
|
/** Optional nickname to describe the device, settable through Seam */
|
|
46475
46704
|
nickname?: string | undefined;
|
|
46476
46705
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -46777,6 +47006,9 @@ interface Routes {
|
|
|
46777
47006
|
gadget_id: string;
|
|
46778
47007
|
_member_group_id?: string | undefined;
|
|
46779
47008
|
} | undefined;
|
|
47009
|
+
assa_abloy_vostio_metadata?: {
|
|
47010
|
+
encoder_id: string;
|
|
47011
|
+
} | undefined;
|
|
46780
47012
|
}) & ({
|
|
46781
47013
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
46782
47014
|
code_constraints?: (Array<{
|
|
@@ -46997,15 +47229,15 @@ interface Routes {
|
|
|
46997
47229
|
status: 'pending';
|
|
46998
47230
|
result: null;
|
|
46999
47231
|
error: null;
|
|
47000
|
-
action_type: '
|
|
47232
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47001
47233
|
} | {
|
|
47002
47234
|
/** The ID of the action attempt. */
|
|
47003
47235
|
action_attempt_id: string;
|
|
47004
47236
|
status: 'success';
|
|
47005
47237
|
error: null;
|
|
47006
|
-
action_type: '
|
|
47238
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47007
47239
|
result: {
|
|
47008
|
-
/** Snapshot of
|
|
47240
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
47009
47241
|
acs_credential_on_encoder: {
|
|
47010
47242
|
/** Date and time the credential was created. */
|
|
47011
47243
|
created_at: string | null;
|
|
@@ -47158,7 +47390,7 @@ interface Routes {
|
|
|
47158
47390
|
action_attempt_id: string;
|
|
47159
47391
|
status: 'error';
|
|
47160
47392
|
result: null;
|
|
47161
|
-
action_type: '
|
|
47393
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47162
47394
|
error: {
|
|
47163
47395
|
type: 'uncategorized_error';
|
|
47164
47396
|
message: string;
|
|
@@ -47175,13 +47407,13 @@ interface Routes {
|
|
|
47175
47407
|
status: 'pending';
|
|
47176
47408
|
result: null;
|
|
47177
47409
|
error: null;
|
|
47178
|
-
action_type: '
|
|
47410
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47179
47411
|
} | {
|
|
47180
47412
|
/** The ID of the action attempt. */
|
|
47181
47413
|
action_attempt_id: string;
|
|
47182
47414
|
status: 'success';
|
|
47183
47415
|
error: null;
|
|
47184
|
-
action_type: '
|
|
47416
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47185
47417
|
/** Means by which a user gains access at an entrance.
|
|
47186
47418
|
|
|
47187
47419
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -47305,7 +47537,7 @@ interface Routes {
|
|
|
47305
47537
|
action_attempt_id: string;
|
|
47306
47538
|
status: 'error';
|
|
47307
47539
|
result: null;
|
|
47308
|
-
action_type: '
|
|
47540
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47309
47541
|
error: {
|
|
47310
47542
|
type: 'uncategorized_error';
|
|
47311
47543
|
message: string;
|
|
@@ -47741,15 +47973,15 @@ interface Routes {
|
|
|
47741
47973
|
status: 'pending';
|
|
47742
47974
|
result: null;
|
|
47743
47975
|
error: null;
|
|
47744
|
-
action_type: '
|
|
47976
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47745
47977
|
} | {
|
|
47746
47978
|
/** The ID of the action attempt. */
|
|
47747
47979
|
action_attempt_id: string;
|
|
47748
47980
|
status: 'success';
|
|
47749
47981
|
error: null;
|
|
47750
|
-
action_type: '
|
|
47982
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47751
47983
|
result: {
|
|
47752
|
-
/** Snapshot of
|
|
47984
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
47753
47985
|
acs_credential_on_encoder: {
|
|
47754
47986
|
/** Date and time the credential was created. */
|
|
47755
47987
|
created_at: string | null;
|
|
@@ -47902,7 +48134,7 @@ interface Routes {
|
|
|
47902
48134
|
action_attempt_id: string;
|
|
47903
48135
|
status: 'error';
|
|
47904
48136
|
result: null;
|
|
47905
|
-
action_type: '
|
|
48137
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47906
48138
|
error: {
|
|
47907
48139
|
type: 'uncategorized_error';
|
|
47908
48140
|
message: string;
|
|
@@ -47919,13 +48151,13 @@ interface Routes {
|
|
|
47919
48151
|
status: 'pending';
|
|
47920
48152
|
result: null;
|
|
47921
48153
|
error: null;
|
|
47922
|
-
action_type: '
|
|
48154
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47923
48155
|
} | {
|
|
47924
48156
|
/** The ID of the action attempt. */
|
|
47925
48157
|
action_attempt_id: string;
|
|
47926
48158
|
status: 'success';
|
|
47927
48159
|
error: null;
|
|
47928
|
-
action_type: '
|
|
48160
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47929
48161
|
/** Means by which a user gains access at an entrance.
|
|
47930
48162
|
|
|
47931
48163
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -48049,7 +48281,7 @@ interface Routes {
|
|
|
48049
48281
|
action_attempt_id: string;
|
|
48050
48282
|
status: 'error';
|
|
48051
48283
|
result: null;
|
|
48052
|
-
action_type: '
|
|
48284
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
48053
48285
|
error: {
|
|
48054
48286
|
type: 'uncategorized_error';
|
|
48055
48287
|
message: string;
|
|
@@ -48524,15 +48756,15 @@ interface Routes {
|
|
|
48524
48756
|
status: 'pending';
|
|
48525
48757
|
result: null;
|
|
48526
48758
|
error: null;
|
|
48527
|
-
action_type: '
|
|
48759
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
48528
48760
|
} | {
|
|
48529
48761
|
/** The ID of the action attempt. */
|
|
48530
48762
|
action_attempt_id: string;
|
|
48531
48763
|
status: 'success';
|
|
48532
48764
|
error: null;
|
|
48533
|
-
action_type: '
|
|
48765
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
48534
48766
|
result: {
|
|
48535
|
-
/** Snapshot of
|
|
48767
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
48536
48768
|
acs_credential_on_encoder: {
|
|
48537
48769
|
/** Date and time the credential was created. */
|
|
48538
48770
|
created_at: string | null;
|
|
@@ -48685,7 +48917,7 @@ interface Routes {
|
|
|
48685
48917
|
action_attempt_id: string;
|
|
48686
48918
|
status: 'error';
|
|
48687
48919
|
result: null;
|
|
48688
|
-
action_type: '
|
|
48920
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
48689
48921
|
error: {
|
|
48690
48922
|
type: 'uncategorized_error';
|
|
48691
48923
|
message: string;
|
|
@@ -48702,13 +48934,13 @@ interface Routes {
|
|
|
48702
48934
|
status: 'pending';
|
|
48703
48935
|
result: null;
|
|
48704
48936
|
error: null;
|
|
48705
|
-
action_type: '
|
|
48937
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
48706
48938
|
} | {
|
|
48707
48939
|
/** The ID of the action attempt. */
|
|
48708
48940
|
action_attempt_id: string;
|
|
48709
48941
|
status: 'success';
|
|
48710
48942
|
error: null;
|
|
48711
|
-
action_type: '
|
|
48943
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
48712
48944
|
/** Means by which a user gains access at an entrance.
|
|
48713
48945
|
|
|
48714
48946
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -48832,7 +49064,7 @@ interface Routes {
|
|
|
48832
49064
|
action_attempt_id: string;
|
|
48833
49065
|
status: 'error';
|
|
48834
49066
|
result: null;
|
|
48835
|
-
action_type: '
|
|
49067
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
48836
49068
|
error: {
|
|
48837
49069
|
type: 'uncategorized_error';
|
|
48838
49070
|
message: string;
|
|
@@ -49440,15 +49672,15 @@ interface Routes {
|
|
|
49440
49672
|
status: 'pending';
|
|
49441
49673
|
result: null;
|
|
49442
49674
|
error: null;
|
|
49443
|
-
action_type: '
|
|
49675
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
49444
49676
|
} | {
|
|
49445
49677
|
/** The ID of the action attempt. */
|
|
49446
49678
|
action_attempt_id: string;
|
|
49447
49679
|
status: 'success';
|
|
49448
49680
|
error: null;
|
|
49449
|
-
action_type: '
|
|
49681
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
49450
49682
|
result: {
|
|
49451
|
-
/** Snapshot of
|
|
49683
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
49452
49684
|
acs_credential_on_encoder: {
|
|
49453
49685
|
/** Date and time the credential was created. */
|
|
49454
49686
|
created_at: string | null;
|
|
@@ -49601,7 +49833,7 @@ interface Routes {
|
|
|
49601
49833
|
action_attempt_id: string;
|
|
49602
49834
|
status: 'error';
|
|
49603
49835
|
result: null;
|
|
49604
|
-
action_type: '
|
|
49836
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
49605
49837
|
error: {
|
|
49606
49838
|
type: 'uncategorized_error';
|
|
49607
49839
|
message: string;
|
|
@@ -49618,13 +49850,13 @@ interface Routes {
|
|
|
49618
49850
|
status: 'pending';
|
|
49619
49851
|
result: null;
|
|
49620
49852
|
error: null;
|
|
49621
|
-
action_type: '
|
|
49853
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
49622
49854
|
} | {
|
|
49623
49855
|
/** The ID of the action attempt. */
|
|
49624
49856
|
action_attempt_id: string;
|
|
49625
49857
|
status: 'success';
|
|
49626
49858
|
error: null;
|
|
49627
|
-
action_type: '
|
|
49859
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
49628
49860
|
/** Means by which a user gains access at an entrance.
|
|
49629
49861
|
|
|
49630
49862
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -49748,7 +49980,7 @@ interface Routes {
|
|
|
49748
49980
|
action_attempt_id: string;
|
|
49749
49981
|
status: 'error';
|
|
49750
49982
|
result: null;
|
|
49751
|
-
action_type: '
|
|
49983
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
49752
49984
|
error: {
|
|
49753
49985
|
type: 'uncategorized_error';
|
|
49754
49986
|
message: string;
|
|
@@ -50176,15 +50408,15 @@ interface Routes {
|
|
|
50176
50408
|
status: 'pending';
|
|
50177
50409
|
result: null;
|
|
50178
50410
|
error: null;
|
|
50179
|
-
action_type: '
|
|
50411
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
50180
50412
|
} | {
|
|
50181
50413
|
/** The ID of the action attempt. */
|
|
50182
50414
|
action_attempt_id: string;
|
|
50183
50415
|
status: 'success';
|
|
50184
50416
|
error: null;
|
|
50185
|
-
action_type: '
|
|
50417
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
50186
50418
|
result: {
|
|
50187
|
-
/** Snapshot of
|
|
50419
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
50188
50420
|
acs_credential_on_encoder: {
|
|
50189
50421
|
/** Date and time the credential was created. */
|
|
50190
50422
|
created_at: string | null;
|
|
@@ -50337,7 +50569,7 @@ interface Routes {
|
|
|
50337
50569
|
action_attempt_id: string;
|
|
50338
50570
|
status: 'error';
|
|
50339
50571
|
result: null;
|
|
50340
|
-
action_type: '
|
|
50572
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
50341
50573
|
error: {
|
|
50342
50574
|
type: 'uncategorized_error';
|
|
50343
50575
|
message: string;
|
|
@@ -50354,13 +50586,13 @@ interface Routes {
|
|
|
50354
50586
|
status: 'pending';
|
|
50355
50587
|
result: null;
|
|
50356
50588
|
error: null;
|
|
50357
|
-
action_type: '
|
|
50589
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
50358
50590
|
} | {
|
|
50359
50591
|
/** The ID of the action attempt. */
|
|
50360
50592
|
action_attempt_id: string;
|
|
50361
50593
|
status: 'success';
|
|
50362
50594
|
error: null;
|
|
50363
|
-
action_type: '
|
|
50595
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
50364
50596
|
/** Means by which a user gains access at an entrance.
|
|
50365
50597
|
|
|
50366
50598
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -50484,7 +50716,7 @@ interface Routes {
|
|
|
50484
50716
|
action_attempt_id: string;
|
|
50485
50717
|
status: 'error';
|
|
50486
50718
|
result: null;
|
|
50487
|
-
action_type: '
|
|
50719
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
50488
50720
|
error: {
|
|
50489
50721
|
type: 'uncategorized_error';
|
|
50490
50722
|
message: string;
|
|
@@ -50892,7 +51124,7 @@ interface Routes {
|
|
|
50892
51124
|
/** Unique identifier for the device. */
|
|
50893
51125
|
device_id: string;
|
|
50894
51126
|
/** Type of the device. */
|
|
50895
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
51127
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
50896
51128
|
/** Optional nickname to describe the device, settable through Seam */
|
|
50897
51129
|
nickname?: string | undefined;
|
|
50898
51130
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -51199,6 +51431,9 @@ interface Routes {
|
|
|
51199
51431
|
gadget_id: string;
|
|
51200
51432
|
_member_group_id?: string | undefined;
|
|
51201
51433
|
} | undefined;
|
|
51434
|
+
assa_abloy_vostio_metadata?: {
|
|
51435
|
+
encoder_id: string;
|
|
51436
|
+
} | undefined;
|
|
51202
51437
|
}) & ({
|
|
51203
51438
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
51204
51439
|
code_constraints?: (Array<{
|
|
@@ -51416,15 +51651,15 @@ interface Routes {
|
|
|
51416
51651
|
status: 'pending';
|
|
51417
51652
|
result: null;
|
|
51418
51653
|
error: null;
|
|
51419
|
-
action_type: '
|
|
51654
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
51420
51655
|
} | {
|
|
51421
51656
|
/** The ID of the action attempt. */
|
|
51422
51657
|
action_attempt_id: string;
|
|
51423
51658
|
status: 'success';
|
|
51424
51659
|
error: null;
|
|
51425
|
-
action_type: '
|
|
51660
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
51426
51661
|
result: {
|
|
51427
|
-
/** Snapshot of
|
|
51662
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
51428
51663
|
acs_credential_on_encoder: {
|
|
51429
51664
|
/** Date and time the credential was created. */
|
|
51430
51665
|
created_at: string | null;
|
|
@@ -51577,7 +51812,7 @@ interface Routes {
|
|
|
51577
51812
|
action_attempt_id: string;
|
|
51578
51813
|
status: 'error';
|
|
51579
51814
|
result: null;
|
|
51580
|
-
action_type: '
|
|
51815
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
51581
51816
|
error: {
|
|
51582
51817
|
type: 'uncategorized_error';
|
|
51583
51818
|
message: string;
|
|
@@ -51594,13 +51829,13 @@ interface Routes {
|
|
|
51594
51829
|
status: 'pending';
|
|
51595
51830
|
result: null;
|
|
51596
51831
|
error: null;
|
|
51597
|
-
action_type: '
|
|
51832
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
51598
51833
|
} | {
|
|
51599
51834
|
/** The ID of the action attempt. */
|
|
51600
51835
|
action_attempt_id: string;
|
|
51601
51836
|
status: 'success';
|
|
51602
51837
|
error: null;
|
|
51603
|
-
action_type: '
|
|
51838
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
51604
51839
|
/** Means by which a user gains access at an entrance.
|
|
51605
51840
|
|
|
51606
51841
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -51724,7 +51959,7 @@ interface Routes {
|
|
|
51724
51959
|
action_attempt_id: string;
|
|
51725
51960
|
status: 'error';
|
|
51726
51961
|
result: null;
|
|
51727
|
-
action_type: '
|
|
51962
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
51728
51963
|
error: {
|
|
51729
51964
|
type: 'uncategorized_error';
|
|
51730
51965
|
message: string;
|
|
@@ -52154,15 +52389,15 @@ interface Routes {
|
|
|
52154
52389
|
status: 'pending';
|
|
52155
52390
|
result: null;
|
|
52156
52391
|
error: null;
|
|
52157
|
-
action_type: '
|
|
52392
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
52158
52393
|
} | {
|
|
52159
52394
|
/** The ID of the action attempt. */
|
|
52160
52395
|
action_attempt_id: string;
|
|
52161
52396
|
status: 'success';
|
|
52162
52397
|
error: null;
|
|
52163
|
-
action_type: '
|
|
52398
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
52164
52399
|
result: {
|
|
52165
|
-
/** Snapshot of
|
|
52400
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
52166
52401
|
acs_credential_on_encoder: {
|
|
52167
52402
|
/** Date and time the credential was created. */
|
|
52168
52403
|
created_at: string | null;
|
|
@@ -52315,7 +52550,7 @@ interface Routes {
|
|
|
52315
52550
|
action_attempt_id: string;
|
|
52316
52551
|
status: 'error';
|
|
52317
52552
|
result: null;
|
|
52318
|
-
action_type: '
|
|
52553
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
52319
52554
|
error: {
|
|
52320
52555
|
type: 'uncategorized_error';
|
|
52321
52556
|
message: string;
|
|
@@ -52332,13 +52567,13 @@ interface Routes {
|
|
|
52332
52567
|
status: 'pending';
|
|
52333
52568
|
result: null;
|
|
52334
52569
|
error: null;
|
|
52335
|
-
action_type: '
|
|
52570
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
52336
52571
|
} | {
|
|
52337
52572
|
/** The ID of the action attempt. */
|
|
52338
52573
|
action_attempt_id: string;
|
|
52339
52574
|
status: 'success';
|
|
52340
52575
|
error: null;
|
|
52341
|
-
action_type: '
|
|
52576
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
52342
52577
|
/** Means by which a user gains access at an entrance.
|
|
52343
52578
|
|
|
52344
52579
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -52462,7 +52697,7 @@ interface Routes {
|
|
|
52462
52697
|
action_attempt_id: string;
|
|
52463
52698
|
status: 'error';
|
|
52464
52699
|
result: null;
|
|
52465
|
-
action_type: '
|
|
52700
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
52466
52701
|
error: {
|
|
52467
52702
|
type: 'uncategorized_error';
|
|
52468
52703
|
message: string;
|
|
@@ -52833,8 +53068,8 @@ interface Routes {
|
|
|
52833
53068
|
connected_account_id?: string | undefined;
|
|
52834
53069
|
connected_account_ids?: string[] | undefined;
|
|
52835
53070
|
connect_webview_id?: string | undefined;
|
|
52836
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
52837
|
-
device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
53071
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')) | undefined;
|
|
53072
|
+
device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')> | undefined;
|
|
52838
53073
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
52839
53074
|
device_ids?: string[] | undefined;
|
|
52840
53075
|
limit?: number;
|
|
@@ -52850,7 +53085,7 @@ interface Routes {
|
|
|
52850
53085
|
/** Unique identifier for the device. */
|
|
52851
53086
|
device_id: string;
|
|
52852
53087
|
/** Type of the device. */
|
|
52853
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
53088
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
52854
53089
|
/** Optional nickname to describe the device, settable through Seam */
|
|
52855
53090
|
nickname?: string | undefined;
|
|
52856
53091
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -53157,6 +53392,9 @@ interface Routes {
|
|
|
53157
53392
|
gadget_id: string;
|
|
53158
53393
|
_member_group_id?: string | undefined;
|
|
53159
53394
|
} | undefined;
|
|
53395
|
+
assa_abloy_vostio_metadata?: {
|
|
53396
|
+
encoder_id: string;
|
|
53397
|
+
} | undefined;
|
|
53160
53398
|
}) & ({
|
|
53161
53399
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
53162
53400
|
code_constraints?: (Array<{
|
|
@@ -53309,7 +53547,7 @@ interface Routes {
|
|
|
53309
53547
|
/** Unique identifier for the device. */
|
|
53310
53548
|
device_id: string;
|
|
53311
53549
|
/** Type of the device. */
|
|
53312
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
53550
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
53313
53551
|
/** Optional nickname to describe the device, settable through Seam */
|
|
53314
53552
|
nickname?: string | undefined;
|
|
53315
53553
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -53616,6 +53854,9 @@ interface Routes {
|
|
|
53616
53854
|
gadget_id: string;
|
|
53617
53855
|
_member_group_id?: string | undefined;
|
|
53618
53856
|
} | undefined;
|
|
53857
|
+
assa_abloy_vostio_metadata?: {
|
|
53858
|
+
encoder_id: string;
|
|
53859
|
+
} | undefined;
|
|
53619
53860
|
}) & ({
|
|
53620
53861
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
53621
53862
|
code_constraints?: (Array<{
|
|
@@ -53831,15 +54072,15 @@ interface Routes {
|
|
|
53831
54072
|
status: 'pending';
|
|
53832
54073
|
result: null;
|
|
53833
54074
|
error: null;
|
|
53834
|
-
action_type: '
|
|
54075
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
53835
54076
|
} | {
|
|
53836
54077
|
/** The ID of the action attempt. */
|
|
53837
54078
|
action_attempt_id: string;
|
|
53838
54079
|
status: 'success';
|
|
53839
54080
|
error: null;
|
|
53840
|
-
action_type: '
|
|
54081
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
53841
54082
|
result: {
|
|
53842
|
-
/** Snapshot of
|
|
54083
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
53843
54084
|
acs_credential_on_encoder: {
|
|
53844
54085
|
/** Date and time the credential was created. */
|
|
53845
54086
|
created_at: string | null;
|
|
@@ -53992,7 +54233,7 @@ interface Routes {
|
|
|
53992
54233
|
action_attempt_id: string;
|
|
53993
54234
|
status: 'error';
|
|
53994
54235
|
result: null;
|
|
53995
|
-
action_type: '
|
|
54236
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
53996
54237
|
error: {
|
|
53997
54238
|
type: 'uncategorized_error';
|
|
53998
54239
|
message: string;
|
|
@@ -54009,13 +54250,13 @@ interface Routes {
|
|
|
54009
54250
|
status: 'pending';
|
|
54010
54251
|
result: null;
|
|
54011
54252
|
error: null;
|
|
54012
|
-
action_type: '
|
|
54253
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54013
54254
|
} | {
|
|
54014
54255
|
/** The ID of the action attempt. */
|
|
54015
54256
|
action_attempt_id: string;
|
|
54016
54257
|
status: 'success';
|
|
54017
54258
|
error: null;
|
|
54018
|
-
action_type: '
|
|
54259
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54019
54260
|
/** Means by which a user gains access at an entrance.
|
|
54020
54261
|
|
|
54021
54262
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -54139,7 +54380,7 @@ interface Routes {
|
|
|
54139
54380
|
action_attempt_id: string;
|
|
54140
54381
|
status: 'error';
|
|
54141
54382
|
result: null;
|
|
54142
|
-
action_type: '
|
|
54383
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54143
54384
|
error: {
|
|
54144
54385
|
type: 'uncategorized_error';
|
|
54145
54386
|
message: string;
|
|
@@ -54686,15 +54927,15 @@ interface Routes {
|
|
|
54686
54927
|
status: 'pending';
|
|
54687
54928
|
result: null;
|
|
54688
54929
|
error: null;
|
|
54689
|
-
action_type: '
|
|
54930
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
54690
54931
|
} | {
|
|
54691
54932
|
/** The ID of the action attempt. */
|
|
54692
54933
|
action_attempt_id: string;
|
|
54693
54934
|
status: 'success';
|
|
54694
54935
|
error: null;
|
|
54695
|
-
action_type: '
|
|
54936
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
54696
54937
|
result: {
|
|
54697
|
-
/** Snapshot of
|
|
54938
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
54698
54939
|
acs_credential_on_encoder: {
|
|
54699
54940
|
/** Date and time the credential was created. */
|
|
54700
54941
|
created_at: string | null;
|
|
@@ -54847,7 +55088,7 @@ interface Routes {
|
|
|
54847
55088
|
action_attempt_id: string;
|
|
54848
55089
|
status: 'error';
|
|
54849
55090
|
result: null;
|
|
54850
|
-
action_type: '
|
|
55091
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
54851
55092
|
error: {
|
|
54852
55093
|
type: 'uncategorized_error';
|
|
54853
55094
|
message: string;
|
|
@@ -54864,13 +55105,13 @@ interface Routes {
|
|
|
54864
55105
|
status: 'pending';
|
|
54865
55106
|
result: null;
|
|
54866
55107
|
error: null;
|
|
54867
|
-
action_type: '
|
|
55108
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54868
55109
|
} | {
|
|
54869
55110
|
/** The ID of the action attempt. */
|
|
54870
55111
|
action_attempt_id: string;
|
|
54871
55112
|
status: 'success';
|
|
54872
55113
|
error: null;
|
|
54873
|
-
action_type: '
|
|
55114
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54874
55115
|
/** Means by which a user gains access at an entrance.
|
|
54875
55116
|
|
|
54876
55117
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -54994,7 +55235,7 @@ interface Routes {
|
|
|
54994
55235
|
action_attempt_id: string;
|
|
54995
55236
|
status: 'error';
|
|
54996
55237
|
result: null;
|
|
54997
|
-
action_type: '
|
|
55238
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54998
55239
|
error: {
|
|
54999
55240
|
type: 'uncategorized_error';
|
|
55000
55241
|
message: string;
|
|
@@ -55583,7 +55824,7 @@ interface Routes {
|
|
|
55583
55824
|
/** Unique identifier for the device. */
|
|
55584
55825
|
device_id: string;
|
|
55585
55826
|
/** Type of the device. */
|
|
55586
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
55827
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
55587
55828
|
/** Optional nickname to describe the device, settable through Seam */
|
|
55588
55829
|
nickname?: string | undefined;
|
|
55589
55830
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -55890,6 +56131,9 @@ interface Routes {
|
|
|
55890
56131
|
gadget_id: string;
|
|
55891
56132
|
_member_group_id?: string | undefined;
|
|
55892
56133
|
} | undefined;
|
|
56134
|
+
assa_abloy_vostio_metadata?: {
|
|
56135
|
+
encoder_id: string;
|
|
56136
|
+
} | undefined;
|
|
55893
56137
|
}) & ({
|
|
55894
56138
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
55895
56139
|
code_constraints?: (Array<{
|
|
@@ -56044,7 +56288,7 @@ interface Routes {
|
|
|
56044
56288
|
/** Unique identifier for the device. */
|
|
56045
56289
|
device_id: string;
|
|
56046
56290
|
/** Type of the device. */
|
|
56047
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
56291
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
56048
56292
|
/** Optional nickname to describe the device, settable through Seam */
|
|
56049
56293
|
nickname?: string | undefined;
|
|
56050
56294
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -56351,6 +56595,9 @@ interface Routes {
|
|
|
56351
56595
|
gadget_id: string;
|
|
56352
56596
|
_member_group_id?: string | undefined;
|
|
56353
56597
|
} | undefined;
|
|
56598
|
+
assa_abloy_vostio_metadata?: {
|
|
56599
|
+
encoder_id: string;
|
|
56600
|
+
} | undefined;
|
|
56354
56601
|
}) & ({
|
|
56355
56602
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
56356
56603
|
code_constraints?: (Array<{
|
|
@@ -56949,15 +57196,15 @@ interface Routes {
|
|
|
56949
57196
|
status: 'pending';
|
|
56950
57197
|
result: null;
|
|
56951
57198
|
error: null;
|
|
56952
|
-
action_type: '
|
|
57199
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
56953
57200
|
} | {
|
|
56954
57201
|
/** The ID of the action attempt. */
|
|
56955
57202
|
action_attempt_id: string;
|
|
56956
57203
|
status: 'success';
|
|
56957
57204
|
error: null;
|
|
56958
|
-
action_type: '
|
|
57205
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
56959
57206
|
result: {
|
|
56960
|
-
/** Snapshot of
|
|
57207
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
56961
57208
|
acs_credential_on_encoder: {
|
|
56962
57209
|
/** Date and time the credential was created. */
|
|
56963
57210
|
created_at: string | null;
|
|
@@ -57110,7 +57357,7 @@ interface Routes {
|
|
|
57110
57357
|
action_attempt_id: string;
|
|
57111
57358
|
status: 'error';
|
|
57112
57359
|
result: null;
|
|
57113
|
-
action_type: '
|
|
57360
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
57114
57361
|
error: {
|
|
57115
57362
|
type: 'uncategorized_error';
|
|
57116
57363
|
message: string;
|
|
@@ -57127,13 +57374,13 @@ interface Routes {
|
|
|
57127
57374
|
status: 'pending';
|
|
57128
57375
|
result: null;
|
|
57129
57376
|
error: null;
|
|
57130
|
-
action_type: '
|
|
57377
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
57131
57378
|
} | {
|
|
57132
57379
|
/** The ID of the action attempt. */
|
|
57133
57380
|
action_attempt_id: string;
|
|
57134
57381
|
status: 'success';
|
|
57135
57382
|
error: null;
|
|
57136
|
-
action_type: '
|
|
57383
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
57137
57384
|
/** Means by which a user gains access at an entrance.
|
|
57138
57385
|
|
|
57139
57386
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -57257,7 +57504,7 @@ interface Routes {
|
|
|
57257
57504
|
action_attempt_id: string;
|
|
57258
57505
|
status: 'error';
|
|
57259
57506
|
result: null;
|
|
57260
|
-
action_type: '
|
|
57507
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
57261
57508
|
error: {
|
|
57262
57509
|
type: 'uncategorized_error';
|
|
57263
57510
|
message: string;
|