@seamapi/types 1.283.0 → 1.285.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +104 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +430 -82
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +37 -4
- package/lib/seam/connect/models/acs/acs-entrance.js +2 -1
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-system.js +2 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/assa_abloy_vostio.d.ts +21 -0
- package/lib/seam/connect/models/acs/metadata/assa_abloy_vostio.js +9 -0
- package/lib/seam/connect/models/acs/metadata/assa_abloy_vostio.js.map +1 -0
- package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/latch.d.ts +2 -2
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +62 -2
- package/lib/seam/connect/models/action-attempts/common.d.ts +19 -0
- package/lib/seam/connect/models/action-attempts/common.js +10 -0
- package/lib/seam/connect/models/action-attempts/common.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/encode-card.d.ts +30 -0
- package/lib/seam/connect/models/action-attempts/encode-card.js +2 -1
- package/lib/seam/connect/models/action-attempts/encode-card.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/scan-card.d.ts +32 -2
- package/lib/seam/connect/models/action-attempts/scan-card.js +6 -2
- package/lib/seam/connect/models/action-attempts/scan-card.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +38 -60
- package/lib/seam/connect/openapi.js +70 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +285 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +3 -0
- package/src/lib/seam/connect/models/acs/acs-system.ts +2 -0
- package/src/lib/seam/connect/models/acs/metadata/assa_abloy_vostio.ts +13 -0
- package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
- package/src/lib/seam/connect/models/action-attempts/common.ts +11 -0
- package/src/lib/seam/connect/models/action-attempts/encode-card.ts +2 -0
- package/src/lib/seam/connect/models/action-attempts/scan-card.ts +7 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +70 -6
- package/src/lib/seam/connect/route-types.ts +505 -80
package/dist/connect.d.cts
CHANGED
|
@@ -715,13 +715,13 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
715
715
|
}, "strip", z.ZodTypeAny, {
|
|
716
716
|
door_name: string;
|
|
717
717
|
is_connected: boolean;
|
|
718
|
-
accessibility_type: string;
|
|
719
718
|
door_type: string;
|
|
719
|
+
accessibility_type: string;
|
|
720
720
|
}, {
|
|
721
721
|
door_name: string;
|
|
722
722
|
is_connected: boolean;
|
|
723
|
-
accessibility_type: string;
|
|
724
723
|
door_type: string;
|
|
724
|
+
accessibility_type: string;
|
|
725
725
|
}>>;
|
|
726
726
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
727
727
|
door_name: z.ZodString;
|
|
@@ -786,6 +786,25 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
786
786
|
}, {
|
|
787
787
|
access_point_name: string;
|
|
788
788
|
}>>;
|
|
789
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
790
|
+
door_type: z.ZodEnum<["CommonDoor", "EntranceDoor", "GuestDoor", "Elevator"]>;
|
|
791
|
+
door_name: z.ZodString;
|
|
792
|
+
door_number: z.ZodOptional<z.ZodNumber>;
|
|
793
|
+
stand_open: z.ZodOptional<z.ZodBoolean>;
|
|
794
|
+
pms_id: z.ZodOptional<z.ZodString>;
|
|
795
|
+
}, "strip", z.ZodTypeAny, {
|
|
796
|
+
door_name: string;
|
|
797
|
+
door_type: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator";
|
|
798
|
+
door_number?: number | undefined;
|
|
799
|
+
stand_open?: boolean | undefined;
|
|
800
|
+
pms_id?: string | undefined;
|
|
801
|
+
}, {
|
|
802
|
+
door_name: string;
|
|
803
|
+
door_type: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator";
|
|
804
|
+
door_number?: number | undefined;
|
|
805
|
+
stand_open?: boolean | undefined;
|
|
806
|
+
pms_id?: string | undefined;
|
|
807
|
+
}>>;
|
|
789
808
|
}, "strip", z.ZodTypeAny, {
|
|
790
809
|
created_at: string;
|
|
791
810
|
errors: {
|
|
@@ -816,12 +835,19 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
816
835
|
latch_metadata?: {
|
|
817
836
|
door_name: string;
|
|
818
837
|
is_connected: boolean;
|
|
819
|
-
accessibility_type: string;
|
|
820
838
|
door_type: string;
|
|
839
|
+
accessibility_type: string;
|
|
821
840
|
} | undefined;
|
|
822
841
|
dormakaba_community_metadata?: {
|
|
823
842
|
access_point_name: string;
|
|
824
843
|
} | undefined;
|
|
844
|
+
assa_abloy_vostio_metadata?: {
|
|
845
|
+
door_name: string;
|
|
846
|
+
door_type: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator";
|
|
847
|
+
door_number?: number | undefined;
|
|
848
|
+
stand_open?: boolean | undefined;
|
|
849
|
+
pms_id?: string | undefined;
|
|
850
|
+
} | undefined;
|
|
825
851
|
}, {
|
|
826
852
|
created_at: string;
|
|
827
853
|
errors: {
|
|
@@ -852,19 +878,26 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
852
878
|
latch_metadata?: {
|
|
853
879
|
door_name: string;
|
|
854
880
|
is_connected: boolean;
|
|
855
|
-
accessibility_type: string;
|
|
856
881
|
door_type: string;
|
|
882
|
+
accessibility_type: string;
|
|
857
883
|
} | undefined;
|
|
858
884
|
dormakaba_community_metadata?: {
|
|
859
885
|
access_point_name: string;
|
|
860
886
|
} | undefined;
|
|
887
|
+
assa_abloy_vostio_metadata?: {
|
|
888
|
+
door_name: string;
|
|
889
|
+
door_type: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator";
|
|
890
|
+
door_number?: number | undefined;
|
|
891
|
+
stand_open?: boolean | undefined;
|
|
892
|
+
pms_id?: string | undefined;
|
|
893
|
+
} | undefined;
|
|
861
894
|
}>;
|
|
862
895
|
type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
863
896
|
|
|
864
897
|
declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
865
898
|
default_credential_manager_acs_system_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
866
899
|
acs_system_id: z.ZodString;
|
|
867
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community", "assa_abloy_vostio"]>>;
|
|
900
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community", "legic_connect", "assa_abloy_vostio", "vostio_credential_service"]>>;
|
|
868
901
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
869
902
|
is_credential_manager: z.ZodBoolean;
|
|
870
903
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -880,7 +913,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
880
913
|
system_id: string;
|
|
881
914
|
lan_address: string;
|
|
882
915
|
}>>;
|
|
883
|
-
system_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community", "assa_abloy_vostio"]>>;
|
|
916
|
+
system_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community", "legic_connect", "assa_abloy_vostio", "vostio_credential_service"]>>;
|
|
884
917
|
system_type_display_name: z.ZodOptional<z.ZodString>;
|
|
885
918
|
name: z.ZodString;
|
|
886
919
|
created_at: z.ZodString;
|
|
@@ -1013,14 +1046,14 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1013
1046
|
system_id: string;
|
|
1014
1047
|
lan_address: string;
|
|
1015
1048
|
} | undefined;
|
|
1016
|
-
external_type?: "dormakaba_community" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1049
|
+
external_type?: "dormakaba_community" | "legic_connect" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1017
1050
|
external_type_display_name?: string | undefined;
|
|
1018
1051
|
can_automate_enrollment?: boolean | undefined;
|
|
1019
1052
|
can_create_acs_access_groups?: boolean | undefined;
|
|
1020
1053
|
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
1021
1054
|
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
1022
1055
|
default_credential_manager_acs_system_id?: string | null | undefined;
|
|
1023
|
-
system_type?: "dormakaba_community" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1056
|
+
system_type?: "dormakaba_community" | "legic_connect" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1024
1057
|
system_type_display_name?: string | undefined;
|
|
1025
1058
|
}, {
|
|
1026
1059
|
created_at: string;
|
|
@@ -1062,14 +1095,14 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1062
1095
|
system_id: string;
|
|
1063
1096
|
lan_address: string;
|
|
1064
1097
|
} | undefined;
|
|
1065
|
-
external_type?: "dormakaba_community" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1098
|
+
external_type?: "dormakaba_community" | "legic_connect" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1066
1099
|
external_type_display_name?: string | undefined;
|
|
1067
1100
|
can_automate_enrollment?: boolean | undefined;
|
|
1068
1101
|
can_create_acs_access_groups?: boolean | undefined;
|
|
1069
1102
|
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
1070
1103
|
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
1071
1104
|
default_credential_manager_acs_system_id?: string | null | undefined;
|
|
1072
|
-
system_type?: "dormakaba_community" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1105
|
+
system_type?: "dormakaba_community" | "legic_connect" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1073
1106
|
system_type_display_name?: string | undefined;
|
|
1074
1107
|
}>;
|
|
1075
1108
|
type AcsSystem = z.output<typeof acs_system>;
|
|
@@ -2585,7 +2618,25 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2585
2618
|
result: z.ZodNull;
|
|
2586
2619
|
}>, {
|
|
2587
2620
|
action_type: z.ZodLiteral<"SCAN_CARD">;
|
|
2588
|
-
error: z.ZodObject<{
|
|
2621
|
+
error: z.ZodUnion<[z.ZodObject<{
|
|
2622
|
+
type: z.ZodLiteral<"uncategorized_error">;
|
|
2623
|
+
message: z.ZodString;
|
|
2624
|
+
}, "strip", z.ZodTypeAny, {
|
|
2625
|
+
message: string;
|
|
2626
|
+
type: "uncategorized_error";
|
|
2627
|
+
}, {
|
|
2628
|
+
message: string;
|
|
2629
|
+
type: "uncategorized_error";
|
|
2630
|
+
}>, z.ZodObject<{
|
|
2631
|
+
type: z.ZodLiteral<"action_attempt_expired">;
|
|
2632
|
+
message: z.ZodString;
|
|
2633
|
+
}, "strip", z.ZodTypeAny, {
|
|
2634
|
+
message: string;
|
|
2635
|
+
type: "action_attempt_expired";
|
|
2636
|
+
}, {
|
|
2637
|
+
message: string;
|
|
2638
|
+
type: "action_attempt_expired";
|
|
2639
|
+
}>, z.ZodObject<{
|
|
2589
2640
|
type: z.ZodLiteral<"no_card_on_encoder">;
|
|
2590
2641
|
message: z.ZodString;
|
|
2591
2642
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2594,11 +2645,17 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2594
2645
|
}, {
|
|
2595
2646
|
message: string;
|
|
2596
2647
|
type: "no_card_on_encoder";
|
|
2597
|
-
}>;
|
|
2648
|
+
}>]>;
|
|
2598
2649
|
}>, "strip", z.ZodTypeAny, {
|
|
2599
2650
|
status: "error";
|
|
2600
2651
|
action_attempt_id: string;
|
|
2601
2652
|
error: {
|
|
2653
|
+
message: string;
|
|
2654
|
+
type: "uncategorized_error";
|
|
2655
|
+
} | {
|
|
2656
|
+
message: string;
|
|
2657
|
+
type: "action_attempt_expired";
|
|
2658
|
+
} | {
|
|
2602
2659
|
message: string;
|
|
2603
2660
|
type: "no_card_on_encoder";
|
|
2604
2661
|
};
|
|
@@ -2608,6 +2665,12 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2608
2665
|
status: "error";
|
|
2609
2666
|
action_attempt_id: string;
|
|
2610
2667
|
error: {
|
|
2668
|
+
message: string;
|
|
2669
|
+
type: "uncategorized_error";
|
|
2670
|
+
} | {
|
|
2671
|
+
message: string;
|
|
2672
|
+
type: "action_attempt_expired";
|
|
2673
|
+
} | {
|
|
2611
2674
|
message: string;
|
|
2612
2675
|
type: "no_card_on_encoder";
|
|
2613
2676
|
};
|
|
@@ -3126,6 +3189,24 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3126
3189
|
}>, {
|
|
3127
3190
|
action_type: z.ZodLiteral<"ENCODE_CARD">;
|
|
3128
3191
|
error: z.ZodUnion<[z.ZodObject<{
|
|
3192
|
+
type: z.ZodLiteral<"uncategorized_error">;
|
|
3193
|
+
message: z.ZodString;
|
|
3194
|
+
}, "strip", z.ZodTypeAny, {
|
|
3195
|
+
message: string;
|
|
3196
|
+
type: "uncategorized_error";
|
|
3197
|
+
}, {
|
|
3198
|
+
message: string;
|
|
3199
|
+
type: "uncategorized_error";
|
|
3200
|
+
}>, z.ZodObject<{
|
|
3201
|
+
type: z.ZodLiteral<"action_attempt_expired">;
|
|
3202
|
+
message: z.ZodString;
|
|
3203
|
+
}, "strip", z.ZodTypeAny, {
|
|
3204
|
+
message: string;
|
|
3205
|
+
type: "action_attempt_expired";
|
|
3206
|
+
}, {
|
|
3207
|
+
message: string;
|
|
3208
|
+
type: "action_attempt_expired";
|
|
3209
|
+
}>, z.ZodObject<{
|
|
3129
3210
|
type: z.ZodLiteral<"no_card_on_encoder">;
|
|
3130
3211
|
message: z.ZodString;
|
|
3131
3212
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3148,6 +3229,12 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3148
3229
|
status: "error";
|
|
3149
3230
|
action_attempt_id: string;
|
|
3150
3231
|
error: {
|
|
3232
|
+
message: string;
|
|
3233
|
+
type: "uncategorized_error";
|
|
3234
|
+
} | {
|
|
3235
|
+
message: string;
|
|
3236
|
+
type: "action_attempt_expired";
|
|
3237
|
+
} | {
|
|
3151
3238
|
message: string;
|
|
3152
3239
|
type: "no_card_on_encoder";
|
|
3153
3240
|
} | {
|
|
@@ -3160,6 +3247,12 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3160
3247
|
status: "error";
|
|
3161
3248
|
action_attempt_id: string;
|
|
3162
3249
|
error: {
|
|
3250
|
+
message: string;
|
|
3251
|
+
type: "uncategorized_error";
|
|
3252
|
+
} | {
|
|
3253
|
+
message: string;
|
|
3254
|
+
type: "action_attempt_expired";
|
|
3255
|
+
} | {
|
|
3163
3256
|
message: string;
|
|
3164
3257
|
type: "no_card_on_encoder";
|
|
3165
3258
|
} | {
|
|
@@ -7251,6 +7344,7 @@ type Device = z.infer<typeof device>;
|
|
|
7251
7344
|
|
|
7252
7345
|
declare const DEVICE_PROVIDERS: {
|
|
7253
7346
|
readonly DORMAKABA_COMMUNITY: "dormakaba_community";
|
|
7347
|
+
readonly LEGIC_CONNECT: "legic_connect";
|
|
7254
7348
|
readonly AKUVOX: "akuvox";
|
|
7255
7349
|
readonly AUGUST: "august";
|
|
7256
7350
|
readonly AVIGILON_ALTA: "avigilon_alta";
|
|
@@ -7290,6 +7384,7 @@ declare const DEVICE_PROVIDERS: {
|
|
|
7290
7384
|
readonly LATCH: "latch";
|
|
7291
7385
|
readonly AKILES: "akiles";
|
|
7292
7386
|
readonly VOSTIO: "assa_abloy_vostio";
|
|
7387
|
+
readonly VOSTIO_CREDENTIAL_SERVICE: "vostio_credential_service";
|
|
7293
7388
|
};
|
|
7294
7389
|
type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
|
|
7295
7390
|
declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -11917,6 +12012,29 @@ declare const _default: {
|
|
|
11917
12012
|
format: string;
|
|
11918
12013
|
type: string;
|
|
11919
12014
|
};
|
|
12015
|
+
assa_abloy_vostio_metadata: {
|
|
12016
|
+
properties: {
|
|
12017
|
+
door_name: {
|
|
12018
|
+
type: string;
|
|
12019
|
+
};
|
|
12020
|
+
door_number: {
|
|
12021
|
+
format: string;
|
|
12022
|
+
type: string;
|
|
12023
|
+
};
|
|
12024
|
+
door_type: {
|
|
12025
|
+
enum: string[];
|
|
12026
|
+
type: string;
|
|
12027
|
+
};
|
|
12028
|
+
pms_id: {
|
|
12029
|
+
type: string;
|
|
12030
|
+
};
|
|
12031
|
+
stand_open: {
|
|
12032
|
+
type: string;
|
|
12033
|
+
};
|
|
12034
|
+
};
|
|
12035
|
+
required: string[];
|
|
12036
|
+
type: string;
|
|
12037
|
+
};
|
|
11920
12038
|
created_at: {
|
|
11921
12039
|
description: string;
|
|
11922
12040
|
format: string;
|
|
@@ -12473,7 +12591,6 @@ declare const _default: {
|
|
|
12473
12591
|
};
|
|
12474
12592
|
type: {
|
|
12475
12593
|
type: string;
|
|
12476
|
-
enum?: never;
|
|
12477
12594
|
};
|
|
12478
12595
|
};
|
|
12479
12596
|
required: string[];
|
|
@@ -12831,19 +12948,23 @@ declare const _default: {
|
|
|
12831
12948
|
type: string;
|
|
12832
12949
|
};
|
|
12833
12950
|
error: {
|
|
12834
|
-
|
|
12835
|
-
|
|
12836
|
-
|
|
12837
|
-
|
|
12838
|
-
|
|
12839
|
-
|
|
12840
|
-
|
|
12951
|
+
oneOf: {
|
|
12952
|
+
properties: {
|
|
12953
|
+
message: {
|
|
12954
|
+
type: string;
|
|
12955
|
+
};
|
|
12956
|
+
type: {
|
|
12957
|
+
enum: string[];
|
|
12958
|
+
type: string;
|
|
12959
|
+
};
|
|
12841
12960
|
};
|
|
12842
|
-
|
|
12843
|
-
|
|
12844
|
-
|
|
12961
|
+
required: string[];
|
|
12962
|
+
type: string;
|
|
12963
|
+
}[];
|
|
12845
12964
|
nullable?: never;
|
|
12846
|
-
|
|
12965
|
+
properties?: never;
|
|
12966
|
+
required?: never;
|
|
12967
|
+
type?: never;
|
|
12847
12968
|
};
|
|
12848
12969
|
result: {
|
|
12849
12970
|
nullable: boolean;
|
|
@@ -13070,53 +13191,6 @@ declare const _default: {
|
|
|
13070
13191
|
};
|
|
13071
13192
|
required: string[];
|
|
13072
13193
|
type: string;
|
|
13073
|
-
} | {
|
|
13074
|
-
description: string;
|
|
13075
|
-
properties: {
|
|
13076
|
-
action_attempt_id: {
|
|
13077
|
-
description: string;
|
|
13078
|
-
format: string;
|
|
13079
|
-
type: string;
|
|
13080
|
-
'x-title': string;
|
|
13081
|
-
};
|
|
13082
|
-
action_type: {
|
|
13083
|
-
enum: string[];
|
|
13084
|
-
type: string;
|
|
13085
|
-
};
|
|
13086
|
-
error: {
|
|
13087
|
-
oneOf: {
|
|
13088
|
-
properties: {
|
|
13089
|
-
message: {
|
|
13090
|
-
type: string;
|
|
13091
|
-
};
|
|
13092
|
-
type: {
|
|
13093
|
-
enum: string[];
|
|
13094
|
-
type: string;
|
|
13095
|
-
};
|
|
13096
|
-
};
|
|
13097
|
-
required: string[];
|
|
13098
|
-
type: string;
|
|
13099
|
-
}[];
|
|
13100
|
-
nullable?: never;
|
|
13101
|
-
properties?: never;
|
|
13102
|
-
required?: never;
|
|
13103
|
-
type?: never;
|
|
13104
|
-
};
|
|
13105
|
-
result: {
|
|
13106
|
-
nullable: boolean;
|
|
13107
|
-
properties?: never;
|
|
13108
|
-
type?: never;
|
|
13109
|
-
required?: never;
|
|
13110
|
-
description?: never;
|
|
13111
|
-
oneOf?: never;
|
|
13112
|
-
};
|
|
13113
|
-
status: {
|
|
13114
|
-
enum: string[];
|
|
13115
|
-
type: string;
|
|
13116
|
-
};
|
|
13117
|
-
};
|
|
13118
|
-
required: string[];
|
|
13119
|
-
type: string;
|
|
13120
13194
|
} | {
|
|
13121
13195
|
properties: {
|
|
13122
13196
|
action_attempt_id: {
|
|
@@ -13212,7 +13286,6 @@ declare const _default: {
|
|
|
13212
13286
|
};
|
|
13213
13287
|
type: {
|
|
13214
13288
|
type: string;
|
|
13215
|
-
enum?: never;
|
|
13216
13289
|
};
|
|
13217
13290
|
};
|
|
13218
13291
|
required: string[];
|
|
@@ -31633,6 +31706,12 @@ interface Routes {
|
|
|
31633
31706
|
result: null;
|
|
31634
31707
|
action_type: 'SCAN_CARD';
|
|
31635
31708
|
error: {
|
|
31709
|
+
type: 'uncategorized_error';
|
|
31710
|
+
message: string;
|
|
31711
|
+
} | {
|
|
31712
|
+
type: 'action_attempt_expired';
|
|
31713
|
+
message: string;
|
|
31714
|
+
} | {
|
|
31636
31715
|
type: 'no_card_on_encoder';
|
|
31637
31716
|
message: string;
|
|
31638
31717
|
};
|
|
@@ -31774,6 +31853,12 @@ interface Routes {
|
|
|
31774
31853
|
result: null;
|
|
31775
31854
|
action_type: 'ENCODE_CARD';
|
|
31776
31855
|
error: {
|
|
31856
|
+
type: 'uncategorized_error';
|
|
31857
|
+
message: string;
|
|
31858
|
+
} | {
|
|
31859
|
+
type: 'action_attempt_expired';
|
|
31860
|
+
message: string;
|
|
31861
|
+
} | {
|
|
31777
31862
|
type: 'no_card_on_encoder';
|
|
31778
31863
|
message: string;
|
|
31779
31864
|
} | {
|
|
@@ -32505,6 +32590,12 @@ interface Routes {
|
|
|
32505
32590
|
result: null;
|
|
32506
32591
|
action_type: 'SCAN_CARD';
|
|
32507
32592
|
error: {
|
|
32593
|
+
type: 'uncategorized_error';
|
|
32594
|
+
message: string;
|
|
32595
|
+
} | {
|
|
32596
|
+
type: 'action_attempt_expired';
|
|
32597
|
+
message: string;
|
|
32598
|
+
} | {
|
|
32508
32599
|
type: 'no_card_on_encoder';
|
|
32509
32600
|
message: string;
|
|
32510
32601
|
};
|
|
@@ -32646,6 +32737,12 @@ interface Routes {
|
|
|
32646
32737
|
result: null;
|
|
32647
32738
|
action_type: 'ENCODE_CARD';
|
|
32648
32739
|
error: {
|
|
32740
|
+
type: 'uncategorized_error';
|
|
32741
|
+
message: string;
|
|
32742
|
+
} | {
|
|
32743
|
+
type: 'action_attempt_expired';
|
|
32744
|
+
message: string;
|
|
32745
|
+
} | {
|
|
32649
32746
|
type: 'no_card_on_encoder';
|
|
32650
32747
|
message: string;
|
|
32651
32748
|
} | {
|
|
@@ -33534,6 +33631,12 @@ interface Routes {
|
|
|
33534
33631
|
result: null;
|
|
33535
33632
|
action_type: 'SCAN_CARD';
|
|
33536
33633
|
error: {
|
|
33634
|
+
type: 'uncategorized_error';
|
|
33635
|
+
message: string;
|
|
33636
|
+
} | {
|
|
33637
|
+
type: 'action_attempt_expired';
|
|
33638
|
+
message: string;
|
|
33639
|
+
} | {
|
|
33537
33640
|
type: 'no_card_on_encoder';
|
|
33538
33641
|
message: string;
|
|
33539
33642
|
};
|
|
@@ -33675,6 +33778,12 @@ interface Routes {
|
|
|
33675
33778
|
result: null;
|
|
33676
33779
|
action_type: 'ENCODE_CARD';
|
|
33677
33780
|
error: {
|
|
33781
|
+
type: 'uncategorized_error';
|
|
33782
|
+
message: string;
|
|
33783
|
+
} | {
|
|
33784
|
+
type: 'action_attempt_expired';
|
|
33785
|
+
message: string;
|
|
33786
|
+
} | {
|
|
33678
33787
|
type: 'no_card_on_encoder';
|
|
33679
33788
|
message: string;
|
|
33680
33789
|
} | {
|
|
@@ -34393,6 +34502,12 @@ interface Routes {
|
|
|
34393
34502
|
result: null;
|
|
34394
34503
|
action_type: 'SCAN_CARD';
|
|
34395
34504
|
error: {
|
|
34505
|
+
type: 'uncategorized_error';
|
|
34506
|
+
message: string;
|
|
34507
|
+
} | {
|
|
34508
|
+
type: 'action_attempt_expired';
|
|
34509
|
+
message: string;
|
|
34510
|
+
} | {
|
|
34396
34511
|
type: 'no_card_on_encoder';
|
|
34397
34512
|
message: string;
|
|
34398
34513
|
};
|
|
@@ -34534,6 +34649,12 @@ interface Routes {
|
|
|
34534
34649
|
result: null;
|
|
34535
34650
|
action_type: 'ENCODE_CARD';
|
|
34536
34651
|
error: {
|
|
34652
|
+
type: 'uncategorized_error';
|
|
34653
|
+
message: string;
|
|
34654
|
+
} | {
|
|
34655
|
+
type: 'action_attempt_expired';
|
|
34656
|
+
message: string;
|
|
34657
|
+
} | {
|
|
34537
34658
|
type: 'no_card_on_encoder';
|
|
34538
34659
|
message: string;
|
|
34539
34660
|
} | {
|
|
@@ -35051,6 +35172,13 @@ interface Routes {
|
|
|
35051
35172
|
dormakaba_community_metadata?: {
|
|
35052
35173
|
access_point_name: string;
|
|
35053
35174
|
} | undefined;
|
|
35175
|
+
assa_abloy_vostio_metadata?: {
|
|
35176
|
+
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
35177
|
+
door_name: string;
|
|
35178
|
+
door_number?: number | undefined;
|
|
35179
|
+
stand_open?: boolean | undefined;
|
|
35180
|
+
pms_id?: string | undefined;
|
|
35181
|
+
} | undefined;
|
|
35054
35182
|
}>;
|
|
35055
35183
|
};
|
|
35056
35184
|
};
|
|
@@ -35691,6 +35819,13 @@ interface Routes {
|
|
|
35691
35819
|
dormakaba_community_metadata?: {
|
|
35692
35820
|
access_point_name: string;
|
|
35693
35821
|
} | undefined;
|
|
35822
|
+
assa_abloy_vostio_metadata?: {
|
|
35823
|
+
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
35824
|
+
door_name: string;
|
|
35825
|
+
door_number?: number | undefined;
|
|
35826
|
+
stand_open?: boolean | undefined;
|
|
35827
|
+
pms_id?: string | undefined;
|
|
35828
|
+
} | undefined;
|
|
35694
35829
|
}>;
|
|
35695
35830
|
};
|
|
35696
35831
|
};
|
|
@@ -36232,6 +36367,12 @@ interface Routes {
|
|
|
36232
36367
|
result: null;
|
|
36233
36368
|
action_type: 'SCAN_CARD';
|
|
36234
36369
|
error: {
|
|
36370
|
+
type: 'uncategorized_error';
|
|
36371
|
+
message: string;
|
|
36372
|
+
} | {
|
|
36373
|
+
type: 'action_attempt_expired';
|
|
36374
|
+
message: string;
|
|
36375
|
+
} | {
|
|
36235
36376
|
type: 'no_card_on_encoder';
|
|
36236
36377
|
message: string;
|
|
36237
36378
|
};
|
|
@@ -36373,6 +36514,12 @@ interface Routes {
|
|
|
36373
36514
|
result: null;
|
|
36374
36515
|
action_type: 'ENCODE_CARD';
|
|
36375
36516
|
error: {
|
|
36517
|
+
type: 'uncategorized_error';
|
|
36518
|
+
message: string;
|
|
36519
|
+
} | {
|
|
36520
|
+
type: 'action_attempt_expired';
|
|
36521
|
+
message: string;
|
|
36522
|
+
} | {
|
|
36376
36523
|
type: 'no_card_on_encoder';
|
|
36377
36524
|
message: string;
|
|
36378
36525
|
} | {
|
|
@@ -37433,6 +37580,12 @@ interface Routes {
|
|
|
37433
37580
|
result: null;
|
|
37434
37581
|
action_type: 'SCAN_CARD';
|
|
37435
37582
|
error: {
|
|
37583
|
+
type: 'uncategorized_error';
|
|
37584
|
+
message: string;
|
|
37585
|
+
} | {
|
|
37586
|
+
type: 'action_attempt_expired';
|
|
37587
|
+
message: string;
|
|
37588
|
+
} | {
|
|
37436
37589
|
type: 'no_card_on_encoder';
|
|
37437
37590
|
message: string;
|
|
37438
37591
|
};
|
|
@@ -37574,6 +37727,12 @@ interface Routes {
|
|
|
37574
37727
|
result: null;
|
|
37575
37728
|
action_type: 'ENCODE_CARD';
|
|
37576
37729
|
error: {
|
|
37730
|
+
type: 'uncategorized_error';
|
|
37731
|
+
message: string;
|
|
37732
|
+
} | {
|
|
37733
|
+
type: 'action_attempt_expired';
|
|
37734
|
+
message: string;
|
|
37735
|
+
} | {
|
|
37577
37736
|
type: 'no_card_on_encoder';
|
|
37578
37737
|
message: string;
|
|
37579
37738
|
} | {
|
|
@@ -37977,6 +38136,13 @@ interface Routes {
|
|
|
37977
38136
|
dormakaba_community_metadata?: {
|
|
37978
38137
|
access_point_name: string;
|
|
37979
38138
|
} | undefined;
|
|
38139
|
+
assa_abloy_vostio_metadata?: {
|
|
38140
|
+
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
38141
|
+
door_name: string;
|
|
38142
|
+
door_number?: number | undefined;
|
|
38143
|
+
stand_open?: boolean | undefined;
|
|
38144
|
+
pms_id?: string | undefined;
|
|
38145
|
+
} | undefined;
|
|
37980
38146
|
};
|
|
37981
38147
|
};
|
|
37982
38148
|
};
|
|
@@ -38043,6 +38209,13 @@ interface Routes {
|
|
|
38043
38209
|
dormakaba_community_metadata?: {
|
|
38044
38210
|
access_point_name: string;
|
|
38045
38211
|
} | undefined;
|
|
38212
|
+
assa_abloy_vostio_metadata?: {
|
|
38213
|
+
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
38214
|
+
door_name: string;
|
|
38215
|
+
door_number?: number | undefined;
|
|
38216
|
+
stand_open?: boolean | undefined;
|
|
38217
|
+
pms_id?: string | undefined;
|
|
38218
|
+
} | undefined;
|
|
38046
38219
|
}>;
|
|
38047
38220
|
};
|
|
38048
38221
|
};
|
|
@@ -38135,7 +38308,7 @@ interface Routes {
|
|
|
38135
38308
|
/** ID of the `acs_system`. */
|
|
38136
38309
|
acs_system_id: string;
|
|
38137
38310
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
38138
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
38311
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
38139
38312
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
38140
38313
|
external_type_display_name?: string | undefined;
|
|
38141
38314
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -38150,7 +38323,7 @@ interface Routes {
|
|
|
38150
38323
|
} | undefined;
|
|
38151
38324
|
/**
|
|
38152
38325
|
* @deprecated Use `external_type`. */
|
|
38153
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
38326
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
38154
38327
|
/**
|
|
38155
38328
|
* @deprecated Use `external_type_display_name`. */
|
|
38156
38329
|
system_type_display_name?: string | undefined;
|
|
@@ -38240,7 +38413,7 @@ interface Routes {
|
|
|
38240
38413
|
/** ID of the `acs_system`. */
|
|
38241
38414
|
acs_system_id: string;
|
|
38242
38415
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
38243
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
38416
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
38244
38417
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
38245
38418
|
external_type_display_name?: string | undefined;
|
|
38246
38419
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -38255,7 +38428,7 @@ interface Routes {
|
|
|
38255
38428
|
} | undefined;
|
|
38256
38429
|
/**
|
|
38257
38430
|
* @deprecated Use `external_type`. */
|
|
38258
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
38431
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
38259
38432
|
/**
|
|
38260
38433
|
* @deprecated Use `external_type_display_name`. */
|
|
38261
38434
|
system_type_display_name?: string | undefined;
|
|
@@ -38345,7 +38518,7 @@ interface Routes {
|
|
|
38345
38518
|
/** ID of the `acs_system`. */
|
|
38346
38519
|
acs_system_id: string;
|
|
38347
38520
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
38348
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
38521
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
38349
38522
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
38350
38523
|
external_type_display_name?: string | undefined;
|
|
38351
38524
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -38360,7 +38533,7 @@ interface Routes {
|
|
|
38360
38533
|
} | undefined;
|
|
38361
38534
|
/**
|
|
38362
38535
|
* @deprecated Use `external_type`. */
|
|
38363
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
38536
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
38364
38537
|
/**
|
|
38365
38538
|
* @deprecated Use `external_type_display_name`. */
|
|
38366
38539
|
system_type_display_name?: string | undefined;
|
|
@@ -38839,6 +39012,13 @@ interface Routes {
|
|
|
38839
39012
|
dormakaba_community_metadata?: {
|
|
38840
39013
|
access_point_name: string;
|
|
38841
39014
|
} | undefined;
|
|
39015
|
+
assa_abloy_vostio_metadata?: {
|
|
39016
|
+
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
39017
|
+
door_name: string;
|
|
39018
|
+
door_number?: number | undefined;
|
|
39019
|
+
stand_open?: boolean | undefined;
|
|
39020
|
+
pms_id?: string | undefined;
|
|
39021
|
+
} | undefined;
|
|
38842
39022
|
}>;
|
|
38843
39023
|
};
|
|
38844
39024
|
};
|
|
@@ -39350,6 +39530,12 @@ interface Routes {
|
|
|
39350
39530
|
result: null;
|
|
39351
39531
|
action_type: 'SCAN_CARD';
|
|
39352
39532
|
error: {
|
|
39533
|
+
type: 'uncategorized_error';
|
|
39534
|
+
message: string;
|
|
39535
|
+
} | {
|
|
39536
|
+
type: 'action_attempt_expired';
|
|
39537
|
+
message: string;
|
|
39538
|
+
} | {
|
|
39353
39539
|
type: 'no_card_on_encoder';
|
|
39354
39540
|
message: string;
|
|
39355
39541
|
};
|
|
@@ -39491,6 +39677,12 @@ interface Routes {
|
|
|
39491
39677
|
result: null;
|
|
39492
39678
|
action_type: 'ENCODE_CARD';
|
|
39493
39679
|
error: {
|
|
39680
|
+
type: 'uncategorized_error';
|
|
39681
|
+
message: string;
|
|
39682
|
+
} | {
|
|
39683
|
+
type: 'action_attempt_expired';
|
|
39684
|
+
message: string;
|
|
39685
|
+
} | {
|
|
39494
39686
|
type: 'no_card_on_encoder';
|
|
39495
39687
|
message: string;
|
|
39496
39688
|
} | {
|
|
@@ -40071,6 +40263,12 @@ interface Routes {
|
|
|
40071
40263
|
result: null;
|
|
40072
40264
|
action_type: 'SCAN_CARD';
|
|
40073
40265
|
error: {
|
|
40266
|
+
type: 'uncategorized_error';
|
|
40267
|
+
message: string;
|
|
40268
|
+
} | {
|
|
40269
|
+
type: 'action_attempt_expired';
|
|
40270
|
+
message: string;
|
|
40271
|
+
} | {
|
|
40074
40272
|
type: 'no_card_on_encoder';
|
|
40075
40273
|
message: string;
|
|
40076
40274
|
};
|
|
@@ -40212,6 +40410,12 @@ interface Routes {
|
|
|
40212
40410
|
result: null;
|
|
40213
40411
|
action_type: 'ENCODE_CARD';
|
|
40214
40412
|
error: {
|
|
40413
|
+
type: 'uncategorized_error';
|
|
40414
|
+
message: string;
|
|
40415
|
+
} | {
|
|
40416
|
+
type: 'action_attempt_expired';
|
|
40417
|
+
message: string;
|
|
40418
|
+
} | {
|
|
40215
40419
|
type: 'no_card_on_encoder';
|
|
40216
40420
|
message: string;
|
|
40217
40421
|
} | {
|
|
@@ -40727,7 +40931,7 @@ interface Routes {
|
|
|
40727
40931
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
|
|
40728
40932
|
custom_redirect_url?: string | undefined;
|
|
40729
40933
|
custom_redirect_failure_url?: string | undefined;
|
|
40730
|
-
accepted_providers?: Array<'dormakaba_community' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
40934
|
+
accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'vostio_credential_service' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
40731
40935
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
40732
40936
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
40733
40937
|
automatically_manage_new_devices?: boolean;
|
|
@@ -41957,7 +42161,7 @@ interface Routes {
|
|
|
41957
42161
|
formData: {};
|
|
41958
42162
|
jsonResponse: {
|
|
41959
42163
|
device_providers: Array<{
|
|
41960
|
-
device_provider_name: 'dormakaba_community' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio';
|
|
42164
|
+
device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'vostio_credential_service';
|
|
41961
42165
|
display_name: string;
|
|
41962
42166
|
image_url: string;
|
|
41963
42167
|
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
@@ -44463,6 +44667,12 @@ interface Routes {
|
|
|
44463
44667
|
result: null;
|
|
44464
44668
|
action_type: 'SCAN_CARD';
|
|
44465
44669
|
error: {
|
|
44670
|
+
type: 'uncategorized_error';
|
|
44671
|
+
message: string;
|
|
44672
|
+
} | {
|
|
44673
|
+
type: 'action_attempt_expired';
|
|
44674
|
+
message: string;
|
|
44675
|
+
} | {
|
|
44466
44676
|
type: 'no_card_on_encoder';
|
|
44467
44677
|
message: string;
|
|
44468
44678
|
};
|
|
@@ -44604,6 +44814,12 @@ interface Routes {
|
|
|
44604
44814
|
result: null;
|
|
44605
44815
|
action_type: 'ENCODE_CARD';
|
|
44606
44816
|
error: {
|
|
44817
|
+
type: 'uncategorized_error';
|
|
44818
|
+
message: string;
|
|
44819
|
+
} | {
|
|
44820
|
+
type: 'action_attempt_expired';
|
|
44821
|
+
message: string;
|
|
44822
|
+
} | {
|
|
44607
44823
|
type: 'no_card_on_encoder';
|
|
44608
44824
|
message: string;
|
|
44609
44825
|
} | {
|
|
@@ -45185,6 +45401,12 @@ interface Routes {
|
|
|
45185
45401
|
result: null;
|
|
45186
45402
|
action_type: 'SCAN_CARD';
|
|
45187
45403
|
error: {
|
|
45404
|
+
type: 'uncategorized_error';
|
|
45405
|
+
message: string;
|
|
45406
|
+
} | {
|
|
45407
|
+
type: 'action_attempt_expired';
|
|
45408
|
+
message: string;
|
|
45409
|
+
} | {
|
|
45188
45410
|
type: 'no_card_on_encoder';
|
|
45189
45411
|
message: string;
|
|
45190
45412
|
};
|
|
@@ -45326,6 +45548,12 @@ interface Routes {
|
|
|
45326
45548
|
result: null;
|
|
45327
45549
|
action_type: 'ENCODE_CARD';
|
|
45328
45550
|
error: {
|
|
45551
|
+
type: 'uncategorized_error';
|
|
45552
|
+
message: string;
|
|
45553
|
+
} | {
|
|
45554
|
+
type: 'action_attempt_expired';
|
|
45555
|
+
message: string;
|
|
45556
|
+
} | {
|
|
45329
45557
|
type: 'no_card_on_encoder';
|
|
45330
45558
|
message: string;
|
|
45331
45559
|
} | {
|
|
@@ -46889,6 +47117,12 @@ interface Routes {
|
|
|
46889
47117
|
result: null;
|
|
46890
47118
|
action_type: 'SCAN_CARD';
|
|
46891
47119
|
error: {
|
|
47120
|
+
type: 'uncategorized_error';
|
|
47121
|
+
message: string;
|
|
47122
|
+
} | {
|
|
47123
|
+
type: 'action_attempt_expired';
|
|
47124
|
+
message: string;
|
|
47125
|
+
} | {
|
|
46892
47126
|
type: 'no_card_on_encoder';
|
|
46893
47127
|
message: string;
|
|
46894
47128
|
};
|
|
@@ -47030,6 +47264,12 @@ interface Routes {
|
|
|
47030
47264
|
result: null;
|
|
47031
47265
|
action_type: 'ENCODE_CARD';
|
|
47032
47266
|
error: {
|
|
47267
|
+
type: 'uncategorized_error';
|
|
47268
|
+
message: string;
|
|
47269
|
+
} | {
|
|
47270
|
+
type: 'action_attempt_expired';
|
|
47271
|
+
message: string;
|
|
47272
|
+
} | {
|
|
47033
47273
|
type: 'no_card_on_encoder';
|
|
47034
47274
|
message: string;
|
|
47035
47275
|
} | {
|
|
@@ -47621,6 +47861,12 @@ interface Routes {
|
|
|
47621
47861
|
result: null;
|
|
47622
47862
|
action_type: 'SCAN_CARD';
|
|
47623
47863
|
error: {
|
|
47864
|
+
type: 'uncategorized_error';
|
|
47865
|
+
message: string;
|
|
47866
|
+
} | {
|
|
47867
|
+
type: 'action_attempt_expired';
|
|
47868
|
+
message: string;
|
|
47869
|
+
} | {
|
|
47624
47870
|
type: 'no_card_on_encoder';
|
|
47625
47871
|
message: string;
|
|
47626
47872
|
};
|
|
@@ -47762,6 +48008,12 @@ interface Routes {
|
|
|
47762
48008
|
result: null;
|
|
47763
48009
|
action_type: 'ENCODE_CARD';
|
|
47764
48010
|
error: {
|
|
48011
|
+
type: 'uncategorized_error';
|
|
48012
|
+
message: string;
|
|
48013
|
+
} | {
|
|
48014
|
+
type: 'action_attempt_expired';
|
|
48015
|
+
message: string;
|
|
48016
|
+
} | {
|
|
47765
48017
|
type: 'no_card_on_encoder';
|
|
47766
48018
|
message: string;
|
|
47767
48019
|
} | {
|
|
@@ -48392,6 +48644,12 @@ interface Routes {
|
|
|
48392
48644
|
result: null;
|
|
48393
48645
|
action_type: 'SCAN_CARD';
|
|
48394
48646
|
error: {
|
|
48647
|
+
type: 'uncategorized_error';
|
|
48648
|
+
message: string;
|
|
48649
|
+
} | {
|
|
48650
|
+
type: 'action_attempt_expired';
|
|
48651
|
+
message: string;
|
|
48652
|
+
} | {
|
|
48395
48653
|
type: 'no_card_on_encoder';
|
|
48396
48654
|
message: string;
|
|
48397
48655
|
};
|
|
@@ -48533,6 +48791,12 @@ interface Routes {
|
|
|
48533
48791
|
result: null;
|
|
48534
48792
|
action_type: 'ENCODE_CARD';
|
|
48535
48793
|
error: {
|
|
48794
|
+
type: 'uncategorized_error';
|
|
48795
|
+
message: string;
|
|
48796
|
+
} | {
|
|
48797
|
+
type: 'action_attempt_expired';
|
|
48798
|
+
message: string;
|
|
48799
|
+
} | {
|
|
48536
48800
|
type: 'no_card_on_encoder';
|
|
48537
48801
|
message: string;
|
|
48538
48802
|
} | {
|
|
@@ -49296,6 +49560,12 @@ interface Routes {
|
|
|
49296
49560
|
result: null;
|
|
49297
49561
|
action_type: 'SCAN_CARD';
|
|
49298
49562
|
error: {
|
|
49563
|
+
type: 'uncategorized_error';
|
|
49564
|
+
message: string;
|
|
49565
|
+
} | {
|
|
49566
|
+
type: 'action_attempt_expired';
|
|
49567
|
+
message: string;
|
|
49568
|
+
} | {
|
|
49299
49569
|
type: 'no_card_on_encoder';
|
|
49300
49570
|
message: string;
|
|
49301
49571
|
};
|
|
@@ -49437,6 +49707,12 @@ interface Routes {
|
|
|
49437
49707
|
result: null;
|
|
49438
49708
|
action_type: 'ENCODE_CARD';
|
|
49439
49709
|
error: {
|
|
49710
|
+
type: 'uncategorized_error';
|
|
49711
|
+
message: string;
|
|
49712
|
+
} | {
|
|
49713
|
+
type: 'action_attempt_expired';
|
|
49714
|
+
message: string;
|
|
49715
|
+
} | {
|
|
49440
49716
|
type: 'no_card_on_encoder';
|
|
49441
49717
|
message: string;
|
|
49442
49718
|
} | {
|
|
@@ -50020,6 +50296,12 @@ interface Routes {
|
|
|
50020
50296
|
result: null;
|
|
50021
50297
|
action_type: 'SCAN_CARD';
|
|
50022
50298
|
error: {
|
|
50299
|
+
type: 'uncategorized_error';
|
|
50300
|
+
message: string;
|
|
50301
|
+
} | {
|
|
50302
|
+
type: 'action_attempt_expired';
|
|
50303
|
+
message: string;
|
|
50304
|
+
} | {
|
|
50023
50305
|
type: 'no_card_on_encoder';
|
|
50024
50306
|
message: string;
|
|
50025
50307
|
};
|
|
@@ -50161,6 +50443,12 @@ interface Routes {
|
|
|
50161
50443
|
result: null;
|
|
50162
50444
|
action_type: 'ENCODE_CARD';
|
|
50163
50445
|
error: {
|
|
50446
|
+
type: 'uncategorized_error';
|
|
50447
|
+
message: string;
|
|
50448
|
+
} | {
|
|
50449
|
+
type: 'action_attempt_expired';
|
|
50450
|
+
message: string;
|
|
50451
|
+
} | {
|
|
50164
50452
|
type: 'no_card_on_encoder';
|
|
50165
50453
|
message: string;
|
|
50166
50454
|
} | {
|
|
@@ -51248,6 +51536,12 @@ interface Routes {
|
|
|
51248
51536
|
result: null;
|
|
51249
51537
|
action_type: 'SCAN_CARD';
|
|
51250
51538
|
error: {
|
|
51539
|
+
type: 'uncategorized_error';
|
|
51540
|
+
message: string;
|
|
51541
|
+
} | {
|
|
51542
|
+
type: 'action_attempt_expired';
|
|
51543
|
+
message: string;
|
|
51544
|
+
} | {
|
|
51251
51545
|
type: 'no_card_on_encoder';
|
|
51252
51546
|
message: string;
|
|
51253
51547
|
};
|
|
@@ -51389,6 +51683,12 @@ interface Routes {
|
|
|
51389
51683
|
result: null;
|
|
51390
51684
|
action_type: 'ENCODE_CARD';
|
|
51391
51685
|
error: {
|
|
51686
|
+
type: 'uncategorized_error';
|
|
51687
|
+
message: string;
|
|
51688
|
+
} | {
|
|
51689
|
+
type: 'action_attempt_expired';
|
|
51690
|
+
message: string;
|
|
51691
|
+
} | {
|
|
51392
51692
|
type: 'no_card_on_encoder';
|
|
51393
51693
|
message: string;
|
|
51394
51694
|
} | {
|
|
@@ -51974,6 +52274,12 @@ interface Routes {
|
|
|
51974
52274
|
result: null;
|
|
51975
52275
|
action_type: 'SCAN_CARD';
|
|
51976
52276
|
error: {
|
|
52277
|
+
type: 'uncategorized_error';
|
|
52278
|
+
message: string;
|
|
52279
|
+
} | {
|
|
52280
|
+
type: 'action_attempt_expired';
|
|
52281
|
+
message: string;
|
|
52282
|
+
} | {
|
|
51977
52283
|
type: 'no_card_on_encoder';
|
|
51978
52284
|
message: string;
|
|
51979
52285
|
};
|
|
@@ -52115,6 +52421,12 @@ interface Routes {
|
|
|
52115
52421
|
result: null;
|
|
52116
52422
|
action_type: 'ENCODE_CARD';
|
|
52117
52423
|
error: {
|
|
52424
|
+
type: 'uncategorized_error';
|
|
52425
|
+
message: string;
|
|
52426
|
+
} | {
|
|
52427
|
+
type: 'action_attempt_expired';
|
|
52428
|
+
message: string;
|
|
52429
|
+
} | {
|
|
52118
52430
|
type: 'no_card_on_encoder';
|
|
52119
52431
|
message: string;
|
|
52120
52432
|
} | {
|
|
@@ -53639,6 +53951,12 @@ interface Routes {
|
|
|
53639
53951
|
result: null;
|
|
53640
53952
|
action_type: 'SCAN_CARD';
|
|
53641
53953
|
error: {
|
|
53954
|
+
type: 'uncategorized_error';
|
|
53955
|
+
message: string;
|
|
53956
|
+
} | {
|
|
53957
|
+
type: 'action_attempt_expired';
|
|
53958
|
+
message: string;
|
|
53959
|
+
} | {
|
|
53642
53960
|
type: 'no_card_on_encoder';
|
|
53643
53961
|
message: string;
|
|
53644
53962
|
};
|
|
@@ -53780,6 +54098,12 @@ interface Routes {
|
|
|
53780
54098
|
result: null;
|
|
53781
54099
|
action_type: 'ENCODE_CARD';
|
|
53782
54100
|
error: {
|
|
54101
|
+
type: 'uncategorized_error';
|
|
54102
|
+
message: string;
|
|
54103
|
+
} | {
|
|
54104
|
+
type: 'action_attempt_expired';
|
|
54105
|
+
message: string;
|
|
54106
|
+
} | {
|
|
53783
54107
|
type: 'no_card_on_encoder';
|
|
53784
54108
|
message: string;
|
|
53785
54109
|
} | {
|
|
@@ -54482,6 +54806,12 @@ interface Routes {
|
|
|
54482
54806
|
result: null;
|
|
54483
54807
|
action_type: 'SCAN_CARD';
|
|
54484
54808
|
error: {
|
|
54809
|
+
type: 'uncategorized_error';
|
|
54810
|
+
message: string;
|
|
54811
|
+
} | {
|
|
54812
|
+
type: 'action_attempt_expired';
|
|
54813
|
+
message: string;
|
|
54814
|
+
} | {
|
|
54485
54815
|
type: 'no_card_on_encoder';
|
|
54486
54816
|
message: string;
|
|
54487
54817
|
};
|
|
@@ -54623,6 +54953,12 @@ interface Routes {
|
|
|
54623
54953
|
result: null;
|
|
54624
54954
|
action_type: 'ENCODE_CARD';
|
|
54625
54955
|
error: {
|
|
54956
|
+
type: 'uncategorized_error';
|
|
54957
|
+
message: string;
|
|
54958
|
+
} | {
|
|
54959
|
+
type: 'action_attempt_expired';
|
|
54960
|
+
message: string;
|
|
54961
|
+
} | {
|
|
54626
54962
|
type: 'no_card_on_encoder';
|
|
54627
54963
|
message: string;
|
|
54628
54964
|
} | {
|
|
@@ -56138,7 +56474,7 @@ interface Routes {
|
|
|
56138
56474
|
/** ID of the `acs_system`. */
|
|
56139
56475
|
acs_system_id: string;
|
|
56140
56476
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
56141
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
56477
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
56142
56478
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
56143
56479
|
external_type_display_name?: string | undefined;
|
|
56144
56480
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -56153,7 +56489,7 @@ interface Routes {
|
|
|
56153
56489
|
} | undefined;
|
|
56154
56490
|
/**
|
|
56155
56491
|
* @deprecated Use `external_type`. */
|
|
56156
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
56492
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
56157
56493
|
/**
|
|
56158
56494
|
* @deprecated Use `external_type_display_name`. */
|
|
56159
56495
|
system_type_display_name?: string | undefined;
|
|
@@ -56733,6 +57069,12 @@ interface Routes {
|
|
|
56733
57069
|
result: null;
|
|
56734
57070
|
action_type: 'SCAN_CARD';
|
|
56735
57071
|
error: {
|
|
57072
|
+
type: 'uncategorized_error';
|
|
57073
|
+
message: string;
|
|
57074
|
+
} | {
|
|
57075
|
+
type: 'action_attempt_expired';
|
|
57076
|
+
message: string;
|
|
57077
|
+
} | {
|
|
56736
57078
|
type: 'no_card_on_encoder';
|
|
56737
57079
|
message: string;
|
|
56738
57080
|
};
|
|
@@ -56874,6 +57216,12 @@ interface Routes {
|
|
|
56874
57216
|
result: null;
|
|
56875
57217
|
action_type: 'ENCODE_CARD';
|
|
56876
57218
|
error: {
|
|
57219
|
+
type: 'uncategorized_error';
|
|
57220
|
+
message: string;
|
|
57221
|
+
} | {
|
|
57222
|
+
type: 'action_attempt_expired';
|
|
57223
|
+
message: string;
|
|
57224
|
+
} | {
|
|
56877
57225
|
type: 'no_card_on_encoder';
|
|
56878
57226
|
message: string;
|
|
56879
57227
|
} | {
|