@seamapi/types 1.286.0 → 1.286.2
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 +197 -56
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +454 -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 +20 -2
- package/lib/seam/connect/openapi.js +129 -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 +136 -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: {
|
|
@@ -18854,6 +19041,7 @@ declare const _default: {
|
|
|
18854
19041
|
'x-fern-sdk-method-name': string;
|
|
18855
19042
|
'x-fern-sdk-return-value': string;
|
|
18856
19043
|
'x-response-key': string;
|
|
19044
|
+
'x-undocumented': string;
|
|
18857
19045
|
};
|
|
18858
19046
|
};
|
|
18859
19047
|
'/acs/access_groups/unmanaged/list': {
|
|
@@ -18984,6 +19172,7 @@ declare const _default: {
|
|
|
18984
19172
|
'x-fern-sdk-method-name': string;
|
|
18985
19173
|
'x-fern-sdk-return-value': string;
|
|
18986
19174
|
'x-response-key': string;
|
|
19175
|
+
'x-undocumented': string;
|
|
18987
19176
|
};
|
|
18988
19177
|
};
|
|
18989
19178
|
'/acs/credential_pools/list': {
|
|
@@ -19344,6 +19533,7 @@ declare const _default: {
|
|
|
19344
19533
|
description: string;
|
|
19345
19534
|
properties: {
|
|
19346
19535
|
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
19536
|
+
description: string;
|
|
19347
19537
|
format: string;
|
|
19348
19538
|
type: string;
|
|
19349
19539
|
};
|
|
@@ -20177,6 +20367,7 @@ declare const _default: {
|
|
|
20177
20367
|
'x-fern-sdk-return-value': string;
|
|
20178
20368
|
'x-response-key': string;
|
|
20179
20369
|
'x-title': string;
|
|
20370
|
+
'x-undocumented': string;
|
|
20180
20371
|
};
|
|
20181
20372
|
};
|
|
20182
20373
|
'/acs/credentials/unmanaged/list': {
|
|
@@ -20467,6 +20658,7 @@ declare const _default: {
|
|
|
20467
20658
|
'x-fern-sdk-return-value': string;
|
|
20468
20659
|
'x-response-key': string;
|
|
20469
20660
|
'x-title': string;
|
|
20661
|
+
'x-undocumented': string;
|
|
20470
20662
|
};
|
|
20471
20663
|
};
|
|
20472
20664
|
'/acs/credentials/update': {
|
|
@@ -20622,7 +20814,7 @@ declare const _default: {
|
|
|
20622
20814
|
'x-title': string;
|
|
20623
20815
|
};
|
|
20624
20816
|
};
|
|
20625
|
-
'/acs/encoders/
|
|
20817
|
+
'/acs/encoders/encode_credential': {
|
|
20626
20818
|
post: {
|
|
20627
20819
|
operationId: string;
|
|
20628
20820
|
requestBody: {
|
|
@@ -20631,10 +20823,12 @@ declare const _default: {
|
|
|
20631
20823
|
schema: {
|
|
20632
20824
|
properties: {
|
|
20633
20825
|
acs_credential_id: {
|
|
20826
|
+
description: string;
|
|
20634
20827
|
format: string;
|
|
20635
20828
|
type: string;
|
|
20636
20829
|
};
|
|
20637
20830
|
device_id: {
|
|
20831
|
+
description: string;
|
|
20638
20832
|
format: string;
|
|
20639
20833
|
type: string;
|
|
20640
20834
|
};
|
|
@@ -20818,7 +21012,7 @@ declare const _default: {
|
|
|
20818
21012
|
'x-undocumented': string;
|
|
20819
21013
|
};
|
|
20820
21014
|
};
|
|
20821
|
-
'/acs/encoders/
|
|
21015
|
+
'/acs/encoders/scan_credential': {
|
|
20822
21016
|
post: {
|
|
20823
21017
|
operationId: string;
|
|
20824
21018
|
requestBody: {
|
|
@@ -20827,10 +21021,12 @@ declare const _default: {
|
|
|
20827
21021
|
schema: {
|
|
20828
21022
|
properties: {
|
|
20829
21023
|
acs_system_id: {
|
|
21024
|
+
description: string;
|
|
20830
21025
|
format: string;
|
|
20831
21026
|
type: string;
|
|
20832
21027
|
};
|
|
20833
21028
|
device_id: {
|
|
21029
|
+
description: string;
|
|
20834
21030
|
format: string;
|
|
20835
21031
|
type: string;
|
|
20836
21032
|
};
|
|
@@ -31582,15 +31778,15 @@ interface Routes {
|
|
|
31582
31778
|
status: 'pending';
|
|
31583
31779
|
result: null;
|
|
31584
31780
|
error: null;
|
|
31585
|
-
action_type: '
|
|
31781
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
31586
31782
|
} | {
|
|
31587
31783
|
/** The ID of the action attempt. */
|
|
31588
31784
|
action_attempt_id: string;
|
|
31589
31785
|
status: 'success';
|
|
31590
31786
|
error: null;
|
|
31591
|
-
action_type: '
|
|
31787
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
31592
31788
|
result: {
|
|
31593
|
-
/** Snapshot of
|
|
31789
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
31594
31790
|
acs_credential_on_encoder: {
|
|
31595
31791
|
/** Date and time the credential was created. */
|
|
31596
31792
|
created_at: string | null;
|
|
@@ -31743,7 +31939,7 @@ interface Routes {
|
|
|
31743
31939
|
action_attempt_id: string;
|
|
31744
31940
|
status: 'error';
|
|
31745
31941
|
result: null;
|
|
31746
|
-
action_type: '
|
|
31942
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
31747
31943
|
error: {
|
|
31748
31944
|
type: 'uncategorized_error';
|
|
31749
31945
|
message: string;
|
|
@@ -31760,13 +31956,13 @@ interface Routes {
|
|
|
31760
31956
|
status: 'pending';
|
|
31761
31957
|
result: null;
|
|
31762
31958
|
error: null;
|
|
31763
|
-
action_type: '
|
|
31959
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
31764
31960
|
} | {
|
|
31765
31961
|
/** The ID of the action attempt. */
|
|
31766
31962
|
action_attempt_id: string;
|
|
31767
31963
|
status: 'success';
|
|
31768
31964
|
error: null;
|
|
31769
|
-
action_type: '
|
|
31965
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
31770
31966
|
/** Means by which a user gains access at an entrance.
|
|
31771
31967
|
|
|
31772
31968
|
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. */
|
|
@@ -31890,7 +32086,7 @@ interface Routes {
|
|
|
31890
32086
|
action_attempt_id: string;
|
|
31891
32087
|
status: 'error';
|
|
31892
32088
|
result: null;
|
|
31893
|
-
action_type: '
|
|
32089
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
31894
32090
|
error: {
|
|
31895
32091
|
type: 'uncategorized_error';
|
|
31896
32092
|
message: string;
|
|
@@ -32466,15 +32662,15 @@ interface Routes {
|
|
|
32466
32662
|
status: 'pending';
|
|
32467
32663
|
result: null;
|
|
32468
32664
|
error: null;
|
|
32469
|
-
action_type: '
|
|
32665
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
32470
32666
|
} | {
|
|
32471
32667
|
/** The ID of the action attempt. */
|
|
32472
32668
|
action_attempt_id: string;
|
|
32473
32669
|
status: 'success';
|
|
32474
32670
|
error: null;
|
|
32475
|
-
action_type: '
|
|
32671
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
32476
32672
|
result: {
|
|
32477
|
-
/** Snapshot of
|
|
32673
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
32478
32674
|
acs_credential_on_encoder: {
|
|
32479
32675
|
/** Date and time the credential was created. */
|
|
32480
32676
|
created_at: string | null;
|
|
@@ -32627,7 +32823,7 @@ interface Routes {
|
|
|
32627
32823
|
action_attempt_id: string;
|
|
32628
32824
|
status: 'error';
|
|
32629
32825
|
result: null;
|
|
32630
|
-
action_type: '
|
|
32826
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
32631
32827
|
error: {
|
|
32632
32828
|
type: 'uncategorized_error';
|
|
32633
32829
|
message: string;
|
|
@@ -32644,13 +32840,13 @@ interface Routes {
|
|
|
32644
32840
|
status: 'pending';
|
|
32645
32841
|
result: null;
|
|
32646
32842
|
error: null;
|
|
32647
|
-
action_type: '
|
|
32843
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
32648
32844
|
} | {
|
|
32649
32845
|
/** The ID of the action attempt. */
|
|
32650
32846
|
action_attempt_id: string;
|
|
32651
32847
|
status: 'success';
|
|
32652
32848
|
error: null;
|
|
32653
|
-
action_type: '
|
|
32849
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
32654
32850
|
/** Means by which a user gains access at an entrance.
|
|
32655
32851
|
|
|
32656
32852
|
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. */
|
|
@@ -32774,7 +32970,7 @@ interface Routes {
|
|
|
32774
32970
|
action_attempt_id: string;
|
|
32775
32971
|
status: 'error';
|
|
32776
32972
|
result: null;
|
|
32777
|
-
action_type: '
|
|
32973
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
32778
32974
|
error: {
|
|
32779
32975
|
type: 'uncategorized_error';
|
|
32780
32976
|
message: string;
|
|
@@ -33507,15 +33703,15 @@ interface Routes {
|
|
|
33507
33703
|
status: 'pending';
|
|
33508
33704
|
result: null;
|
|
33509
33705
|
error: null;
|
|
33510
|
-
action_type: '
|
|
33706
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
33511
33707
|
} | {
|
|
33512
33708
|
/** The ID of the action attempt. */
|
|
33513
33709
|
action_attempt_id: string;
|
|
33514
33710
|
status: 'success';
|
|
33515
33711
|
error: null;
|
|
33516
|
-
action_type: '
|
|
33712
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
33517
33713
|
result: {
|
|
33518
|
-
/** Snapshot of
|
|
33714
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
33519
33715
|
acs_credential_on_encoder: {
|
|
33520
33716
|
/** Date and time the credential was created. */
|
|
33521
33717
|
created_at: string | null;
|
|
@@ -33668,7 +33864,7 @@ interface Routes {
|
|
|
33668
33864
|
action_attempt_id: string;
|
|
33669
33865
|
status: 'error';
|
|
33670
33866
|
result: null;
|
|
33671
|
-
action_type: '
|
|
33867
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
33672
33868
|
error: {
|
|
33673
33869
|
type: 'uncategorized_error';
|
|
33674
33870
|
message: string;
|
|
@@ -33685,13 +33881,13 @@ interface Routes {
|
|
|
33685
33881
|
status: 'pending';
|
|
33686
33882
|
result: null;
|
|
33687
33883
|
error: null;
|
|
33688
|
-
action_type: '
|
|
33884
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
33689
33885
|
} | {
|
|
33690
33886
|
/** The ID of the action attempt. */
|
|
33691
33887
|
action_attempt_id: string;
|
|
33692
33888
|
status: 'success';
|
|
33693
33889
|
error: null;
|
|
33694
|
-
action_type: '
|
|
33890
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
33695
33891
|
/** Means by which a user gains access at an entrance.
|
|
33696
33892
|
|
|
33697
33893
|
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. */
|
|
@@ -33815,7 +34011,7 @@ interface Routes {
|
|
|
33815
34011
|
action_attempt_id: string;
|
|
33816
34012
|
status: 'error';
|
|
33817
34013
|
result: null;
|
|
33818
|
-
action_type: '
|
|
34014
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
33819
34015
|
error: {
|
|
33820
34016
|
type: 'uncategorized_error';
|
|
33821
34017
|
message: string;
|
|
@@ -34378,15 +34574,15 @@ interface Routes {
|
|
|
34378
34574
|
status: 'pending';
|
|
34379
34575
|
result: null;
|
|
34380
34576
|
error: null;
|
|
34381
|
-
action_type: '
|
|
34577
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
34382
34578
|
} | {
|
|
34383
34579
|
/** The ID of the action attempt. */
|
|
34384
34580
|
action_attempt_id: string;
|
|
34385
34581
|
status: 'success';
|
|
34386
34582
|
error: null;
|
|
34387
|
-
action_type: '
|
|
34583
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
34388
34584
|
result: {
|
|
34389
|
-
/** Snapshot of
|
|
34585
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
34390
34586
|
acs_credential_on_encoder: {
|
|
34391
34587
|
/** Date and time the credential was created. */
|
|
34392
34588
|
created_at: string | null;
|
|
@@ -34539,7 +34735,7 @@ interface Routes {
|
|
|
34539
34735
|
action_attempt_id: string;
|
|
34540
34736
|
status: 'error';
|
|
34541
34737
|
result: null;
|
|
34542
|
-
action_type: '
|
|
34738
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
34543
34739
|
error: {
|
|
34544
34740
|
type: 'uncategorized_error';
|
|
34545
34741
|
message: string;
|
|
@@ -34556,13 +34752,13 @@ interface Routes {
|
|
|
34556
34752
|
status: 'pending';
|
|
34557
34753
|
result: null;
|
|
34558
34754
|
error: null;
|
|
34559
|
-
action_type: '
|
|
34755
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
34560
34756
|
} | {
|
|
34561
34757
|
/** The ID of the action attempt. */
|
|
34562
34758
|
action_attempt_id: string;
|
|
34563
34759
|
status: 'success';
|
|
34564
34760
|
error: null;
|
|
34565
|
-
action_type: '
|
|
34761
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
34566
34762
|
/** Means by which a user gains access at an entrance.
|
|
34567
34763
|
|
|
34568
34764
|
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. */
|
|
@@ -34686,7 +34882,7 @@ interface Routes {
|
|
|
34686
34882
|
action_attempt_id: string;
|
|
34687
34883
|
status: 'error';
|
|
34688
34884
|
result: null;
|
|
34689
|
-
action_type: '
|
|
34885
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
34690
34886
|
error: {
|
|
34691
34887
|
type: 'uncategorized_error';
|
|
34692
34888
|
message: string;
|
|
@@ -35552,6 +35748,7 @@ interface Routes {
|
|
|
35552
35748
|
allowed_acs_entrance_ids?: string[];
|
|
35553
35749
|
/** Visionline-specific metadata for the new credential. */
|
|
35554
35750
|
visionline_metadata?: {
|
|
35751
|
+
/** DEPRECATED: DO NOT USE */
|
|
35555
35752
|
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
35556
35753
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
35557
35754
|
card_function_type?: 'guest' | 'staff';
|
|
@@ -36178,13 +36375,15 @@ interface Routes {
|
|
|
36178
36375
|
};
|
|
36179
36376
|
};
|
|
36180
36377
|
};
|
|
36181
|
-
'/acs/encoders/
|
|
36182
|
-
route: '/acs/encoders/
|
|
36378
|
+
'/acs/encoders/encode_credential': {
|
|
36379
|
+
route: '/acs/encoders/encode_credential';
|
|
36183
36380
|
method: 'POST';
|
|
36184
36381
|
queryParams: {};
|
|
36185
36382
|
jsonBody: {};
|
|
36186
36383
|
commonParams: {
|
|
36384
|
+
/** ID of the encoder to use for the encoding. */
|
|
36187
36385
|
device_id: string;
|
|
36386
|
+
/** ID of the acs_credential to encode on a physical card. */
|
|
36188
36387
|
acs_credential_id: string;
|
|
36189
36388
|
};
|
|
36190
36389
|
formData: {};
|
|
@@ -36243,15 +36442,15 @@ interface Routes {
|
|
|
36243
36442
|
status: 'pending';
|
|
36244
36443
|
result: null;
|
|
36245
36444
|
error: null;
|
|
36246
|
-
action_type: '
|
|
36445
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
36247
36446
|
} | {
|
|
36248
36447
|
/** The ID of the action attempt. */
|
|
36249
36448
|
action_attempt_id: string;
|
|
36250
36449
|
status: 'success';
|
|
36251
36450
|
error: null;
|
|
36252
|
-
action_type: '
|
|
36451
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
36253
36452
|
result: {
|
|
36254
|
-
/** Snapshot of
|
|
36453
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
36255
36454
|
acs_credential_on_encoder: {
|
|
36256
36455
|
/** Date and time the credential was created. */
|
|
36257
36456
|
created_at: string | null;
|
|
@@ -36404,7 +36603,7 @@ interface Routes {
|
|
|
36404
36603
|
action_attempt_id: string;
|
|
36405
36604
|
status: 'error';
|
|
36406
36605
|
result: null;
|
|
36407
|
-
action_type: '
|
|
36606
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
36408
36607
|
error: {
|
|
36409
36608
|
type: 'uncategorized_error';
|
|
36410
36609
|
message: string;
|
|
@@ -36421,13 +36620,13 @@ interface Routes {
|
|
|
36421
36620
|
status: 'pending';
|
|
36422
36621
|
result: null;
|
|
36423
36622
|
error: null;
|
|
36424
|
-
action_type: '
|
|
36623
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
36425
36624
|
} | {
|
|
36426
36625
|
/** The ID of the action attempt. */
|
|
36427
36626
|
action_attempt_id: string;
|
|
36428
36627
|
status: 'success';
|
|
36429
36628
|
error: null;
|
|
36430
|
-
action_type: '
|
|
36629
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
36431
36630
|
/** Means by which a user gains access at an entrance.
|
|
36432
36631
|
|
|
36433
36632
|
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. */
|
|
@@ -36551,7 +36750,7 @@ interface Routes {
|
|
|
36551
36750
|
action_attempt_id: string;
|
|
36552
36751
|
status: 'error';
|
|
36553
36752
|
result: null;
|
|
36554
|
-
action_type: '
|
|
36753
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
36555
36754
|
error: {
|
|
36556
36755
|
type: 'uncategorized_error';
|
|
36557
36756
|
message: string;
|
|
@@ -36934,7 +37133,7 @@ interface Routes {
|
|
|
36934
37133
|
/** Unique identifier for the device. */
|
|
36935
37134
|
device_id: string;
|
|
36936
37135
|
/** Type of the device. */
|
|
36937
|
-
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';
|
|
37136
|
+
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');
|
|
36938
37137
|
/** Optional nickname to describe the device, settable through Seam */
|
|
36939
37138
|
nickname?: string | undefined;
|
|
36940
37139
|
/** 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. */
|
|
@@ -37241,6 +37440,9 @@ interface Routes {
|
|
|
37241
37440
|
gadget_id: string;
|
|
37242
37441
|
_member_group_id?: string | undefined;
|
|
37243
37442
|
} | undefined;
|
|
37443
|
+
assa_abloy_vostio_metadata?: {
|
|
37444
|
+
encoder_id: string;
|
|
37445
|
+
} | undefined;
|
|
37244
37446
|
}) & ({
|
|
37245
37447
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
37246
37448
|
code_constraints?: (Array<{
|
|
@@ -37391,13 +37593,15 @@ interface Routes {
|
|
|
37391
37593
|
}>;
|
|
37392
37594
|
};
|
|
37393
37595
|
};
|
|
37394
|
-
'/acs/encoders/
|
|
37395
|
-
route: '/acs/encoders/
|
|
37596
|
+
'/acs/encoders/scan_credential': {
|
|
37597
|
+
route: '/acs/encoders/scan_credential';
|
|
37396
37598
|
method: 'POST';
|
|
37397
37599
|
queryParams: {};
|
|
37398
37600
|
jsonBody: {};
|
|
37399
37601
|
commonParams: {
|
|
37602
|
+
/** ID of the acs_system the encoder belongs to. */
|
|
37400
37603
|
acs_system_id: string;
|
|
37604
|
+
/** ID of the encoder to use for the scan. */
|
|
37401
37605
|
device_id: string;
|
|
37402
37606
|
};
|
|
37403
37607
|
formData: {};
|
|
@@ -37456,15 +37660,15 @@ interface Routes {
|
|
|
37456
37660
|
status: 'pending';
|
|
37457
37661
|
result: null;
|
|
37458
37662
|
error: null;
|
|
37459
|
-
action_type: '
|
|
37663
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
37460
37664
|
} | {
|
|
37461
37665
|
/** The ID of the action attempt. */
|
|
37462
37666
|
action_attempt_id: string;
|
|
37463
37667
|
status: 'success';
|
|
37464
37668
|
error: null;
|
|
37465
|
-
action_type: '
|
|
37669
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
37466
37670
|
result: {
|
|
37467
|
-
/** Snapshot of
|
|
37671
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
37468
37672
|
acs_credential_on_encoder: {
|
|
37469
37673
|
/** Date and time the credential was created. */
|
|
37470
37674
|
created_at: string | null;
|
|
@@ -37617,7 +37821,7 @@ interface Routes {
|
|
|
37617
37821
|
action_attempt_id: string;
|
|
37618
37822
|
status: 'error';
|
|
37619
37823
|
result: null;
|
|
37620
|
-
action_type: '
|
|
37824
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
37621
37825
|
error: {
|
|
37622
37826
|
type: 'uncategorized_error';
|
|
37623
37827
|
message: string;
|
|
@@ -37634,13 +37838,13 @@ interface Routes {
|
|
|
37634
37838
|
status: 'pending';
|
|
37635
37839
|
result: null;
|
|
37636
37840
|
error: null;
|
|
37637
|
-
action_type: '
|
|
37841
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
37638
37842
|
} | {
|
|
37639
37843
|
/** The ID of the action attempt. */
|
|
37640
37844
|
action_attempt_id: string;
|
|
37641
37845
|
status: 'success';
|
|
37642
37846
|
error: null;
|
|
37643
|
-
action_type: '
|
|
37847
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
37644
37848
|
/** Means by which a user gains access at an entrance.
|
|
37645
37849
|
|
|
37646
37850
|
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. */
|
|
@@ -37764,7 +37968,7 @@ interface Routes {
|
|
|
37764
37968
|
action_attempt_id: string;
|
|
37765
37969
|
status: 'error';
|
|
37766
37970
|
result: null;
|
|
37767
|
-
action_type: '
|
|
37971
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
37768
37972
|
error: {
|
|
37769
37973
|
type: 'uncategorized_error';
|
|
37770
37974
|
message: string;
|
|
@@ -39406,15 +39610,15 @@ interface Routes {
|
|
|
39406
39610
|
status: 'pending';
|
|
39407
39611
|
result: null;
|
|
39408
39612
|
error: null;
|
|
39409
|
-
action_type: '
|
|
39613
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
39410
39614
|
} | {
|
|
39411
39615
|
/** The ID of the action attempt. */
|
|
39412
39616
|
action_attempt_id: string;
|
|
39413
39617
|
status: 'success';
|
|
39414
39618
|
error: null;
|
|
39415
|
-
action_type: '
|
|
39619
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
39416
39620
|
result: {
|
|
39417
|
-
/** Snapshot of
|
|
39621
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
39418
39622
|
acs_credential_on_encoder: {
|
|
39419
39623
|
/** Date and time the credential was created. */
|
|
39420
39624
|
created_at: string | null;
|
|
@@ -39567,7 +39771,7 @@ interface Routes {
|
|
|
39567
39771
|
action_attempt_id: string;
|
|
39568
39772
|
status: 'error';
|
|
39569
39773
|
result: null;
|
|
39570
|
-
action_type: '
|
|
39774
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
39571
39775
|
error: {
|
|
39572
39776
|
type: 'uncategorized_error';
|
|
39573
39777
|
message: string;
|
|
@@ -39584,13 +39788,13 @@ interface Routes {
|
|
|
39584
39788
|
status: 'pending';
|
|
39585
39789
|
result: null;
|
|
39586
39790
|
error: null;
|
|
39587
|
-
action_type: '
|
|
39791
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
39588
39792
|
} | {
|
|
39589
39793
|
/** The ID of the action attempt. */
|
|
39590
39794
|
action_attempt_id: string;
|
|
39591
39795
|
status: 'success';
|
|
39592
39796
|
error: null;
|
|
39593
|
-
action_type: '
|
|
39797
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
39594
39798
|
/** Means by which a user gains access at an entrance.
|
|
39595
39799
|
|
|
39596
39800
|
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. */
|
|
@@ -39714,7 +39918,7 @@ interface Routes {
|
|
|
39714
39918
|
action_attempt_id: string;
|
|
39715
39919
|
status: 'error';
|
|
39716
39920
|
result: null;
|
|
39717
|
-
action_type: '
|
|
39921
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
39718
39922
|
error: {
|
|
39719
39923
|
type: 'uncategorized_error';
|
|
39720
39924
|
message: string;
|
|
@@ -40139,15 +40343,15 @@ interface Routes {
|
|
|
40139
40343
|
status: 'pending';
|
|
40140
40344
|
result: null;
|
|
40141
40345
|
error: null;
|
|
40142
|
-
action_type: '
|
|
40346
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
40143
40347
|
} | {
|
|
40144
40348
|
/** The ID of the action attempt. */
|
|
40145
40349
|
action_attempt_id: string;
|
|
40146
40350
|
status: 'success';
|
|
40147
40351
|
error: null;
|
|
40148
|
-
action_type: '
|
|
40352
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
40149
40353
|
result: {
|
|
40150
|
-
/** Snapshot of
|
|
40354
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
40151
40355
|
acs_credential_on_encoder: {
|
|
40152
40356
|
/** Date and time the credential was created. */
|
|
40153
40357
|
created_at: string | null;
|
|
@@ -40300,7 +40504,7 @@ interface Routes {
|
|
|
40300
40504
|
action_attempt_id: string;
|
|
40301
40505
|
status: 'error';
|
|
40302
40506
|
result: null;
|
|
40303
|
-
action_type: '
|
|
40507
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
40304
40508
|
error: {
|
|
40305
40509
|
type: 'uncategorized_error';
|
|
40306
40510
|
message: string;
|
|
@@ -40317,13 +40521,13 @@ interface Routes {
|
|
|
40317
40521
|
status: 'pending';
|
|
40318
40522
|
result: null;
|
|
40319
40523
|
error: null;
|
|
40320
|
-
action_type: '
|
|
40524
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
40321
40525
|
} | {
|
|
40322
40526
|
/** The ID of the action attempt. */
|
|
40323
40527
|
action_attempt_id: string;
|
|
40324
40528
|
status: 'success';
|
|
40325
40529
|
error: null;
|
|
40326
|
-
action_type: '
|
|
40530
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
40327
40531
|
/** Means by which a user gains access at an entrance.
|
|
40328
40532
|
|
|
40329
40533
|
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. */
|
|
@@ -40447,7 +40651,7 @@ interface Routes {
|
|
|
40447
40651
|
action_attempt_id: string;
|
|
40448
40652
|
status: 'error';
|
|
40449
40653
|
result: null;
|
|
40450
|
-
action_type: '
|
|
40654
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
40451
40655
|
error: {
|
|
40452
40656
|
type: 'uncategorized_error';
|
|
40453
40657
|
message: string;
|
|
@@ -41248,7 +41452,7 @@ interface Routes {
|
|
|
41248
41452
|
/** Unique identifier for the device. */
|
|
41249
41453
|
device_id: string;
|
|
41250
41454
|
/** Type of the device. */
|
|
41251
|
-
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';
|
|
41455
|
+
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');
|
|
41252
41456
|
/** Optional nickname to describe the device, settable through Seam */
|
|
41253
41457
|
nickname?: string | undefined;
|
|
41254
41458
|
/** 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. */
|
|
@@ -41555,6 +41759,9 @@ interface Routes {
|
|
|
41555
41759
|
gadget_id: string;
|
|
41556
41760
|
_member_group_id?: string | undefined;
|
|
41557
41761
|
} | undefined;
|
|
41762
|
+
assa_abloy_vostio_metadata?: {
|
|
41763
|
+
encoder_id: string;
|
|
41764
|
+
} | undefined;
|
|
41558
41765
|
}) & ({
|
|
41559
41766
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
41560
41767
|
code_constraints?: (Array<{
|
|
@@ -41715,8 +41922,8 @@ interface Routes {
|
|
|
41715
41922
|
connected_account_id?: string | undefined;
|
|
41716
41923
|
connected_account_ids?: string[] | undefined;
|
|
41717
41924
|
connect_webview_id?: string | undefined;
|
|
41718
|
-
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;
|
|
41719
|
-
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;
|
|
41925
|
+
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;
|
|
41926
|
+
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;
|
|
41720
41927
|
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;
|
|
41721
41928
|
device_ids?: string[] | undefined;
|
|
41722
41929
|
limit?: number;
|
|
@@ -41732,7 +41939,7 @@ interface Routes {
|
|
|
41732
41939
|
/** Unique identifier for the device. */
|
|
41733
41940
|
device_id: string;
|
|
41734
41941
|
/** Type of the device. */
|
|
41735
|
-
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';
|
|
41942
|
+
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');
|
|
41736
41943
|
/** Optional nickname to describe the device, settable through Seam */
|
|
41737
41944
|
nickname?: string | undefined;
|
|
41738
41945
|
/** 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. */
|
|
@@ -42039,6 +42246,9 @@ interface Routes {
|
|
|
42039
42246
|
gadget_id: string;
|
|
42040
42247
|
_member_group_id?: string | undefined;
|
|
42041
42248
|
} | undefined;
|
|
42249
|
+
assa_abloy_vostio_metadata?: {
|
|
42250
|
+
encoder_id: string;
|
|
42251
|
+
} | undefined;
|
|
42042
42252
|
}) & ({
|
|
42043
42253
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
42044
42254
|
code_constraints?: (Array<{
|
|
@@ -42266,7 +42476,7 @@ interface Routes {
|
|
|
42266
42476
|
/** Unique identifier for the device. */
|
|
42267
42477
|
device_id: string;
|
|
42268
42478
|
/** Type of the device. */
|
|
42269
|
-
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';
|
|
42479
|
+
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');
|
|
42270
42480
|
/** Unique identifier for the account associated with the device. */
|
|
42271
42481
|
connected_account_id: string;
|
|
42272
42482
|
/** Location information for the device. */
|
|
@@ -42372,8 +42582,8 @@ interface Routes {
|
|
|
42372
42582
|
connected_account_id?: string | undefined;
|
|
42373
42583
|
connected_account_ids?: string[] | undefined;
|
|
42374
42584
|
connect_webview_id?: string | undefined;
|
|
42375
|
-
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;
|
|
42376
|
-
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;
|
|
42585
|
+
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;
|
|
42586
|
+
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;
|
|
42377
42587
|
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;
|
|
42378
42588
|
device_ids?: string[] | undefined;
|
|
42379
42589
|
limit?: number;
|
|
@@ -42389,7 +42599,7 @@ interface Routes {
|
|
|
42389
42599
|
/** Unique identifier for the device. */
|
|
42390
42600
|
device_id: string;
|
|
42391
42601
|
/** Type of the device. */
|
|
42392
|
-
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';
|
|
42602
|
+
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');
|
|
42393
42603
|
/** Unique identifier for the account associated with the device. */
|
|
42394
42604
|
connected_account_id: string;
|
|
42395
42605
|
/** Location information for the device. */
|
|
@@ -42619,7 +42829,7 @@ interface Routes {
|
|
|
42619
42829
|
/** Unique identifier for the device. */
|
|
42620
42830
|
device_id: string;
|
|
42621
42831
|
/** Type of the device. */
|
|
42622
|
-
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';
|
|
42832
|
+
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');
|
|
42623
42833
|
/** Optional nickname to describe the device, settable through Seam */
|
|
42624
42834
|
nickname?: string | undefined;
|
|
42625
42835
|
/** 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. */
|
|
@@ -42926,6 +43136,9 @@ interface Routes {
|
|
|
42926
43136
|
gadget_id: string;
|
|
42927
43137
|
_member_group_id?: string | undefined;
|
|
42928
43138
|
} | undefined;
|
|
43139
|
+
assa_abloy_vostio_metadata?: {
|
|
43140
|
+
encoder_id: string;
|
|
43141
|
+
} | undefined;
|
|
42929
43142
|
}) & ({
|
|
42930
43143
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
42931
43144
|
code_constraints?: (Array<{
|
|
@@ -43078,7 +43291,7 @@ interface Routes {
|
|
|
43078
43291
|
/** Unique identifier for the device. */
|
|
43079
43292
|
device_id: string;
|
|
43080
43293
|
/** Type of the device. */
|
|
43081
|
-
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';
|
|
43294
|
+
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');
|
|
43082
43295
|
/** Optional nickname to describe the device, settable through Seam */
|
|
43083
43296
|
nickname?: string | undefined;
|
|
43084
43297
|
/** 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. */
|
|
@@ -43385,6 +43598,9 @@ interface Routes {
|
|
|
43385
43598
|
gadget_id: string;
|
|
43386
43599
|
_member_group_id?: string | undefined;
|
|
43387
43600
|
} | undefined;
|
|
43601
|
+
assa_abloy_vostio_metadata?: {
|
|
43602
|
+
encoder_id: string;
|
|
43603
|
+
} | undefined;
|
|
43388
43604
|
}) & ({
|
|
43389
43605
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
43390
43606
|
code_constraints?: (Array<{
|
|
@@ -43545,8 +43761,8 @@ interface Routes {
|
|
|
43545
43761
|
connected_account_id?: string | undefined;
|
|
43546
43762
|
connected_account_ids?: string[] | undefined;
|
|
43547
43763
|
connect_webview_id?: string | undefined;
|
|
43548
|
-
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;
|
|
43549
|
-
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;
|
|
43764
|
+
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;
|
|
43765
|
+
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;
|
|
43550
43766
|
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;
|
|
43551
43767
|
device_ids?: string[] | undefined;
|
|
43552
43768
|
limit?: number;
|
|
@@ -43562,7 +43778,7 @@ interface Routes {
|
|
|
43562
43778
|
/** Unique identifier for the device. */
|
|
43563
43779
|
device_id: string;
|
|
43564
43780
|
/** Type of the device. */
|
|
43565
|
-
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';
|
|
43781
|
+
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');
|
|
43566
43782
|
/** Optional nickname to describe the device, settable through Seam */
|
|
43567
43783
|
nickname?: string | undefined;
|
|
43568
43784
|
/** 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. */
|
|
@@ -43869,6 +44085,9 @@ interface Routes {
|
|
|
43869
44085
|
gadget_id: string;
|
|
43870
44086
|
_member_group_id?: string | undefined;
|
|
43871
44087
|
} | undefined;
|
|
44088
|
+
assa_abloy_vostio_metadata?: {
|
|
44089
|
+
encoder_id: string;
|
|
44090
|
+
} | undefined;
|
|
43872
44091
|
}) & ({
|
|
43873
44092
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
43874
44093
|
code_constraints?: (Array<{
|
|
@@ -44021,7 +44240,7 @@ interface Routes {
|
|
|
44021
44240
|
/** Unique identifier for the device. */
|
|
44022
44241
|
device_id: string;
|
|
44023
44242
|
/** Type of the device. */
|
|
44024
|
-
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';
|
|
44243
|
+
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');
|
|
44025
44244
|
/** Optional nickname to describe the device, settable through Seam */
|
|
44026
44245
|
nickname?: string | undefined;
|
|
44027
44246
|
/** 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. */
|
|
@@ -44328,6 +44547,9 @@ interface Routes {
|
|
|
44328
44547
|
gadget_id: string;
|
|
44329
44548
|
_member_group_id?: string | undefined;
|
|
44330
44549
|
} | undefined;
|
|
44550
|
+
assa_abloy_vostio_metadata?: {
|
|
44551
|
+
encoder_id: string;
|
|
44552
|
+
} | undefined;
|
|
44331
44553
|
}) & ({
|
|
44332
44554
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
44333
44555
|
code_constraints?: (Array<{
|
|
@@ -44543,15 +44765,15 @@ interface Routes {
|
|
|
44543
44765
|
status: 'pending';
|
|
44544
44766
|
result: null;
|
|
44545
44767
|
error: null;
|
|
44546
|
-
action_type: '
|
|
44768
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
44547
44769
|
} | {
|
|
44548
44770
|
/** The ID of the action attempt. */
|
|
44549
44771
|
action_attempt_id: string;
|
|
44550
44772
|
status: 'success';
|
|
44551
44773
|
error: null;
|
|
44552
|
-
action_type: '
|
|
44774
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
44553
44775
|
result: {
|
|
44554
|
-
/** Snapshot of
|
|
44776
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
44555
44777
|
acs_credential_on_encoder: {
|
|
44556
44778
|
/** Date and time the credential was created. */
|
|
44557
44779
|
created_at: string | null;
|
|
@@ -44704,7 +44926,7 @@ interface Routes {
|
|
|
44704
44926
|
action_attempt_id: string;
|
|
44705
44927
|
status: 'error';
|
|
44706
44928
|
result: null;
|
|
44707
|
-
action_type: '
|
|
44929
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
44708
44930
|
error: {
|
|
44709
44931
|
type: 'uncategorized_error';
|
|
44710
44932
|
message: string;
|
|
@@ -44721,13 +44943,13 @@ interface Routes {
|
|
|
44721
44943
|
status: 'pending';
|
|
44722
44944
|
result: null;
|
|
44723
44945
|
error: null;
|
|
44724
|
-
action_type: '
|
|
44946
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
44725
44947
|
} | {
|
|
44726
44948
|
/** The ID of the action attempt. */
|
|
44727
44949
|
action_attempt_id: string;
|
|
44728
44950
|
status: 'success';
|
|
44729
44951
|
error: null;
|
|
44730
|
-
action_type: '
|
|
44952
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
44731
44953
|
/** Means by which a user gains access at an entrance.
|
|
44732
44954
|
|
|
44733
44955
|
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. */
|
|
@@ -44851,7 +45073,7 @@ interface Routes {
|
|
|
44851
45073
|
action_attempt_id: string;
|
|
44852
45074
|
status: 'error';
|
|
44853
45075
|
result: null;
|
|
44854
|
-
action_type: '
|
|
45076
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
44855
45077
|
error: {
|
|
44856
45078
|
type: 'uncategorized_error';
|
|
44857
45079
|
message: string;
|
|
@@ -45277,15 +45499,15 @@ interface Routes {
|
|
|
45277
45499
|
status: 'pending';
|
|
45278
45500
|
result: null;
|
|
45279
45501
|
error: null;
|
|
45280
|
-
action_type: '
|
|
45502
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
45281
45503
|
} | {
|
|
45282
45504
|
/** The ID of the action attempt. */
|
|
45283
45505
|
action_attempt_id: string;
|
|
45284
45506
|
status: 'success';
|
|
45285
45507
|
error: null;
|
|
45286
|
-
action_type: '
|
|
45508
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
45287
45509
|
result: {
|
|
45288
|
-
/** Snapshot of
|
|
45510
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
45289
45511
|
acs_credential_on_encoder: {
|
|
45290
45512
|
/** Date and time the credential was created. */
|
|
45291
45513
|
created_at: string | null;
|
|
@@ -45438,7 +45660,7 @@ interface Routes {
|
|
|
45438
45660
|
action_attempt_id: string;
|
|
45439
45661
|
status: 'error';
|
|
45440
45662
|
result: null;
|
|
45441
|
-
action_type: '
|
|
45663
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
45442
45664
|
error: {
|
|
45443
45665
|
type: 'uncategorized_error';
|
|
45444
45666
|
message: string;
|
|
@@ -45455,13 +45677,13 @@ interface Routes {
|
|
|
45455
45677
|
status: 'pending';
|
|
45456
45678
|
result: null;
|
|
45457
45679
|
error: null;
|
|
45458
|
-
action_type: '
|
|
45680
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
45459
45681
|
} | {
|
|
45460
45682
|
/** The ID of the action attempt. */
|
|
45461
45683
|
action_attempt_id: string;
|
|
45462
45684
|
status: 'success';
|
|
45463
45685
|
error: null;
|
|
45464
|
-
action_type: '
|
|
45686
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
45465
45687
|
/** Means by which a user gains access at an entrance.
|
|
45466
45688
|
|
|
45467
45689
|
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. */
|
|
@@ -45585,7 +45807,7 @@ interface Routes {
|
|
|
45585
45807
|
action_attempt_id: string;
|
|
45586
45808
|
status: 'error';
|
|
45587
45809
|
result: null;
|
|
45588
|
-
action_type: '
|
|
45810
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
45589
45811
|
error: {
|
|
45590
45812
|
type: 'uncategorized_error';
|
|
45591
45813
|
message: string;
|
|
@@ -45990,8 +46212,8 @@ interface Routes {
|
|
|
45990
46212
|
connected_account_id?: string | undefined;
|
|
45991
46213
|
connected_account_ids?: string[] | undefined;
|
|
45992
46214
|
connect_webview_id?: string | undefined;
|
|
45993
|
-
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;
|
|
45994
|
-
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;
|
|
46215
|
+
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;
|
|
46216
|
+
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;
|
|
45995
46217
|
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;
|
|
45996
46218
|
device_ids?: string[] | undefined;
|
|
45997
46219
|
limit?: number;
|
|
@@ -46007,7 +46229,7 @@ interface Routes {
|
|
|
46007
46229
|
/** Unique identifier for the device. */
|
|
46008
46230
|
device_id: string;
|
|
46009
46231
|
/** Type of the device. */
|
|
46010
|
-
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';
|
|
46232
|
+
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');
|
|
46011
46233
|
/** Optional nickname to describe the device, settable through Seam */
|
|
46012
46234
|
nickname?: string | undefined;
|
|
46013
46235
|
/** 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. */
|
|
@@ -46314,6 +46536,9 @@ interface Routes {
|
|
|
46314
46536
|
gadget_id: string;
|
|
46315
46537
|
_member_group_id?: string | undefined;
|
|
46316
46538
|
} | undefined;
|
|
46539
|
+
assa_abloy_vostio_metadata?: {
|
|
46540
|
+
encoder_id: string;
|
|
46541
|
+
} | undefined;
|
|
46317
46542
|
}) & ({
|
|
46318
46543
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
46319
46544
|
code_constraints?: (Array<{
|
|
@@ -46466,7 +46691,7 @@ interface Routes {
|
|
|
46466
46691
|
/** Unique identifier for the device. */
|
|
46467
46692
|
device_id: string;
|
|
46468
46693
|
/** Type of the device. */
|
|
46469
|
-
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';
|
|
46694
|
+
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');
|
|
46470
46695
|
/** Optional nickname to describe the device, settable through Seam */
|
|
46471
46696
|
nickname?: string | undefined;
|
|
46472
46697
|
/** 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. */
|
|
@@ -46773,6 +46998,9 @@ interface Routes {
|
|
|
46773
46998
|
gadget_id: string;
|
|
46774
46999
|
_member_group_id?: string | undefined;
|
|
46775
47000
|
} | undefined;
|
|
47001
|
+
assa_abloy_vostio_metadata?: {
|
|
47002
|
+
encoder_id: string;
|
|
47003
|
+
} | undefined;
|
|
46776
47004
|
}) & ({
|
|
46777
47005
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
46778
47006
|
code_constraints?: (Array<{
|
|
@@ -46993,15 +47221,15 @@ interface Routes {
|
|
|
46993
47221
|
status: 'pending';
|
|
46994
47222
|
result: null;
|
|
46995
47223
|
error: null;
|
|
46996
|
-
action_type: '
|
|
47224
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
46997
47225
|
} | {
|
|
46998
47226
|
/** The ID of the action attempt. */
|
|
46999
47227
|
action_attempt_id: string;
|
|
47000
47228
|
status: 'success';
|
|
47001
47229
|
error: null;
|
|
47002
|
-
action_type: '
|
|
47230
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47003
47231
|
result: {
|
|
47004
|
-
/** Snapshot of
|
|
47232
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
47005
47233
|
acs_credential_on_encoder: {
|
|
47006
47234
|
/** Date and time the credential was created. */
|
|
47007
47235
|
created_at: string | null;
|
|
@@ -47154,7 +47382,7 @@ interface Routes {
|
|
|
47154
47382
|
action_attempt_id: string;
|
|
47155
47383
|
status: 'error';
|
|
47156
47384
|
result: null;
|
|
47157
|
-
action_type: '
|
|
47385
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47158
47386
|
error: {
|
|
47159
47387
|
type: 'uncategorized_error';
|
|
47160
47388
|
message: string;
|
|
@@ -47171,13 +47399,13 @@ interface Routes {
|
|
|
47171
47399
|
status: 'pending';
|
|
47172
47400
|
result: null;
|
|
47173
47401
|
error: null;
|
|
47174
|
-
action_type: '
|
|
47402
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47175
47403
|
} | {
|
|
47176
47404
|
/** The ID of the action attempt. */
|
|
47177
47405
|
action_attempt_id: string;
|
|
47178
47406
|
status: 'success';
|
|
47179
47407
|
error: null;
|
|
47180
|
-
action_type: '
|
|
47408
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47181
47409
|
/** Means by which a user gains access at an entrance.
|
|
47182
47410
|
|
|
47183
47411
|
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. */
|
|
@@ -47301,7 +47529,7 @@ interface Routes {
|
|
|
47301
47529
|
action_attempt_id: string;
|
|
47302
47530
|
status: 'error';
|
|
47303
47531
|
result: null;
|
|
47304
|
-
action_type: '
|
|
47532
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47305
47533
|
error: {
|
|
47306
47534
|
type: 'uncategorized_error';
|
|
47307
47535
|
message: string;
|
|
@@ -47737,15 +47965,15 @@ interface Routes {
|
|
|
47737
47965
|
status: 'pending';
|
|
47738
47966
|
result: null;
|
|
47739
47967
|
error: null;
|
|
47740
|
-
action_type: '
|
|
47968
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47741
47969
|
} | {
|
|
47742
47970
|
/** The ID of the action attempt. */
|
|
47743
47971
|
action_attempt_id: string;
|
|
47744
47972
|
status: 'success';
|
|
47745
47973
|
error: null;
|
|
47746
|
-
action_type: '
|
|
47974
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47747
47975
|
result: {
|
|
47748
|
-
/** Snapshot of
|
|
47976
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
47749
47977
|
acs_credential_on_encoder: {
|
|
47750
47978
|
/** Date and time the credential was created. */
|
|
47751
47979
|
created_at: string | null;
|
|
@@ -47898,7 +48126,7 @@ interface Routes {
|
|
|
47898
48126
|
action_attempt_id: string;
|
|
47899
48127
|
status: 'error';
|
|
47900
48128
|
result: null;
|
|
47901
|
-
action_type: '
|
|
48129
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47902
48130
|
error: {
|
|
47903
48131
|
type: 'uncategorized_error';
|
|
47904
48132
|
message: string;
|
|
@@ -47915,13 +48143,13 @@ interface Routes {
|
|
|
47915
48143
|
status: 'pending';
|
|
47916
48144
|
result: null;
|
|
47917
48145
|
error: null;
|
|
47918
|
-
action_type: '
|
|
48146
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47919
48147
|
} | {
|
|
47920
48148
|
/** The ID of the action attempt. */
|
|
47921
48149
|
action_attempt_id: string;
|
|
47922
48150
|
status: 'success';
|
|
47923
48151
|
error: null;
|
|
47924
|
-
action_type: '
|
|
48152
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47925
48153
|
/** Means by which a user gains access at an entrance.
|
|
47926
48154
|
|
|
47927
48155
|
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. */
|
|
@@ -48045,7 +48273,7 @@ interface Routes {
|
|
|
48045
48273
|
action_attempt_id: string;
|
|
48046
48274
|
status: 'error';
|
|
48047
48275
|
result: null;
|
|
48048
|
-
action_type: '
|
|
48276
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
48049
48277
|
error: {
|
|
48050
48278
|
type: 'uncategorized_error';
|
|
48051
48279
|
message: string;
|
|
@@ -48520,15 +48748,15 @@ interface Routes {
|
|
|
48520
48748
|
status: 'pending';
|
|
48521
48749
|
result: null;
|
|
48522
48750
|
error: null;
|
|
48523
|
-
action_type: '
|
|
48751
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
48524
48752
|
} | {
|
|
48525
48753
|
/** The ID of the action attempt. */
|
|
48526
48754
|
action_attempt_id: string;
|
|
48527
48755
|
status: 'success';
|
|
48528
48756
|
error: null;
|
|
48529
|
-
action_type: '
|
|
48757
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
48530
48758
|
result: {
|
|
48531
|
-
/** Snapshot of
|
|
48759
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
48532
48760
|
acs_credential_on_encoder: {
|
|
48533
48761
|
/** Date and time the credential was created. */
|
|
48534
48762
|
created_at: string | null;
|
|
@@ -48681,7 +48909,7 @@ interface Routes {
|
|
|
48681
48909
|
action_attempt_id: string;
|
|
48682
48910
|
status: 'error';
|
|
48683
48911
|
result: null;
|
|
48684
|
-
action_type: '
|
|
48912
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
48685
48913
|
error: {
|
|
48686
48914
|
type: 'uncategorized_error';
|
|
48687
48915
|
message: string;
|
|
@@ -48698,13 +48926,13 @@ interface Routes {
|
|
|
48698
48926
|
status: 'pending';
|
|
48699
48927
|
result: null;
|
|
48700
48928
|
error: null;
|
|
48701
|
-
action_type: '
|
|
48929
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
48702
48930
|
} | {
|
|
48703
48931
|
/** The ID of the action attempt. */
|
|
48704
48932
|
action_attempt_id: string;
|
|
48705
48933
|
status: 'success';
|
|
48706
48934
|
error: null;
|
|
48707
|
-
action_type: '
|
|
48935
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
48708
48936
|
/** Means by which a user gains access at an entrance.
|
|
48709
48937
|
|
|
48710
48938
|
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. */
|
|
@@ -48828,7 +49056,7 @@ interface Routes {
|
|
|
48828
49056
|
action_attempt_id: string;
|
|
48829
49057
|
status: 'error';
|
|
48830
49058
|
result: null;
|
|
48831
|
-
action_type: '
|
|
49059
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
48832
49060
|
error: {
|
|
48833
49061
|
type: 'uncategorized_error';
|
|
48834
49062
|
message: string;
|
|
@@ -49436,15 +49664,15 @@ interface Routes {
|
|
|
49436
49664
|
status: 'pending';
|
|
49437
49665
|
result: null;
|
|
49438
49666
|
error: null;
|
|
49439
|
-
action_type: '
|
|
49667
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
49440
49668
|
} | {
|
|
49441
49669
|
/** The ID of the action attempt. */
|
|
49442
49670
|
action_attempt_id: string;
|
|
49443
49671
|
status: 'success';
|
|
49444
49672
|
error: null;
|
|
49445
|
-
action_type: '
|
|
49673
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
49446
49674
|
result: {
|
|
49447
|
-
/** Snapshot of
|
|
49675
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
49448
49676
|
acs_credential_on_encoder: {
|
|
49449
49677
|
/** Date and time the credential was created. */
|
|
49450
49678
|
created_at: string | null;
|
|
@@ -49597,7 +49825,7 @@ interface Routes {
|
|
|
49597
49825
|
action_attempt_id: string;
|
|
49598
49826
|
status: 'error';
|
|
49599
49827
|
result: null;
|
|
49600
|
-
action_type: '
|
|
49828
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
49601
49829
|
error: {
|
|
49602
49830
|
type: 'uncategorized_error';
|
|
49603
49831
|
message: string;
|
|
@@ -49614,13 +49842,13 @@ interface Routes {
|
|
|
49614
49842
|
status: 'pending';
|
|
49615
49843
|
result: null;
|
|
49616
49844
|
error: null;
|
|
49617
|
-
action_type: '
|
|
49845
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
49618
49846
|
} | {
|
|
49619
49847
|
/** The ID of the action attempt. */
|
|
49620
49848
|
action_attempt_id: string;
|
|
49621
49849
|
status: 'success';
|
|
49622
49850
|
error: null;
|
|
49623
|
-
action_type: '
|
|
49851
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
49624
49852
|
/** Means by which a user gains access at an entrance.
|
|
49625
49853
|
|
|
49626
49854
|
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. */
|
|
@@ -49744,7 +49972,7 @@ interface Routes {
|
|
|
49744
49972
|
action_attempt_id: string;
|
|
49745
49973
|
status: 'error';
|
|
49746
49974
|
result: null;
|
|
49747
|
-
action_type: '
|
|
49975
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
49748
49976
|
error: {
|
|
49749
49977
|
type: 'uncategorized_error';
|
|
49750
49978
|
message: string;
|
|
@@ -50172,15 +50400,15 @@ interface Routes {
|
|
|
50172
50400
|
status: 'pending';
|
|
50173
50401
|
result: null;
|
|
50174
50402
|
error: null;
|
|
50175
|
-
action_type: '
|
|
50403
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
50176
50404
|
} | {
|
|
50177
50405
|
/** The ID of the action attempt. */
|
|
50178
50406
|
action_attempt_id: string;
|
|
50179
50407
|
status: 'success';
|
|
50180
50408
|
error: null;
|
|
50181
|
-
action_type: '
|
|
50409
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
50182
50410
|
result: {
|
|
50183
|
-
/** Snapshot of
|
|
50411
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
50184
50412
|
acs_credential_on_encoder: {
|
|
50185
50413
|
/** Date and time the credential was created. */
|
|
50186
50414
|
created_at: string | null;
|
|
@@ -50333,7 +50561,7 @@ interface Routes {
|
|
|
50333
50561
|
action_attempt_id: string;
|
|
50334
50562
|
status: 'error';
|
|
50335
50563
|
result: null;
|
|
50336
|
-
action_type: '
|
|
50564
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
50337
50565
|
error: {
|
|
50338
50566
|
type: 'uncategorized_error';
|
|
50339
50567
|
message: string;
|
|
@@ -50350,13 +50578,13 @@ interface Routes {
|
|
|
50350
50578
|
status: 'pending';
|
|
50351
50579
|
result: null;
|
|
50352
50580
|
error: null;
|
|
50353
|
-
action_type: '
|
|
50581
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
50354
50582
|
} | {
|
|
50355
50583
|
/** The ID of the action attempt. */
|
|
50356
50584
|
action_attempt_id: string;
|
|
50357
50585
|
status: 'success';
|
|
50358
50586
|
error: null;
|
|
50359
|
-
action_type: '
|
|
50587
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
50360
50588
|
/** Means by which a user gains access at an entrance.
|
|
50361
50589
|
|
|
50362
50590
|
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. */
|
|
@@ -50480,7 +50708,7 @@ interface Routes {
|
|
|
50480
50708
|
action_attempt_id: string;
|
|
50481
50709
|
status: 'error';
|
|
50482
50710
|
result: null;
|
|
50483
|
-
action_type: '
|
|
50711
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
50484
50712
|
error: {
|
|
50485
50713
|
type: 'uncategorized_error';
|
|
50486
50714
|
message: string;
|
|
@@ -50888,7 +51116,7 @@ interface Routes {
|
|
|
50888
51116
|
/** Unique identifier for the device. */
|
|
50889
51117
|
device_id: string;
|
|
50890
51118
|
/** Type of the device. */
|
|
50891
|
-
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';
|
|
51119
|
+
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');
|
|
50892
51120
|
/** Optional nickname to describe the device, settable through Seam */
|
|
50893
51121
|
nickname?: string | undefined;
|
|
50894
51122
|
/** 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. */
|
|
@@ -51195,6 +51423,9 @@ interface Routes {
|
|
|
51195
51423
|
gadget_id: string;
|
|
51196
51424
|
_member_group_id?: string | undefined;
|
|
51197
51425
|
} | undefined;
|
|
51426
|
+
assa_abloy_vostio_metadata?: {
|
|
51427
|
+
encoder_id: string;
|
|
51428
|
+
} | undefined;
|
|
51198
51429
|
}) & ({
|
|
51199
51430
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
51200
51431
|
code_constraints?: (Array<{
|
|
@@ -51412,15 +51643,15 @@ interface Routes {
|
|
|
51412
51643
|
status: 'pending';
|
|
51413
51644
|
result: null;
|
|
51414
51645
|
error: null;
|
|
51415
|
-
action_type: '
|
|
51646
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
51416
51647
|
} | {
|
|
51417
51648
|
/** The ID of the action attempt. */
|
|
51418
51649
|
action_attempt_id: string;
|
|
51419
51650
|
status: 'success';
|
|
51420
51651
|
error: null;
|
|
51421
|
-
action_type: '
|
|
51652
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
51422
51653
|
result: {
|
|
51423
|
-
/** Snapshot of
|
|
51654
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
51424
51655
|
acs_credential_on_encoder: {
|
|
51425
51656
|
/** Date and time the credential was created. */
|
|
51426
51657
|
created_at: string | null;
|
|
@@ -51573,7 +51804,7 @@ interface Routes {
|
|
|
51573
51804
|
action_attempt_id: string;
|
|
51574
51805
|
status: 'error';
|
|
51575
51806
|
result: null;
|
|
51576
|
-
action_type: '
|
|
51807
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
51577
51808
|
error: {
|
|
51578
51809
|
type: 'uncategorized_error';
|
|
51579
51810
|
message: string;
|
|
@@ -51590,13 +51821,13 @@ interface Routes {
|
|
|
51590
51821
|
status: 'pending';
|
|
51591
51822
|
result: null;
|
|
51592
51823
|
error: null;
|
|
51593
|
-
action_type: '
|
|
51824
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
51594
51825
|
} | {
|
|
51595
51826
|
/** The ID of the action attempt. */
|
|
51596
51827
|
action_attempt_id: string;
|
|
51597
51828
|
status: 'success';
|
|
51598
51829
|
error: null;
|
|
51599
|
-
action_type: '
|
|
51830
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
51600
51831
|
/** Means by which a user gains access at an entrance.
|
|
51601
51832
|
|
|
51602
51833
|
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. */
|
|
@@ -51720,7 +51951,7 @@ interface Routes {
|
|
|
51720
51951
|
action_attempt_id: string;
|
|
51721
51952
|
status: 'error';
|
|
51722
51953
|
result: null;
|
|
51723
|
-
action_type: '
|
|
51954
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
51724
51955
|
error: {
|
|
51725
51956
|
type: 'uncategorized_error';
|
|
51726
51957
|
message: string;
|
|
@@ -52150,15 +52381,15 @@ interface Routes {
|
|
|
52150
52381
|
status: 'pending';
|
|
52151
52382
|
result: null;
|
|
52152
52383
|
error: null;
|
|
52153
|
-
action_type: '
|
|
52384
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
52154
52385
|
} | {
|
|
52155
52386
|
/** The ID of the action attempt. */
|
|
52156
52387
|
action_attempt_id: string;
|
|
52157
52388
|
status: 'success';
|
|
52158
52389
|
error: null;
|
|
52159
|
-
action_type: '
|
|
52390
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
52160
52391
|
result: {
|
|
52161
|
-
/** Snapshot of
|
|
52392
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
52162
52393
|
acs_credential_on_encoder: {
|
|
52163
52394
|
/** Date and time the credential was created. */
|
|
52164
52395
|
created_at: string | null;
|
|
@@ -52311,7 +52542,7 @@ interface Routes {
|
|
|
52311
52542
|
action_attempt_id: string;
|
|
52312
52543
|
status: 'error';
|
|
52313
52544
|
result: null;
|
|
52314
|
-
action_type: '
|
|
52545
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
52315
52546
|
error: {
|
|
52316
52547
|
type: 'uncategorized_error';
|
|
52317
52548
|
message: string;
|
|
@@ -52328,13 +52559,13 @@ interface Routes {
|
|
|
52328
52559
|
status: 'pending';
|
|
52329
52560
|
result: null;
|
|
52330
52561
|
error: null;
|
|
52331
|
-
action_type: '
|
|
52562
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
52332
52563
|
} | {
|
|
52333
52564
|
/** The ID of the action attempt. */
|
|
52334
52565
|
action_attempt_id: string;
|
|
52335
52566
|
status: 'success';
|
|
52336
52567
|
error: null;
|
|
52337
|
-
action_type: '
|
|
52568
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
52338
52569
|
/** Means by which a user gains access at an entrance.
|
|
52339
52570
|
|
|
52340
52571
|
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. */
|
|
@@ -52458,7 +52689,7 @@ interface Routes {
|
|
|
52458
52689
|
action_attempt_id: string;
|
|
52459
52690
|
status: 'error';
|
|
52460
52691
|
result: null;
|
|
52461
|
-
action_type: '
|
|
52692
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
52462
52693
|
error: {
|
|
52463
52694
|
type: 'uncategorized_error';
|
|
52464
52695
|
message: string;
|
|
@@ -52829,8 +53060,8 @@ interface Routes {
|
|
|
52829
53060
|
connected_account_id?: string | undefined;
|
|
52830
53061
|
connected_account_ids?: string[] | undefined;
|
|
52831
53062
|
connect_webview_id?: string | undefined;
|
|
52832
|
-
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;
|
|
52833
|
-
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;
|
|
53063
|
+
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;
|
|
53064
|
+
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;
|
|
52834
53065
|
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;
|
|
52835
53066
|
device_ids?: string[] | undefined;
|
|
52836
53067
|
limit?: number;
|
|
@@ -52846,7 +53077,7 @@ interface Routes {
|
|
|
52846
53077
|
/** Unique identifier for the device. */
|
|
52847
53078
|
device_id: string;
|
|
52848
53079
|
/** Type of the device. */
|
|
52849
|
-
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';
|
|
53080
|
+
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');
|
|
52850
53081
|
/** Optional nickname to describe the device, settable through Seam */
|
|
52851
53082
|
nickname?: string | undefined;
|
|
52852
53083
|
/** 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. */
|
|
@@ -53153,6 +53384,9 @@ interface Routes {
|
|
|
53153
53384
|
gadget_id: string;
|
|
53154
53385
|
_member_group_id?: string | undefined;
|
|
53155
53386
|
} | undefined;
|
|
53387
|
+
assa_abloy_vostio_metadata?: {
|
|
53388
|
+
encoder_id: string;
|
|
53389
|
+
} | undefined;
|
|
53156
53390
|
}) & ({
|
|
53157
53391
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
53158
53392
|
code_constraints?: (Array<{
|
|
@@ -53305,7 +53539,7 @@ interface Routes {
|
|
|
53305
53539
|
/** Unique identifier for the device. */
|
|
53306
53540
|
device_id: string;
|
|
53307
53541
|
/** Type of the device. */
|
|
53308
|
-
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';
|
|
53542
|
+
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');
|
|
53309
53543
|
/** Optional nickname to describe the device, settable through Seam */
|
|
53310
53544
|
nickname?: string | undefined;
|
|
53311
53545
|
/** 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. */
|
|
@@ -53612,6 +53846,9 @@ interface Routes {
|
|
|
53612
53846
|
gadget_id: string;
|
|
53613
53847
|
_member_group_id?: string | undefined;
|
|
53614
53848
|
} | undefined;
|
|
53849
|
+
assa_abloy_vostio_metadata?: {
|
|
53850
|
+
encoder_id: string;
|
|
53851
|
+
} | undefined;
|
|
53615
53852
|
}) & ({
|
|
53616
53853
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
53617
53854
|
code_constraints?: (Array<{
|
|
@@ -53827,15 +54064,15 @@ interface Routes {
|
|
|
53827
54064
|
status: 'pending';
|
|
53828
54065
|
result: null;
|
|
53829
54066
|
error: null;
|
|
53830
|
-
action_type: '
|
|
54067
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
53831
54068
|
} | {
|
|
53832
54069
|
/** The ID of the action attempt. */
|
|
53833
54070
|
action_attempt_id: string;
|
|
53834
54071
|
status: 'success';
|
|
53835
54072
|
error: null;
|
|
53836
|
-
action_type: '
|
|
54073
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
53837
54074
|
result: {
|
|
53838
|
-
/** Snapshot of
|
|
54075
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
53839
54076
|
acs_credential_on_encoder: {
|
|
53840
54077
|
/** Date and time the credential was created. */
|
|
53841
54078
|
created_at: string | null;
|
|
@@ -53988,7 +54225,7 @@ interface Routes {
|
|
|
53988
54225
|
action_attempt_id: string;
|
|
53989
54226
|
status: 'error';
|
|
53990
54227
|
result: null;
|
|
53991
|
-
action_type: '
|
|
54228
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
53992
54229
|
error: {
|
|
53993
54230
|
type: 'uncategorized_error';
|
|
53994
54231
|
message: string;
|
|
@@ -54005,13 +54242,13 @@ interface Routes {
|
|
|
54005
54242
|
status: 'pending';
|
|
54006
54243
|
result: null;
|
|
54007
54244
|
error: null;
|
|
54008
|
-
action_type: '
|
|
54245
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54009
54246
|
} | {
|
|
54010
54247
|
/** The ID of the action attempt. */
|
|
54011
54248
|
action_attempt_id: string;
|
|
54012
54249
|
status: 'success';
|
|
54013
54250
|
error: null;
|
|
54014
|
-
action_type: '
|
|
54251
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54015
54252
|
/** Means by which a user gains access at an entrance.
|
|
54016
54253
|
|
|
54017
54254
|
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. */
|
|
@@ -54135,7 +54372,7 @@ interface Routes {
|
|
|
54135
54372
|
action_attempt_id: string;
|
|
54136
54373
|
status: 'error';
|
|
54137
54374
|
result: null;
|
|
54138
|
-
action_type: '
|
|
54375
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54139
54376
|
error: {
|
|
54140
54377
|
type: 'uncategorized_error';
|
|
54141
54378
|
message: string;
|
|
@@ -54682,15 +54919,15 @@ interface Routes {
|
|
|
54682
54919
|
status: 'pending';
|
|
54683
54920
|
result: null;
|
|
54684
54921
|
error: null;
|
|
54685
|
-
action_type: '
|
|
54922
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
54686
54923
|
} | {
|
|
54687
54924
|
/** The ID of the action attempt. */
|
|
54688
54925
|
action_attempt_id: string;
|
|
54689
54926
|
status: 'success';
|
|
54690
54927
|
error: null;
|
|
54691
|
-
action_type: '
|
|
54928
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
54692
54929
|
result: {
|
|
54693
|
-
/** Snapshot of
|
|
54930
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
54694
54931
|
acs_credential_on_encoder: {
|
|
54695
54932
|
/** Date and time the credential was created. */
|
|
54696
54933
|
created_at: string | null;
|
|
@@ -54843,7 +55080,7 @@ interface Routes {
|
|
|
54843
55080
|
action_attempt_id: string;
|
|
54844
55081
|
status: 'error';
|
|
54845
55082
|
result: null;
|
|
54846
|
-
action_type: '
|
|
55083
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
54847
55084
|
error: {
|
|
54848
55085
|
type: 'uncategorized_error';
|
|
54849
55086
|
message: string;
|
|
@@ -54860,13 +55097,13 @@ interface Routes {
|
|
|
54860
55097
|
status: 'pending';
|
|
54861
55098
|
result: null;
|
|
54862
55099
|
error: null;
|
|
54863
|
-
action_type: '
|
|
55100
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54864
55101
|
} | {
|
|
54865
55102
|
/** The ID of the action attempt. */
|
|
54866
55103
|
action_attempt_id: string;
|
|
54867
55104
|
status: 'success';
|
|
54868
55105
|
error: null;
|
|
54869
|
-
action_type: '
|
|
55106
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54870
55107
|
/** Means by which a user gains access at an entrance.
|
|
54871
55108
|
|
|
54872
55109
|
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. */
|
|
@@ -54990,7 +55227,7 @@ interface Routes {
|
|
|
54990
55227
|
action_attempt_id: string;
|
|
54991
55228
|
status: 'error';
|
|
54992
55229
|
result: null;
|
|
54993
|
-
action_type: '
|
|
55230
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54994
55231
|
error: {
|
|
54995
55232
|
type: 'uncategorized_error';
|
|
54996
55233
|
message: string;
|
|
@@ -55579,7 +55816,7 @@ interface Routes {
|
|
|
55579
55816
|
/** Unique identifier for the device. */
|
|
55580
55817
|
device_id: string;
|
|
55581
55818
|
/** Type of the device. */
|
|
55582
|
-
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';
|
|
55819
|
+
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');
|
|
55583
55820
|
/** Optional nickname to describe the device, settable through Seam */
|
|
55584
55821
|
nickname?: string | undefined;
|
|
55585
55822
|
/** 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. */
|
|
@@ -55886,6 +56123,9 @@ interface Routes {
|
|
|
55886
56123
|
gadget_id: string;
|
|
55887
56124
|
_member_group_id?: string | undefined;
|
|
55888
56125
|
} | undefined;
|
|
56126
|
+
assa_abloy_vostio_metadata?: {
|
|
56127
|
+
encoder_id: string;
|
|
56128
|
+
} | undefined;
|
|
55889
56129
|
}) & ({
|
|
55890
56130
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
55891
56131
|
code_constraints?: (Array<{
|
|
@@ -56040,7 +56280,7 @@ interface Routes {
|
|
|
56040
56280
|
/** Unique identifier for the device. */
|
|
56041
56281
|
device_id: string;
|
|
56042
56282
|
/** Type of the device. */
|
|
56043
|
-
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';
|
|
56283
|
+
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');
|
|
56044
56284
|
/** Optional nickname to describe the device, settable through Seam */
|
|
56045
56285
|
nickname?: string | undefined;
|
|
56046
56286
|
/** 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. */
|
|
@@ -56347,6 +56587,9 @@ interface Routes {
|
|
|
56347
56587
|
gadget_id: string;
|
|
56348
56588
|
_member_group_id?: string | undefined;
|
|
56349
56589
|
} | undefined;
|
|
56590
|
+
assa_abloy_vostio_metadata?: {
|
|
56591
|
+
encoder_id: string;
|
|
56592
|
+
} | undefined;
|
|
56350
56593
|
}) & ({
|
|
56351
56594
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
56352
56595
|
code_constraints?: (Array<{
|
|
@@ -56945,15 +57188,15 @@ interface Routes {
|
|
|
56945
57188
|
status: 'pending';
|
|
56946
57189
|
result: null;
|
|
56947
57190
|
error: null;
|
|
56948
|
-
action_type: '
|
|
57191
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
56949
57192
|
} | {
|
|
56950
57193
|
/** The ID of the action attempt. */
|
|
56951
57194
|
action_attempt_id: string;
|
|
56952
57195
|
status: 'success';
|
|
56953
57196
|
error: null;
|
|
56954
|
-
action_type: '
|
|
57197
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
56955
57198
|
result: {
|
|
56956
|
-
/** Snapshot of
|
|
57199
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
56957
57200
|
acs_credential_on_encoder: {
|
|
56958
57201
|
/** Date and time the credential was created. */
|
|
56959
57202
|
created_at: string | null;
|
|
@@ -57106,7 +57349,7 @@ interface Routes {
|
|
|
57106
57349
|
action_attempt_id: string;
|
|
57107
57350
|
status: 'error';
|
|
57108
57351
|
result: null;
|
|
57109
|
-
action_type: '
|
|
57352
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
57110
57353
|
error: {
|
|
57111
57354
|
type: 'uncategorized_error';
|
|
57112
57355
|
message: string;
|
|
@@ -57123,13 +57366,13 @@ interface Routes {
|
|
|
57123
57366
|
status: 'pending';
|
|
57124
57367
|
result: null;
|
|
57125
57368
|
error: null;
|
|
57126
|
-
action_type: '
|
|
57369
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
57127
57370
|
} | {
|
|
57128
57371
|
/** The ID of the action attempt. */
|
|
57129
57372
|
action_attempt_id: string;
|
|
57130
57373
|
status: 'success';
|
|
57131
57374
|
error: null;
|
|
57132
|
-
action_type: '
|
|
57375
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
57133
57376
|
/** Means by which a user gains access at an entrance.
|
|
57134
57377
|
|
|
57135
57378
|
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. */
|
|
@@ -57253,7 +57496,7 @@ interface Routes {
|
|
|
57253
57496
|
action_attempt_id: string;
|
|
57254
57497
|
status: 'error';
|
|
57255
57498
|
result: null;
|
|
57256
|
-
action_type: '
|
|
57499
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
57257
57500
|
error: {
|
|
57258
57501
|
type: 'uncategorized_error';
|
|
57259
57502
|
message: string;
|