@seamapi/types 1.286.1 → 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 +189 -52
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +450 -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 +16 -2
- package/lib/seam/connect/openapi.js +125 -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 +130 -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: {
|
|
@@ -19346,6 +19533,7 @@ declare const _default: {
|
|
|
19346
19533
|
description: string;
|
|
19347
19534
|
properties: {
|
|
19348
19535
|
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
19536
|
+
description: string;
|
|
19349
19537
|
format: string;
|
|
19350
19538
|
type: string;
|
|
19351
19539
|
};
|
|
@@ -20626,7 +20814,7 @@ declare const _default: {
|
|
|
20626
20814
|
'x-title': string;
|
|
20627
20815
|
};
|
|
20628
20816
|
};
|
|
20629
|
-
'/acs/encoders/
|
|
20817
|
+
'/acs/encoders/encode_credential': {
|
|
20630
20818
|
post: {
|
|
20631
20819
|
operationId: string;
|
|
20632
20820
|
requestBody: {
|
|
@@ -20635,10 +20823,12 @@ declare const _default: {
|
|
|
20635
20823
|
schema: {
|
|
20636
20824
|
properties: {
|
|
20637
20825
|
acs_credential_id: {
|
|
20826
|
+
description: string;
|
|
20638
20827
|
format: string;
|
|
20639
20828
|
type: string;
|
|
20640
20829
|
};
|
|
20641
20830
|
device_id: {
|
|
20831
|
+
description: string;
|
|
20642
20832
|
format: string;
|
|
20643
20833
|
type: string;
|
|
20644
20834
|
};
|
|
@@ -20822,7 +21012,7 @@ declare const _default: {
|
|
|
20822
21012
|
'x-undocumented': string;
|
|
20823
21013
|
};
|
|
20824
21014
|
};
|
|
20825
|
-
'/acs/encoders/
|
|
21015
|
+
'/acs/encoders/scan_credential': {
|
|
20826
21016
|
post: {
|
|
20827
21017
|
operationId: string;
|
|
20828
21018
|
requestBody: {
|
|
@@ -20831,10 +21021,12 @@ declare const _default: {
|
|
|
20831
21021
|
schema: {
|
|
20832
21022
|
properties: {
|
|
20833
21023
|
acs_system_id: {
|
|
21024
|
+
description: string;
|
|
20834
21025
|
format: string;
|
|
20835
21026
|
type: string;
|
|
20836
21027
|
};
|
|
20837
21028
|
device_id: {
|
|
21029
|
+
description: string;
|
|
20838
21030
|
format: string;
|
|
20839
21031
|
type: string;
|
|
20840
21032
|
};
|
|
@@ -31586,15 +31778,15 @@ interface Routes {
|
|
|
31586
31778
|
status: 'pending';
|
|
31587
31779
|
result: null;
|
|
31588
31780
|
error: null;
|
|
31589
|
-
action_type: '
|
|
31781
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
31590
31782
|
} | {
|
|
31591
31783
|
/** The ID of the action attempt. */
|
|
31592
31784
|
action_attempt_id: string;
|
|
31593
31785
|
status: 'success';
|
|
31594
31786
|
error: null;
|
|
31595
|
-
action_type: '
|
|
31787
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
31596
31788
|
result: {
|
|
31597
|
-
/** Snapshot of
|
|
31789
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
31598
31790
|
acs_credential_on_encoder: {
|
|
31599
31791
|
/** Date and time the credential was created. */
|
|
31600
31792
|
created_at: string | null;
|
|
@@ -31747,7 +31939,7 @@ interface Routes {
|
|
|
31747
31939
|
action_attempt_id: string;
|
|
31748
31940
|
status: 'error';
|
|
31749
31941
|
result: null;
|
|
31750
|
-
action_type: '
|
|
31942
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
31751
31943
|
error: {
|
|
31752
31944
|
type: 'uncategorized_error';
|
|
31753
31945
|
message: string;
|
|
@@ -31764,13 +31956,13 @@ interface Routes {
|
|
|
31764
31956
|
status: 'pending';
|
|
31765
31957
|
result: null;
|
|
31766
31958
|
error: null;
|
|
31767
|
-
action_type: '
|
|
31959
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
31768
31960
|
} | {
|
|
31769
31961
|
/** The ID of the action attempt. */
|
|
31770
31962
|
action_attempt_id: string;
|
|
31771
31963
|
status: 'success';
|
|
31772
31964
|
error: null;
|
|
31773
|
-
action_type: '
|
|
31965
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
31774
31966
|
/** Means by which a user gains access at an entrance.
|
|
31775
31967
|
|
|
31776
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. */
|
|
@@ -31894,7 +32086,7 @@ interface Routes {
|
|
|
31894
32086
|
action_attempt_id: string;
|
|
31895
32087
|
status: 'error';
|
|
31896
32088
|
result: null;
|
|
31897
|
-
action_type: '
|
|
32089
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
31898
32090
|
error: {
|
|
31899
32091
|
type: 'uncategorized_error';
|
|
31900
32092
|
message: string;
|
|
@@ -32470,15 +32662,15 @@ interface Routes {
|
|
|
32470
32662
|
status: 'pending';
|
|
32471
32663
|
result: null;
|
|
32472
32664
|
error: null;
|
|
32473
|
-
action_type: '
|
|
32665
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
32474
32666
|
} | {
|
|
32475
32667
|
/** The ID of the action attempt. */
|
|
32476
32668
|
action_attempt_id: string;
|
|
32477
32669
|
status: 'success';
|
|
32478
32670
|
error: null;
|
|
32479
|
-
action_type: '
|
|
32671
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
32480
32672
|
result: {
|
|
32481
|
-
/** Snapshot of
|
|
32673
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
32482
32674
|
acs_credential_on_encoder: {
|
|
32483
32675
|
/** Date and time the credential was created. */
|
|
32484
32676
|
created_at: string | null;
|
|
@@ -32631,7 +32823,7 @@ interface Routes {
|
|
|
32631
32823
|
action_attempt_id: string;
|
|
32632
32824
|
status: 'error';
|
|
32633
32825
|
result: null;
|
|
32634
|
-
action_type: '
|
|
32826
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
32635
32827
|
error: {
|
|
32636
32828
|
type: 'uncategorized_error';
|
|
32637
32829
|
message: string;
|
|
@@ -32648,13 +32840,13 @@ interface Routes {
|
|
|
32648
32840
|
status: 'pending';
|
|
32649
32841
|
result: null;
|
|
32650
32842
|
error: null;
|
|
32651
|
-
action_type: '
|
|
32843
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
32652
32844
|
} | {
|
|
32653
32845
|
/** The ID of the action attempt. */
|
|
32654
32846
|
action_attempt_id: string;
|
|
32655
32847
|
status: 'success';
|
|
32656
32848
|
error: null;
|
|
32657
|
-
action_type: '
|
|
32849
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
32658
32850
|
/** Means by which a user gains access at an entrance.
|
|
32659
32851
|
|
|
32660
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. */
|
|
@@ -32778,7 +32970,7 @@ interface Routes {
|
|
|
32778
32970
|
action_attempt_id: string;
|
|
32779
32971
|
status: 'error';
|
|
32780
32972
|
result: null;
|
|
32781
|
-
action_type: '
|
|
32973
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
32782
32974
|
error: {
|
|
32783
32975
|
type: 'uncategorized_error';
|
|
32784
32976
|
message: string;
|
|
@@ -33511,15 +33703,15 @@ interface Routes {
|
|
|
33511
33703
|
status: 'pending';
|
|
33512
33704
|
result: null;
|
|
33513
33705
|
error: null;
|
|
33514
|
-
action_type: '
|
|
33706
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
33515
33707
|
} | {
|
|
33516
33708
|
/** The ID of the action attempt. */
|
|
33517
33709
|
action_attempt_id: string;
|
|
33518
33710
|
status: 'success';
|
|
33519
33711
|
error: null;
|
|
33520
|
-
action_type: '
|
|
33712
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
33521
33713
|
result: {
|
|
33522
|
-
/** Snapshot of
|
|
33714
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
33523
33715
|
acs_credential_on_encoder: {
|
|
33524
33716
|
/** Date and time the credential was created. */
|
|
33525
33717
|
created_at: string | null;
|
|
@@ -33672,7 +33864,7 @@ interface Routes {
|
|
|
33672
33864
|
action_attempt_id: string;
|
|
33673
33865
|
status: 'error';
|
|
33674
33866
|
result: null;
|
|
33675
|
-
action_type: '
|
|
33867
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
33676
33868
|
error: {
|
|
33677
33869
|
type: 'uncategorized_error';
|
|
33678
33870
|
message: string;
|
|
@@ -33689,13 +33881,13 @@ interface Routes {
|
|
|
33689
33881
|
status: 'pending';
|
|
33690
33882
|
result: null;
|
|
33691
33883
|
error: null;
|
|
33692
|
-
action_type: '
|
|
33884
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
33693
33885
|
} | {
|
|
33694
33886
|
/** The ID of the action attempt. */
|
|
33695
33887
|
action_attempt_id: string;
|
|
33696
33888
|
status: 'success';
|
|
33697
33889
|
error: null;
|
|
33698
|
-
action_type: '
|
|
33890
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
33699
33891
|
/** Means by which a user gains access at an entrance.
|
|
33700
33892
|
|
|
33701
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. */
|
|
@@ -33819,7 +34011,7 @@ interface Routes {
|
|
|
33819
34011
|
action_attempt_id: string;
|
|
33820
34012
|
status: 'error';
|
|
33821
34013
|
result: null;
|
|
33822
|
-
action_type: '
|
|
34014
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
33823
34015
|
error: {
|
|
33824
34016
|
type: 'uncategorized_error';
|
|
33825
34017
|
message: string;
|
|
@@ -34382,15 +34574,15 @@ interface Routes {
|
|
|
34382
34574
|
status: 'pending';
|
|
34383
34575
|
result: null;
|
|
34384
34576
|
error: null;
|
|
34385
|
-
action_type: '
|
|
34577
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
34386
34578
|
} | {
|
|
34387
34579
|
/** The ID of the action attempt. */
|
|
34388
34580
|
action_attempt_id: string;
|
|
34389
34581
|
status: 'success';
|
|
34390
34582
|
error: null;
|
|
34391
|
-
action_type: '
|
|
34583
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
34392
34584
|
result: {
|
|
34393
|
-
/** Snapshot of
|
|
34585
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
34394
34586
|
acs_credential_on_encoder: {
|
|
34395
34587
|
/** Date and time the credential was created. */
|
|
34396
34588
|
created_at: string | null;
|
|
@@ -34543,7 +34735,7 @@ interface Routes {
|
|
|
34543
34735
|
action_attempt_id: string;
|
|
34544
34736
|
status: 'error';
|
|
34545
34737
|
result: null;
|
|
34546
|
-
action_type: '
|
|
34738
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
34547
34739
|
error: {
|
|
34548
34740
|
type: 'uncategorized_error';
|
|
34549
34741
|
message: string;
|
|
@@ -34560,13 +34752,13 @@ interface Routes {
|
|
|
34560
34752
|
status: 'pending';
|
|
34561
34753
|
result: null;
|
|
34562
34754
|
error: null;
|
|
34563
|
-
action_type: '
|
|
34755
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
34564
34756
|
} | {
|
|
34565
34757
|
/** The ID of the action attempt. */
|
|
34566
34758
|
action_attempt_id: string;
|
|
34567
34759
|
status: 'success';
|
|
34568
34760
|
error: null;
|
|
34569
|
-
action_type: '
|
|
34761
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
34570
34762
|
/** Means by which a user gains access at an entrance.
|
|
34571
34763
|
|
|
34572
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. */
|
|
@@ -34690,7 +34882,7 @@ interface Routes {
|
|
|
34690
34882
|
action_attempt_id: string;
|
|
34691
34883
|
status: 'error';
|
|
34692
34884
|
result: null;
|
|
34693
|
-
action_type: '
|
|
34885
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
34694
34886
|
error: {
|
|
34695
34887
|
type: 'uncategorized_error';
|
|
34696
34888
|
message: string;
|
|
@@ -35556,6 +35748,7 @@ interface Routes {
|
|
|
35556
35748
|
allowed_acs_entrance_ids?: string[];
|
|
35557
35749
|
/** Visionline-specific metadata for the new credential. */
|
|
35558
35750
|
visionline_metadata?: {
|
|
35751
|
+
/** DEPRECATED: DO NOT USE */
|
|
35559
35752
|
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
35560
35753
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
35561
35754
|
card_function_type?: 'guest' | 'staff';
|
|
@@ -36182,13 +36375,15 @@ interface Routes {
|
|
|
36182
36375
|
};
|
|
36183
36376
|
};
|
|
36184
36377
|
};
|
|
36185
|
-
'/acs/encoders/
|
|
36186
|
-
route: '/acs/encoders/
|
|
36378
|
+
'/acs/encoders/encode_credential': {
|
|
36379
|
+
route: '/acs/encoders/encode_credential';
|
|
36187
36380
|
method: 'POST';
|
|
36188
36381
|
queryParams: {};
|
|
36189
36382
|
jsonBody: {};
|
|
36190
36383
|
commonParams: {
|
|
36384
|
+
/** ID of the encoder to use for the encoding. */
|
|
36191
36385
|
device_id: string;
|
|
36386
|
+
/** ID of the acs_credential to encode on a physical card. */
|
|
36192
36387
|
acs_credential_id: string;
|
|
36193
36388
|
};
|
|
36194
36389
|
formData: {};
|
|
@@ -36247,15 +36442,15 @@ interface Routes {
|
|
|
36247
36442
|
status: 'pending';
|
|
36248
36443
|
result: null;
|
|
36249
36444
|
error: null;
|
|
36250
|
-
action_type: '
|
|
36445
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
36251
36446
|
} | {
|
|
36252
36447
|
/** The ID of the action attempt. */
|
|
36253
36448
|
action_attempt_id: string;
|
|
36254
36449
|
status: 'success';
|
|
36255
36450
|
error: null;
|
|
36256
|
-
action_type: '
|
|
36451
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
36257
36452
|
result: {
|
|
36258
|
-
/** Snapshot of
|
|
36453
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
36259
36454
|
acs_credential_on_encoder: {
|
|
36260
36455
|
/** Date and time the credential was created. */
|
|
36261
36456
|
created_at: string | null;
|
|
@@ -36408,7 +36603,7 @@ interface Routes {
|
|
|
36408
36603
|
action_attempt_id: string;
|
|
36409
36604
|
status: 'error';
|
|
36410
36605
|
result: null;
|
|
36411
|
-
action_type: '
|
|
36606
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
36412
36607
|
error: {
|
|
36413
36608
|
type: 'uncategorized_error';
|
|
36414
36609
|
message: string;
|
|
@@ -36425,13 +36620,13 @@ interface Routes {
|
|
|
36425
36620
|
status: 'pending';
|
|
36426
36621
|
result: null;
|
|
36427
36622
|
error: null;
|
|
36428
|
-
action_type: '
|
|
36623
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
36429
36624
|
} | {
|
|
36430
36625
|
/** The ID of the action attempt. */
|
|
36431
36626
|
action_attempt_id: string;
|
|
36432
36627
|
status: 'success';
|
|
36433
36628
|
error: null;
|
|
36434
|
-
action_type: '
|
|
36629
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
36435
36630
|
/** Means by which a user gains access at an entrance.
|
|
36436
36631
|
|
|
36437
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. */
|
|
@@ -36555,7 +36750,7 @@ interface Routes {
|
|
|
36555
36750
|
action_attempt_id: string;
|
|
36556
36751
|
status: 'error';
|
|
36557
36752
|
result: null;
|
|
36558
|
-
action_type: '
|
|
36753
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
36559
36754
|
error: {
|
|
36560
36755
|
type: 'uncategorized_error';
|
|
36561
36756
|
message: string;
|
|
@@ -36938,7 +37133,7 @@ interface Routes {
|
|
|
36938
37133
|
/** Unique identifier for the device. */
|
|
36939
37134
|
device_id: string;
|
|
36940
37135
|
/** Type of the device. */
|
|
36941
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
36942
37137
|
/** Optional nickname to describe the device, settable through Seam */
|
|
36943
37138
|
nickname?: string | undefined;
|
|
36944
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. */
|
|
@@ -37245,6 +37440,9 @@ interface Routes {
|
|
|
37245
37440
|
gadget_id: string;
|
|
37246
37441
|
_member_group_id?: string | undefined;
|
|
37247
37442
|
} | undefined;
|
|
37443
|
+
assa_abloy_vostio_metadata?: {
|
|
37444
|
+
encoder_id: string;
|
|
37445
|
+
} | undefined;
|
|
37248
37446
|
}) & ({
|
|
37249
37447
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
37250
37448
|
code_constraints?: (Array<{
|
|
@@ -37395,13 +37593,15 @@ interface Routes {
|
|
|
37395
37593
|
}>;
|
|
37396
37594
|
};
|
|
37397
37595
|
};
|
|
37398
|
-
'/acs/encoders/
|
|
37399
|
-
route: '/acs/encoders/
|
|
37596
|
+
'/acs/encoders/scan_credential': {
|
|
37597
|
+
route: '/acs/encoders/scan_credential';
|
|
37400
37598
|
method: 'POST';
|
|
37401
37599
|
queryParams: {};
|
|
37402
37600
|
jsonBody: {};
|
|
37403
37601
|
commonParams: {
|
|
37602
|
+
/** ID of the acs_system the encoder belongs to. */
|
|
37404
37603
|
acs_system_id: string;
|
|
37604
|
+
/** ID of the encoder to use for the scan. */
|
|
37405
37605
|
device_id: string;
|
|
37406
37606
|
};
|
|
37407
37607
|
formData: {};
|
|
@@ -37460,15 +37660,15 @@ interface Routes {
|
|
|
37460
37660
|
status: 'pending';
|
|
37461
37661
|
result: null;
|
|
37462
37662
|
error: null;
|
|
37463
|
-
action_type: '
|
|
37663
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
37464
37664
|
} | {
|
|
37465
37665
|
/** The ID of the action attempt. */
|
|
37466
37666
|
action_attempt_id: string;
|
|
37467
37667
|
status: 'success';
|
|
37468
37668
|
error: null;
|
|
37469
|
-
action_type: '
|
|
37669
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
37470
37670
|
result: {
|
|
37471
|
-
/** Snapshot of
|
|
37671
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
37472
37672
|
acs_credential_on_encoder: {
|
|
37473
37673
|
/** Date and time the credential was created. */
|
|
37474
37674
|
created_at: string | null;
|
|
@@ -37621,7 +37821,7 @@ interface Routes {
|
|
|
37621
37821
|
action_attempt_id: string;
|
|
37622
37822
|
status: 'error';
|
|
37623
37823
|
result: null;
|
|
37624
|
-
action_type: '
|
|
37824
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
37625
37825
|
error: {
|
|
37626
37826
|
type: 'uncategorized_error';
|
|
37627
37827
|
message: string;
|
|
@@ -37638,13 +37838,13 @@ interface Routes {
|
|
|
37638
37838
|
status: 'pending';
|
|
37639
37839
|
result: null;
|
|
37640
37840
|
error: null;
|
|
37641
|
-
action_type: '
|
|
37841
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
37642
37842
|
} | {
|
|
37643
37843
|
/** The ID of the action attempt. */
|
|
37644
37844
|
action_attempt_id: string;
|
|
37645
37845
|
status: 'success';
|
|
37646
37846
|
error: null;
|
|
37647
|
-
action_type: '
|
|
37847
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
37648
37848
|
/** Means by which a user gains access at an entrance.
|
|
37649
37849
|
|
|
37650
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. */
|
|
@@ -37768,7 +37968,7 @@ interface Routes {
|
|
|
37768
37968
|
action_attempt_id: string;
|
|
37769
37969
|
status: 'error';
|
|
37770
37970
|
result: null;
|
|
37771
|
-
action_type: '
|
|
37971
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
37772
37972
|
error: {
|
|
37773
37973
|
type: 'uncategorized_error';
|
|
37774
37974
|
message: string;
|
|
@@ -39410,15 +39610,15 @@ interface Routes {
|
|
|
39410
39610
|
status: 'pending';
|
|
39411
39611
|
result: null;
|
|
39412
39612
|
error: null;
|
|
39413
|
-
action_type: '
|
|
39613
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
39414
39614
|
} | {
|
|
39415
39615
|
/** The ID of the action attempt. */
|
|
39416
39616
|
action_attempt_id: string;
|
|
39417
39617
|
status: 'success';
|
|
39418
39618
|
error: null;
|
|
39419
|
-
action_type: '
|
|
39619
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
39420
39620
|
result: {
|
|
39421
|
-
/** Snapshot of
|
|
39621
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
39422
39622
|
acs_credential_on_encoder: {
|
|
39423
39623
|
/** Date and time the credential was created. */
|
|
39424
39624
|
created_at: string | null;
|
|
@@ -39571,7 +39771,7 @@ interface Routes {
|
|
|
39571
39771
|
action_attempt_id: string;
|
|
39572
39772
|
status: 'error';
|
|
39573
39773
|
result: null;
|
|
39574
|
-
action_type: '
|
|
39774
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
39575
39775
|
error: {
|
|
39576
39776
|
type: 'uncategorized_error';
|
|
39577
39777
|
message: string;
|
|
@@ -39588,13 +39788,13 @@ interface Routes {
|
|
|
39588
39788
|
status: 'pending';
|
|
39589
39789
|
result: null;
|
|
39590
39790
|
error: null;
|
|
39591
|
-
action_type: '
|
|
39791
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
39592
39792
|
} | {
|
|
39593
39793
|
/** The ID of the action attempt. */
|
|
39594
39794
|
action_attempt_id: string;
|
|
39595
39795
|
status: 'success';
|
|
39596
39796
|
error: null;
|
|
39597
|
-
action_type: '
|
|
39797
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
39598
39798
|
/** Means by which a user gains access at an entrance.
|
|
39599
39799
|
|
|
39600
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. */
|
|
@@ -39718,7 +39918,7 @@ interface Routes {
|
|
|
39718
39918
|
action_attempt_id: string;
|
|
39719
39919
|
status: 'error';
|
|
39720
39920
|
result: null;
|
|
39721
|
-
action_type: '
|
|
39921
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
39722
39922
|
error: {
|
|
39723
39923
|
type: 'uncategorized_error';
|
|
39724
39924
|
message: string;
|
|
@@ -40143,15 +40343,15 @@ interface Routes {
|
|
|
40143
40343
|
status: 'pending';
|
|
40144
40344
|
result: null;
|
|
40145
40345
|
error: null;
|
|
40146
|
-
action_type: '
|
|
40346
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
40147
40347
|
} | {
|
|
40148
40348
|
/** The ID of the action attempt. */
|
|
40149
40349
|
action_attempt_id: string;
|
|
40150
40350
|
status: 'success';
|
|
40151
40351
|
error: null;
|
|
40152
|
-
action_type: '
|
|
40352
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
40153
40353
|
result: {
|
|
40154
|
-
/** Snapshot of
|
|
40354
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
40155
40355
|
acs_credential_on_encoder: {
|
|
40156
40356
|
/** Date and time the credential was created. */
|
|
40157
40357
|
created_at: string | null;
|
|
@@ -40304,7 +40504,7 @@ interface Routes {
|
|
|
40304
40504
|
action_attempt_id: string;
|
|
40305
40505
|
status: 'error';
|
|
40306
40506
|
result: null;
|
|
40307
|
-
action_type: '
|
|
40507
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
40308
40508
|
error: {
|
|
40309
40509
|
type: 'uncategorized_error';
|
|
40310
40510
|
message: string;
|
|
@@ -40321,13 +40521,13 @@ interface Routes {
|
|
|
40321
40521
|
status: 'pending';
|
|
40322
40522
|
result: null;
|
|
40323
40523
|
error: null;
|
|
40324
|
-
action_type: '
|
|
40524
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
40325
40525
|
} | {
|
|
40326
40526
|
/** The ID of the action attempt. */
|
|
40327
40527
|
action_attempt_id: string;
|
|
40328
40528
|
status: 'success';
|
|
40329
40529
|
error: null;
|
|
40330
|
-
action_type: '
|
|
40530
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
40331
40531
|
/** Means by which a user gains access at an entrance.
|
|
40332
40532
|
|
|
40333
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. */
|
|
@@ -40451,7 +40651,7 @@ interface Routes {
|
|
|
40451
40651
|
action_attempt_id: string;
|
|
40452
40652
|
status: 'error';
|
|
40453
40653
|
result: null;
|
|
40454
|
-
action_type: '
|
|
40654
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
40455
40655
|
error: {
|
|
40456
40656
|
type: 'uncategorized_error';
|
|
40457
40657
|
message: string;
|
|
@@ -41252,7 +41452,7 @@ interface Routes {
|
|
|
41252
41452
|
/** Unique identifier for the device. */
|
|
41253
41453
|
device_id: string;
|
|
41254
41454
|
/** Type of the device. */
|
|
41255
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
41256
41456
|
/** Optional nickname to describe the device, settable through Seam */
|
|
41257
41457
|
nickname?: string | undefined;
|
|
41258
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. */
|
|
@@ -41559,6 +41759,9 @@ interface Routes {
|
|
|
41559
41759
|
gadget_id: string;
|
|
41560
41760
|
_member_group_id?: string | undefined;
|
|
41561
41761
|
} | undefined;
|
|
41762
|
+
assa_abloy_vostio_metadata?: {
|
|
41763
|
+
encoder_id: string;
|
|
41764
|
+
} | undefined;
|
|
41562
41765
|
}) & ({
|
|
41563
41766
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
41564
41767
|
code_constraints?: (Array<{
|
|
@@ -41719,8 +41922,8 @@ interface Routes {
|
|
|
41719
41922
|
connected_account_id?: string | undefined;
|
|
41720
41923
|
connected_account_ids?: string[] | undefined;
|
|
41721
41924
|
connect_webview_id?: string | undefined;
|
|
41722
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
41723
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
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;
|
|
41724
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;
|
|
41725
41928
|
device_ids?: string[] | undefined;
|
|
41726
41929
|
limit?: number;
|
|
@@ -41736,7 +41939,7 @@ interface Routes {
|
|
|
41736
41939
|
/** Unique identifier for the device. */
|
|
41737
41940
|
device_id: string;
|
|
41738
41941
|
/** Type of the device. */
|
|
41739
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
41740
41943
|
/** Optional nickname to describe the device, settable through Seam */
|
|
41741
41944
|
nickname?: string | undefined;
|
|
41742
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. */
|
|
@@ -42043,6 +42246,9 @@ interface Routes {
|
|
|
42043
42246
|
gadget_id: string;
|
|
42044
42247
|
_member_group_id?: string | undefined;
|
|
42045
42248
|
} | undefined;
|
|
42249
|
+
assa_abloy_vostio_metadata?: {
|
|
42250
|
+
encoder_id: string;
|
|
42251
|
+
} | undefined;
|
|
42046
42252
|
}) & ({
|
|
42047
42253
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
42048
42254
|
code_constraints?: (Array<{
|
|
@@ -42270,7 +42476,7 @@ interface Routes {
|
|
|
42270
42476
|
/** Unique identifier for the device. */
|
|
42271
42477
|
device_id: string;
|
|
42272
42478
|
/** Type of the device. */
|
|
42273
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
42274
42480
|
/** Unique identifier for the account associated with the device. */
|
|
42275
42481
|
connected_account_id: string;
|
|
42276
42482
|
/** Location information for the device. */
|
|
@@ -42376,8 +42582,8 @@ interface Routes {
|
|
|
42376
42582
|
connected_account_id?: string | undefined;
|
|
42377
42583
|
connected_account_ids?: string[] | undefined;
|
|
42378
42584
|
connect_webview_id?: string | undefined;
|
|
42379
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
42380
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
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;
|
|
42381
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;
|
|
42382
42588
|
device_ids?: string[] | undefined;
|
|
42383
42589
|
limit?: number;
|
|
@@ -42393,7 +42599,7 @@ interface Routes {
|
|
|
42393
42599
|
/** Unique identifier for the device. */
|
|
42394
42600
|
device_id: string;
|
|
42395
42601
|
/** Type of the device. */
|
|
42396
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
42397
42603
|
/** Unique identifier for the account associated with the device. */
|
|
42398
42604
|
connected_account_id: string;
|
|
42399
42605
|
/** Location information for the device. */
|
|
@@ -42623,7 +42829,7 @@ interface Routes {
|
|
|
42623
42829
|
/** Unique identifier for the device. */
|
|
42624
42830
|
device_id: string;
|
|
42625
42831
|
/** Type of the device. */
|
|
42626
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
42627
42833
|
/** Optional nickname to describe the device, settable through Seam */
|
|
42628
42834
|
nickname?: string | undefined;
|
|
42629
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. */
|
|
@@ -42930,6 +43136,9 @@ interface Routes {
|
|
|
42930
43136
|
gadget_id: string;
|
|
42931
43137
|
_member_group_id?: string | undefined;
|
|
42932
43138
|
} | undefined;
|
|
43139
|
+
assa_abloy_vostio_metadata?: {
|
|
43140
|
+
encoder_id: string;
|
|
43141
|
+
} | undefined;
|
|
42933
43142
|
}) & ({
|
|
42934
43143
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
42935
43144
|
code_constraints?: (Array<{
|
|
@@ -43082,7 +43291,7 @@ interface Routes {
|
|
|
43082
43291
|
/** Unique identifier for the device. */
|
|
43083
43292
|
device_id: string;
|
|
43084
43293
|
/** Type of the device. */
|
|
43085
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
43086
43295
|
/** Optional nickname to describe the device, settable through Seam */
|
|
43087
43296
|
nickname?: string | undefined;
|
|
43088
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. */
|
|
@@ -43389,6 +43598,9 @@ interface Routes {
|
|
|
43389
43598
|
gadget_id: string;
|
|
43390
43599
|
_member_group_id?: string | undefined;
|
|
43391
43600
|
} | undefined;
|
|
43601
|
+
assa_abloy_vostio_metadata?: {
|
|
43602
|
+
encoder_id: string;
|
|
43603
|
+
} | undefined;
|
|
43392
43604
|
}) & ({
|
|
43393
43605
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
43394
43606
|
code_constraints?: (Array<{
|
|
@@ -43549,8 +43761,8 @@ interface Routes {
|
|
|
43549
43761
|
connected_account_id?: string | undefined;
|
|
43550
43762
|
connected_account_ids?: string[] | undefined;
|
|
43551
43763
|
connect_webview_id?: string | undefined;
|
|
43552
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
43553
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
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;
|
|
43554
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;
|
|
43555
43767
|
device_ids?: string[] | undefined;
|
|
43556
43768
|
limit?: number;
|
|
@@ -43566,7 +43778,7 @@ interface Routes {
|
|
|
43566
43778
|
/** Unique identifier for the device. */
|
|
43567
43779
|
device_id: string;
|
|
43568
43780
|
/** Type of the device. */
|
|
43569
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
43570
43782
|
/** Optional nickname to describe the device, settable through Seam */
|
|
43571
43783
|
nickname?: string | undefined;
|
|
43572
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. */
|
|
@@ -43873,6 +44085,9 @@ interface Routes {
|
|
|
43873
44085
|
gadget_id: string;
|
|
43874
44086
|
_member_group_id?: string | undefined;
|
|
43875
44087
|
} | undefined;
|
|
44088
|
+
assa_abloy_vostio_metadata?: {
|
|
44089
|
+
encoder_id: string;
|
|
44090
|
+
} | undefined;
|
|
43876
44091
|
}) & ({
|
|
43877
44092
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
43878
44093
|
code_constraints?: (Array<{
|
|
@@ -44025,7 +44240,7 @@ interface Routes {
|
|
|
44025
44240
|
/** Unique identifier for the device. */
|
|
44026
44241
|
device_id: string;
|
|
44027
44242
|
/** Type of the device. */
|
|
44028
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
44029
44244
|
/** Optional nickname to describe the device, settable through Seam */
|
|
44030
44245
|
nickname?: string | undefined;
|
|
44031
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. */
|
|
@@ -44332,6 +44547,9 @@ interface Routes {
|
|
|
44332
44547
|
gadget_id: string;
|
|
44333
44548
|
_member_group_id?: string | undefined;
|
|
44334
44549
|
} | undefined;
|
|
44550
|
+
assa_abloy_vostio_metadata?: {
|
|
44551
|
+
encoder_id: string;
|
|
44552
|
+
} | undefined;
|
|
44335
44553
|
}) & ({
|
|
44336
44554
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
44337
44555
|
code_constraints?: (Array<{
|
|
@@ -44547,15 +44765,15 @@ interface Routes {
|
|
|
44547
44765
|
status: 'pending';
|
|
44548
44766
|
result: null;
|
|
44549
44767
|
error: null;
|
|
44550
|
-
action_type: '
|
|
44768
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
44551
44769
|
} | {
|
|
44552
44770
|
/** The ID of the action attempt. */
|
|
44553
44771
|
action_attempt_id: string;
|
|
44554
44772
|
status: 'success';
|
|
44555
44773
|
error: null;
|
|
44556
|
-
action_type: '
|
|
44774
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
44557
44775
|
result: {
|
|
44558
|
-
/** Snapshot of
|
|
44776
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
44559
44777
|
acs_credential_on_encoder: {
|
|
44560
44778
|
/** Date and time the credential was created. */
|
|
44561
44779
|
created_at: string | null;
|
|
@@ -44708,7 +44926,7 @@ interface Routes {
|
|
|
44708
44926
|
action_attempt_id: string;
|
|
44709
44927
|
status: 'error';
|
|
44710
44928
|
result: null;
|
|
44711
|
-
action_type: '
|
|
44929
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
44712
44930
|
error: {
|
|
44713
44931
|
type: 'uncategorized_error';
|
|
44714
44932
|
message: string;
|
|
@@ -44725,13 +44943,13 @@ interface Routes {
|
|
|
44725
44943
|
status: 'pending';
|
|
44726
44944
|
result: null;
|
|
44727
44945
|
error: null;
|
|
44728
|
-
action_type: '
|
|
44946
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
44729
44947
|
} | {
|
|
44730
44948
|
/** The ID of the action attempt. */
|
|
44731
44949
|
action_attempt_id: string;
|
|
44732
44950
|
status: 'success';
|
|
44733
44951
|
error: null;
|
|
44734
|
-
action_type: '
|
|
44952
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
44735
44953
|
/** Means by which a user gains access at an entrance.
|
|
44736
44954
|
|
|
44737
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. */
|
|
@@ -44855,7 +45073,7 @@ interface Routes {
|
|
|
44855
45073
|
action_attempt_id: string;
|
|
44856
45074
|
status: 'error';
|
|
44857
45075
|
result: null;
|
|
44858
|
-
action_type: '
|
|
45076
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
44859
45077
|
error: {
|
|
44860
45078
|
type: 'uncategorized_error';
|
|
44861
45079
|
message: string;
|
|
@@ -45281,15 +45499,15 @@ interface Routes {
|
|
|
45281
45499
|
status: 'pending';
|
|
45282
45500
|
result: null;
|
|
45283
45501
|
error: null;
|
|
45284
|
-
action_type: '
|
|
45502
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
45285
45503
|
} | {
|
|
45286
45504
|
/** The ID of the action attempt. */
|
|
45287
45505
|
action_attempt_id: string;
|
|
45288
45506
|
status: 'success';
|
|
45289
45507
|
error: null;
|
|
45290
|
-
action_type: '
|
|
45508
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
45291
45509
|
result: {
|
|
45292
|
-
/** Snapshot of
|
|
45510
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
45293
45511
|
acs_credential_on_encoder: {
|
|
45294
45512
|
/** Date and time the credential was created. */
|
|
45295
45513
|
created_at: string | null;
|
|
@@ -45442,7 +45660,7 @@ interface Routes {
|
|
|
45442
45660
|
action_attempt_id: string;
|
|
45443
45661
|
status: 'error';
|
|
45444
45662
|
result: null;
|
|
45445
|
-
action_type: '
|
|
45663
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
45446
45664
|
error: {
|
|
45447
45665
|
type: 'uncategorized_error';
|
|
45448
45666
|
message: string;
|
|
@@ -45459,13 +45677,13 @@ interface Routes {
|
|
|
45459
45677
|
status: 'pending';
|
|
45460
45678
|
result: null;
|
|
45461
45679
|
error: null;
|
|
45462
|
-
action_type: '
|
|
45680
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
45463
45681
|
} | {
|
|
45464
45682
|
/** The ID of the action attempt. */
|
|
45465
45683
|
action_attempt_id: string;
|
|
45466
45684
|
status: 'success';
|
|
45467
45685
|
error: null;
|
|
45468
|
-
action_type: '
|
|
45686
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
45469
45687
|
/** Means by which a user gains access at an entrance.
|
|
45470
45688
|
|
|
45471
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. */
|
|
@@ -45589,7 +45807,7 @@ interface Routes {
|
|
|
45589
45807
|
action_attempt_id: string;
|
|
45590
45808
|
status: 'error';
|
|
45591
45809
|
result: null;
|
|
45592
|
-
action_type: '
|
|
45810
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
45593
45811
|
error: {
|
|
45594
45812
|
type: 'uncategorized_error';
|
|
45595
45813
|
message: string;
|
|
@@ -45994,8 +46212,8 @@ interface Routes {
|
|
|
45994
46212
|
connected_account_id?: string | undefined;
|
|
45995
46213
|
connected_account_ids?: string[] | undefined;
|
|
45996
46214
|
connect_webview_id?: string | undefined;
|
|
45997
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
45998
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
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;
|
|
45999
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;
|
|
46000
46218
|
device_ids?: string[] | undefined;
|
|
46001
46219
|
limit?: number;
|
|
@@ -46011,7 +46229,7 @@ interface Routes {
|
|
|
46011
46229
|
/** Unique identifier for the device. */
|
|
46012
46230
|
device_id: string;
|
|
46013
46231
|
/** Type of the device. */
|
|
46014
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
46015
46233
|
/** Optional nickname to describe the device, settable through Seam */
|
|
46016
46234
|
nickname?: string | undefined;
|
|
46017
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. */
|
|
@@ -46318,6 +46536,9 @@ interface Routes {
|
|
|
46318
46536
|
gadget_id: string;
|
|
46319
46537
|
_member_group_id?: string | undefined;
|
|
46320
46538
|
} | undefined;
|
|
46539
|
+
assa_abloy_vostio_metadata?: {
|
|
46540
|
+
encoder_id: string;
|
|
46541
|
+
} | undefined;
|
|
46321
46542
|
}) & ({
|
|
46322
46543
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
46323
46544
|
code_constraints?: (Array<{
|
|
@@ -46470,7 +46691,7 @@ interface Routes {
|
|
|
46470
46691
|
/** Unique identifier for the device. */
|
|
46471
46692
|
device_id: string;
|
|
46472
46693
|
/** Type of the device. */
|
|
46473
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
46474
46695
|
/** Optional nickname to describe the device, settable through Seam */
|
|
46475
46696
|
nickname?: string | undefined;
|
|
46476
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. */
|
|
@@ -46777,6 +46998,9 @@ interface Routes {
|
|
|
46777
46998
|
gadget_id: string;
|
|
46778
46999
|
_member_group_id?: string | undefined;
|
|
46779
47000
|
} | undefined;
|
|
47001
|
+
assa_abloy_vostio_metadata?: {
|
|
47002
|
+
encoder_id: string;
|
|
47003
|
+
} | undefined;
|
|
46780
47004
|
}) & ({
|
|
46781
47005
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
46782
47006
|
code_constraints?: (Array<{
|
|
@@ -46997,15 +47221,15 @@ interface Routes {
|
|
|
46997
47221
|
status: 'pending';
|
|
46998
47222
|
result: null;
|
|
46999
47223
|
error: null;
|
|
47000
|
-
action_type: '
|
|
47224
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47001
47225
|
} | {
|
|
47002
47226
|
/** The ID of the action attempt. */
|
|
47003
47227
|
action_attempt_id: string;
|
|
47004
47228
|
status: 'success';
|
|
47005
47229
|
error: null;
|
|
47006
|
-
action_type: '
|
|
47230
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47007
47231
|
result: {
|
|
47008
|
-
/** Snapshot of
|
|
47232
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
47009
47233
|
acs_credential_on_encoder: {
|
|
47010
47234
|
/** Date and time the credential was created. */
|
|
47011
47235
|
created_at: string | null;
|
|
@@ -47158,7 +47382,7 @@ interface Routes {
|
|
|
47158
47382
|
action_attempt_id: string;
|
|
47159
47383
|
status: 'error';
|
|
47160
47384
|
result: null;
|
|
47161
|
-
action_type: '
|
|
47385
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47162
47386
|
error: {
|
|
47163
47387
|
type: 'uncategorized_error';
|
|
47164
47388
|
message: string;
|
|
@@ -47175,13 +47399,13 @@ interface Routes {
|
|
|
47175
47399
|
status: 'pending';
|
|
47176
47400
|
result: null;
|
|
47177
47401
|
error: null;
|
|
47178
|
-
action_type: '
|
|
47402
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47179
47403
|
} | {
|
|
47180
47404
|
/** The ID of the action attempt. */
|
|
47181
47405
|
action_attempt_id: string;
|
|
47182
47406
|
status: 'success';
|
|
47183
47407
|
error: null;
|
|
47184
|
-
action_type: '
|
|
47408
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47185
47409
|
/** Means by which a user gains access at an entrance.
|
|
47186
47410
|
|
|
47187
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. */
|
|
@@ -47305,7 +47529,7 @@ interface Routes {
|
|
|
47305
47529
|
action_attempt_id: string;
|
|
47306
47530
|
status: 'error';
|
|
47307
47531
|
result: null;
|
|
47308
|
-
action_type: '
|
|
47532
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47309
47533
|
error: {
|
|
47310
47534
|
type: 'uncategorized_error';
|
|
47311
47535
|
message: string;
|
|
@@ -47741,15 +47965,15 @@ interface Routes {
|
|
|
47741
47965
|
status: 'pending';
|
|
47742
47966
|
result: null;
|
|
47743
47967
|
error: null;
|
|
47744
|
-
action_type: '
|
|
47968
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47745
47969
|
} | {
|
|
47746
47970
|
/** The ID of the action attempt. */
|
|
47747
47971
|
action_attempt_id: string;
|
|
47748
47972
|
status: 'success';
|
|
47749
47973
|
error: null;
|
|
47750
|
-
action_type: '
|
|
47974
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47751
47975
|
result: {
|
|
47752
|
-
/** Snapshot of
|
|
47976
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
47753
47977
|
acs_credential_on_encoder: {
|
|
47754
47978
|
/** Date and time the credential was created. */
|
|
47755
47979
|
created_at: string | null;
|
|
@@ -47902,7 +48126,7 @@ interface Routes {
|
|
|
47902
48126
|
action_attempt_id: string;
|
|
47903
48127
|
status: 'error';
|
|
47904
48128
|
result: null;
|
|
47905
|
-
action_type: '
|
|
48129
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
47906
48130
|
error: {
|
|
47907
48131
|
type: 'uncategorized_error';
|
|
47908
48132
|
message: string;
|
|
@@ -47919,13 +48143,13 @@ interface Routes {
|
|
|
47919
48143
|
status: 'pending';
|
|
47920
48144
|
result: null;
|
|
47921
48145
|
error: null;
|
|
47922
|
-
action_type: '
|
|
48146
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47923
48147
|
} | {
|
|
47924
48148
|
/** The ID of the action attempt. */
|
|
47925
48149
|
action_attempt_id: string;
|
|
47926
48150
|
status: 'success';
|
|
47927
48151
|
error: null;
|
|
47928
|
-
action_type: '
|
|
48152
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
47929
48153
|
/** Means by which a user gains access at an entrance.
|
|
47930
48154
|
|
|
47931
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. */
|
|
@@ -48049,7 +48273,7 @@ interface Routes {
|
|
|
48049
48273
|
action_attempt_id: string;
|
|
48050
48274
|
status: 'error';
|
|
48051
48275
|
result: null;
|
|
48052
|
-
action_type: '
|
|
48276
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
48053
48277
|
error: {
|
|
48054
48278
|
type: 'uncategorized_error';
|
|
48055
48279
|
message: string;
|
|
@@ -48524,15 +48748,15 @@ interface Routes {
|
|
|
48524
48748
|
status: 'pending';
|
|
48525
48749
|
result: null;
|
|
48526
48750
|
error: null;
|
|
48527
|
-
action_type: '
|
|
48751
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
48528
48752
|
} | {
|
|
48529
48753
|
/** The ID of the action attempt. */
|
|
48530
48754
|
action_attempt_id: string;
|
|
48531
48755
|
status: 'success';
|
|
48532
48756
|
error: null;
|
|
48533
|
-
action_type: '
|
|
48757
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
48534
48758
|
result: {
|
|
48535
|
-
/** Snapshot of
|
|
48759
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
48536
48760
|
acs_credential_on_encoder: {
|
|
48537
48761
|
/** Date and time the credential was created. */
|
|
48538
48762
|
created_at: string | null;
|
|
@@ -48685,7 +48909,7 @@ interface Routes {
|
|
|
48685
48909
|
action_attempt_id: string;
|
|
48686
48910
|
status: 'error';
|
|
48687
48911
|
result: null;
|
|
48688
|
-
action_type: '
|
|
48912
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
48689
48913
|
error: {
|
|
48690
48914
|
type: 'uncategorized_error';
|
|
48691
48915
|
message: string;
|
|
@@ -48702,13 +48926,13 @@ interface Routes {
|
|
|
48702
48926
|
status: 'pending';
|
|
48703
48927
|
result: null;
|
|
48704
48928
|
error: null;
|
|
48705
|
-
action_type: '
|
|
48929
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
48706
48930
|
} | {
|
|
48707
48931
|
/** The ID of the action attempt. */
|
|
48708
48932
|
action_attempt_id: string;
|
|
48709
48933
|
status: 'success';
|
|
48710
48934
|
error: null;
|
|
48711
|
-
action_type: '
|
|
48935
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
48712
48936
|
/** Means by which a user gains access at an entrance.
|
|
48713
48937
|
|
|
48714
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. */
|
|
@@ -48832,7 +49056,7 @@ interface Routes {
|
|
|
48832
49056
|
action_attempt_id: string;
|
|
48833
49057
|
status: 'error';
|
|
48834
49058
|
result: null;
|
|
48835
|
-
action_type: '
|
|
49059
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
48836
49060
|
error: {
|
|
48837
49061
|
type: 'uncategorized_error';
|
|
48838
49062
|
message: string;
|
|
@@ -49440,15 +49664,15 @@ interface Routes {
|
|
|
49440
49664
|
status: 'pending';
|
|
49441
49665
|
result: null;
|
|
49442
49666
|
error: null;
|
|
49443
|
-
action_type: '
|
|
49667
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
49444
49668
|
} | {
|
|
49445
49669
|
/** The ID of the action attempt. */
|
|
49446
49670
|
action_attempt_id: string;
|
|
49447
49671
|
status: 'success';
|
|
49448
49672
|
error: null;
|
|
49449
|
-
action_type: '
|
|
49673
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
49450
49674
|
result: {
|
|
49451
|
-
/** Snapshot of
|
|
49675
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
49452
49676
|
acs_credential_on_encoder: {
|
|
49453
49677
|
/** Date and time the credential was created. */
|
|
49454
49678
|
created_at: string | null;
|
|
@@ -49601,7 +49825,7 @@ interface Routes {
|
|
|
49601
49825
|
action_attempt_id: string;
|
|
49602
49826
|
status: 'error';
|
|
49603
49827
|
result: null;
|
|
49604
|
-
action_type: '
|
|
49828
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
49605
49829
|
error: {
|
|
49606
49830
|
type: 'uncategorized_error';
|
|
49607
49831
|
message: string;
|
|
@@ -49618,13 +49842,13 @@ interface Routes {
|
|
|
49618
49842
|
status: 'pending';
|
|
49619
49843
|
result: null;
|
|
49620
49844
|
error: null;
|
|
49621
|
-
action_type: '
|
|
49845
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
49622
49846
|
} | {
|
|
49623
49847
|
/** The ID of the action attempt. */
|
|
49624
49848
|
action_attempt_id: string;
|
|
49625
49849
|
status: 'success';
|
|
49626
49850
|
error: null;
|
|
49627
|
-
action_type: '
|
|
49851
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
49628
49852
|
/** Means by which a user gains access at an entrance.
|
|
49629
49853
|
|
|
49630
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. */
|
|
@@ -49748,7 +49972,7 @@ interface Routes {
|
|
|
49748
49972
|
action_attempt_id: string;
|
|
49749
49973
|
status: 'error';
|
|
49750
49974
|
result: null;
|
|
49751
|
-
action_type: '
|
|
49975
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
49752
49976
|
error: {
|
|
49753
49977
|
type: 'uncategorized_error';
|
|
49754
49978
|
message: string;
|
|
@@ -50176,15 +50400,15 @@ interface Routes {
|
|
|
50176
50400
|
status: 'pending';
|
|
50177
50401
|
result: null;
|
|
50178
50402
|
error: null;
|
|
50179
|
-
action_type: '
|
|
50403
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
50180
50404
|
} | {
|
|
50181
50405
|
/** The ID of the action attempt. */
|
|
50182
50406
|
action_attempt_id: string;
|
|
50183
50407
|
status: 'success';
|
|
50184
50408
|
error: null;
|
|
50185
|
-
action_type: '
|
|
50409
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
50186
50410
|
result: {
|
|
50187
|
-
/** Snapshot of
|
|
50411
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
50188
50412
|
acs_credential_on_encoder: {
|
|
50189
50413
|
/** Date and time the credential was created. */
|
|
50190
50414
|
created_at: string | null;
|
|
@@ -50337,7 +50561,7 @@ interface Routes {
|
|
|
50337
50561
|
action_attempt_id: string;
|
|
50338
50562
|
status: 'error';
|
|
50339
50563
|
result: null;
|
|
50340
|
-
action_type: '
|
|
50564
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
50341
50565
|
error: {
|
|
50342
50566
|
type: 'uncategorized_error';
|
|
50343
50567
|
message: string;
|
|
@@ -50354,13 +50578,13 @@ interface Routes {
|
|
|
50354
50578
|
status: 'pending';
|
|
50355
50579
|
result: null;
|
|
50356
50580
|
error: null;
|
|
50357
|
-
action_type: '
|
|
50581
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
50358
50582
|
} | {
|
|
50359
50583
|
/** The ID of the action attempt. */
|
|
50360
50584
|
action_attempt_id: string;
|
|
50361
50585
|
status: 'success';
|
|
50362
50586
|
error: null;
|
|
50363
|
-
action_type: '
|
|
50587
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
50364
50588
|
/** Means by which a user gains access at an entrance.
|
|
50365
50589
|
|
|
50366
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. */
|
|
@@ -50484,7 +50708,7 @@ interface Routes {
|
|
|
50484
50708
|
action_attempt_id: string;
|
|
50485
50709
|
status: 'error';
|
|
50486
50710
|
result: null;
|
|
50487
|
-
action_type: '
|
|
50711
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
50488
50712
|
error: {
|
|
50489
50713
|
type: 'uncategorized_error';
|
|
50490
50714
|
message: string;
|
|
@@ -50892,7 +51116,7 @@ interface Routes {
|
|
|
50892
51116
|
/** Unique identifier for the device. */
|
|
50893
51117
|
device_id: string;
|
|
50894
51118
|
/** Type of the device. */
|
|
50895
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
50896
51120
|
/** Optional nickname to describe the device, settable through Seam */
|
|
50897
51121
|
nickname?: string | undefined;
|
|
50898
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. */
|
|
@@ -51199,6 +51423,9 @@ interface Routes {
|
|
|
51199
51423
|
gadget_id: string;
|
|
51200
51424
|
_member_group_id?: string | undefined;
|
|
51201
51425
|
} | undefined;
|
|
51426
|
+
assa_abloy_vostio_metadata?: {
|
|
51427
|
+
encoder_id: string;
|
|
51428
|
+
} | undefined;
|
|
51202
51429
|
}) & ({
|
|
51203
51430
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
51204
51431
|
code_constraints?: (Array<{
|
|
@@ -51416,15 +51643,15 @@ interface Routes {
|
|
|
51416
51643
|
status: 'pending';
|
|
51417
51644
|
result: null;
|
|
51418
51645
|
error: null;
|
|
51419
|
-
action_type: '
|
|
51646
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
51420
51647
|
} | {
|
|
51421
51648
|
/** The ID of the action attempt. */
|
|
51422
51649
|
action_attempt_id: string;
|
|
51423
51650
|
status: 'success';
|
|
51424
51651
|
error: null;
|
|
51425
|
-
action_type: '
|
|
51652
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
51426
51653
|
result: {
|
|
51427
|
-
/** Snapshot of
|
|
51654
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
51428
51655
|
acs_credential_on_encoder: {
|
|
51429
51656
|
/** Date and time the credential was created. */
|
|
51430
51657
|
created_at: string | null;
|
|
@@ -51577,7 +51804,7 @@ interface Routes {
|
|
|
51577
51804
|
action_attempt_id: string;
|
|
51578
51805
|
status: 'error';
|
|
51579
51806
|
result: null;
|
|
51580
|
-
action_type: '
|
|
51807
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
51581
51808
|
error: {
|
|
51582
51809
|
type: 'uncategorized_error';
|
|
51583
51810
|
message: string;
|
|
@@ -51594,13 +51821,13 @@ interface Routes {
|
|
|
51594
51821
|
status: 'pending';
|
|
51595
51822
|
result: null;
|
|
51596
51823
|
error: null;
|
|
51597
|
-
action_type: '
|
|
51824
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
51598
51825
|
} | {
|
|
51599
51826
|
/** The ID of the action attempt. */
|
|
51600
51827
|
action_attempt_id: string;
|
|
51601
51828
|
status: 'success';
|
|
51602
51829
|
error: null;
|
|
51603
|
-
action_type: '
|
|
51830
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
51604
51831
|
/** Means by which a user gains access at an entrance.
|
|
51605
51832
|
|
|
51606
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. */
|
|
@@ -51724,7 +51951,7 @@ interface Routes {
|
|
|
51724
51951
|
action_attempt_id: string;
|
|
51725
51952
|
status: 'error';
|
|
51726
51953
|
result: null;
|
|
51727
|
-
action_type: '
|
|
51954
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
51728
51955
|
error: {
|
|
51729
51956
|
type: 'uncategorized_error';
|
|
51730
51957
|
message: string;
|
|
@@ -52154,15 +52381,15 @@ interface Routes {
|
|
|
52154
52381
|
status: 'pending';
|
|
52155
52382
|
result: null;
|
|
52156
52383
|
error: null;
|
|
52157
|
-
action_type: '
|
|
52384
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
52158
52385
|
} | {
|
|
52159
52386
|
/** The ID of the action attempt. */
|
|
52160
52387
|
action_attempt_id: string;
|
|
52161
52388
|
status: 'success';
|
|
52162
52389
|
error: null;
|
|
52163
|
-
action_type: '
|
|
52390
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
52164
52391
|
result: {
|
|
52165
|
-
/** Snapshot of
|
|
52392
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
52166
52393
|
acs_credential_on_encoder: {
|
|
52167
52394
|
/** Date and time the credential was created. */
|
|
52168
52395
|
created_at: string | null;
|
|
@@ -52315,7 +52542,7 @@ interface Routes {
|
|
|
52315
52542
|
action_attempt_id: string;
|
|
52316
52543
|
status: 'error';
|
|
52317
52544
|
result: null;
|
|
52318
|
-
action_type: '
|
|
52545
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
52319
52546
|
error: {
|
|
52320
52547
|
type: 'uncategorized_error';
|
|
52321
52548
|
message: string;
|
|
@@ -52332,13 +52559,13 @@ interface Routes {
|
|
|
52332
52559
|
status: 'pending';
|
|
52333
52560
|
result: null;
|
|
52334
52561
|
error: null;
|
|
52335
|
-
action_type: '
|
|
52562
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
52336
52563
|
} | {
|
|
52337
52564
|
/** The ID of the action attempt. */
|
|
52338
52565
|
action_attempt_id: string;
|
|
52339
52566
|
status: 'success';
|
|
52340
52567
|
error: null;
|
|
52341
|
-
action_type: '
|
|
52568
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
52342
52569
|
/** Means by which a user gains access at an entrance.
|
|
52343
52570
|
|
|
52344
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. */
|
|
@@ -52462,7 +52689,7 @@ interface Routes {
|
|
|
52462
52689
|
action_attempt_id: string;
|
|
52463
52690
|
status: 'error';
|
|
52464
52691
|
result: null;
|
|
52465
|
-
action_type: '
|
|
52692
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
52466
52693
|
error: {
|
|
52467
52694
|
type: 'uncategorized_error';
|
|
52468
52695
|
message: string;
|
|
@@ -52833,8 +53060,8 @@ interface Routes {
|
|
|
52833
53060
|
connected_account_id?: string | undefined;
|
|
52834
53061
|
connected_account_ids?: string[] | undefined;
|
|
52835
53062
|
connect_webview_id?: string | undefined;
|
|
52836
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
52837
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
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;
|
|
52838
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;
|
|
52839
53066
|
device_ids?: string[] | undefined;
|
|
52840
53067
|
limit?: number;
|
|
@@ -52850,7 +53077,7 @@ interface Routes {
|
|
|
52850
53077
|
/** Unique identifier for the device. */
|
|
52851
53078
|
device_id: string;
|
|
52852
53079
|
/** Type of the device. */
|
|
52853
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
52854
53081
|
/** Optional nickname to describe the device, settable through Seam */
|
|
52855
53082
|
nickname?: string | undefined;
|
|
52856
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. */
|
|
@@ -53157,6 +53384,9 @@ interface Routes {
|
|
|
53157
53384
|
gadget_id: string;
|
|
53158
53385
|
_member_group_id?: string | undefined;
|
|
53159
53386
|
} | undefined;
|
|
53387
|
+
assa_abloy_vostio_metadata?: {
|
|
53388
|
+
encoder_id: string;
|
|
53389
|
+
} | undefined;
|
|
53160
53390
|
}) & ({
|
|
53161
53391
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
53162
53392
|
code_constraints?: (Array<{
|
|
@@ -53309,7 +53539,7 @@ interface Routes {
|
|
|
53309
53539
|
/** Unique identifier for the device. */
|
|
53310
53540
|
device_id: string;
|
|
53311
53541
|
/** Type of the device. */
|
|
53312
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
53313
53543
|
/** Optional nickname to describe the device, settable through Seam */
|
|
53314
53544
|
nickname?: string | undefined;
|
|
53315
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. */
|
|
@@ -53616,6 +53846,9 @@ interface Routes {
|
|
|
53616
53846
|
gadget_id: string;
|
|
53617
53847
|
_member_group_id?: string | undefined;
|
|
53618
53848
|
} | undefined;
|
|
53849
|
+
assa_abloy_vostio_metadata?: {
|
|
53850
|
+
encoder_id: string;
|
|
53851
|
+
} | undefined;
|
|
53619
53852
|
}) & ({
|
|
53620
53853
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
53621
53854
|
code_constraints?: (Array<{
|
|
@@ -53831,15 +54064,15 @@ interface Routes {
|
|
|
53831
54064
|
status: 'pending';
|
|
53832
54065
|
result: null;
|
|
53833
54066
|
error: null;
|
|
53834
|
-
action_type: '
|
|
54067
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
53835
54068
|
} | {
|
|
53836
54069
|
/** The ID of the action attempt. */
|
|
53837
54070
|
action_attempt_id: string;
|
|
53838
54071
|
status: 'success';
|
|
53839
54072
|
error: null;
|
|
53840
|
-
action_type: '
|
|
54073
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
53841
54074
|
result: {
|
|
53842
|
-
/** Snapshot of
|
|
54075
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
53843
54076
|
acs_credential_on_encoder: {
|
|
53844
54077
|
/** Date and time the credential was created. */
|
|
53845
54078
|
created_at: string | null;
|
|
@@ -53992,7 +54225,7 @@ interface Routes {
|
|
|
53992
54225
|
action_attempt_id: string;
|
|
53993
54226
|
status: 'error';
|
|
53994
54227
|
result: null;
|
|
53995
|
-
action_type: '
|
|
54228
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
53996
54229
|
error: {
|
|
53997
54230
|
type: 'uncategorized_error';
|
|
53998
54231
|
message: string;
|
|
@@ -54009,13 +54242,13 @@ interface Routes {
|
|
|
54009
54242
|
status: 'pending';
|
|
54010
54243
|
result: null;
|
|
54011
54244
|
error: null;
|
|
54012
|
-
action_type: '
|
|
54245
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54013
54246
|
} | {
|
|
54014
54247
|
/** The ID of the action attempt. */
|
|
54015
54248
|
action_attempt_id: string;
|
|
54016
54249
|
status: 'success';
|
|
54017
54250
|
error: null;
|
|
54018
|
-
action_type: '
|
|
54251
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54019
54252
|
/** Means by which a user gains access at an entrance.
|
|
54020
54253
|
|
|
54021
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. */
|
|
@@ -54139,7 +54372,7 @@ interface Routes {
|
|
|
54139
54372
|
action_attempt_id: string;
|
|
54140
54373
|
status: 'error';
|
|
54141
54374
|
result: null;
|
|
54142
|
-
action_type: '
|
|
54375
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54143
54376
|
error: {
|
|
54144
54377
|
type: 'uncategorized_error';
|
|
54145
54378
|
message: string;
|
|
@@ -54686,15 +54919,15 @@ interface Routes {
|
|
|
54686
54919
|
status: 'pending';
|
|
54687
54920
|
result: null;
|
|
54688
54921
|
error: null;
|
|
54689
|
-
action_type: '
|
|
54922
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
54690
54923
|
} | {
|
|
54691
54924
|
/** The ID of the action attempt. */
|
|
54692
54925
|
action_attempt_id: string;
|
|
54693
54926
|
status: 'success';
|
|
54694
54927
|
error: null;
|
|
54695
|
-
action_type: '
|
|
54928
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
54696
54929
|
result: {
|
|
54697
|
-
/** Snapshot of
|
|
54930
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
54698
54931
|
acs_credential_on_encoder: {
|
|
54699
54932
|
/** Date and time the credential was created. */
|
|
54700
54933
|
created_at: string | null;
|
|
@@ -54847,7 +55080,7 @@ interface Routes {
|
|
|
54847
55080
|
action_attempt_id: string;
|
|
54848
55081
|
status: 'error';
|
|
54849
55082
|
result: null;
|
|
54850
|
-
action_type: '
|
|
55083
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
54851
55084
|
error: {
|
|
54852
55085
|
type: 'uncategorized_error';
|
|
54853
55086
|
message: string;
|
|
@@ -54864,13 +55097,13 @@ interface Routes {
|
|
|
54864
55097
|
status: 'pending';
|
|
54865
55098
|
result: null;
|
|
54866
55099
|
error: null;
|
|
54867
|
-
action_type: '
|
|
55100
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54868
55101
|
} | {
|
|
54869
55102
|
/** The ID of the action attempt. */
|
|
54870
55103
|
action_attempt_id: string;
|
|
54871
55104
|
status: 'success';
|
|
54872
55105
|
error: null;
|
|
54873
|
-
action_type: '
|
|
55106
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54874
55107
|
/** Means by which a user gains access at an entrance.
|
|
54875
55108
|
|
|
54876
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. */
|
|
@@ -54994,7 +55227,7 @@ interface Routes {
|
|
|
54994
55227
|
action_attempt_id: string;
|
|
54995
55228
|
status: 'error';
|
|
54996
55229
|
result: null;
|
|
54997
|
-
action_type: '
|
|
55230
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
54998
55231
|
error: {
|
|
54999
55232
|
type: 'uncategorized_error';
|
|
55000
55233
|
message: string;
|
|
@@ -55583,7 +55816,7 @@ interface Routes {
|
|
|
55583
55816
|
/** Unique identifier for the device. */
|
|
55584
55817
|
device_id: string;
|
|
55585
55818
|
/** Type of the device. */
|
|
55586
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
55587
55820
|
/** Optional nickname to describe the device, settable through Seam */
|
|
55588
55821
|
nickname?: string | undefined;
|
|
55589
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. */
|
|
@@ -55890,6 +56123,9 @@ interface Routes {
|
|
|
55890
56123
|
gadget_id: string;
|
|
55891
56124
|
_member_group_id?: string | undefined;
|
|
55892
56125
|
} | undefined;
|
|
56126
|
+
assa_abloy_vostio_metadata?: {
|
|
56127
|
+
encoder_id: string;
|
|
56128
|
+
} | undefined;
|
|
55893
56129
|
}) & ({
|
|
55894
56130
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
55895
56131
|
code_constraints?: (Array<{
|
|
@@ -56044,7 +56280,7 @@ interface Routes {
|
|
|
56044
56280
|
/** Unique identifier for the device. */
|
|
56045
56281
|
device_id: string;
|
|
56046
56282
|
/** Type of the device. */
|
|
56047
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
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');
|
|
56048
56284
|
/** Optional nickname to describe the device, settable through Seam */
|
|
56049
56285
|
nickname?: string | undefined;
|
|
56050
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. */
|
|
@@ -56351,6 +56587,9 @@ interface Routes {
|
|
|
56351
56587
|
gadget_id: string;
|
|
56352
56588
|
_member_group_id?: string | undefined;
|
|
56353
56589
|
} | undefined;
|
|
56590
|
+
assa_abloy_vostio_metadata?: {
|
|
56591
|
+
encoder_id: string;
|
|
56592
|
+
} | undefined;
|
|
56354
56593
|
}) & ({
|
|
56355
56594
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
56356
56595
|
code_constraints?: (Array<{
|
|
@@ -56949,15 +57188,15 @@ interface Routes {
|
|
|
56949
57188
|
status: 'pending';
|
|
56950
57189
|
result: null;
|
|
56951
57190
|
error: null;
|
|
56952
|
-
action_type: '
|
|
57191
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
56953
57192
|
} | {
|
|
56954
57193
|
/** The ID of the action attempt. */
|
|
56955
57194
|
action_attempt_id: string;
|
|
56956
57195
|
status: 'success';
|
|
56957
57196
|
error: null;
|
|
56958
|
-
action_type: '
|
|
57197
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
56959
57198
|
result: {
|
|
56960
|
-
/** Snapshot of
|
|
57199
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
56961
57200
|
acs_credential_on_encoder: {
|
|
56962
57201
|
/** Date and time the credential was created. */
|
|
56963
57202
|
created_at: string | null;
|
|
@@ -57110,7 +57349,7 @@ interface Routes {
|
|
|
57110
57349
|
action_attempt_id: string;
|
|
57111
57350
|
status: 'error';
|
|
57112
57351
|
result: null;
|
|
57113
|
-
action_type: '
|
|
57352
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
57114
57353
|
error: {
|
|
57115
57354
|
type: 'uncategorized_error';
|
|
57116
57355
|
message: string;
|
|
@@ -57127,13 +57366,13 @@ interface Routes {
|
|
|
57127
57366
|
status: 'pending';
|
|
57128
57367
|
result: null;
|
|
57129
57368
|
error: null;
|
|
57130
|
-
action_type: '
|
|
57369
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
57131
57370
|
} | {
|
|
57132
57371
|
/** The ID of the action attempt. */
|
|
57133
57372
|
action_attempt_id: string;
|
|
57134
57373
|
status: 'success';
|
|
57135
57374
|
error: null;
|
|
57136
|
-
action_type: '
|
|
57375
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
57137
57376
|
/** Means by which a user gains access at an entrance.
|
|
57138
57377
|
|
|
57139
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. */
|
|
@@ -57257,7 +57496,7 @@ interface Routes {
|
|
|
57257
57496
|
action_attempt_id: string;
|
|
57258
57497
|
status: 'error';
|
|
57259
57498
|
result: null;
|
|
57260
|
-
action_type: '
|
|
57499
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
57261
57500
|
error: {
|
|
57262
57501
|
type: 'uncategorized_error';
|
|
57263
57502
|
message: string;
|