@seamapi/types 1.316.0 → 1.318.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 +202 -30
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1090 -216
- package/lib/seam/connect/models/acs/acs-credential.d.ts +66 -0
- package/lib/seam/connect/models/acs/acs-credential.js +12 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +0 -10
- package/lib/seam/connect/models/acs/acs-encoder.js +0 -4
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +5 -0
- package/lib/seam/connect/models/acs/acs-system.d.ts +34 -0
- package/lib/seam/connect/models/acs/acs-system.js +4 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +6 -6
- package/lib/seam/connect/models/acs/acs-user.js +1 -0
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +1 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +132 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +58 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +74 -0
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -2
- package/lib/seam/connect/models/devices/device-provider.js +1 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +37 -7
- package/lib/seam/connect/openapi.js +179 -14
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +678 -13
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +15 -0
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +0 -6
- package/src/lib/seam/connect/models/acs/acs-system.ts +4 -0
- package/src/lib/seam/connect/models/acs/acs-user.ts +1 -0
- package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +207 -15
- package/src/lib/seam/connect/route-types.ts +768 -9
package/dist/connect.d.cts
CHANGED
|
@@ -467,6 +467,19 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
467
467
|
message: string;
|
|
468
468
|
warning_code: "being_deleted";
|
|
469
469
|
created_at: string;
|
|
470
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
471
|
+
created_at: z.ZodString;
|
|
472
|
+
message: z.ZodString;
|
|
473
|
+
}, {
|
|
474
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
|
|
475
|
+
}>, "strip", z.ZodTypeAny, {
|
|
476
|
+
message: string;
|
|
477
|
+
warning_code: "unknown_issue_with_credential";
|
|
478
|
+
created_at: string;
|
|
479
|
+
}, {
|
|
480
|
+
message: string;
|
|
481
|
+
warning_code: "unknown_issue_with_credential";
|
|
482
|
+
created_at: string;
|
|
470
483
|
}>]>, "many">;
|
|
471
484
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
472
485
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -523,6 +536,10 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
523
536
|
message: string;
|
|
524
537
|
warning_code: "being_deleted";
|
|
525
538
|
created_at: string;
|
|
539
|
+
} | {
|
|
540
|
+
message: string;
|
|
541
|
+
warning_code: "unknown_issue_with_credential";
|
|
542
|
+
created_at: string;
|
|
526
543
|
})[];
|
|
527
544
|
display_name: string;
|
|
528
545
|
workspace_id: string;
|
|
@@ -577,6 +594,10 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
577
594
|
message: string;
|
|
578
595
|
warning_code: "being_deleted";
|
|
579
596
|
created_at: string;
|
|
597
|
+
} | {
|
|
598
|
+
message: string;
|
|
599
|
+
warning_code: "unknown_issue_with_credential";
|
|
600
|
+
created_at: string;
|
|
580
601
|
})[];
|
|
581
602
|
display_name: string;
|
|
582
603
|
workspace_id: string;
|
|
@@ -691,6 +712,19 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
691
712
|
message: string;
|
|
692
713
|
warning_code: "being_deleted";
|
|
693
714
|
created_at: string;
|
|
715
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
716
|
+
created_at: z.ZodString;
|
|
717
|
+
message: z.ZodString;
|
|
718
|
+
}, {
|
|
719
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
|
|
720
|
+
}>, "strip", z.ZodTypeAny, {
|
|
721
|
+
message: string;
|
|
722
|
+
warning_code: "unknown_issue_with_credential";
|
|
723
|
+
created_at: string;
|
|
724
|
+
}, {
|
|
725
|
+
message: string;
|
|
726
|
+
warning_code: "unknown_issue_with_credential";
|
|
727
|
+
created_at: string;
|
|
694
728
|
}>]>, "many">;
|
|
695
729
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
696
730
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -747,6 +781,10 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
747
781
|
message: string;
|
|
748
782
|
warning_code: "being_deleted";
|
|
749
783
|
created_at: string;
|
|
784
|
+
} | {
|
|
785
|
+
message: string;
|
|
786
|
+
warning_code: "unknown_issue_with_credential";
|
|
787
|
+
created_at: string;
|
|
750
788
|
})[];
|
|
751
789
|
display_name: string;
|
|
752
790
|
workspace_id: string;
|
|
@@ -801,6 +839,10 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
801
839
|
message: string;
|
|
802
840
|
warning_code: "being_deleted";
|
|
803
841
|
created_at: string;
|
|
842
|
+
} | {
|
|
843
|
+
message: string;
|
|
844
|
+
warning_code: "unknown_issue_with_credential";
|
|
845
|
+
created_at: string;
|
|
804
846
|
})[];
|
|
805
847
|
display_name: string;
|
|
806
848
|
workspace_id: string;
|
|
@@ -845,17 +887,14 @@ declare const acs_encoder: z.ZodObject<{
|
|
|
845
887
|
message: z.ZodString;
|
|
846
888
|
}, {
|
|
847
889
|
error_code: z.ZodLiteral<"acs_encoder_removed">;
|
|
848
|
-
_event_id: z.ZodString;
|
|
849
890
|
}>, "strip", z.ZodTypeAny, {
|
|
850
891
|
message: string;
|
|
851
892
|
error_code: "acs_encoder_removed";
|
|
852
893
|
created_at: string;
|
|
853
|
-
_event_id: string;
|
|
854
894
|
}, {
|
|
855
895
|
message: string;
|
|
856
896
|
error_code: "acs_encoder_removed";
|
|
857
897
|
created_at: string;
|
|
858
|
-
_event_id: string;
|
|
859
898
|
}>, "many">;
|
|
860
899
|
created_at: z.ZodString;
|
|
861
900
|
display_name: z.ZodString;
|
|
@@ -865,7 +904,6 @@ declare const acs_encoder: z.ZodObject<{
|
|
|
865
904
|
message: string;
|
|
866
905
|
error_code: "acs_encoder_removed";
|
|
867
906
|
created_at: string;
|
|
868
|
-
_event_id: string;
|
|
869
907
|
}[];
|
|
870
908
|
display_name: string;
|
|
871
909
|
workspace_id: string;
|
|
@@ -877,7 +915,6 @@ declare const acs_encoder: z.ZodObject<{
|
|
|
877
915
|
message: string;
|
|
878
916
|
error_code: "acs_encoder_removed";
|
|
879
917
|
created_at: string;
|
|
880
|
-
_event_id: string;
|
|
881
918
|
}[];
|
|
882
919
|
display_name: string;
|
|
883
920
|
workspace_id: string;
|
|
@@ -977,14 +1014,17 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
977
1014
|
access_point_name: z.ZodString;
|
|
978
1015
|
common_area_number: z.ZodOptional<z.ZodNumber>;
|
|
979
1016
|
inner_access_points_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1017
|
+
lease_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
980
1018
|
}, "strip", z.ZodTypeAny, {
|
|
981
1019
|
access_point_name: string;
|
|
982
1020
|
common_area_number?: number | undefined;
|
|
983
1021
|
inner_access_points_names?: string[] | undefined;
|
|
1022
|
+
lease_ids?: string[] | undefined;
|
|
984
1023
|
}, {
|
|
985
1024
|
access_point_name: string;
|
|
986
1025
|
common_area_number?: number | undefined;
|
|
987
1026
|
inner_access_points_names?: string[] | undefined;
|
|
1027
|
+
lease_ids?: string[] | undefined;
|
|
988
1028
|
}>>;
|
|
989
1029
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
990
1030
|
door_type: z.ZodEnum<["CommonDoor", "EntranceDoor", "GuestDoor", "Elevator"]>;
|
|
@@ -1062,6 +1102,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
1062
1102
|
access_point_name: string;
|
|
1063
1103
|
common_area_number?: number | undefined;
|
|
1064
1104
|
inner_access_points_names?: string[] | undefined;
|
|
1105
|
+
lease_ids?: string[] | undefined;
|
|
1065
1106
|
} | undefined;
|
|
1066
1107
|
salto_space_metadata?: {
|
|
1067
1108
|
door_name: string;
|
|
@@ -1112,6 +1153,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
1112
1153
|
access_point_name: string;
|
|
1113
1154
|
common_area_number?: number | undefined;
|
|
1114
1155
|
inner_access_points_names?: string[] | undefined;
|
|
1156
|
+
lease_ids?: string[] | undefined;
|
|
1115
1157
|
} | undefined;
|
|
1116
1158
|
salto_space_metadata?: {
|
|
1117
1159
|
door_name: string;
|
|
@@ -1253,14 +1295,17 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1253
1295
|
message: z.ZodString;
|
|
1254
1296
|
}, {
|
|
1255
1297
|
warning_code: z.ZodLiteral<"time_zone_does_not_match_location">;
|
|
1298
|
+
misconfigured_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1256
1299
|
}>, "strip", z.ZodTypeAny, {
|
|
1257
1300
|
message: string;
|
|
1258
1301
|
warning_code: "time_zone_does_not_match_location";
|
|
1259
1302
|
created_at: string;
|
|
1303
|
+
misconfigured_acs_entrance_ids?: string[] | undefined;
|
|
1260
1304
|
}, {
|
|
1261
1305
|
message: string;
|
|
1262
1306
|
warning_code: "time_zone_does_not_match_location";
|
|
1263
1307
|
created_at: string;
|
|
1308
|
+
misconfigured_acs_entrance_ids?: string[] | undefined;
|
|
1264
1309
|
}>]>, "many">;
|
|
1265
1310
|
}, {
|
|
1266
1311
|
can_automate_enrollment: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1303,6 +1348,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1303
1348
|
message: string;
|
|
1304
1349
|
warning_code: "time_zone_does_not_match_location";
|
|
1305
1350
|
created_at: string;
|
|
1351
|
+
misconfigured_acs_entrance_ids?: string[] | undefined;
|
|
1306
1352
|
})[];
|
|
1307
1353
|
name: string;
|
|
1308
1354
|
image_url: string;
|
|
@@ -1364,6 +1410,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1364
1410
|
message: string;
|
|
1365
1411
|
warning_code: "time_zone_does_not_match_location";
|
|
1366
1412
|
created_at: string;
|
|
1413
|
+
misconfigured_acs_entrance_ids?: string[] | undefined;
|
|
1367
1414
|
})[];
|
|
1368
1415
|
name: string;
|
|
1369
1416
|
image_url: string;
|
|
@@ -1401,7 +1448,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1401
1448
|
display_name: z.ZodString;
|
|
1402
1449
|
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user"]>>;
|
|
1403
1450
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1404
|
-
is_suspended: z.ZodBoolean
|
|
1451
|
+
is_suspended: z.ZodOptional<z.ZodBoolean>;
|
|
1405
1452
|
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
1406
1453
|
starts_at: z.ZodString;
|
|
1407
1454
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
@@ -1555,7 +1602,6 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1555
1602
|
is_managed: true;
|
|
1556
1603
|
acs_system_id: string;
|
|
1557
1604
|
acs_user_id: string;
|
|
1558
|
-
is_suspended: boolean;
|
|
1559
1605
|
email?: string | undefined;
|
|
1560
1606
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
1561
1607
|
external_type_display_name?: string | undefined;
|
|
@@ -1566,6 +1612,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1566
1612
|
email_address?: string | undefined;
|
|
1567
1613
|
phone_number?: string | undefined;
|
|
1568
1614
|
hid_acs_system_id?: string | undefined;
|
|
1615
|
+
is_suspended?: boolean | undefined;
|
|
1569
1616
|
access_schedule?: {
|
|
1570
1617
|
starts_at: string;
|
|
1571
1618
|
ends_at: string | null;
|
|
@@ -1610,7 +1657,6 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1610
1657
|
is_managed: true;
|
|
1611
1658
|
acs_system_id: string;
|
|
1612
1659
|
acs_user_id: string;
|
|
1613
|
-
is_suspended: boolean;
|
|
1614
1660
|
email?: string | undefined;
|
|
1615
1661
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
1616
1662
|
external_type_display_name?: string | undefined;
|
|
@@ -1621,6 +1667,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1621
1667
|
email_address?: string | undefined;
|
|
1622
1668
|
phone_number?: string | undefined;
|
|
1623
1669
|
hid_acs_system_id?: string | undefined;
|
|
1670
|
+
is_suspended?: boolean | undefined;
|
|
1624
1671
|
access_schedule?: {
|
|
1625
1672
|
starts_at: string;
|
|
1626
1673
|
ends_at: string | null;
|
|
@@ -1638,7 +1685,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1638
1685
|
display_name: z.ZodString;
|
|
1639
1686
|
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user"]>>;
|
|
1640
1687
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1641
|
-
is_suspended: z.ZodBoolean
|
|
1688
|
+
is_suspended: z.ZodOptional<z.ZodBoolean>;
|
|
1642
1689
|
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
1643
1690
|
starts_at: z.ZodString;
|
|
1644
1691
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
@@ -1792,7 +1839,6 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1792
1839
|
is_managed: false;
|
|
1793
1840
|
acs_system_id: string;
|
|
1794
1841
|
acs_user_id: string;
|
|
1795
|
-
is_suspended: boolean;
|
|
1796
1842
|
email?: string | undefined;
|
|
1797
1843
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
1798
1844
|
external_type_display_name?: string | undefined;
|
|
@@ -1803,6 +1849,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1803
1849
|
email_address?: string | undefined;
|
|
1804
1850
|
phone_number?: string | undefined;
|
|
1805
1851
|
hid_acs_system_id?: string | undefined;
|
|
1852
|
+
is_suspended?: boolean | undefined;
|
|
1806
1853
|
access_schedule?: {
|
|
1807
1854
|
starts_at: string;
|
|
1808
1855
|
ends_at: string | null;
|
|
@@ -1847,7 +1894,6 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1847
1894
|
is_managed: false;
|
|
1848
1895
|
acs_system_id: string;
|
|
1849
1896
|
acs_user_id: string;
|
|
1850
|
-
is_suspended: boolean;
|
|
1851
1897
|
email?: string | undefined;
|
|
1852
1898
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
1853
1899
|
external_type_display_name?: string | undefined;
|
|
@@ -1858,6 +1904,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1858
1904
|
email_address?: string | undefined;
|
|
1859
1905
|
phone_number?: string | undefined;
|
|
1860
1906
|
hid_acs_system_id?: string | undefined;
|
|
1907
|
+
is_suspended?: boolean | undefined;
|
|
1861
1908
|
access_schedule?: {
|
|
1862
1909
|
starts_at: string;
|
|
1863
1910
|
ends_at: string | null;
|
|
@@ -2222,6 +2269,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2222
2269
|
message: string;
|
|
2223
2270
|
warning_code: "being_deleted";
|
|
2224
2271
|
created_at: string;
|
|
2272
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2273
|
+
created_at: z.ZodString;
|
|
2274
|
+
message: z.ZodString;
|
|
2275
|
+
}, {
|
|
2276
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
|
|
2277
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2278
|
+
message: string;
|
|
2279
|
+
warning_code: "unknown_issue_with_credential";
|
|
2280
|
+
created_at: string;
|
|
2281
|
+
}, {
|
|
2282
|
+
message: string;
|
|
2283
|
+
warning_code: "unknown_issue_with_credential";
|
|
2284
|
+
created_at: string;
|
|
2225
2285
|
}>]>, "many">;
|
|
2226
2286
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
2227
2287
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2278,6 +2338,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2278
2338
|
message: string;
|
|
2279
2339
|
warning_code: "being_deleted";
|
|
2280
2340
|
created_at: string;
|
|
2341
|
+
} | {
|
|
2342
|
+
message: string;
|
|
2343
|
+
warning_code: "unknown_issue_with_credential";
|
|
2344
|
+
created_at: string;
|
|
2281
2345
|
})[];
|
|
2282
2346
|
display_name: string;
|
|
2283
2347
|
workspace_id: string;
|
|
@@ -2332,6 +2396,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2332
2396
|
message: string;
|
|
2333
2397
|
warning_code: "being_deleted";
|
|
2334
2398
|
created_at: string;
|
|
2399
|
+
} | {
|
|
2400
|
+
message: string;
|
|
2401
|
+
warning_code: "unknown_issue_with_credential";
|
|
2402
|
+
created_at: string;
|
|
2335
2403
|
})[];
|
|
2336
2404
|
display_name: string;
|
|
2337
2405
|
workspace_id: string;
|
|
@@ -2445,6 +2513,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2445
2513
|
message: string;
|
|
2446
2514
|
warning_code: "being_deleted";
|
|
2447
2515
|
created_at: string;
|
|
2516
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2517
|
+
created_at: z.ZodString;
|
|
2518
|
+
message: z.ZodString;
|
|
2519
|
+
}, {
|
|
2520
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
|
|
2521
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2522
|
+
message: string;
|
|
2523
|
+
warning_code: "unknown_issue_with_credential";
|
|
2524
|
+
created_at: string;
|
|
2525
|
+
}, {
|
|
2526
|
+
message: string;
|
|
2527
|
+
warning_code: "unknown_issue_with_credential";
|
|
2528
|
+
created_at: string;
|
|
2448
2529
|
}>]>, "many">;
|
|
2449
2530
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
2450
2531
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2501,6 +2582,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2501
2582
|
message: string;
|
|
2502
2583
|
warning_code: "being_deleted";
|
|
2503
2584
|
created_at: string;
|
|
2585
|
+
} | {
|
|
2586
|
+
message: string;
|
|
2587
|
+
warning_code: "unknown_issue_with_credential";
|
|
2588
|
+
created_at: string;
|
|
2504
2589
|
})[];
|
|
2505
2590
|
display_name: string;
|
|
2506
2591
|
workspace_id: string;
|
|
@@ -2555,6 +2640,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2555
2640
|
message: string;
|
|
2556
2641
|
warning_code: "being_deleted";
|
|
2557
2642
|
created_at: string;
|
|
2643
|
+
} | {
|
|
2644
|
+
message: string;
|
|
2645
|
+
warning_code: "unknown_issue_with_credential";
|
|
2646
|
+
created_at: string;
|
|
2558
2647
|
})[];
|
|
2559
2648
|
display_name: string;
|
|
2560
2649
|
workspace_id: string;
|
|
@@ -2646,64 +2735,14 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2646
2735
|
message: string;
|
|
2647
2736
|
warning_code: "being_deleted";
|
|
2648
2737
|
created_at: string;
|
|
2649
|
-
})[];
|
|
2650
|
-
display_name: string;
|
|
2651
|
-
workspace_id: string;
|
|
2652
|
-
is_managed: true;
|
|
2653
|
-
acs_system_id: string;
|
|
2654
|
-
acs_credential_id: string;
|
|
2655
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2656
|
-
code?: string | null | undefined;
|
|
2657
|
-
starts_at?: string | undefined;
|
|
2658
|
-
ends_at?: string | undefined;
|
|
2659
|
-
visionline_metadata?: {
|
|
2660
|
-
card_function_type: "guest" | "staff";
|
|
2661
|
-
joiner_acs_credential_ids?: string[] | undefined;
|
|
2662
|
-
guest_acs_entrance_ids?: string[] | undefined;
|
|
2663
|
-
common_acs_entrance_ids?: string[] | undefined;
|
|
2664
|
-
is_valid?: boolean | undefined;
|
|
2665
|
-
auto_join?: boolean | undefined;
|
|
2666
|
-
card_id?: string | undefined;
|
|
2667
|
-
credential_id?: string | undefined;
|
|
2668
|
-
} | undefined;
|
|
2669
|
-
is_one_time_use?: boolean | undefined;
|
|
2670
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2671
|
-
external_type_display_name?: string | undefined;
|
|
2672
|
-
acs_user_id?: string | undefined;
|
|
2673
|
-
acs_credential_pool_id?: string | undefined;
|
|
2674
|
-
parent_acs_credential_id?: string | undefined;
|
|
2675
|
-
card_number?: string | null | undefined;
|
|
2676
|
-
is_issued?: boolean | undefined;
|
|
2677
|
-
issued_at?: string | null | undefined;
|
|
2678
|
-
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2679
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2680
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2681
|
-
} | {
|
|
2682
|
-
created_at: string;
|
|
2683
|
-
errors: {
|
|
2684
|
-
message: string;
|
|
2685
|
-
error_code: string;
|
|
2686
|
-
}[];
|
|
2687
|
-
warnings: ({
|
|
2688
|
-
message: string;
|
|
2689
|
-
warning_code: "waiting_to_be_issued";
|
|
2690
|
-
created_at: string;
|
|
2691
|
-
} | {
|
|
2692
|
-
message: string;
|
|
2693
|
-
warning_code: "schedule_externally_modified";
|
|
2694
|
-
created_at: string;
|
|
2695
|
-
} | {
|
|
2696
|
-
message: string;
|
|
2697
|
-
warning_code: "schedule_modified";
|
|
2698
|
-
created_at: string;
|
|
2699
2738
|
} | {
|
|
2700
2739
|
message: string;
|
|
2701
|
-
warning_code: "
|
|
2740
|
+
warning_code: "unknown_issue_with_credential";
|
|
2702
2741
|
created_at: string;
|
|
2703
2742
|
})[];
|
|
2704
2743
|
display_name: string;
|
|
2705
2744
|
workspace_id: string;
|
|
2706
|
-
is_managed:
|
|
2745
|
+
is_managed: true;
|
|
2707
2746
|
acs_system_id: string;
|
|
2708
2747
|
acs_credential_id: string;
|
|
2709
2748
|
access_method: "code" | "card" | "mobile_key";
|
|
@@ -2732,34 +2771,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2732
2771
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2733
2772
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2734
2773
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2735
|
-
} |
|
|
2736
|
-
}, {
|
|
2737
|
-
warnings: {
|
|
2738
|
-
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
2739
|
-
warning_message: string;
|
|
2740
|
-
}[];
|
|
2741
|
-
acs_credential_on_encoder: {
|
|
2742
|
-
created_at: string | null;
|
|
2743
|
-
starts_at: string | null;
|
|
2744
|
-
ends_at: string | null;
|
|
2745
|
-
card_number: string | null;
|
|
2746
|
-
is_issued: boolean | null;
|
|
2747
|
-
visionline_metadata?: {
|
|
2748
|
-
card_id: string;
|
|
2749
|
-
cancelled: boolean;
|
|
2750
|
-
discarded: boolean;
|
|
2751
|
-
expired: boolean;
|
|
2752
|
-
overwritten: boolean;
|
|
2753
|
-
pending_auto_update: boolean;
|
|
2754
|
-
card_format: "TLCode" | "rfid48";
|
|
2755
|
-
number_of_issued_cards: number;
|
|
2756
|
-
guest_acs_entrance_ids?: string[] | undefined;
|
|
2757
|
-
common_acs_entrance_ids?: string[] | undefined;
|
|
2758
|
-
overridden?: boolean | undefined;
|
|
2759
|
-
card_holder?: string | undefined;
|
|
2760
|
-
} | undefined;
|
|
2761
|
-
} | null;
|
|
2762
|
-
acs_credential_on_seam: {
|
|
2774
|
+
} | {
|
|
2763
2775
|
created_at: string;
|
|
2764
2776
|
errors: {
|
|
2765
2777
|
message: string;
|
|
@@ -2781,59 +2793,9 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2781
2793
|
message: string;
|
|
2782
2794
|
warning_code: "being_deleted";
|
|
2783
2795
|
created_at: string;
|
|
2784
|
-
})[];
|
|
2785
|
-
display_name: string;
|
|
2786
|
-
workspace_id: string;
|
|
2787
|
-
is_managed: true;
|
|
2788
|
-
acs_system_id: string;
|
|
2789
|
-
acs_credential_id: string;
|
|
2790
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2791
|
-
code?: string | null | undefined;
|
|
2792
|
-
starts_at?: string | undefined;
|
|
2793
|
-
ends_at?: string | undefined;
|
|
2794
|
-
visionline_metadata?: {
|
|
2795
|
-
card_function_type: "guest" | "staff";
|
|
2796
|
-
joiner_acs_credential_ids?: string[] | undefined;
|
|
2797
|
-
guest_acs_entrance_ids?: string[] | undefined;
|
|
2798
|
-
common_acs_entrance_ids?: string[] | undefined;
|
|
2799
|
-
is_valid?: boolean | undefined;
|
|
2800
|
-
auto_join?: boolean | undefined;
|
|
2801
|
-
card_id?: string | undefined;
|
|
2802
|
-
credential_id?: string | undefined;
|
|
2803
|
-
} | undefined;
|
|
2804
|
-
is_one_time_use?: boolean | undefined;
|
|
2805
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2806
|
-
external_type_display_name?: string | undefined;
|
|
2807
|
-
acs_user_id?: string | undefined;
|
|
2808
|
-
acs_credential_pool_id?: string | undefined;
|
|
2809
|
-
parent_acs_credential_id?: string | undefined;
|
|
2810
|
-
card_number?: string | null | undefined;
|
|
2811
|
-
is_issued?: boolean | undefined;
|
|
2812
|
-
issued_at?: string | null | undefined;
|
|
2813
|
-
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2814
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2815
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2816
|
-
} | {
|
|
2817
|
-
created_at: string;
|
|
2818
|
-
errors: {
|
|
2819
|
-
message: string;
|
|
2820
|
-
error_code: string;
|
|
2821
|
-
}[];
|
|
2822
|
-
warnings: ({
|
|
2823
|
-
message: string;
|
|
2824
|
-
warning_code: "waiting_to_be_issued";
|
|
2825
|
-
created_at: string;
|
|
2826
|
-
} | {
|
|
2827
|
-
message: string;
|
|
2828
|
-
warning_code: "schedule_externally_modified";
|
|
2829
|
-
created_at: string;
|
|
2830
|
-
} | {
|
|
2831
|
-
message: string;
|
|
2832
|
-
warning_code: "schedule_modified";
|
|
2833
|
-
created_at: string;
|
|
2834
2796
|
} | {
|
|
2835
2797
|
message: string;
|
|
2836
|
-
warning_code: "
|
|
2798
|
+
warning_code: "unknown_issue_with_credential";
|
|
2837
2799
|
created_at: string;
|
|
2838
2800
|
})[];
|
|
2839
2801
|
display_name: string;
|
|
@@ -2868,12 +2830,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2868
2830
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2869
2831
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2870
2832
|
} | null;
|
|
2871
|
-
}
|
|
2872
|
-
}>, "strip", z.ZodTypeAny, {
|
|
2873
|
-
status: "success";
|
|
2874
|
-
action_attempt_id: string;
|
|
2875
|
-
error: null;
|
|
2876
|
-
result: {
|
|
2833
|
+
}, {
|
|
2877
2834
|
warnings: {
|
|
2878
2835
|
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
2879
2836
|
warning_message: string;
|
|
@@ -2921,64 +2878,220 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2921
2878
|
message: string;
|
|
2922
2879
|
warning_code: "being_deleted";
|
|
2923
2880
|
created_at: string;
|
|
2924
|
-
})[];
|
|
2925
|
-
display_name: string;
|
|
2926
|
-
workspace_id: string;
|
|
2927
|
-
is_managed: true;
|
|
2928
|
-
acs_system_id: string;
|
|
2929
|
-
acs_credential_id: string;
|
|
2930
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2931
|
-
code?: string | null | undefined;
|
|
2932
|
-
starts_at?: string | undefined;
|
|
2933
|
-
ends_at?: string | undefined;
|
|
2934
|
-
visionline_metadata?: {
|
|
2935
|
-
card_function_type: "guest" | "staff";
|
|
2936
|
-
joiner_acs_credential_ids?: string[] | undefined;
|
|
2937
|
-
guest_acs_entrance_ids?: string[] | undefined;
|
|
2938
|
-
common_acs_entrance_ids?: string[] | undefined;
|
|
2939
|
-
is_valid?: boolean | undefined;
|
|
2940
|
-
auto_join?: boolean | undefined;
|
|
2941
|
-
card_id?: string | undefined;
|
|
2942
|
-
credential_id?: string | undefined;
|
|
2943
|
-
} | undefined;
|
|
2944
|
-
is_one_time_use?: boolean | undefined;
|
|
2945
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2946
|
-
external_type_display_name?: string | undefined;
|
|
2947
|
-
acs_user_id?: string | undefined;
|
|
2948
|
-
acs_credential_pool_id?: string | undefined;
|
|
2949
|
-
parent_acs_credential_id?: string | undefined;
|
|
2950
|
-
card_number?: string | null | undefined;
|
|
2951
|
-
is_issued?: boolean | undefined;
|
|
2952
|
-
issued_at?: string | null | undefined;
|
|
2953
|
-
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2954
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2955
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2956
|
-
} | {
|
|
2957
|
-
created_at: string;
|
|
2958
|
-
errors: {
|
|
2959
|
-
message: string;
|
|
2960
|
-
error_code: string;
|
|
2961
|
-
}[];
|
|
2962
|
-
warnings: ({
|
|
2963
|
-
message: string;
|
|
2964
|
-
warning_code: "waiting_to_be_issued";
|
|
2965
|
-
created_at: string;
|
|
2966
|
-
} | {
|
|
2967
|
-
message: string;
|
|
2968
|
-
warning_code: "schedule_externally_modified";
|
|
2969
|
-
created_at: string;
|
|
2970
|
-
} | {
|
|
2971
|
-
message: string;
|
|
2972
|
-
warning_code: "schedule_modified";
|
|
2973
|
-
created_at: string;
|
|
2974
2881
|
} | {
|
|
2975
2882
|
message: string;
|
|
2976
|
-
warning_code: "
|
|
2883
|
+
warning_code: "unknown_issue_with_credential";
|
|
2977
2884
|
created_at: string;
|
|
2978
2885
|
})[];
|
|
2979
2886
|
display_name: string;
|
|
2980
2887
|
workspace_id: string;
|
|
2981
|
-
is_managed:
|
|
2888
|
+
is_managed: true;
|
|
2889
|
+
acs_system_id: string;
|
|
2890
|
+
acs_credential_id: string;
|
|
2891
|
+
access_method: "code" | "card" | "mobile_key";
|
|
2892
|
+
code?: string | null | undefined;
|
|
2893
|
+
starts_at?: string | undefined;
|
|
2894
|
+
ends_at?: string | undefined;
|
|
2895
|
+
visionline_metadata?: {
|
|
2896
|
+
card_function_type: "guest" | "staff";
|
|
2897
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
2898
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
2899
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
2900
|
+
is_valid?: boolean | undefined;
|
|
2901
|
+
auto_join?: boolean | undefined;
|
|
2902
|
+
card_id?: string | undefined;
|
|
2903
|
+
credential_id?: string | undefined;
|
|
2904
|
+
} | undefined;
|
|
2905
|
+
is_one_time_use?: boolean | undefined;
|
|
2906
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2907
|
+
external_type_display_name?: string | undefined;
|
|
2908
|
+
acs_user_id?: string | undefined;
|
|
2909
|
+
acs_credential_pool_id?: string | undefined;
|
|
2910
|
+
parent_acs_credential_id?: string | undefined;
|
|
2911
|
+
card_number?: string | null | undefined;
|
|
2912
|
+
is_issued?: boolean | undefined;
|
|
2913
|
+
issued_at?: string | null | undefined;
|
|
2914
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2915
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2916
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2917
|
+
} | {
|
|
2918
|
+
created_at: string;
|
|
2919
|
+
errors: {
|
|
2920
|
+
message: string;
|
|
2921
|
+
error_code: string;
|
|
2922
|
+
}[];
|
|
2923
|
+
warnings: ({
|
|
2924
|
+
message: string;
|
|
2925
|
+
warning_code: "waiting_to_be_issued";
|
|
2926
|
+
created_at: string;
|
|
2927
|
+
} | {
|
|
2928
|
+
message: string;
|
|
2929
|
+
warning_code: "schedule_externally_modified";
|
|
2930
|
+
created_at: string;
|
|
2931
|
+
} | {
|
|
2932
|
+
message: string;
|
|
2933
|
+
warning_code: "schedule_modified";
|
|
2934
|
+
created_at: string;
|
|
2935
|
+
} | {
|
|
2936
|
+
message: string;
|
|
2937
|
+
warning_code: "being_deleted";
|
|
2938
|
+
created_at: string;
|
|
2939
|
+
} | {
|
|
2940
|
+
message: string;
|
|
2941
|
+
warning_code: "unknown_issue_with_credential";
|
|
2942
|
+
created_at: string;
|
|
2943
|
+
})[];
|
|
2944
|
+
display_name: string;
|
|
2945
|
+
workspace_id: string;
|
|
2946
|
+
is_managed: false;
|
|
2947
|
+
acs_system_id: string;
|
|
2948
|
+
acs_credential_id: string;
|
|
2949
|
+
access_method: "code" | "card" | "mobile_key";
|
|
2950
|
+
code?: string | null | undefined;
|
|
2951
|
+
starts_at?: string | undefined;
|
|
2952
|
+
ends_at?: string | undefined;
|
|
2953
|
+
visionline_metadata?: {
|
|
2954
|
+
card_function_type: "guest" | "staff";
|
|
2955
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
2956
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
2957
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
2958
|
+
is_valid?: boolean | undefined;
|
|
2959
|
+
auto_join?: boolean | undefined;
|
|
2960
|
+
card_id?: string | undefined;
|
|
2961
|
+
credential_id?: string | undefined;
|
|
2962
|
+
} | undefined;
|
|
2963
|
+
is_one_time_use?: boolean | undefined;
|
|
2964
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2965
|
+
external_type_display_name?: string | undefined;
|
|
2966
|
+
acs_user_id?: string | undefined;
|
|
2967
|
+
acs_credential_pool_id?: string | undefined;
|
|
2968
|
+
parent_acs_credential_id?: string | undefined;
|
|
2969
|
+
card_number?: string | null | undefined;
|
|
2970
|
+
is_issued?: boolean | undefined;
|
|
2971
|
+
issued_at?: string | null | undefined;
|
|
2972
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2973
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2974
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2975
|
+
} | null;
|
|
2976
|
+
}>;
|
|
2977
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2978
|
+
status: "success";
|
|
2979
|
+
action_attempt_id: string;
|
|
2980
|
+
error: null;
|
|
2981
|
+
result: {
|
|
2982
|
+
warnings: {
|
|
2983
|
+
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
2984
|
+
warning_message: string;
|
|
2985
|
+
}[];
|
|
2986
|
+
acs_credential_on_encoder: {
|
|
2987
|
+
created_at: string | null;
|
|
2988
|
+
starts_at: string | null;
|
|
2989
|
+
ends_at: string | null;
|
|
2990
|
+
card_number: string | null;
|
|
2991
|
+
is_issued: boolean | null;
|
|
2992
|
+
visionline_metadata?: {
|
|
2993
|
+
card_id: string;
|
|
2994
|
+
cancelled: boolean;
|
|
2995
|
+
discarded: boolean;
|
|
2996
|
+
expired: boolean;
|
|
2997
|
+
overwritten: boolean;
|
|
2998
|
+
pending_auto_update: boolean;
|
|
2999
|
+
card_format: "TLCode" | "rfid48";
|
|
3000
|
+
number_of_issued_cards: number;
|
|
3001
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
3002
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
3003
|
+
overridden?: boolean | undefined;
|
|
3004
|
+
card_holder?: string | undefined;
|
|
3005
|
+
} | undefined;
|
|
3006
|
+
} | null;
|
|
3007
|
+
acs_credential_on_seam: {
|
|
3008
|
+
created_at: string;
|
|
3009
|
+
errors: {
|
|
3010
|
+
message: string;
|
|
3011
|
+
error_code: string;
|
|
3012
|
+
}[];
|
|
3013
|
+
warnings: ({
|
|
3014
|
+
message: string;
|
|
3015
|
+
warning_code: "waiting_to_be_issued";
|
|
3016
|
+
created_at: string;
|
|
3017
|
+
} | {
|
|
3018
|
+
message: string;
|
|
3019
|
+
warning_code: "schedule_externally_modified";
|
|
3020
|
+
created_at: string;
|
|
3021
|
+
} | {
|
|
3022
|
+
message: string;
|
|
3023
|
+
warning_code: "schedule_modified";
|
|
3024
|
+
created_at: string;
|
|
3025
|
+
} | {
|
|
3026
|
+
message: string;
|
|
3027
|
+
warning_code: "being_deleted";
|
|
3028
|
+
created_at: string;
|
|
3029
|
+
} | {
|
|
3030
|
+
message: string;
|
|
3031
|
+
warning_code: "unknown_issue_with_credential";
|
|
3032
|
+
created_at: string;
|
|
3033
|
+
})[];
|
|
3034
|
+
display_name: string;
|
|
3035
|
+
workspace_id: string;
|
|
3036
|
+
is_managed: true;
|
|
3037
|
+
acs_system_id: string;
|
|
3038
|
+
acs_credential_id: string;
|
|
3039
|
+
access_method: "code" | "card" | "mobile_key";
|
|
3040
|
+
code?: string | null | undefined;
|
|
3041
|
+
starts_at?: string | undefined;
|
|
3042
|
+
ends_at?: string | undefined;
|
|
3043
|
+
visionline_metadata?: {
|
|
3044
|
+
card_function_type: "guest" | "staff";
|
|
3045
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
3046
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
3047
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
3048
|
+
is_valid?: boolean | undefined;
|
|
3049
|
+
auto_join?: boolean | undefined;
|
|
3050
|
+
card_id?: string | undefined;
|
|
3051
|
+
credential_id?: string | undefined;
|
|
3052
|
+
} | undefined;
|
|
3053
|
+
is_one_time_use?: boolean | undefined;
|
|
3054
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3055
|
+
external_type_display_name?: string | undefined;
|
|
3056
|
+
acs_user_id?: string | undefined;
|
|
3057
|
+
acs_credential_pool_id?: string | undefined;
|
|
3058
|
+
parent_acs_credential_id?: string | undefined;
|
|
3059
|
+
card_number?: string | null | undefined;
|
|
3060
|
+
is_issued?: boolean | undefined;
|
|
3061
|
+
issued_at?: string | null | undefined;
|
|
3062
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3063
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3064
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3065
|
+
} | {
|
|
3066
|
+
created_at: string;
|
|
3067
|
+
errors: {
|
|
3068
|
+
message: string;
|
|
3069
|
+
error_code: string;
|
|
3070
|
+
}[];
|
|
3071
|
+
warnings: ({
|
|
3072
|
+
message: string;
|
|
3073
|
+
warning_code: "waiting_to_be_issued";
|
|
3074
|
+
created_at: string;
|
|
3075
|
+
} | {
|
|
3076
|
+
message: string;
|
|
3077
|
+
warning_code: "schedule_externally_modified";
|
|
3078
|
+
created_at: string;
|
|
3079
|
+
} | {
|
|
3080
|
+
message: string;
|
|
3081
|
+
warning_code: "schedule_modified";
|
|
3082
|
+
created_at: string;
|
|
3083
|
+
} | {
|
|
3084
|
+
message: string;
|
|
3085
|
+
warning_code: "being_deleted";
|
|
3086
|
+
created_at: string;
|
|
3087
|
+
} | {
|
|
3088
|
+
message: string;
|
|
3089
|
+
warning_code: "unknown_issue_with_credential";
|
|
3090
|
+
created_at: string;
|
|
3091
|
+
})[];
|
|
3092
|
+
display_name: string;
|
|
3093
|
+
workspace_id: string;
|
|
3094
|
+
is_managed: false;
|
|
2982
3095
|
acs_system_id: string;
|
|
2983
3096
|
acs_credential_id: string;
|
|
2984
3097
|
access_method: "code" | "card" | "mobile_key";
|
|
@@ -3062,6 +3175,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3062
3175
|
message: string;
|
|
3063
3176
|
warning_code: "being_deleted";
|
|
3064
3177
|
created_at: string;
|
|
3178
|
+
} | {
|
|
3179
|
+
message: string;
|
|
3180
|
+
warning_code: "unknown_issue_with_credential";
|
|
3181
|
+
created_at: string;
|
|
3065
3182
|
})[];
|
|
3066
3183
|
display_name: string;
|
|
3067
3184
|
workspace_id: string;
|
|
@@ -3116,6 +3233,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3116
3233
|
message: string;
|
|
3117
3234
|
warning_code: "being_deleted";
|
|
3118
3235
|
created_at: string;
|
|
3236
|
+
} | {
|
|
3237
|
+
message: string;
|
|
3238
|
+
warning_code: "unknown_issue_with_credential";
|
|
3239
|
+
created_at: string;
|
|
3119
3240
|
})[];
|
|
3120
3241
|
display_name: string;
|
|
3121
3242
|
workspace_id: string;
|
|
@@ -3327,6 +3448,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3327
3448
|
message: string;
|
|
3328
3449
|
warning_code: "being_deleted";
|
|
3329
3450
|
created_at: string;
|
|
3451
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3452
|
+
created_at: z.ZodString;
|
|
3453
|
+
message: z.ZodString;
|
|
3454
|
+
}, {
|
|
3455
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
|
|
3456
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3457
|
+
message: string;
|
|
3458
|
+
warning_code: "unknown_issue_with_credential";
|
|
3459
|
+
created_at: string;
|
|
3460
|
+
}, {
|
|
3461
|
+
message: string;
|
|
3462
|
+
warning_code: "unknown_issue_with_credential";
|
|
3463
|
+
created_at: string;
|
|
3330
3464
|
}>]>, "many">;
|
|
3331
3465
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
3332
3466
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3383,6 +3517,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3383
3517
|
message: string;
|
|
3384
3518
|
warning_code: "being_deleted";
|
|
3385
3519
|
created_at: string;
|
|
3520
|
+
} | {
|
|
3521
|
+
message: string;
|
|
3522
|
+
warning_code: "unknown_issue_with_credential";
|
|
3523
|
+
created_at: string;
|
|
3386
3524
|
})[];
|
|
3387
3525
|
display_name: string;
|
|
3388
3526
|
workspace_id: string;
|
|
@@ -3437,6 +3575,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3437
3575
|
message: string;
|
|
3438
3576
|
warning_code: "being_deleted";
|
|
3439
3577
|
created_at: string;
|
|
3578
|
+
} | {
|
|
3579
|
+
message: string;
|
|
3580
|
+
warning_code: "unknown_issue_with_credential";
|
|
3581
|
+
created_at: string;
|
|
3440
3582
|
})[];
|
|
3441
3583
|
display_name: string;
|
|
3442
3584
|
workspace_id: string;
|
|
@@ -3550,6 +3692,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3550
3692
|
message: string;
|
|
3551
3693
|
warning_code: "being_deleted";
|
|
3552
3694
|
created_at: string;
|
|
3695
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3696
|
+
created_at: z.ZodString;
|
|
3697
|
+
message: z.ZodString;
|
|
3698
|
+
}, {
|
|
3699
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
|
|
3700
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3701
|
+
message: string;
|
|
3702
|
+
warning_code: "unknown_issue_with_credential";
|
|
3703
|
+
created_at: string;
|
|
3704
|
+
}, {
|
|
3705
|
+
message: string;
|
|
3706
|
+
warning_code: "unknown_issue_with_credential";
|
|
3707
|
+
created_at: string;
|
|
3553
3708
|
}>]>, "many">;
|
|
3554
3709
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
3555
3710
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3606,6 +3761,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3606
3761
|
message: string;
|
|
3607
3762
|
warning_code: "being_deleted";
|
|
3608
3763
|
created_at: string;
|
|
3764
|
+
} | {
|
|
3765
|
+
message: string;
|
|
3766
|
+
warning_code: "unknown_issue_with_credential";
|
|
3767
|
+
created_at: string;
|
|
3609
3768
|
})[];
|
|
3610
3769
|
display_name: string;
|
|
3611
3770
|
workspace_id: string;
|
|
@@ -3660,6 +3819,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3660
3819
|
message: string;
|
|
3661
3820
|
warning_code: "being_deleted";
|
|
3662
3821
|
created_at: string;
|
|
3822
|
+
} | {
|
|
3823
|
+
message: string;
|
|
3824
|
+
warning_code: "unknown_issue_with_credential";
|
|
3825
|
+
created_at: string;
|
|
3663
3826
|
})[];
|
|
3664
3827
|
display_name: string;
|
|
3665
3828
|
workspace_id: string;
|
|
@@ -3719,6 +3882,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3719
3882
|
message: string;
|
|
3720
3883
|
warning_code: "being_deleted";
|
|
3721
3884
|
created_at: string;
|
|
3885
|
+
} | {
|
|
3886
|
+
message: string;
|
|
3887
|
+
warning_code: "unknown_issue_with_credential";
|
|
3888
|
+
created_at: string;
|
|
3722
3889
|
})[];
|
|
3723
3890
|
display_name: string;
|
|
3724
3891
|
workspace_id: string;
|
|
@@ -3773,6 +3940,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3773
3940
|
message: string;
|
|
3774
3941
|
warning_code: "being_deleted";
|
|
3775
3942
|
created_at: string;
|
|
3943
|
+
} | {
|
|
3944
|
+
message: string;
|
|
3945
|
+
warning_code: "unknown_issue_with_credential";
|
|
3946
|
+
created_at: string;
|
|
3776
3947
|
})[];
|
|
3777
3948
|
display_name: string;
|
|
3778
3949
|
workspace_id: string;
|
|
@@ -3833,6 +4004,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3833
4004
|
message: string;
|
|
3834
4005
|
warning_code: "being_deleted";
|
|
3835
4006
|
created_at: string;
|
|
4007
|
+
} | {
|
|
4008
|
+
message: string;
|
|
4009
|
+
warning_code: "unknown_issue_with_credential";
|
|
4010
|
+
created_at: string;
|
|
3836
4011
|
})[];
|
|
3837
4012
|
display_name: string;
|
|
3838
4013
|
workspace_id: string;
|
|
@@ -3887,6 +4062,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3887
4062
|
message: string;
|
|
3888
4063
|
warning_code: "being_deleted";
|
|
3889
4064
|
created_at: string;
|
|
4065
|
+
} | {
|
|
4066
|
+
message: string;
|
|
4067
|
+
warning_code: "unknown_issue_with_credential";
|
|
4068
|
+
created_at: string;
|
|
3890
4069
|
})[];
|
|
3891
4070
|
display_name: string;
|
|
3892
4071
|
workspace_id: string;
|
|
@@ -12927,6 +13106,12 @@ declare const _default: {
|
|
|
12927
13106
|
};
|
|
12928
13107
|
type: string;
|
|
12929
13108
|
};
|
|
13109
|
+
lease_ids: {
|
|
13110
|
+
items: {
|
|
13111
|
+
type: string;
|
|
13112
|
+
};
|
|
13113
|
+
type: string;
|
|
13114
|
+
};
|
|
12930
13115
|
};
|
|
12931
13116
|
required: string[];
|
|
12932
13117
|
type: string;
|
|
@@ -13208,7 +13393,7 @@ declare const _default: {
|
|
|
13208
13393
|
description: string;
|
|
13209
13394
|
items: {
|
|
13210
13395
|
description: string;
|
|
13211
|
-
oneOf: {
|
|
13396
|
+
oneOf: ({
|
|
13212
13397
|
properties: {
|
|
13213
13398
|
created_at: {
|
|
13214
13399
|
description: string;
|
|
@@ -13224,10 +13409,37 @@ declare const _default: {
|
|
|
13224
13409
|
enum: string[];
|
|
13225
13410
|
type: string;
|
|
13226
13411
|
};
|
|
13412
|
+
misconfigured_acs_entrance_ids?: never;
|
|
13227
13413
|
};
|
|
13228
13414
|
required: string[];
|
|
13229
13415
|
type: string;
|
|
13230
|
-
}
|
|
13416
|
+
} | {
|
|
13417
|
+
properties: {
|
|
13418
|
+
created_at: {
|
|
13419
|
+
description: string;
|
|
13420
|
+
format: string;
|
|
13421
|
+
type: string;
|
|
13422
|
+
};
|
|
13423
|
+
message: {
|
|
13424
|
+
description: string;
|
|
13425
|
+
type: string;
|
|
13426
|
+
};
|
|
13427
|
+
misconfigured_acs_entrance_ids: {
|
|
13428
|
+
items: {
|
|
13429
|
+
format: string;
|
|
13430
|
+
type: string;
|
|
13431
|
+
};
|
|
13432
|
+
type: string;
|
|
13433
|
+
};
|
|
13434
|
+
warning_code: {
|
|
13435
|
+
description: string;
|
|
13436
|
+
enum: string[];
|
|
13437
|
+
type: string;
|
|
13438
|
+
};
|
|
13439
|
+
};
|
|
13440
|
+
required: string[];
|
|
13441
|
+
type: string;
|
|
13442
|
+
})[];
|
|
13231
13443
|
};
|
|
13232
13444
|
type: string;
|
|
13233
13445
|
};
|
|
@@ -24190,11 +24402,6 @@ declare const _default: {
|
|
|
24190
24402
|
items: {
|
|
24191
24403
|
description: string;
|
|
24192
24404
|
properties: {
|
|
24193
|
-
_event_id: {
|
|
24194
|
-
description: string;
|
|
24195
|
-
format: string;
|
|
24196
|
-
type: string;
|
|
24197
|
-
};
|
|
24198
24405
|
created_at: {
|
|
24199
24406
|
description: string;
|
|
24200
24407
|
format: string;
|
|
@@ -34821,6 +35028,7 @@ declare const _default: {
|
|
|
34821
35028
|
tags: string[];
|
|
34822
35029
|
'x-fern-ignore': boolean;
|
|
34823
35030
|
'x-response-key': null;
|
|
35031
|
+
'x-title': string;
|
|
34824
35032
|
};
|
|
34825
35033
|
post: {
|
|
34826
35034
|
operationId: string;
|
|
@@ -34905,6 +35113,7 @@ declare const _default: {
|
|
|
34905
35113
|
'x-fern-sdk-group-name': string[];
|
|
34906
35114
|
'x-fern-sdk-method-name': string;
|
|
34907
35115
|
'x-response-key': null;
|
|
35116
|
+
'x-title': string;
|
|
34908
35117
|
};
|
|
34909
35118
|
};
|
|
34910
35119
|
'/webhooks/create': {
|
|
@@ -35958,6 +36167,13 @@ interface Routes {
|
|
|
35958
36167
|
message: string;
|
|
35959
36168
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35960
36169
|
warning_code: 'being_deleted';
|
|
36170
|
+
} | {
|
|
36171
|
+
/** Date and time at which Seam created the warning. */
|
|
36172
|
+
created_at: string;
|
|
36173
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36174
|
+
message: string;
|
|
36175
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36176
|
+
warning_code: 'unknown_issue_with_credential';
|
|
35961
36177
|
}>;
|
|
35962
36178
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
35963
36179
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36044,6 +36260,13 @@ interface Routes {
|
|
|
36044
36260
|
message: string;
|
|
36045
36261
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36046
36262
|
warning_code: 'being_deleted';
|
|
36263
|
+
} | {
|
|
36264
|
+
/** Date and time at which Seam created the warning. */
|
|
36265
|
+
created_at: string;
|
|
36266
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36267
|
+
message: string;
|
|
36268
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36269
|
+
warning_code: 'unknown_issue_with_credential';
|
|
36047
36270
|
}>;
|
|
36048
36271
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36049
36272
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36167,6 +36390,13 @@ interface Routes {
|
|
|
36167
36390
|
message: string;
|
|
36168
36391
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36169
36392
|
warning_code: 'being_deleted';
|
|
36393
|
+
} | {
|
|
36394
|
+
/** Date and time at which Seam created the warning. */
|
|
36395
|
+
created_at: string;
|
|
36396
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36397
|
+
message: string;
|
|
36398
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36399
|
+
warning_code: 'unknown_issue_with_credential';
|
|
36170
36400
|
}>;
|
|
36171
36401
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36172
36402
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36253,6 +36483,13 @@ interface Routes {
|
|
|
36253
36483
|
message: string;
|
|
36254
36484
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36255
36485
|
warning_code: 'being_deleted';
|
|
36486
|
+
} | {
|
|
36487
|
+
/** Date and time at which Seam created the warning. */
|
|
36488
|
+
created_at: string;
|
|
36489
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36490
|
+
message: string;
|
|
36491
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36492
|
+
warning_code: 'unknown_issue_with_credential';
|
|
36256
36493
|
}>;
|
|
36257
36494
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36258
36495
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36885,6 +37122,13 @@ interface Routes {
|
|
|
36885
37122
|
message: string;
|
|
36886
37123
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36887
37124
|
warning_code: 'being_deleted';
|
|
37125
|
+
} | {
|
|
37126
|
+
/** Date and time at which Seam created the warning. */
|
|
37127
|
+
created_at: string;
|
|
37128
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37129
|
+
message: string;
|
|
37130
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37131
|
+
warning_code: 'unknown_issue_with_credential';
|
|
36888
37132
|
}>;
|
|
36889
37133
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36890
37134
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36971,6 +37215,13 @@ interface Routes {
|
|
|
36971
37215
|
message: string;
|
|
36972
37216
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36973
37217
|
warning_code: 'being_deleted';
|
|
37218
|
+
} | {
|
|
37219
|
+
/** Date and time at which Seam created the warning. */
|
|
37220
|
+
created_at: string;
|
|
37221
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37222
|
+
message: string;
|
|
37223
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37224
|
+
warning_code: 'unknown_issue_with_credential';
|
|
36974
37225
|
}>;
|
|
36975
37226
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36976
37227
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -37094,6 +37345,13 @@ interface Routes {
|
|
|
37094
37345
|
message: string;
|
|
37095
37346
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37096
37347
|
warning_code: 'being_deleted';
|
|
37348
|
+
} | {
|
|
37349
|
+
/** Date and time at which Seam created the warning. */
|
|
37350
|
+
created_at: string;
|
|
37351
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37352
|
+
message: string;
|
|
37353
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37354
|
+
warning_code: 'unknown_issue_with_credential';
|
|
37097
37355
|
}>;
|
|
37098
37356
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
37099
37357
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -37180,6 +37438,13 @@ interface Routes {
|
|
|
37180
37438
|
message: string;
|
|
37181
37439
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37182
37440
|
warning_code: 'being_deleted';
|
|
37441
|
+
} | {
|
|
37442
|
+
/** Date and time at which Seam created the warning. */
|
|
37443
|
+
created_at: string;
|
|
37444
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37445
|
+
message: string;
|
|
37446
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37447
|
+
warning_code: 'unknown_issue_with_credential';
|
|
37183
37448
|
}>;
|
|
37184
37449
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
37185
37450
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38030,6 +38295,13 @@ interface Routes {
|
|
|
38030
38295
|
message: string;
|
|
38031
38296
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38032
38297
|
warning_code: 'being_deleted';
|
|
38298
|
+
} | {
|
|
38299
|
+
/** Date and time at which Seam created the warning. */
|
|
38300
|
+
created_at: string;
|
|
38301
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38302
|
+
message: string;
|
|
38303
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38304
|
+
warning_code: 'unknown_issue_with_credential';
|
|
38033
38305
|
}>;
|
|
38034
38306
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
38035
38307
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38116,6 +38388,13 @@ interface Routes {
|
|
|
38116
38388
|
message: string;
|
|
38117
38389
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38118
38390
|
warning_code: 'being_deleted';
|
|
38391
|
+
} | {
|
|
38392
|
+
/** Date and time at which Seam created the warning. */
|
|
38393
|
+
created_at: string;
|
|
38394
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38395
|
+
message: string;
|
|
38396
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38397
|
+
warning_code: 'unknown_issue_with_credential';
|
|
38119
38398
|
}>;
|
|
38120
38399
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
38121
38400
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38239,6 +38518,13 @@ interface Routes {
|
|
|
38239
38518
|
message: string;
|
|
38240
38519
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38241
38520
|
warning_code: 'being_deleted';
|
|
38521
|
+
} | {
|
|
38522
|
+
/** Date and time at which Seam created the warning. */
|
|
38523
|
+
created_at: string;
|
|
38524
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38525
|
+
message: string;
|
|
38526
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38527
|
+
warning_code: 'unknown_issue_with_credential';
|
|
38242
38528
|
}>;
|
|
38243
38529
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
38244
38530
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38325,6 +38611,13 @@ interface Routes {
|
|
|
38325
38611
|
message: string;
|
|
38326
38612
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38327
38613
|
warning_code: 'being_deleted';
|
|
38614
|
+
} | {
|
|
38615
|
+
/** Date and time at which Seam created the warning. */
|
|
38616
|
+
created_at: string;
|
|
38617
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38618
|
+
message: string;
|
|
38619
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38620
|
+
warning_code: 'unknown_issue_with_credential';
|
|
38328
38621
|
}>;
|
|
38329
38622
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
38330
38623
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38944,6 +39237,13 @@ interface Routes {
|
|
|
38944
39237
|
message: string;
|
|
38945
39238
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38946
39239
|
warning_code: 'being_deleted';
|
|
39240
|
+
} | {
|
|
39241
|
+
/** Date and time at which Seam created the warning. */
|
|
39242
|
+
created_at: string;
|
|
39243
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39244
|
+
message: string;
|
|
39245
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39246
|
+
warning_code: 'unknown_issue_with_credential';
|
|
38947
39247
|
}>;
|
|
38948
39248
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
38949
39249
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39030,6 +39330,13 @@ interface Routes {
|
|
|
39030
39330
|
message: string;
|
|
39031
39331
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39032
39332
|
warning_code: 'being_deleted';
|
|
39333
|
+
} | {
|
|
39334
|
+
/** Date and time at which Seam created the warning. */
|
|
39335
|
+
created_at: string;
|
|
39336
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39337
|
+
message: string;
|
|
39338
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39339
|
+
warning_code: 'unknown_issue_with_credential';
|
|
39033
39340
|
}>;
|
|
39034
39341
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
39035
39342
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39153,6 +39460,13 @@ interface Routes {
|
|
|
39153
39460
|
message: string;
|
|
39154
39461
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39155
39462
|
warning_code: 'being_deleted';
|
|
39463
|
+
} | {
|
|
39464
|
+
/** Date and time at which Seam created the warning. */
|
|
39465
|
+
created_at: string;
|
|
39466
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39467
|
+
message: string;
|
|
39468
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39469
|
+
warning_code: 'unknown_issue_with_credential';
|
|
39156
39470
|
}>;
|
|
39157
39471
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
39158
39472
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39239,6 +39553,13 @@ interface Routes {
|
|
|
39239
39553
|
message: string;
|
|
39240
39554
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39241
39555
|
warning_code: 'being_deleted';
|
|
39556
|
+
} | {
|
|
39557
|
+
/** Date and time at which Seam created the warning. */
|
|
39558
|
+
created_at: string;
|
|
39559
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39560
|
+
message: string;
|
|
39561
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39562
|
+
warning_code: 'unknown_issue_with_credential';
|
|
39242
39563
|
}>;
|
|
39243
39564
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
39244
39565
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39711,6 +40032,7 @@ interface Routes {
|
|
|
39711
40032
|
access_point_name: string;
|
|
39712
40033
|
common_area_number?: number | undefined;
|
|
39713
40034
|
inner_access_points_names?: string[] | undefined;
|
|
40035
|
+
lease_ids?: string[] | undefined;
|
|
39714
40036
|
} | undefined;
|
|
39715
40037
|
assa_abloy_vostio_metadata?: {
|
|
39716
40038
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -39755,7 +40077,7 @@ interface Routes {
|
|
|
39755
40077
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
39756
40078
|
external_type_display_name?: string | undefined;
|
|
39757
40079
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
39758
|
-
is_suspended
|
|
40080
|
+
is_suspended?: boolean | undefined;
|
|
39759
40081
|
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
39760
40082
|
access_schedule?: {
|
|
39761
40083
|
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
@@ -40046,6 +40368,13 @@ interface Routes {
|
|
|
40046
40368
|
message: string;
|
|
40047
40369
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40048
40370
|
warning_code: 'being_deleted';
|
|
40371
|
+
} | {
|
|
40372
|
+
/** Date and time at which Seam created the warning. */
|
|
40373
|
+
created_at: string;
|
|
40374
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40375
|
+
message: string;
|
|
40376
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40377
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40049
40378
|
}>;
|
|
40050
40379
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40051
40380
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40182,6 +40511,13 @@ interface Routes {
|
|
|
40182
40511
|
message: string;
|
|
40183
40512
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40184
40513
|
warning_code: 'being_deleted';
|
|
40514
|
+
} | {
|
|
40515
|
+
/** Date and time at which Seam created the warning. */
|
|
40516
|
+
created_at: string;
|
|
40517
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40518
|
+
message: string;
|
|
40519
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40520
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40185
40521
|
}>;
|
|
40186
40522
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40187
40523
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40292,6 +40628,13 @@ interface Routes {
|
|
|
40292
40628
|
message: string;
|
|
40293
40629
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40294
40630
|
warning_code: 'being_deleted';
|
|
40631
|
+
} | {
|
|
40632
|
+
/** Date and time at which Seam created the warning. */
|
|
40633
|
+
created_at: string;
|
|
40634
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40635
|
+
message: string;
|
|
40636
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40637
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40295
40638
|
}>;
|
|
40296
40639
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40297
40640
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40406,6 +40749,13 @@ interface Routes {
|
|
|
40406
40749
|
message: string;
|
|
40407
40750
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40408
40751
|
warning_code: 'being_deleted';
|
|
40752
|
+
} | {
|
|
40753
|
+
/** Date and time at which Seam created the warning. */
|
|
40754
|
+
created_at: string;
|
|
40755
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40756
|
+
message: string;
|
|
40757
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40758
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40409
40759
|
}>;
|
|
40410
40760
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40411
40761
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40524,6 +40874,13 @@ interface Routes {
|
|
|
40524
40874
|
message: string;
|
|
40525
40875
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40526
40876
|
warning_code: 'being_deleted';
|
|
40877
|
+
} | {
|
|
40878
|
+
/** Date and time at which Seam created the warning. */
|
|
40879
|
+
created_at: string;
|
|
40880
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40881
|
+
message: string;
|
|
40882
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40883
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40527
40884
|
}>;
|
|
40528
40885
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40529
40886
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40598,6 +40955,7 @@ interface Routes {
|
|
|
40598
40955
|
access_point_name: string;
|
|
40599
40956
|
common_area_number?: number | undefined;
|
|
40600
40957
|
inner_access_points_names?: string[] | undefined;
|
|
40958
|
+
lease_ids?: string[] | undefined;
|
|
40601
40959
|
} | undefined;
|
|
40602
40960
|
assa_abloy_vostio_metadata?: {
|
|
40603
40961
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -40696,6 +41054,13 @@ interface Routes {
|
|
|
40696
41054
|
message: string;
|
|
40697
41055
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40698
41056
|
warning_code: 'being_deleted';
|
|
41057
|
+
} | {
|
|
41058
|
+
/** Date and time at which Seam created the warning. */
|
|
41059
|
+
created_at: string;
|
|
41060
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41061
|
+
message: string;
|
|
41062
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41063
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40699
41064
|
}>;
|
|
40700
41065
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40701
41066
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40798,6 +41163,13 @@ interface Routes {
|
|
|
40798
41163
|
message: string;
|
|
40799
41164
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40800
41165
|
warning_code: 'being_deleted';
|
|
41166
|
+
} | {
|
|
41167
|
+
/** Date and time at which Seam created the warning. */
|
|
41168
|
+
created_at: string;
|
|
41169
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41170
|
+
message: string;
|
|
41171
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41172
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40801
41173
|
}>;
|
|
40802
41174
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40803
41175
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40909,6 +41281,13 @@ interface Routes {
|
|
|
40909
41281
|
message: string;
|
|
40910
41282
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40911
41283
|
warning_code: 'being_deleted';
|
|
41284
|
+
} | {
|
|
41285
|
+
/** Date and time at which Seam created the warning. */
|
|
41286
|
+
created_at: string;
|
|
41287
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41288
|
+
message: string;
|
|
41289
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41290
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40912
41291
|
}>;
|
|
40913
41292
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40914
41293
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41015,6 +41394,13 @@ interface Routes {
|
|
|
41015
41394
|
message: string;
|
|
41016
41395
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41017
41396
|
warning_code: 'being_deleted';
|
|
41397
|
+
} | {
|
|
41398
|
+
/** Date and time at which Seam created the warning. */
|
|
41399
|
+
created_at: string;
|
|
41400
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41401
|
+
message: string;
|
|
41402
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41403
|
+
warning_code: 'unknown_issue_with_credential';
|
|
41018
41404
|
}>;
|
|
41019
41405
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41020
41406
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41207,6 +41593,13 @@ interface Routes {
|
|
|
41207
41593
|
message: string;
|
|
41208
41594
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41209
41595
|
warning_code: 'being_deleted';
|
|
41596
|
+
} | {
|
|
41597
|
+
/** Date and time at which Seam created the warning. */
|
|
41598
|
+
created_at: string;
|
|
41599
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41600
|
+
message: string;
|
|
41601
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41602
|
+
warning_code: 'unknown_issue_with_credential';
|
|
41210
41603
|
}>;
|
|
41211
41604
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41212
41605
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41293,6 +41686,13 @@ interface Routes {
|
|
|
41293
41686
|
message: string;
|
|
41294
41687
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41295
41688
|
warning_code: 'being_deleted';
|
|
41689
|
+
} | {
|
|
41690
|
+
/** Date and time at which Seam created the warning. */
|
|
41691
|
+
created_at: string;
|
|
41692
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41693
|
+
message: string;
|
|
41694
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41695
|
+
warning_code: 'unknown_issue_with_credential';
|
|
41296
41696
|
}>;
|
|
41297
41697
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41298
41698
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41416,6 +41816,13 @@ interface Routes {
|
|
|
41416
41816
|
message: string;
|
|
41417
41817
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41418
41818
|
warning_code: 'being_deleted';
|
|
41819
|
+
} | {
|
|
41820
|
+
/** Date and time at which Seam created the warning. */
|
|
41821
|
+
created_at: string;
|
|
41822
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41823
|
+
message: string;
|
|
41824
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41825
|
+
warning_code: 'unknown_issue_with_credential';
|
|
41419
41826
|
}>;
|
|
41420
41827
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41421
41828
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41502,6 +41909,13 @@ interface Routes {
|
|
|
41502
41909
|
message: string;
|
|
41503
41910
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41504
41911
|
warning_code: 'being_deleted';
|
|
41912
|
+
} | {
|
|
41913
|
+
/** Date and time at which Seam created the warning. */
|
|
41914
|
+
created_at: string;
|
|
41915
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41916
|
+
message: string;
|
|
41917
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41918
|
+
warning_code: 'unknown_issue_with_credential';
|
|
41505
41919
|
}>;
|
|
41506
41920
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41507
41921
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41848,8 +42262,6 @@ interface Routes {
|
|
|
41848
42262
|
message: string;
|
|
41849
42263
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
41850
42264
|
error_code: 'acs_encoder_removed';
|
|
41851
|
-
/** ID of the event that was created when the `acs_encoder` was removed. */
|
|
41852
|
-
_event_id: string;
|
|
41853
42265
|
}>;
|
|
41854
42266
|
/** Date and time at which the `acs_encoder` was created. */
|
|
41855
42267
|
created_at: string;
|
|
@@ -42026,6 +42438,13 @@ interface Routes {
|
|
|
42026
42438
|
message: string;
|
|
42027
42439
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42028
42440
|
warning_code: 'being_deleted';
|
|
42441
|
+
} | {
|
|
42442
|
+
/** Date and time at which Seam created the warning. */
|
|
42443
|
+
created_at: string;
|
|
42444
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42445
|
+
message: string;
|
|
42446
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42447
|
+
warning_code: 'unknown_issue_with_credential';
|
|
42029
42448
|
}>;
|
|
42030
42449
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
42031
42450
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42112,6 +42531,13 @@ interface Routes {
|
|
|
42112
42531
|
message: string;
|
|
42113
42532
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42114
42533
|
warning_code: 'being_deleted';
|
|
42534
|
+
} | {
|
|
42535
|
+
/** Date and time at which Seam created the warning. */
|
|
42536
|
+
created_at: string;
|
|
42537
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42538
|
+
message: string;
|
|
42539
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42540
|
+
warning_code: 'unknown_issue_with_credential';
|
|
42115
42541
|
}>;
|
|
42116
42542
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
42117
42543
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42235,6 +42661,13 @@ interface Routes {
|
|
|
42235
42661
|
message: string;
|
|
42236
42662
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42237
42663
|
warning_code: 'being_deleted';
|
|
42664
|
+
} | {
|
|
42665
|
+
/** Date and time at which Seam created the warning. */
|
|
42666
|
+
created_at: string;
|
|
42667
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42668
|
+
message: string;
|
|
42669
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42670
|
+
warning_code: 'unknown_issue_with_credential';
|
|
42238
42671
|
}>;
|
|
42239
42672
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
42240
42673
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42321,6 +42754,13 @@ interface Routes {
|
|
|
42321
42754
|
message: string;
|
|
42322
42755
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42323
42756
|
warning_code: 'being_deleted';
|
|
42757
|
+
} | {
|
|
42758
|
+
/** Date and time at which Seam created the warning. */
|
|
42759
|
+
created_at: string;
|
|
42760
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42761
|
+
message: string;
|
|
42762
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42763
|
+
warning_code: 'unknown_issue_with_credential';
|
|
42324
42764
|
}>;
|
|
42325
42765
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
42326
42766
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42750,6 +43190,7 @@ interface Routes {
|
|
|
42750
43190
|
access_point_name: string;
|
|
42751
43191
|
common_area_number?: number | undefined;
|
|
42752
43192
|
inner_access_points_names?: string[] | undefined;
|
|
43193
|
+
lease_ids?: string[] | undefined;
|
|
42753
43194
|
} | undefined;
|
|
42754
43195
|
assa_abloy_vostio_metadata?: {
|
|
42755
43196
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -42830,6 +43271,7 @@ interface Routes {
|
|
|
42830
43271
|
access_point_name: string;
|
|
42831
43272
|
common_area_number?: number | undefined;
|
|
42832
43273
|
inner_access_points_names?: string[] | undefined;
|
|
43274
|
+
lease_ids?: string[] | undefined;
|
|
42833
43275
|
} | undefined;
|
|
42834
43276
|
assa_abloy_vostio_metadata?: {
|
|
42835
43277
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -42924,6 +43366,13 @@ interface Routes {
|
|
|
42924
43366
|
message: string;
|
|
42925
43367
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42926
43368
|
warning_code: 'being_deleted';
|
|
43369
|
+
} | {
|
|
43370
|
+
/** Date and time at which Seam created the warning. */
|
|
43371
|
+
created_at: string;
|
|
43372
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43373
|
+
message: string;
|
|
43374
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43375
|
+
warning_code: 'unknown_issue_with_credential';
|
|
42927
43376
|
}>;
|
|
42928
43377
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
42929
43378
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -43063,6 +43512,7 @@ interface Routes {
|
|
|
43063
43512
|
message: string;
|
|
43064
43513
|
/** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
|
|
43065
43514
|
warning_code: 'time_zone_does_not_match_location';
|
|
43515
|
+
misconfigured_acs_entrance_ids?: string[] | undefined;
|
|
43066
43516
|
}>;
|
|
43067
43517
|
/** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
|
|
43068
43518
|
can_automate_enrollment?: boolean | undefined;
|
|
@@ -43191,6 +43641,7 @@ interface Routes {
|
|
|
43191
43641
|
message: string;
|
|
43192
43642
|
/** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
|
|
43193
43643
|
warning_code: 'time_zone_does_not_match_location';
|
|
43644
|
+
misconfigured_acs_entrance_ids?: string[] | undefined;
|
|
43194
43645
|
}>;
|
|
43195
43646
|
/** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
|
|
43196
43647
|
can_automate_enrollment?: boolean | undefined;
|
|
@@ -43319,6 +43770,7 @@ interface Routes {
|
|
|
43319
43770
|
message: string;
|
|
43320
43771
|
/** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
|
|
43321
43772
|
warning_code: 'time_zone_does_not_match_location';
|
|
43773
|
+
misconfigured_acs_entrance_ids?: string[] | undefined;
|
|
43322
43774
|
}>;
|
|
43323
43775
|
/** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
|
|
43324
43776
|
can_automate_enrollment?: boolean | undefined;
|
|
@@ -43392,7 +43844,7 @@ interface Routes {
|
|
|
43392
43844
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
43393
43845
|
external_type_display_name?: string | undefined;
|
|
43394
43846
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
43395
|
-
is_suspended
|
|
43847
|
+
is_suspended?: boolean | undefined;
|
|
43396
43848
|
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
43397
43849
|
access_schedule?: {
|
|
43398
43850
|
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
@@ -43508,7 +43960,7 @@ interface Routes {
|
|
|
43508
43960
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
43509
43961
|
external_type_display_name?: string | undefined;
|
|
43510
43962
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
43511
|
-
is_suspended
|
|
43963
|
+
is_suspended?: boolean | undefined;
|
|
43512
43964
|
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
43513
43965
|
access_schedule?: {
|
|
43514
43966
|
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
@@ -43619,7 +44071,7 @@ interface Routes {
|
|
|
43619
44071
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
43620
44072
|
external_type_display_name?: string | undefined;
|
|
43621
44073
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
43622
|
-
is_suspended
|
|
44074
|
+
is_suspended?: boolean | undefined;
|
|
43623
44075
|
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
43624
44076
|
access_schedule?: {
|
|
43625
44077
|
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
@@ -43746,6 +44198,7 @@ interface Routes {
|
|
|
43746
44198
|
access_point_name: string;
|
|
43747
44199
|
common_area_number?: number | undefined;
|
|
43748
44200
|
inner_access_points_names?: string[] | undefined;
|
|
44201
|
+
lease_ids?: string[] | undefined;
|
|
43749
44202
|
} | undefined;
|
|
43750
44203
|
assa_abloy_vostio_metadata?: {
|
|
43751
44204
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -43828,7 +44281,7 @@ interface Routes {
|
|
|
43828
44281
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
43829
44282
|
external_type_display_name?: string | undefined;
|
|
43830
44283
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
43831
|
-
is_suspended
|
|
44284
|
+
is_suspended?: boolean | undefined;
|
|
43832
44285
|
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
43833
44286
|
access_schedule?: {
|
|
43834
44287
|
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
@@ -43934,7 +44387,7 @@ interface Routes {
|
|
|
43934
44387
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
43935
44388
|
external_type_display_name?: string | undefined;
|
|
43936
44389
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
43937
|
-
is_suspended
|
|
44390
|
+
is_suspended?: boolean | undefined;
|
|
43938
44391
|
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
43939
44392
|
access_schedule?: {
|
|
43940
44393
|
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
@@ -44215,6 +44668,13 @@ interface Routes {
|
|
|
44215
44668
|
message: string;
|
|
44216
44669
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44217
44670
|
warning_code: 'being_deleted';
|
|
44671
|
+
} | {
|
|
44672
|
+
/** Date and time at which Seam created the warning. */
|
|
44673
|
+
created_at: string;
|
|
44674
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44675
|
+
message: string;
|
|
44676
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44677
|
+
warning_code: 'unknown_issue_with_credential';
|
|
44218
44678
|
}>;
|
|
44219
44679
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
44220
44680
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44301,6 +44761,13 @@ interface Routes {
|
|
|
44301
44761
|
message: string;
|
|
44302
44762
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44303
44763
|
warning_code: 'being_deleted';
|
|
44764
|
+
} | {
|
|
44765
|
+
/** Date and time at which Seam created the warning. */
|
|
44766
|
+
created_at: string;
|
|
44767
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44768
|
+
message: string;
|
|
44769
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44770
|
+
warning_code: 'unknown_issue_with_credential';
|
|
44304
44771
|
}>;
|
|
44305
44772
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
44306
44773
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44424,6 +44891,13 @@ interface Routes {
|
|
|
44424
44891
|
message: string;
|
|
44425
44892
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44426
44893
|
warning_code: 'being_deleted';
|
|
44894
|
+
} | {
|
|
44895
|
+
/** Date and time at which Seam created the warning. */
|
|
44896
|
+
created_at: string;
|
|
44897
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44898
|
+
message: string;
|
|
44899
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44900
|
+
warning_code: 'unknown_issue_with_credential';
|
|
44427
44901
|
}>;
|
|
44428
44902
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
44429
44903
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44510,6 +44984,13 @@ interface Routes {
|
|
|
44510
44984
|
message: string;
|
|
44511
44985
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44512
44986
|
warning_code: 'being_deleted';
|
|
44987
|
+
} | {
|
|
44988
|
+
/** Date and time at which Seam created the warning. */
|
|
44989
|
+
created_at: string;
|
|
44990
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44991
|
+
message: string;
|
|
44992
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44993
|
+
warning_code: 'unknown_issue_with_credential';
|
|
44513
44994
|
}>;
|
|
44514
44995
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
44515
44996
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44991,6 +45472,13 @@ interface Routes {
|
|
|
44991
45472
|
message: string;
|
|
44992
45473
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44993
45474
|
warning_code: 'being_deleted';
|
|
45475
|
+
} | {
|
|
45476
|
+
/** Date and time at which Seam created the warning. */
|
|
45477
|
+
created_at: string;
|
|
45478
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45479
|
+
message: string;
|
|
45480
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45481
|
+
warning_code: 'unknown_issue_with_credential';
|
|
44994
45482
|
}>;
|
|
44995
45483
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
44996
45484
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -45077,6 +45565,13 @@ interface Routes {
|
|
|
45077
45565
|
message: string;
|
|
45078
45566
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45079
45567
|
warning_code: 'being_deleted';
|
|
45568
|
+
} | {
|
|
45569
|
+
/** Date and time at which Seam created the warning. */
|
|
45570
|
+
created_at: string;
|
|
45571
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45572
|
+
message: string;
|
|
45573
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45574
|
+
warning_code: 'unknown_issue_with_credential';
|
|
45080
45575
|
}>;
|
|
45081
45576
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
45082
45577
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -45200,6 +45695,13 @@ interface Routes {
|
|
|
45200
45695
|
message: string;
|
|
45201
45696
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45202
45697
|
warning_code: 'being_deleted';
|
|
45698
|
+
} | {
|
|
45699
|
+
/** Date and time at which Seam created the warning. */
|
|
45700
|
+
created_at: string;
|
|
45701
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45702
|
+
message: string;
|
|
45703
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45704
|
+
warning_code: 'unknown_issue_with_credential';
|
|
45203
45705
|
}>;
|
|
45204
45706
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
45205
45707
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -45286,6 +45788,13 @@ interface Routes {
|
|
|
45286
45788
|
message: string;
|
|
45287
45789
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45288
45790
|
warning_code: 'being_deleted';
|
|
45791
|
+
} | {
|
|
45792
|
+
/** Date and time at which Seam created the warning. */
|
|
45793
|
+
created_at: string;
|
|
45794
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45795
|
+
message: string;
|
|
45796
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45797
|
+
warning_code: 'unknown_issue_with_credential';
|
|
45289
45798
|
}>;
|
|
45290
45799
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
45291
45800
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52023,6 +52532,13 @@ interface Routes {
|
|
|
52023
52532
|
message: string;
|
|
52024
52533
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52025
52534
|
warning_code: 'being_deleted';
|
|
52535
|
+
} | {
|
|
52536
|
+
/** Date and time at which Seam created the warning. */
|
|
52537
|
+
created_at: string;
|
|
52538
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52539
|
+
message: string;
|
|
52540
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52541
|
+
warning_code: 'unknown_issue_with_credential';
|
|
52026
52542
|
}>;
|
|
52027
52543
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
52028
52544
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52109,6 +52625,13 @@ interface Routes {
|
|
|
52109
52625
|
message: string;
|
|
52110
52626
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52111
52627
|
warning_code: 'being_deleted';
|
|
52628
|
+
} | {
|
|
52629
|
+
/** Date and time at which Seam created the warning. */
|
|
52630
|
+
created_at: string;
|
|
52631
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52632
|
+
message: string;
|
|
52633
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52634
|
+
warning_code: 'unknown_issue_with_credential';
|
|
52112
52635
|
}>;
|
|
52113
52636
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
52114
52637
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52232,6 +52755,13 @@ interface Routes {
|
|
|
52232
52755
|
message: string;
|
|
52233
52756
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52234
52757
|
warning_code: 'being_deleted';
|
|
52758
|
+
} | {
|
|
52759
|
+
/** Date and time at which Seam created the warning. */
|
|
52760
|
+
created_at: string;
|
|
52761
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52762
|
+
message: string;
|
|
52763
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52764
|
+
warning_code: 'unknown_issue_with_credential';
|
|
52235
52765
|
}>;
|
|
52236
52766
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
52237
52767
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52318,6 +52848,13 @@ interface Routes {
|
|
|
52318
52848
|
message: string;
|
|
52319
52849
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52320
52850
|
warning_code: 'being_deleted';
|
|
52851
|
+
} | {
|
|
52852
|
+
/** Date and time at which Seam created the warning. */
|
|
52853
|
+
created_at: string;
|
|
52854
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52855
|
+
message: string;
|
|
52856
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52857
|
+
warning_code: 'unknown_issue_with_credential';
|
|
52321
52858
|
}>;
|
|
52322
52859
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
52323
52860
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52800,6 +53337,13 @@ interface Routes {
|
|
|
52800
53337
|
message: string;
|
|
52801
53338
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52802
53339
|
warning_code: 'being_deleted';
|
|
53340
|
+
} | {
|
|
53341
|
+
/** Date and time at which Seam created the warning. */
|
|
53342
|
+
created_at: string;
|
|
53343
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53344
|
+
message: string;
|
|
53345
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53346
|
+
warning_code: 'unknown_issue_with_credential';
|
|
52803
53347
|
}>;
|
|
52804
53348
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
52805
53349
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52886,6 +53430,13 @@ interface Routes {
|
|
|
52886
53430
|
message: string;
|
|
52887
53431
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52888
53432
|
warning_code: 'being_deleted';
|
|
53433
|
+
} | {
|
|
53434
|
+
/** Date and time at which Seam created the warning. */
|
|
53435
|
+
created_at: string;
|
|
53436
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53437
|
+
message: string;
|
|
53438
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53439
|
+
warning_code: 'unknown_issue_with_credential';
|
|
52889
53440
|
}>;
|
|
52890
53441
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
52891
53442
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53009,6 +53560,13 @@ interface Routes {
|
|
|
53009
53560
|
message: string;
|
|
53010
53561
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53011
53562
|
warning_code: 'being_deleted';
|
|
53563
|
+
} | {
|
|
53564
|
+
/** Date and time at which Seam created the warning. */
|
|
53565
|
+
created_at: string;
|
|
53566
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53567
|
+
message: string;
|
|
53568
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53569
|
+
warning_code: 'unknown_issue_with_credential';
|
|
53012
53570
|
}>;
|
|
53013
53571
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
53014
53572
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53095,6 +53653,13 @@ interface Routes {
|
|
|
53095
53653
|
message: string;
|
|
53096
53654
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53097
53655
|
warning_code: 'being_deleted';
|
|
53656
|
+
} | {
|
|
53657
|
+
/** Date and time at which Seam created the warning. */
|
|
53658
|
+
created_at: string;
|
|
53659
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53660
|
+
message: string;
|
|
53661
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53662
|
+
warning_code: 'unknown_issue_with_credential';
|
|
53098
53663
|
}>;
|
|
53099
53664
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
53100
53665
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -54687,6 +55252,13 @@ interface Routes {
|
|
|
54687
55252
|
message: string;
|
|
54688
55253
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54689
55254
|
warning_code: 'being_deleted';
|
|
55255
|
+
} | {
|
|
55256
|
+
/** Date and time at which Seam created the warning. */
|
|
55257
|
+
created_at: string;
|
|
55258
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55259
|
+
message: string;
|
|
55260
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55261
|
+
warning_code: 'unknown_issue_with_credential';
|
|
54690
55262
|
}>;
|
|
54691
55263
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
54692
55264
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -54773,6 +55345,13 @@ interface Routes {
|
|
|
54773
55345
|
message: string;
|
|
54774
55346
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54775
55347
|
warning_code: 'being_deleted';
|
|
55348
|
+
} | {
|
|
55349
|
+
/** Date and time at which Seam created the warning. */
|
|
55350
|
+
created_at: string;
|
|
55351
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55352
|
+
message: string;
|
|
55353
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55354
|
+
warning_code: 'unknown_issue_with_credential';
|
|
54776
55355
|
}>;
|
|
54777
55356
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
54778
55357
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -54896,6 +55475,13 @@ interface Routes {
|
|
|
54896
55475
|
message: string;
|
|
54897
55476
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54898
55477
|
warning_code: 'being_deleted';
|
|
55478
|
+
} | {
|
|
55479
|
+
/** Date and time at which Seam created the warning. */
|
|
55480
|
+
created_at: string;
|
|
55481
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55482
|
+
message: string;
|
|
55483
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55484
|
+
warning_code: 'unknown_issue_with_credential';
|
|
54899
55485
|
}>;
|
|
54900
55486
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
54901
55487
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -54982,6 +55568,13 @@ interface Routes {
|
|
|
54982
55568
|
message: string;
|
|
54983
55569
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54984
55570
|
warning_code: 'being_deleted';
|
|
55571
|
+
} | {
|
|
55572
|
+
/** Date and time at which Seam created the warning. */
|
|
55573
|
+
created_at: string;
|
|
55574
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55575
|
+
message: string;
|
|
55576
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55577
|
+
warning_code: 'unknown_issue_with_credential';
|
|
54985
55578
|
}>;
|
|
54986
55579
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
54987
55580
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55474,6 +56067,13 @@ interface Routes {
|
|
|
55474
56067
|
message: string;
|
|
55475
56068
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55476
56069
|
warning_code: 'being_deleted';
|
|
56070
|
+
} | {
|
|
56071
|
+
/** Date and time at which Seam created the warning. */
|
|
56072
|
+
created_at: string;
|
|
56073
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56074
|
+
message: string;
|
|
56075
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56076
|
+
warning_code: 'unknown_issue_with_credential';
|
|
55477
56077
|
}>;
|
|
55478
56078
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
55479
56079
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55560,6 +56160,13 @@ interface Routes {
|
|
|
55560
56160
|
message: string;
|
|
55561
56161
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55562
56162
|
warning_code: 'being_deleted';
|
|
56163
|
+
} | {
|
|
56164
|
+
/** Date and time at which Seam created the warning. */
|
|
56165
|
+
created_at: string;
|
|
56166
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56167
|
+
message: string;
|
|
56168
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56169
|
+
warning_code: 'unknown_issue_with_credential';
|
|
55563
56170
|
}>;
|
|
55564
56171
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
55565
56172
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55683,6 +56290,13 @@ interface Routes {
|
|
|
55683
56290
|
message: string;
|
|
55684
56291
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55685
56292
|
warning_code: 'being_deleted';
|
|
56293
|
+
} | {
|
|
56294
|
+
/** Date and time at which Seam created the warning. */
|
|
56295
|
+
created_at: string;
|
|
56296
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56297
|
+
message: string;
|
|
56298
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56299
|
+
warning_code: 'unknown_issue_with_credential';
|
|
55686
56300
|
}>;
|
|
55687
56301
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
55688
56302
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55769,6 +56383,13 @@ interface Routes {
|
|
|
55769
56383
|
message: string;
|
|
55770
56384
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55771
56385
|
warning_code: 'being_deleted';
|
|
56386
|
+
} | {
|
|
56387
|
+
/** Date and time at which Seam created the warning. */
|
|
56388
|
+
created_at: string;
|
|
56389
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56390
|
+
message: string;
|
|
56391
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56392
|
+
warning_code: 'unknown_issue_with_credential';
|
|
55772
56393
|
}>;
|
|
55773
56394
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
55774
56395
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56300,6 +56921,13 @@ interface Routes {
|
|
|
56300
56921
|
message: string;
|
|
56301
56922
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56302
56923
|
warning_code: 'being_deleted';
|
|
56924
|
+
} | {
|
|
56925
|
+
/** Date and time at which Seam created the warning. */
|
|
56926
|
+
created_at: string;
|
|
56927
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56928
|
+
message: string;
|
|
56929
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56930
|
+
warning_code: 'unknown_issue_with_credential';
|
|
56303
56931
|
}>;
|
|
56304
56932
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
56305
56933
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56386,6 +57014,13 @@ interface Routes {
|
|
|
56386
57014
|
message: string;
|
|
56387
57015
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56388
57016
|
warning_code: 'being_deleted';
|
|
57017
|
+
} | {
|
|
57018
|
+
/** Date and time at which Seam created the warning. */
|
|
57019
|
+
created_at: string;
|
|
57020
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57021
|
+
message: string;
|
|
57022
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57023
|
+
warning_code: 'unknown_issue_with_credential';
|
|
56389
57024
|
}>;
|
|
56390
57025
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
56391
57026
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56509,6 +57144,13 @@ interface Routes {
|
|
|
56509
57144
|
message: string;
|
|
56510
57145
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56511
57146
|
warning_code: 'being_deleted';
|
|
57147
|
+
} | {
|
|
57148
|
+
/** Date and time at which Seam created the warning. */
|
|
57149
|
+
created_at: string;
|
|
57150
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57151
|
+
message: string;
|
|
57152
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57153
|
+
warning_code: 'unknown_issue_with_credential';
|
|
56512
57154
|
}>;
|
|
56513
57155
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
56514
57156
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56595,6 +57237,13 @@ interface Routes {
|
|
|
56595
57237
|
message: string;
|
|
56596
57238
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56597
57239
|
warning_code: 'being_deleted';
|
|
57240
|
+
} | {
|
|
57241
|
+
/** Date and time at which Seam created the warning. */
|
|
57242
|
+
created_at: string;
|
|
57243
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57244
|
+
message: string;
|
|
57245
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57246
|
+
warning_code: 'unknown_issue_with_credential';
|
|
56598
57247
|
}>;
|
|
56599
57248
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
56600
57249
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -57261,6 +57910,13 @@ interface Routes {
|
|
|
57261
57910
|
message: string;
|
|
57262
57911
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57263
57912
|
warning_code: 'being_deleted';
|
|
57913
|
+
} | {
|
|
57914
|
+
/** Date and time at which Seam created the warning. */
|
|
57915
|
+
created_at: string;
|
|
57916
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57917
|
+
message: string;
|
|
57918
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57919
|
+
warning_code: 'unknown_issue_with_credential';
|
|
57264
57920
|
}>;
|
|
57265
57921
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
57266
57922
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -57347,6 +58003,13 @@ interface Routes {
|
|
|
57347
58003
|
message: string;
|
|
57348
58004
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57349
58005
|
warning_code: 'being_deleted';
|
|
58006
|
+
} | {
|
|
58007
|
+
/** Date and time at which Seam created the warning. */
|
|
58008
|
+
created_at: string;
|
|
58009
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58010
|
+
message: string;
|
|
58011
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58012
|
+
warning_code: 'unknown_issue_with_credential';
|
|
57350
58013
|
}>;
|
|
57351
58014
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
57352
58015
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -57470,6 +58133,13 @@ interface Routes {
|
|
|
57470
58133
|
message: string;
|
|
57471
58134
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57472
58135
|
warning_code: 'being_deleted';
|
|
58136
|
+
} | {
|
|
58137
|
+
/** Date and time at which Seam created the warning. */
|
|
58138
|
+
created_at: string;
|
|
58139
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58140
|
+
message: string;
|
|
58141
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58142
|
+
warning_code: 'unknown_issue_with_credential';
|
|
57473
58143
|
}>;
|
|
57474
58144
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
57475
58145
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -57556,6 +58226,13 @@ interface Routes {
|
|
|
57556
58226
|
message: string;
|
|
57557
58227
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57558
58228
|
warning_code: 'being_deleted';
|
|
58229
|
+
} | {
|
|
58230
|
+
/** Date and time at which Seam created the warning. */
|
|
58231
|
+
created_at: string;
|
|
58232
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58233
|
+
message: string;
|
|
58234
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58235
|
+
warning_code: 'unknown_issue_with_credential';
|
|
57559
58236
|
}>;
|
|
57560
58237
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
57561
58238
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58044,6 +58721,13 @@ interface Routes {
|
|
|
58044
58721
|
message: string;
|
|
58045
58722
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58046
58723
|
warning_code: 'being_deleted';
|
|
58724
|
+
} | {
|
|
58725
|
+
/** Date and time at which Seam created the warning. */
|
|
58726
|
+
created_at: string;
|
|
58727
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58728
|
+
message: string;
|
|
58729
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58730
|
+
warning_code: 'unknown_issue_with_credential';
|
|
58047
58731
|
}>;
|
|
58048
58732
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
58049
58733
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58130,6 +58814,13 @@ interface Routes {
|
|
|
58130
58814
|
message: string;
|
|
58131
58815
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58132
58816
|
warning_code: 'being_deleted';
|
|
58817
|
+
} | {
|
|
58818
|
+
/** Date and time at which Seam created the warning. */
|
|
58819
|
+
created_at: string;
|
|
58820
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58821
|
+
message: string;
|
|
58822
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58823
|
+
warning_code: 'unknown_issue_with_credential';
|
|
58133
58824
|
}>;
|
|
58134
58825
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
58135
58826
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58253,6 +58944,13 @@ interface Routes {
|
|
|
58253
58944
|
message: string;
|
|
58254
58945
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58255
58946
|
warning_code: 'being_deleted';
|
|
58947
|
+
} | {
|
|
58948
|
+
/** Date and time at which Seam created the warning. */
|
|
58949
|
+
created_at: string;
|
|
58950
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58951
|
+
message: string;
|
|
58952
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58953
|
+
warning_code: 'unknown_issue_with_credential';
|
|
58256
58954
|
}>;
|
|
58257
58955
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
58258
58956
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58339,6 +59037,13 @@ interface Routes {
|
|
|
58339
59037
|
message: string;
|
|
58340
59038
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58341
59039
|
warning_code: 'being_deleted';
|
|
59040
|
+
} | {
|
|
59041
|
+
/** Date and time at which Seam created the warning. */
|
|
59042
|
+
created_at: string;
|
|
59043
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
59044
|
+
message: string;
|
|
59045
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59046
|
+
warning_code: 'unknown_issue_with_credential';
|
|
58342
59047
|
}>;
|
|
58343
59048
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
58344
59049
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59404,6 +60109,13 @@ interface Routes {
|
|
|
59404
60109
|
message: string;
|
|
59405
60110
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59406
60111
|
warning_code: 'being_deleted';
|
|
60112
|
+
} | {
|
|
60113
|
+
/** Date and time at which Seam created the warning. */
|
|
60114
|
+
created_at: string;
|
|
60115
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60116
|
+
message: string;
|
|
60117
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60118
|
+
warning_code: 'unknown_issue_with_credential';
|
|
59407
60119
|
}>;
|
|
59408
60120
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
59409
60121
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59490,6 +60202,13 @@ interface Routes {
|
|
|
59490
60202
|
message: string;
|
|
59491
60203
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59492
60204
|
warning_code: 'being_deleted';
|
|
60205
|
+
} | {
|
|
60206
|
+
/** Date and time at which Seam created the warning. */
|
|
60207
|
+
created_at: string;
|
|
60208
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60209
|
+
message: string;
|
|
60210
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60211
|
+
warning_code: 'unknown_issue_with_credential';
|
|
59493
60212
|
}>;
|
|
59494
60213
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
59495
60214
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59613,6 +60332,13 @@ interface Routes {
|
|
|
59613
60332
|
message: string;
|
|
59614
60333
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59615
60334
|
warning_code: 'being_deleted';
|
|
60335
|
+
} | {
|
|
60336
|
+
/** Date and time at which Seam created the warning. */
|
|
60337
|
+
created_at: string;
|
|
60338
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60339
|
+
message: string;
|
|
60340
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60341
|
+
warning_code: 'unknown_issue_with_credential';
|
|
59616
60342
|
}>;
|
|
59617
60343
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
59618
60344
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59699,6 +60425,13 @@ interface Routes {
|
|
|
59699
60425
|
message: string;
|
|
59700
60426
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59701
60427
|
warning_code: 'being_deleted';
|
|
60428
|
+
} | {
|
|
60429
|
+
/** Date and time at which Seam created the warning. */
|
|
60430
|
+
created_at: string;
|
|
60431
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60432
|
+
message: string;
|
|
60433
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60434
|
+
warning_code: 'unknown_issue_with_credential';
|
|
59702
60435
|
}>;
|
|
59703
60436
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
59704
60437
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60191,6 +60924,13 @@ interface Routes {
|
|
|
60191
60924
|
message: string;
|
|
60192
60925
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60193
60926
|
warning_code: 'being_deleted';
|
|
60927
|
+
} | {
|
|
60928
|
+
/** Date and time at which Seam created the warning. */
|
|
60929
|
+
created_at: string;
|
|
60930
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60931
|
+
message: string;
|
|
60932
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60933
|
+
warning_code: 'unknown_issue_with_credential';
|
|
60194
60934
|
}>;
|
|
60195
60935
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
60196
60936
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60277,6 +61017,13 @@ interface Routes {
|
|
|
60277
61017
|
message: string;
|
|
60278
61018
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60279
61019
|
warning_code: 'being_deleted';
|
|
61020
|
+
} | {
|
|
61021
|
+
/** Date and time at which Seam created the warning. */
|
|
61022
|
+
created_at: string;
|
|
61023
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61024
|
+
message: string;
|
|
61025
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61026
|
+
warning_code: 'unknown_issue_with_credential';
|
|
60280
61027
|
}>;
|
|
60281
61028
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
60282
61029
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60400,6 +61147,13 @@ interface Routes {
|
|
|
60400
61147
|
message: string;
|
|
60401
61148
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60402
61149
|
warning_code: 'being_deleted';
|
|
61150
|
+
} | {
|
|
61151
|
+
/** Date and time at which Seam created the warning. */
|
|
61152
|
+
created_at: string;
|
|
61153
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61154
|
+
message: string;
|
|
61155
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61156
|
+
warning_code: 'unknown_issue_with_credential';
|
|
60403
61157
|
}>;
|
|
60404
61158
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
60405
61159
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60486,6 +61240,13 @@ interface Routes {
|
|
|
60486
61240
|
message: string;
|
|
60487
61241
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60488
61242
|
warning_code: 'being_deleted';
|
|
61243
|
+
} | {
|
|
61244
|
+
/** Date and time at which Seam created the warning. */
|
|
61245
|
+
created_at: string;
|
|
61246
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61247
|
+
message: string;
|
|
61248
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61249
|
+
warning_code: 'unknown_issue_with_credential';
|
|
60489
61250
|
}>;
|
|
60490
61251
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
60491
61252
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62041,6 +62802,13 @@ interface Routes {
|
|
|
62041
62802
|
message: string;
|
|
62042
62803
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62043
62804
|
warning_code: 'being_deleted';
|
|
62805
|
+
} | {
|
|
62806
|
+
/** Date and time at which Seam created the warning. */
|
|
62807
|
+
created_at: string;
|
|
62808
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62809
|
+
message: string;
|
|
62810
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62811
|
+
warning_code: 'unknown_issue_with_credential';
|
|
62044
62812
|
}>;
|
|
62045
62813
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
62046
62814
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62127,6 +62895,13 @@ interface Routes {
|
|
|
62127
62895
|
message: string;
|
|
62128
62896
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62129
62897
|
warning_code: 'being_deleted';
|
|
62898
|
+
} | {
|
|
62899
|
+
/** Date and time at which Seam created the warning. */
|
|
62900
|
+
created_at: string;
|
|
62901
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62902
|
+
message: string;
|
|
62903
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62904
|
+
warning_code: 'unknown_issue_with_credential';
|
|
62130
62905
|
}>;
|
|
62131
62906
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
62132
62907
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62250,6 +63025,13 @@ interface Routes {
|
|
|
62250
63025
|
message: string;
|
|
62251
63026
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62252
63027
|
warning_code: 'being_deleted';
|
|
63028
|
+
} | {
|
|
63029
|
+
/** Date and time at which Seam created the warning. */
|
|
63030
|
+
created_at: string;
|
|
63031
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63032
|
+
message: string;
|
|
63033
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63034
|
+
warning_code: 'unknown_issue_with_credential';
|
|
62253
63035
|
}>;
|
|
62254
63036
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
62255
63037
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62336,6 +63118,13 @@ interface Routes {
|
|
|
62336
63118
|
message: string;
|
|
62337
63119
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62338
63120
|
warning_code: 'being_deleted';
|
|
63121
|
+
} | {
|
|
63122
|
+
/** Date and time at which Seam created the warning. */
|
|
63123
|
+
created_at: string;
|
|
63124
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63125
|
+
message: string;
|
|
63126
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63127
|
+
warning_code: 'unknown_issue_with_credential';
|
|
62339
63128
|
}>;
|
|
62340
63129
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
62341
63130
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62995,6 +63784,13 @@ interface Routes {
|
|
|
62995
63784
|
message: string;
|
|
62996
63785
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62997
63786
|
warning_code: 'being_deleted';
|
|
63787
|
+
} | {
|
|
63788
|
+
/** Date and time at which Seam created the warning. */
|
|
63789
|
+
created_at: string;
|
|
63790
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63791
|
+
message: string;
|
|
63792
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63793
|
+
warning_code: 'unknown_issue_with_credential';
|
|
62998
63794
|
}>;
|
|
62999
63795
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
63000
63796
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63081,6 +63877,13 @@ interface Routes {
|
|
|
63081
63877
|
message: string;
|
|
63082
63878
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63083
63879
|
warning_code: 'being_deleted';
|
|
63880
|
+
} | {
|
|
63881
|
+
/** Date and time at which Seam created the warning. */
|
|
63882
|
+
created_at: string;
|
|
63883
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63884
|
+
message: string;
|
|
63885
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63886
|
+
warning_code: 'unknown_issue_with_credential';
|
|
63084
63887
|
}>;
|
|
63085
63888
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
63086
63889
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63204,6 +64007,13 @@ interface Routes {
|
|
|
63204
64007
|
message: string;
|
|
63205
64008
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63206
64009
|
warning_code: 'being_deleted';
|
|
64010
|
+
} | {
|
|
64011
|
+
/** Date and time at which Seam created the warning. */
|
|
64012
|
+
created_at: string;
|
|
64013
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64014
|
+
message: string;
|
|
64015
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64016
|
+
warning_code: 'unknown_issue_with_credential';
|
|
63207
64017
|
}>;
|
|
63208
64018
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
63209
64019
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63290,6 +64100,13 @@ interface Routes {
|
|
|
63290
64100
|
message: string;
|
|
63291
64101
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63292
64102
|
warning_code: 'being_deleted';
|
|
64103
|
+
} | {
|
|
64104
|
+
/** Date and time at which Seam created the warning. */
|
|
64105
|
+
created_at: string;
|
|
64106
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64107
|
+
message: string;
|
|
64108
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64109
|
+
warning_code: 'unknown_issue_with_credential';
|
|
63293
64110
|
}>;
|
|
63294
64111
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
63295
64112
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63801,6 +64618,13 @@ interface Routes {
|
|
|
63801
64618
|
message: string;
|
|
63802
64619
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63803
64620
|
warning_code: 'being_deleted';
|
|
64621
|
+
} | {
|
|
64622
|
+
/** Date and time at which Seam created the warning. */
|
|
64623
|
+
created_at: string;
|
|
64624
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64625
|
+
message: string;
|
|
64626
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64627
|
+
warning_code: 'unknown_issue_with_credential';
|
|
63804
64628
|
}>;
|
|
63805
64629
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
63806
64630
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63887,6 +64711,13 @@ interface Routes {
|
|
|
63887
64711
|
message: string;
|
|
63888
64712
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63889
64713
|
warning_code: 'being_deleted';
|
|
64714
|
+
} | {
|
|
64715
|
+
/** Date and time at which Seam created the warning. */
|
|
64716
|
+
created_at: string;
|
|
64717
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64718
|
+
message: string;
|
|
64719
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64720
|
+
warning_code: 'unknown_issue_with_credential';
|
|
63890
64721
|
}>;
|
|
63891
64722
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
63892
64723
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64010,6 +64841,13 @@ interface Routes {
|
|
|
64010
64841
|
message: string;
|
|
64011
64842
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64012
64843
|
warning_code: 'being_deleted';
|
|
64844
|
+
} | {
|
|
64845
|
+
/** Date and time at which Seam created the warning. */
|
|
64846
|
+
created_at: string;
|
|
64847
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64848
|
+
message: string;
|
|
64849
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64850
|
+
warning_code: 'unknown_issue_with_credential';
|
|
64013
64851
|
}>;
|
|
64014
64852
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
64015
64853
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64096,6 +64934,13 @@ interface Routes {
|
|
|
64096
64934
|
message: string;
|
|
64097
64935
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64098
64936
|
warning_code: 'being_deleted';
|
|
64937
|
+
} | {
|
|
64938
|
+
/** Date and time at which Seam created the warning. */
|
|
64939
|
+
created_at: string;
|
|
64940
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64941
|
+
message: string;
|
|
64942
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64943
|
+
warning_code: 'unknown_issue_with_credential';
|
|
64099
64944
|
}>;
|
|
64100
64945
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
64101
64946
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -65854,6 +66699,7 @@ interface Routes {
|
|
|
65854
66699
|
message: string;
|
|
65855
66700
|
/** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
|
|
65856
66701
|
warning_code: 'time_zone_does_not_match_location';
|
|
66702
|
+
misconfigured_acs_entrance_ids?: string[] | undefined;
|
|
65857
66703
|
}>;
|
|
65858
66704
|
/** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
|
|
65859
66705
|
can_automate_enrollment?: boolean | undefined;
|
|
@@ -65894,7 +66740,7 @@ interface Routes {
|
|
|
65894
66740
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
65895
66741
|
external_type_display_name?: string | undefined;
|
|
65896
66742
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
65897
|
-
is_suspended
|
|
66743
|
+
is_suspended?: boolean | undefined;
|
|
65898
66744
|
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
65899
66745
|
access_schedule?: {
|
|
65900
66746
|
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
@@ -66324,6 +67170,13 @@ interface Routes {
|
|
|
66324
67170
|
message: string;
|
|
66325
67171
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66326
67172
|
warning_code: 'being_deleted';
|
|
67173
|
+
} | {
|
|
67174
|
+
/** Date and time at which Seam created the warning. */
|
|
67175
|
+
created_at: string;
|
|
67176
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67177
|
+
message: string;
|
|
67178
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67179
|
+
warning_code: 'unknown_issue_with_credential';
|
|
66327
67180
|
}>;
|
|
66328
67181
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
66329
67182
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66410,6 +67263,13 @@ interface Routes {
|
|
|
66410
67263
|
message: string;
|
|
66411
67264
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66412
67265
|
warning_code: 'being_deleted';
|
|
67266
|
+
} | {
|
|
67267
|
+
/** Date and time at which Seam created the warning. */
|
|
67268
|
+
created_at: string;
|
|
67269
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67270
|
+
message: string;
|
|
67271
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67272
|
+
warning_code: 'unknown_issue_with_credential';
|
|
66413
67273
|
}>;
|
|
66414
67274
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
66415
67275
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66533,6 +67393,13 @@ interface Routes {
|
|
|
66533
67393
|
message: string;
|
|
66534
67394
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66535
67395
|
warning_code: 'being_deleted';
|
|
67396
|
+
} | {
|
|
67397
|
+
/** Date and time at which Seam created the warning. */
|
|
67398
|
+
created_at: string;
|
|
67399
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67400
|
+
message: string;
|
|
67401
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67402
|
+
warning_code: 'unknown_issue_with_credential';
|
|
66536
67403
|
}>;
|
|
66537
67404
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
66538
67405
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66619,6 +67486,13 @@ interface Routes {
|
|
|
66619
67486
|
message: string;
|
|
66620
67487
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66621
67488
|
warning_code: 'being_deleted';
|
|
67489
|
+
} | {
|
|
67490
|
+
/** Date and time at which Seam created the warning. */
|
|
67491
|
+
created_at: string;
|
|
67492
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67493
|
+
message: string;
|
|
67494
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67495
|
+
warning_code: 'unknown_issue_with_credential';
|
|
66622
67496
|
}>;
|
|
66623
67497
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
66624
67498
|
is_multi_phone_sync_credential?: boolean | undefined;
|