@seamapi/types 1.321.1 → 1.322.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 +32 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +307 -274
- package/lib/seam/connect/models/acs/acs-credential.d.ts +12 -12
- package/lib/seam/connect/models/acs/acs-credential.js +2 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +12 -12
- package/lib/seam/connect/models/acs/acs-user.js +5 -2
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +48 -48
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +20 -20
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +28 -28
- package/lib/seam/connect/openapi.d.ts +28 -0
- package/lib/seam/connect/openapi.js +28 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +207 -202
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +2 -0
- package/src/lib/seam/connect/models/acs/acs-user.ts +5 -2
- package/src/lib/seam/connect/openapi.ts +29 -0
- package/src/lib/seam/connect/route-types.ts +277 -202
package/dist/connect.d.cts
CHANGED
|
@@ -530,8 +530,8 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
530
530
|
created_at: string;
|
|
531
531
|
}>]>, "many">;
|
|
532
532
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
533
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
534
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
533
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
534
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
535
535
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
536
536
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
537
537
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -618,8 +618,8 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
618
618
|
is_issued?: boolean | undefined;
|
|
619
619
|
issued_at?: string | null | undefined;
|
|
620
620
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
621
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
622
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
621
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
622
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
623
623
|
}, {
|
|
624
624
|
created_at: string;
|
|
625
625
|
errors: {
|
|
@@ -676,8 +676,8 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
676
676
|
is_issued?: boolean | undefined;
|
|
677
677
|
issued_at?: string | null | undefined;
|
|
678
678
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
679
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
680
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
679
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
680
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
681
681
|
}>;
|
|
682
682
|
declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
683
683
|
acs_credential_id: z.ZodString;
|
|
@@ -775,8 +775,8 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
775
775
|
created_at: string;
|
|
776
776
|
}>]>, "many">;
|
|
777
777
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
778
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
779
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
778
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
779
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
780
780
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
781
781
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
782
782
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -863,8 +863,8 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
863
863
|
is_issued?: boolean | undefined;
|
|
864
864
|
issued_at?: string | null | undefined;
|
|
865
865
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
866
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
867
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
866
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
867
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
868
868
|
}, {
|
|
869
869
|
created_at: string;
|
|
870
870
|
errors: {
|
|
@@ -921,8 +921,8 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
921
921
|
is_issued?: boolean | undefined;
|
|
922
922
|
issued_at?: string | null | undefined;
|
|
923
923
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
924
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
925
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
924
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
925
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
926
926
|
}>;
|
|
927
927
|
type AcsCredential = z.output<typeof acs_credential>;
|
|
928
928
|
|
|
@@ -1501,8 +1501,8 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1501
1501
|
user_identity_full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1502
1502
|
user_identity_email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1503
1503
|
user_identity_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1504
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
1505
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
1504
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1505
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1506
1506
|
warnings: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1507
1507
|
created_at: z.ZodString;
|
|
1508
1508
|
message: z.ZodString;
|
|
@@ -1643,8 +1643,8 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1643
1643
|
email?: string | undefined;
|
|
1644
1644
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
1645
1645
|
external_type_display_name?: string | undefined;
|
|
1646
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1647
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1646
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1647
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1648
1648
|
user_identity_id?: string | undefined;
|
|
1649
1649
|
full_name?: string | undefined;
|
|
1650
1650
|
email_address?: string | undefined;
|
|
@@ -1698,8 +1698,8 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1698
1698
|
email?: string | undefined;
|
|
1699
1699
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
1700
1700
|
external_type_display_name?: string | undefined;
|
|
1701
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1702
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1701
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1702
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1703
1703
|
user_identity_id?: string | undefined;
|
|
1704
1704
|
full_name?: string | undefined;
|
|
1705
1705
|
email_address?: string | undefined;
|
|
@@ -1738,8 +1738,8 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1738
1738
|
user_identity_full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1739
1739
|
user_identity_email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1740
1740
|
user_identity_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1741
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
1742
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
1741
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1742
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1743
1743
|
warnings: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1744
1744
|
created_at: z.ZodString;
|
|
1745
1745
|
message: z.ZodString;
|
|
@@ -1880,8 +1880,8 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1880
1880
|
email?: string | undefined;
|
|
1881
1881
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
1882
1882
|
external_type_display_name?: string | undefined;
|
|
1883
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1884
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1883
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1884
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1885
1885
|
user_identity_id?: string | undefined;
|
|
1886
1886
|
full_name?: string | undefined;
|
|
1887
1887
|
email_address?: string | undefined;
|
|
@@ -1935,8 +1935,8 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1935
1935
|
email?: string | undefined;
|
|
1936
1936
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
1937
1937
|
external_type_display_name?: string | undefined;
|
|
1938
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1939
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1938
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1939
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1940
1940
|
user_identity_id?: string | undefined;
|
|
1941
1941
|
full_name?: string | undefined;
|
|
1942
1942
|
email_address?: string | undefined;
|
|
@@ -2322,8 +2322,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2322
2322
|
created_at: string;
|
|
2323
2323
|
}>]>, "many">;
|
|
2324
2324
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
2325
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
2326
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
2325
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2326
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2327
2327
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
2328
2328
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
2329
2329
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -2410,8 +2410,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2410
2410
|
is_issued?: boolean | undefined;
|
|
2411
2411
|
issued_at?: string | null | undefined;
|
|
2412
2412
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2413
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2414
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2413
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2414
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2415
2415
|
}, {
|
|
2416
2416
|
created_at: string;
|
|
2417
2417
|
errors: {
|
|
@@ -2468,8 +2468,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2468
2468
|
is_issued?: boolean | undefined;
|
|
2469
2469
|
issued_at?: string | null | undefined;
|
|
2470
2470
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2471
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2472
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2471
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2472
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2473
2473
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2474
2474
|
acs_credential_id: z.ZodString;
|
|
2475
2475
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2566,8 +2566,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2566
2566
|
created_at: string;
|
|
2567
2567
|
}>]>, "many">;
|
|
2568
2568
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
2569
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
2570
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
2569
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2570
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2571
2571
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
2572
2572
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
2573
2573
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -2654,8 +2654,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2654
2654
|
is_issued?: boolean | undefined;
|
|
2655
2655
|
issued_at?: string | null | undefined;
|
|
2656
2656
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2657
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2658
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2657
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2658
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2659
2659
|
}, {
|
|
2660
2660
|
created_at: string;
|
|
2661
2661
|
errors: {
|
|
@@ -2712,8 +2712,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2712
2712
|
is_issued?: boolean | undefined;
|
|
2713
2713
|
issued_at?: string | null | undefined;
|
|
2714
2714
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2715
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2716
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2715
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2716
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2717
2717
|
}>]>>;
|
|
2718
2718
|
warnings: z.ZodArray<z.ZodObject<{
|
|
2719
2719
|
warning_code: z.ZodUnion<[z.ZodLiteral<"acs_credential_on_encoder_out_of_sync">, z.ZodLiteral<"acs_credential_on_seam_not_found">]>;
|
|
@@ -2807,8 +2807,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2807
2807
|
is_issued?: boolean | undefined;
|
|
2808
2808
|
issued_at?: string | null | undefined;
|
|
2809
2809
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2810
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2811
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2810
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2811
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2812
2812
|
} | {
|
|
2813
2813
|
created_at: string;
|
|
2814
2814
|
errors: {
|
|
@@ -2865,8 +2865,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2865
2865
|
is_issued?: boolean | undefined;
|
|
2866
2866
|
issued_at?: string | null | undefined;
|
|
2867
2867
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2868
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2869
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2868
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2869
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2870
2870
|
} | null;
|
|
2871
2871
|
}, {
|
|
2872
2872
|
warnings: {
|
|
@@ -2950,8 +2950,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2950
2950
|
is_issued?: boolean | undefined;
|
|
2951
2951
|
issued_at?: string | null | undefined;
|
|
2952
2952
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2953
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2954
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2953
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2954
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2955
2955
|
} | {
|
|
2956
2956
|
created_at: string;
|
|
2957
2957
|
errors: {
|
|
@@ -3008,8 +3008,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3008
3008
|
is_issued?: boolean | undefined;
|
|
3009
3009
|
issued_at?: string | null | undefined;
|
|
3010
3010
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3011
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3012
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3011
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
3012
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
3013
3013
|
} | null;
|
|
3014
3014
|
}>;
|
|
3015
3015
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -3098,8 +3098,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3098
3098
|
is_issued?: boolean | undefined;
|
|
3099
3099
|
issued_at?: string | null | undefined;
|
|
3100
3100
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3101
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3102
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3101
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
3102
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
3103
3103
|
} | {
|
|
3104
3104
|
created_at: string;
|
|
3105
3105
|
errors: {
|
|
@@ -3156,8 +3156,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3156
3156
|
is_issued?: boolean | undefined;
|
|
3157
3157
|
issued_at?: string | null | undefined;
|
|
3158
3158
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3159
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3160
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3159
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
3160
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
3161
3161
|
} | null;
|
|
3162
3162
|
};
|
|
3163
3163
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -3247,8 +3247,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3247
3247
|
is_issued?: boolean | undefined;
|
|
3248
3248
|
issued_at?: string | null | undefined;
|
|
3249
3249
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3250
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3251
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3250
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
3251
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
3252
3252
|
} | {
|
|
3253
3253
|
created_at: string;
|
|
3254
3254
|
errors: {
|
|
@@ -3305,8 +3305,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3305
3305
|
is_issued?: boolean | undefined;
|
|
3306
3306
|
issued_at?: string | null | undefined;
|
|
3307
3307
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3308
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3309
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3308
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
3309
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
3310
3310
|
} | null;
|
|
3311
3311
|
};
|
|
3312
3312
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -3501,8 +3501,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3501
3501
|
created_at: string;
|
|
3502
3502
|
}>]>, "many">;
|
|
3503
3503
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
3504
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
3505
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
3504
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3505
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3506
3506
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
3507
3507
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
3508
3508
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -3589,8 +3589,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3589
3589
|
is_issued?: boolean | undefined;
|
|
3590
3590
|
issued_at?: string | null | undefined;
|
|
3591
3591
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3592
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3593
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3592
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
3593
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
3594
3594
|
}, {
|
|
3595
3595
|
created_at: string;
|
|
3596
3596
|
errors: {
|
|
@@ -3647,8 +3647,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3647
3647
|
is_issued?: boolean | undefined;
|
|
3648
3648
|
issued_at?: string | null | undefined;
|
|
3649
3649
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3650
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3651
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3650
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
3651
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
3652
3652
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3653
3653
|
acs_credential_id: z.ZodString;
|
|
3654
3654
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3745,8 +3745,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3745
3745
|
created_at: string;
|
|
3746
3746
|
}>]>, "many">;
|
|
3747
3747
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
3748
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
3749
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
3748
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3749
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3750
3750
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
3751
3751
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
3752
3752
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -3833,8 +3833,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3833
3833
|
is_issued?: boolean | undefined;
|
|
3834
3834
|
issued_at?: string | null | undefined;
|
|
3835
3835
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3836
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3837
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3836
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
3837
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
3838
3838
|
}, {
|
|
3839
3839
|
created_at: string;
|
|
3840
3840
|
errors: {
|
|
@@ -3891,8 +3891,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3891
3891
|
is_issued?: boolean | undefined;
|
|
3892
3892
|
issued_at?: string | null | undefined;
|
|
3893
3893
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3894
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3895
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3894
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
3895
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
3896
3896
|
}>]>;
|
|
3897
3897
|
}>, "strip", z.ZodTypeAny, {
|
|
3898
3898
|
status: "success";
|
|
@@ -3954,8 +3954,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3954
3954
|
is_issued?: boolean | undefined;
|
|
3955
3955
|
issued_at?: string | null | undefined;
|
|
3956
3956
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3957
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3958
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3957
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
3958
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
3959
3959
|
} | {
|
|
3960
3960
|
created_at: string;
|
|
3961
3961
|
errors: {
|
|
@@ -4012,8 +4012,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4012
4012
|
is_issued?: boolean | undefined;
|
|
4013
4013
|
issued_at?: string | null | undefined;
|
|
4014
4014
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
4015
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
4016
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
4015
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
4016
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
4017
4017
|
};
|
|
4018
4018
|
action_type: "ENCODE_CREDENTIAL";
|
|
4019
4019
|
}, {
|
|
@@ -4076,8 +4076,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4076
4076
|
is_issued?: boolean | undefined;
|
|
4077
4077
|
issued_at?: string | null | undefined;
|
|
4078
4078
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
4079
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
4080
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
4079
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
4080
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
4081
4081
|
} | {
|
|
4082
4082
|
created_at: string;
|
|
4083
4083
|
errors: {
|
|
@@ -4134,8 +4134,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4134
4134
|
is_issued?: boolean | undefined;
|
|
4135
4135
|
issued_at?: string | null | undefined;
|
|
4136
4136
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
4137
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
4138
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
4137
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
4138
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
4139
4139
|
};
|
|
4140
4140
|
action_type: "ENCODE_CREDENTIAL";
|
|
4141
4141
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -12962,6 +12962,7 @@ declare const _default: {
|
|
|
12962
12962
|
};
|
|
12963
12963
|
is_latest_desired_state_synced_with_provider: {
|
|
12964
12964
|
description: string;
|
|
12965
|
+
nullable: boolean;
|
|
12965
12966
|
type: string;
|
|
12966
12967
|
};
|
|
12967
12968
|
is_managed: {
|
|
@@ -12984,6 +12985,7 @@ declare const _default: {
|
|
|
12984
12985
|
latest_desired_state_synced_with_provider_at: {
|
|
12985
12986
|
description: string;
|
|
12986
12987
|
format: string;
|
|
12988
|
+
nullable: boolean;
|
|
12987
12989
|
type: string;
|
|
12988
12990
|
};
|
|
12989
12991
|
parent_acs_credential_id: {
|
|
@@ -13627,6 +13629,7 @@ declare const _default: {
|
|
|
13627
13629
|
type: string;
|
|
13628
13630
|
};
|
|
13629
13631
|
is_latest_desired_state_synced_with_provider: {
|
|
13632
|
+
nullable: boolean;
|
|
13630
13633
|
type: string;
|
|
13631
13634
|
'x-undocumented': string;
|
|
13632
13635
|
};
|
|
@@ -13640,6 +13643,7 @@ declare const _default: {
|
|
|
13640
13643
|
};
|
|
13641
13644
|
latest_desired_state_synced_with_provider_at: {
|
|
13642
13645
|
format: string;
|
|
13646
|
+
nullable: boolean;
|
|
13643
13647
|
type: string;
|
|
13644
13648
|
'x-undocumented': string;
|
|
13645
13649
|
};
|
|
@@ -14012,6 +14016,7 @@ declare const _default: {
|
|
|
14012
14016
|
};
|
|
14013
14017
|
is_latest_desired_state_synced_with_provider: {
|
|
14014
14018
|
description: string;
|
|
14019
|
+
nullable: boolean;
|
|
14015
14020
|
type: string;
|
|
14016
14021
|
};
|
|
14017
14022
|
is_managed: {
|
|
@@ -14034,6 +14039,7 @@ declare const _default: {
|
|
|
14034
14039
|
latest_desired_state_synced_with_provider_at: {
|
|
14035
14040
|
description: string;
|
|
14036
14041
|
format: string;
|
|
14042
|
+
nullable: boolean;
|
|
14037
14043
|
type: string;
|
|
14038
14044
|
};
|
|
14039
14045
|
parent_acs_credential_id: {
|
|
@@ -14308,6 +14314,7 @@ declare const _default: {
|
|
|
14308
14314
|
};
|
|
14309
14315
|
is_latest_desired_state_synced_with_provider: {
|
|
14310
14316
|
description: string;
|
|
14317
|
+
nullable: boolean;
|
|
14311
14318
|
type: string;
|
|
14312
14319
|
};
|
|
14313
14320
|
is_managed: {
|
|
@@ -14330,6 +14337,7 @@ declare const _default: {
|
|
|
14330
14337
|
latest_desired_state_synced_with_provider_at: {
|
|
14331
14338
|
description: string;
|
|
14332
14339
|
format: string;
|
|
14340
|
+
nullable: boolean;
|
|
14333
14341
|
type: string;
|
|
14334
14342
|
};
|
|
14335
14343
|
parent_acs_credential_id: {
|
|
@@ -22963,6 +22971,18 @@ declare const _default: {
|
|
|
22963
22971
|
description: string;
|
|
22964
22972
|
type: string;
|
|
22965
22973
|
};
|
|
22974
|
+
salto_space_metadata: {
|
|
22975
|
+
description: string;
|
|
22976
|
+
properties: {
|
|
22977
|
+
assign_new_key: {
|
|
22978
|
+
type: string;
|
|
22979
|
+
};
|
|
22980
|
+
update_current_key: {
|
|
22981
|
+
type: string;
|
|
22982
|
+
};
|
|
22983
|
+
};
|
|
22984
|
+
type: string;
|
|
22985
|
+
};
|
|
22966
22986
|
starts_at: {
|
|
22967
22987
|
description: string;
|
|
22968
22988
|
format: string;
|
|
@@ -23766,6 +23786,7 @@ declare const _default: {
|
|
|
23766
23786
|
};
|
|
23767
23787
|
is_latest_desired_state_synced_with_provider: {
|
|
23768
23788
|
description: string;
|
|
23789
|
+
nullable: boolean;
|
|
23769
23790
|
type: string;
|
|
23770
23791
|
};
|
|
23771
23792
|
is_managed: {
|
|
@@ -23788,6 +23809,7 @@ declare const _default: {
|
|
|
23788
23809
|
latest_desired_state_synced_with_provider_at: {
|
|
23789
23810
|
description: string;
|
|
23790
23811
|
format: string;
|
|
23812
|
+
nullable: boolean;
|
|
23791
23813
|
type: string;
|
|
23792
23814
|
};
|
|
23793
23815
|
parent_acs_credential_id: {
|
|
@@ -24073,6 +24095,7 @@ declare const _default: {
|
|
|
24073
24095
|
};
|
|
24074
24096
|
is_latest_desired_state_synced_with_provider: {
|
|
24075
24097
|
description: string;
|
|
24098
|
+
nullable: boolean;
|
|
24076
24099
|
type: string;
|
|
24077
24100
|
};
|
|
24078
24101
|
is_managed: {
|
|
@@ -24095,6 +24118,7 @@ declare const _default: {
|
|
|
24095
24118
|
latest_desired_state_synced_with_provider_at: {
|
|
24096
24119
|
description: string;
|
|
24097
24120
|
format: string;
|
|
24121
|
+
nullable: boolean;
|
|
24098
24122
|
type: string;
|
|
24099
24123
|
};
|
|
24100
24124
|
parent_acs_credential_id: {
|
|
@@ -26480,6 +26504,7 @@ declare const _default: {
|
|
|
26480
26504
|
type: string;
|
|
26481
26505
|
};
|
|
26482
26506
|
is_latest_desired_state_synced_with_provider: {
|
|
26507
|
+
nullable: boolean;
|
|
26483
26508
|
type: string;
|
|
26484
26509
|
'x-undocumented': string;
|
|
26485
26510
|
};
|
|
@@ -26493,6 +26518,7 @@ declare const _default: {
|
|
|
26493
26518
|
};
|
|
26494
26519
|
latest_desired_state_synced_with_provider_at: {
|
|
26495
26520
|
format: string;
|
|
26521
|
+
nullable: boolean;
|
|
26496
26522
|
type: string;
|
|
26497
26523
|
'x-undocumented': string;
|
|
26498
26524
|
};
|
|
@@ -26729,6 +26755,7 @@ declare const _default: {
|
|
|
26729
26755
|
type: string;
|
|
26730
26756
|
};
|
|
26731
26757
|
is_latest_desired_state_synced_with_provider: {
|
|
26758
|
+
nullable: boolean;
|
|
26732
26759
|
type: string;
|
|
26733
26760
|
'x-undocumented': string;
|
|
26734
26761
|
};
|
|
@@ -26742,6 +26769,7 @@ declare const _default: {
|
|
|
26742
26769
|
};
|
|
26743
26770
|
latest_desired_state_synced_with_provider_at: {
|
|
26744
26771
|
format: string;
|
|
26772
|
+
nullable: boolean;
|
|
26745
26773
|
type: string;
|
|
26746
26774
|
'x-undocumented': string;
|
|
26747
26775
|
};
|
|
@@ -36324,9 +36352,9 @@ interface Routes {
|
|
|
36324
36352
|
/** 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). */
|
|
36325
36353
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
36326
36354
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
36327
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
36355
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
36328
36356
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
36329
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
36357
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
36330
36358
|
/** Visionline-specific metadata for the credential. */
|
|
36331
36359
|
visionline_metadata?: {
|
|
36332
36360
|
card_function_type: 'guest' | 'staff';
|
|
@@ -36417,9 +36445,9 @@ interface Routes {
|
|
|
36417
36445
|
/** 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). */
|
|
36418
36446
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
36419
36447
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
36420
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
36448
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
36421
36449
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
36422
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
36450
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
36423
36451
|
/** Visionline-specific metadata for the credential. */
|
|
36424
36452
|
visionline_metadata?: {
|
|
36425
36453
|
card_function_type: 'guest' | 'staff';
|
|
@@ -36547,9 +36575,9 @@ interface Routes {
|
|
|
36547
36575
|
/** 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). */
|
|
36548
36576
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
36549
36577
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
36550
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
36578
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
36551
36579
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
36552
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
36580
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
36553
36581
|
/** Visionline-specific metadata for the credential. */
|
|
36554
36582
|
visionline_metadata?: {
|
|
36555
36583
|
card_function_type: 'guest' | 'staff';
|
|
@@ -36640,9 +36668,9 @@ interface Routes {
|
|
|
36640
36668
|
/** 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). */
|
|
36641
36669
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
36642
36670
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
36643
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
36671
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
36644
36672
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
36645
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
36673
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
36646
36674
|
/** Visionline-specific metadata for the credential. */
|
|
36647
36675
|
visionline_metadata?: {
|
|
36648
36676
|
card_function_type: 'guest' | 'staff';
|
|
@@ -37279,9 +37307,9 @@ interface Routes {
|
|
|
37279
37307
|
/** 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). */
|
|
37280
37308
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
37281
37309
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
37282
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
37310
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
37283
37311
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
37284
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
37312
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
37285
37313
|
/** Visionline-specific metadata for the credential. */
|
|
37286
37314
|
visionline_metadata?: {
|
|
37287
37315
|
card_function_type: 'guest' | 'staff';
|
|
@@ -37372,9 +37400,9 @@ interface Routes {
|
|
|
37372
37400
|
/** 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). */
|
|
37373
37401
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
37374
37402
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
37375
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
37403
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
37376
37404
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
37377
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
37405
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
37378
37406
|
/** Visionline-specific metadata for the credential. */
|
|
37379
37407
|
visionline_metadata?: {
|
|
37380
37408
|
card_function_type: 'guest' | 'staff';
|
|
@@ -37502,9 +37530,9 @@ interface Routes {
|
|
|
37502
37530
|
/** 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). */
|
|
37503
37531
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
37504
37532
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
37505
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
37533
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
37506
37534
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
37507
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
37535
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
37508
37536
|
/** Visionline-specific metadata for the credential. */
|
|
37509
37537
|
visionline_metadata?: {
|
|
37510
37538
|
card_function_type: 'guest' | 'staff';
|
|
@@ -37595,9 +37623,9 @@ interface Routes {
|
|
|
37595
37623
|
/** 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). */
|
|
37596
37624
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
37597
37625
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
37598
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
37626
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
37599
37627
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
37600
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
37628
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
37601
37629
|
/** Visionline-specific metadata for the credential. */
|
|
37602
37630
|
visionline_metadata?: {
|
|
37603
37631
|
card_function_type: 'guest' | 'staff';
|
|
@@ -38452,9 +38480,9 @@ interface Routes {
|
|
|
38452
38480
|
/** 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). */
|
|
38453
38481
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
38454
38482
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
38455
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
38483
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
38456
38484
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
38457
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
38485
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
38458
38486
|
/** Visionline-specific metadata for the credential. */
|
|
38459
38487
|
visionline_metadata?: {
|
|
38460
38488
|
card_function_type: 'guest' | 'staff';
|
|
@@ -38545,9 +38573,9 @@ interface Routes {
|
|
|
38545
38573
|
/** 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). */
|
|
38546
38574
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
38547
38575
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
38548
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
38576
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
38549
38577
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
38550
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
38578
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
38551
38579
|
/** Visionline-specific metadata for the credential. */
|
|
38552
38580
|
visionline_metadata?: {
|
|
38553
38581
|
card_function_type: 'guest' | 'staff';
|
|
@@ -38675,9 +38703,9 @@ interface Routes {
|
|
|
38675
38703
|
/** 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). */
|
|
38676
38704
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
38677
38705
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
38678
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
38706
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
38679
38707
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
38680
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
38708
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
38681
38709
|
/** Visionline-specific metadata for the credential. */
|
|
38682
38710
|
visionline_metadata?: {
|
|
38683
38711
|
card_function_type: 'guest' | 'staff';
|
|
@@ -38768,9 +38796,9 @@ interface Routes {
|
|
|
38768
38796
|
/** 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). */
|
|
38769
38797
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
38770
38798
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
38771
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
38799
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
38772
38800
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
38773
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
38801
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
38774
38802
|
/** Visionline-specific metadata for the credential. */
|
|
38775
38803
|
visionline_metadata?: {
|
|
38776
38804
|
card_function_type: 'guest' | 'staff';
|
|
@@ -39394,9 +39422,9 @@ interface Routes {
|
|
|
39394
39422
|
/** 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). */
|
|
39395
39423
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
39396
39424
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
39397
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
39425
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
39398
39426
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
39399
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
39427
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
39400
39428
|
/** Visionline-specific metadata for the credential. */
|
|
39401
39429
|
visionline_metadata?: {
|
|
39402
39430
|
card_function_type: 'guest' | 'staff';
|
|
@@ -39487,9 +39515,9 @@ interface Routes {
|
|
|
39487
39515
|
/** 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). */
|
|
39488
39516
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
39489
39517
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
39490
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
39518
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
39491
39519
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
39492
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
39520
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
39493
39521
|
/** Visionline-specific metadata for the credential. */
|
|
39494
39522
|
visionline_metadata?: {
|
|
39495
39523
|
card_function_type: 'guest' | 'staff';
|
|
@@ -39617,9 +39645,9 @@ interface Routes {
|
|
|
39617
39645
|
/** 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). */
|
|
39618
39646
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
39619
39647
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
39620
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
39648
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
39621
39649
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
39622
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
39650
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
39623
39651
|
/** Visionline-specific metadata for the credential. */
|
|
39624
39652
|
visionline_metadata?: {
|
|
39625
39653
|
card_function_type: 'guest' | 'staff';
|
|
@@ -39710,9 +39738,9 @@ interface Routes {
|
|
|
39710
39738
|
/** 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). */
|
|
39711
39739
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
39712
39740
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
39713
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
39741
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
39714
39742
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
39715
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
39743
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
39716
39744
|
/** Visionline-specific metadata for the credential. */
|
|
39717
39745
|
visionline_metadata?: {
|
|
39718
39746
|
card_function_type: 'guest' | 'staff';
|
|
@@ -40256,9 +40284,9 @@ interface Routes {
|
|
|
40256
40284
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
40257
40285
|
user_identity_phone_number?: (string | null) | undefined;
|
|
40258
40286
|
/** */
|
|
40259
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
40287
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
40260
40288
|
/** */
|
|
40261
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
40289
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
40262
40290
|
/** Warnings associated with the `acs_user`. */
|
|
40263
40291
|
warnings: Array<{
|
|
40264
40292
|
created_at: string;
|
|
@@ -40559,9 +40587,9 @@ interface Routes {
|
|
|
40559
40587
|
/** 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). */
|
|
40560
40588
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
40561
40589
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
40562
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
40590
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
40563
40591
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
40564
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
40592
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
40565
40593
|
/** Visionline-specific metadata for the credential. */
|
|
40566
40594
|
visionline_metadata?: {
|
|
40567
40595
|
card_function_type: 'guest' | 'staff';
|
|
@@ -40615,6 +40643,11 @@ interface Routes {
|
|
|
40615
40643
|
join_all_guest_acs_entrances?: boolean | undefined;
|
|
40616
40644
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
40617
40645
|
} | undefined;
|
|
40646
|
+
/** Salto Space-specific metadata for the new credential. */
|
|
40647
|
+
salto_space_metadata?: {
|
|
40648
|
+
assign_new_key?: boolean | undefined;
|
|
40649
|
+
update_current_key?: boolean | undefined;
|
|
40650
|
+
} | undefined;
|
|
40618
40651
|
/** Date and time at which the validity of the new credential starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
40619
40652
|
starts_at?: string | undefined;
|
|
40620
40653
|
/** Date and time at which the validity of the new credential ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
@@ -40702,9 +40735,9 @@ interface Routes {
|
|
|
40702
40735
|
/** 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). */
|
|
40703
40736
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
40704
40737
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
40705
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
40738
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
40706
40739
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
40707
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
40740
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
40708
40741
|
/** Visionline-specific metadata for the credential. */
|
|
40709
40742
|
visionline_metadata?: {
|
|
40710
40743
|
card_function_type: 'guest' | 'staff';
|
|
@@ -40819,9 +40852,9 @@ interface Routes {
|
|
|
40819
40852
|
/** 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). */
|
|
40820
40853
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
40821
40854
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
40822
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
40855
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
40823
40856
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
40824
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
40857
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
40825
40858
|
/** Visionline-specific metadata for the credential. */
|
|
40826
40859
|
visionline_metadata?: {
|
|
40827
40860
|
card_function_type: 'guest' | 'staff';
|
|
@@ -40940,9 +40973,9 @@ interface Routes {
|
|
|
40940
40973
|
/** 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). */
|
|
40941
40974
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
40942
40975
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
40943
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
40976
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
40944
40977
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
40945
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
40978
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
40946
40979
|
/** Visionline-specific metadata for the credential. */
|
|
40947
40980
|
visionline_metadata?: {
|
|
40948
40981
|
card_function_type: 'guest' | 'staff';
|
|
@@ -41065,9 +41098,9 @@ interface Routes {
|
|
|
41065
41098
|
/** 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). */
|
|
41066
41099
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41067
41100
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
41068
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
41101
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
41069
41102
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
41070
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
41103
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
41071
41104
|
/** Visionline-specific metadata for the credential. */
|
|
41072
41105
|
visionline_metadata?: {
|
|
41073
41106
|
card_function_type: 'guest' | 'staff';
|
|
@@ -41243,9 +41276,9 @@ interface Routes {
|
|
|
41243
41276
|
/** 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). */
|
|
41244
41277
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41245
41278
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
41246
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
41279
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
41247
41280
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
41248
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
41281
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
41249
41282
|
/** Visionline-specific metadata for the credential. */
|
|
41250
41283
|
visionline_metadata?: {
|
|
41251
41284
|
card_function_type: 'guest' | 'staff';
|
|
@@ -41352,9 +41385,9 @@ interface Routes {
|
|
|
41352
41385
|
/** 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). */
|
|
41353
41386
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41354
41387
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
41355
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
41388
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
41356
41389
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
41357
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
41390
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
41358
41391
|
/** Visionline-specific metadata for the credential. */
|
|
41359
41392
|
visionline_metadata?: {
|
|
41360
41393
|
card_function_type: 'guest' | 'staff';
|
|
@@ -41470,9 +41503,9 @@ interface Routes {
|
|
|
41470
41503
|
/** 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). */
|
|
41471
41504
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41472
41505
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
41473
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
41506
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
41474
41507
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
41475
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
41508
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
41476
41509
|
/** Visionline-specific metadata for the credential. */
|
|
41477
41510
|
visionline_metadata?: {
|
|
41478
41511
|
card_function_type: 'guest' | 'staff';
|
|
@@ -41583,9 +41616,9 @@ interface Routes {
|
|
|
41583
41616
|
/** 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). */
|
|
41584
41617
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41585
41618
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
41586
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
41619
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
41587
41620
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
41588
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
41621
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
41589
41622
|
/** Visionline-specific metadata for the credential. */
|
|
41590
41623
|
visionline_metadata?: {
|
|
41591
41624
|
card_function_type: 'guest' | 'staff';
|
|
@@ -41782,9 +41815,9 @@ interface Routes {
|
|
|
41782
41815
|
/** 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). */
|
|
41783
41816
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41784
41817
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
41785
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
41818
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
41786
41819
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
41787
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
41820
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
41788
41821
|
/** Visionline-specific metadata for the credential. */
|
|
41789
41822
|
visionline_metadata?: {
|
|
41790
41823
|
card_function_type: 'guest' | 'staff';
|
|
@@ -41875,9 +41908,9 @@ interface Routes {
|
|
|
41875
41908
|
/** 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). */
|
|
41876
41909
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41877
41910
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
41878
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
41911
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
41879
41912
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
41880
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
41913
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
41881
41914
|
/** Visionline-specific metadata for the credential. */
|
|
41882
41915
|
visionline_metadata?: {
|
|
41883
41916
|
card_function_type: 'guest' | 'staff';
|
|
@@ -42005,9 +42038,9 @@ interface Routes {
|
|
|
42005
42038
|
/** 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). */
|
|
42006
42039
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42007
42040
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
42008
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
42041
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
42009
42042
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
42010
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
42043
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
42011
42044
|
/** Visionline-specific metadata for the credential. */
|
|
42012
42045
|
visionline_metadata?: {
|
|
42013
42046
|
card_function_type: 'guest' | 'staff';
|
|
@@ -42098,9 +42131,9 @@ interface Routes {
|
|
|
42098
42131
|
/** 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). */
|
|
42099
42132
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42100
42133
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
42101
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
42134
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
42102
42135
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
42103
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
42136
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
42104
42137
|
/** Visionline-specific metadata for the credential. */
|
|
42105
42138
|
visionline_metadata?: {
|
|
42106
42139
|
card_function_type: 'guest' | 'staff';
|
|
@@ -42627,9 +42660,9 @@ interface Routes {
|
|
|
42627
42660
|
/** 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). */
|
|
42628
42661
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42629
42662
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
42630
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
42663
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
42631
42664
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
42632
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
42665
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
42633
42666
|
/** Visionline-specific metadata for the credential. */
|
|
42634
42667
|
visionline_metadata?: {
|
|
42635
42668
|
card_function_type: 'guest' | 'staff';
|
|
@@ -42720,9 +42753,9 @@ interface Routes {
|
|
|
42720
42753
|
/** 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). */
|
|
42721
42754
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42722
42755
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
42723
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
42756
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
42724
42757
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
42725
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
42758
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
42726
42759
|
/** Visionline-specific metadata for the credential. */
|
|
42727
42760
|
visionline_metadata?: {
|
|
42728
42761
|
card_function_type: 'guest' | 'staff';
|
|
@@ -42850,9 +42883,9 @@ interface Routes {
|
|
|
42850
42883
|
/** 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). */
|
|
42851
42884
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42852
42885
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
42853
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
42886
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
42854
42887
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
42855
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
42888
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
42856
42889
|
/** Visionline-specific metadata for the credential. */
|
|
42857
42890
|
visionline_metadata?: {
|
|
42858
42891
|
card_function_type: 'guest' | 'staff';
|
|
@@ -42943,9 +42976,9 @@ interface Routes {
|
|
|
42943
42976
|
/** 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). */
|
|
42944
42977
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42945
42978
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
42946
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
42979
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
42947
42980
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
42948
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
42981
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
42949
42982
|
/** Visionline-specific metadata for the credential. */
|
|
42950
42983
|
visionline_metadata?: {
|
|
42951
42984
|
card_function_type: 'guest' | 'staff';
|
|
@@ -43551,9 +43584,9 @@ interface Routes {
|
|
|
43551
43584
|
/** 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). */
|
|
43552
43585
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
43553
43586
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
43554
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
43587
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
43555
43588
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
43556
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
43589
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
43557
43590
|
/** Visionline-specific metadata for the credential. */
|
|
43558
43591
|
visionline_metadata?: {
|
|
43559
43592
|
card_function_type: 'guest' | 'staff';
|
|
@@ -44029,9 +44062,9 @@ interface Routes {
|
|
|
44029
44062
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
44030
44063
|
user_identity_phone_number?: (string | null) | undefined;
|
|
44031
44064
|
/** */
|
|
44032
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
44065
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
44033
44066
|
/** */
|
|
44034
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
44067
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
44035
44068
|
/** Warnings associated with the `acs_user`. */
|
|
44036
44069
|
warnings: Array<{
|
|
44037
44070
|
created_at: string;
|
|
@@ -44145,9 +44178,9 @@ interface Routes {
|
|
|
44145
44178
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
44146
44179
|
user_identity_phone_number?: (string | null) | undefined;
|
|
44147
44180
|
/** */
|
|
44148
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
44181
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
44149
44182
|
/** */
|
|
44150
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
44183
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
44151
44184
|
/** Warnings associated with the `acs_user`. */
|
|
44152
44185
|
warnings: Array<{
|
|
44153
44186
|
created_at: string;
|
|
@@ -44256,9 +44289,9 @@ interface Routes {
|
|
|
44256
44289
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
44257
44290
|
user_identity_phone_number?: (string | null) | undefined;
|
|
44258
44291
|
/** */
|
|
44259
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
44292
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
44260
44293
|
/** */
|
|
44261
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
44294
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
44262
44295
|
/** Warnings associated with the `acs_user`. */
|
|
44263
44296
|
warnings: Array<{
|
|
44264
44297
|
created_at: string;
|
|
@@ -44464,9 +44497,9 @@ interface Routes {
|
|
|
44464
44497
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
44465
44498
|
user_identity_phone_number?: (string | null) | undefined;
|
|
44466
44499
|
/** */
|
|
44467
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
44500
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
44468
44501
|
/** */
|
|
44469
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
44502
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
44470
44503
|
/** Warnings associated with the `acs_user`. */
|
|
44471
44504
|
warnings: Array<{
|
|
44472
44505
|
created_at: string;
|
|
@@ -44570,9 +44603,9 @@ interface Routes {
|
|
|
44570
44603
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
44571
44604
|
user_identity_phone_number?: (string | null) | undefined;
|
|
44572
44605
|
/** */
|
|
44573
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
44606
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
44574
44607
|
/** */
|
|
44575
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
44608
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
44576
44609
|
/** Warnings associated with the `acs_user`. */
|
|
44577
44610
|
warnings: Array<{
|
|
44578
44611
|
created_at: string;
|
|
@@ -44845,9 +44878,9 @@ interface Routes {
|
|
|
44845
44878
|
/** 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). */
|
|
44846
44879
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
44847
44880
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
44848
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
44881
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
44849
44882
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
44850
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
44883
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
44851
44884
|
/** Visionline-specific metadata for the credential. */
|
|
44852
44885
|
visionline_metadata?: {
|
|
44853
44886
|
card_function_type: 'guest' | 'staff';
|
|
@@ -44938,9 +44971,9 @@ interface Routes {
|
|
|
44938
44971
|
/** 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). */
|
|
44939
44972
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
44940
44973
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
44941
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
44974
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
44942
44975
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
44943
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
44976
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
44944
44977
|
/** Visionline-specific metadata for the credential. */
|
|
44945
44978
|
visionline_metadata?: {
|
|
44946
44979
|
card_function_type: 'guest' | 'staff';
|
|
@@ -45068,9 +45101,9 @@ interface Routes {
|
|
|
45068
45101
|
/** 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). */
|
|
45069
45102
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
45070
45103
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
45071
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
45104
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
45072
45105
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
45073
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
45106
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
45074
45107
|
/** Visionline-specific metadata for the credential. */
|
|
45075
45108
|
visionline_metadata?: {
|
|
45076
45109
|
card_function_type: 'guest' | 'staff';
|
|
@@ -45161,9 +45194,9 @@ interface Routes {
|
|
|
45161
45194
|
/** 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). */
|
|
45162
45195
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
45163
45196
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
45164
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
45197
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
45165
45198
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
45166
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
45199
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
45167
45200
|
/** Visionline-specific metadata for the credential. */
|
|
45168
45201
|
visionline_metadata?: {
|
|
45169
45202
|
card_function_type: 'guest' | 'staff';
|
|
@@ -45649,9 +45682,9 @@ interface Routes {
|
|
|
45649
45682
|
/** 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). */
|
|
45650
45683
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
45651
45684
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
45652
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
45685
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
45653
45686
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
45654
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
45687
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
45655
45688
|
/** Visionline-specific metadata for the credential. */
|
|
45656
45689
|
visionline_metadata?: {
|
|
45657
45690
|
card_function_type: 'guest' | 'staff';
|
|
@@ -45742,9 +45775,9 @@ interface Routes {
|
|
|
45742
45775
|
/** 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). */
|
|
45743
45776
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
45744
45777
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
45745
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
45778
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
45746
45779
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
45747
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
45780
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
45748
45781
|
/** Visionline-specific metadata for the credential. */
|
|
45749
45782
|
visionline_metadata?: {
|
|
45750
45783
|
card_function_type: 'guest' | 'staff';
|
|
@@ -45872,9 +45905,9 @@ interface Routes {
|
|
|
45872
45905
|
/** 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). */
|
|
45873
45906
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
45874
45907
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
45875
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
45908
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
45876
45909
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
45877
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
45910
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
45878
45911
|
/** Visionline-specific metadata for the credential. */
|
|
45879
45912
|
visionline_metadata?: {
|
|
45880
45913
|
card_function_type: 'guest' | 'staff';
|
|
@@ -45965,9 +45998,9 @@ interface Routes {
|
|
|
45965
45998
|
/** 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). */
|
|
45966
45999
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
45967
46000
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
45968
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
46001
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
45969
46002
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
45970
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
46003
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
45971
46004
|
/** Visionline-specific metadata for the credential. */
|
|
45972
46005
|
visionline_metadata?: {
|
|
45973
46006
|
card_function_type: 'guest' | 'staff';
|
|
@@ -52721,9 +52754,9 @@ interface Routes {
|
|
|
52721
52754
|
/** 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). */
|
|
52722
52755
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
52723
52756
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
52724
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
52757
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
52725
52758
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
52726
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
52759
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
52727
52760
|
/** Visionline-specific metadata for the credential. */
|
|
52728
52761
|
visionline_metadata?: {
|
|
52729
52762
|
card_function_type: 'guest' | 'staff';
|
|
@@ -52814,9 +52847,9 @@ interface Routes {
|
|
|
52814
52847
|
/** 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). */
|
|
52815
52848
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
52816
52849
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
52817
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
52850
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
52818
52851
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
52819
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
52852
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
52820
52853
|
/** Visionline-specific metadata for the credential. */
|
|
52821
52854
|
visionline_metadata?: {
|
|
52822
52855
|
card_function_type: 'guest' | 'staff';
|
|
@@ -52944,9 +52977,9 @@ interface Routes {
|
|
|
52944
52977
|
/** 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). */
|
|
52945
52978
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
52946
52979
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
52947
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
52980
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
52948
52981
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
52949
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
52982
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
52950
52983
|
/** Visionline-specific metadata for the credential. */
|
|
52951
52984
|
visionline_metadata?: {
|
|
52952
52985
|
card_function_type: 'guest' | 'staff';
|
|
@@ -53037,9 +53070,9 @@ interface Routes {
|
|
|
53037
53070
|
/** 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). */
|
|
53038
53071
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
53039
53072
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
53040
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
53073
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
53041
53074
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
53042
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
53075
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
53043
53076
|
/** Visionline-specific metadata for the credential. */
|
|
53044
53077
|
visionline_metadata?: {
|
|
53045
53078
|
card_function_type: 'guest' | 'staff';
|
|
@@ -53526,9 +53559,9 @@ interface Routes {
|
|
|
53526
53559
|
/** 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). */
|
|
53527
53560
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
53528
53561
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
53529
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
53562
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
53530
53563
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
53531
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
53564
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
53532
53565
|
/** Visionline-specific metadata for the credential. */
|
|
53533
53566
|
visionline_metadata?: {
|
|
53534
53567
|
card_function_type: 'guest' | 'staff';
|
|
@@ -53619,9 +53652,9 @@ interface Routes {
|
|
|
53619
53652
|
/** 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). */
|
|
53620
53653
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
53621
53654
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
53622
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
53655
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
53623
53656
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
53624
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
53657
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
53625
53658
|
/** Visionline-specific metadata for the credential. */
|
|
53626
53659
|
visionline_metadata?: {
|
|
53627
53660
|
card_function_type: 'guest' | 'staff';
|
|
@@ -53749,9 +53782,9 @@ interface Routes {
|
|
|
53749
53782
|
/** 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). */
|
|
53750
53783
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
53751
53784
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
53752
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
53785
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
53753
53786
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
53754
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
53787
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
53755
53788
|
/** Visionline-specific metadata for the credential. */
|
|
53756
53789
|
visionline_metadata?: {
|
|
53757
53790
|
card_function_type: 'guest' | 'staff';
|
|
@@ -53842,9 +53875,9 @@ interface Routes {
|
|
|
53842
53875
|
/** 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). */
|
|
53843
53876
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
53844
53877
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
53845
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
53878
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
53846
53879
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
53847
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
53880
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
53848
53881
|
/** Visionline-specific metadata for the credential. */
|
|
53849
53882
|
visionline_metadata?: {
|
|
53850
53883
|
card_function_type: 'guest' | 'staff';
|
|
@@ -55441,9 +55474,9 @@ interface Routes {
|
|
|
55441
55474
|
/** 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). */
|
|
55442
55475
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
55443
55476
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
55444
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
55477
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
55445
55478
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
55446
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
55479
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
55447
55480
|
/** Visionline-specific metadata for the credential. */
|
|
55448
55481
|
visionline_metadata?: {
|
|
55449
55482
|
card_function_type: 'guest' | 'staff';
|
|
@@ -55534,9 +55567,9 @@ interface Routes {
|
|
|
55534
55567
|
/** 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). */
|
|
55535
55568
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
55536
55569
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
55537
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
55570
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
55538
55571
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
55539
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
55572
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
55540
55573
|
/** Visionline-specific metadata for the credential. */
|
|
55541
55574
|
visionline_metadata?: {
|
|
55542
55575
|
card_function_type: 'guest' | 'staff';
|
|
@@ -55664,9 +55697,9 @@ interface Routes {
|
|
|
55664
55697
|
/** 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). */
|
|
55665
55698
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
55666
55699
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
55667
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
55700
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
55668
55701
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
55669
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
55702
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
55670
55703
|
/** Visionline-specific metadata for the credential. */
|
|
55671
55704
|
visionline_metadata?: {
|
|
55672
55705
|
card_function_type: 'guest' | 'staff';
|
|
@@ -55757,9 +55790,9 @@ interface Routes {
|
|
|
55757
55790
|
/** 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). */
|
|
55758
55791
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
55759
55792
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
55760
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
55793
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
55761
55794
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
55762
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
55795
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
55763
55796
|
/** Visionline-specific metadata for the credential. */
|
|
55764
55797
|
visionline_metadata?: {
|
|
55765
55798
|
card_function_type: 'guest' | 'staff';
|
|
@@ -56256,9 +56289,9 @@ interface Routes {
|
|
|
56256
56289
|
/** 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). */
|
|
56257
56290
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
56258
56291
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
56259
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
56292
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
56260
56293
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
56261
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
56294
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
56262
56295
|
/** Visionline-specific metadata for the credential. */
|
|
56263
56296
|
visionline_metadata?: {
|
|
56264
56297
|
card_function_type: 'guest' | 'staff';
|
|
@@ -56349,9 +56382,9 @@ interface Routes {
|
|
|
56349
56382
|
/** 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). */
|
|
56350
56383
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
56351
56384
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
56352
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
56385
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
56353
56386
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
56354
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
56387
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
56355
56388
|
/** Visionline-specific metadata for the credential. */
|
|
56356
56389
|
visionline_metadata?: {
|
|
56357
56390
|
card_function_type: 'guest' | 'staff';
|
|
@@ -56479,9 +56512,9 @@ interface Routes {
|
|
|
56479
56512
|
/** 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). */
|
|
56480
56513
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
56481
56514
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
56482
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
56515
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
56483
56516
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
56484
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
56517
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
56485
56518
|
/** Visionline-specific metadata for the credential. */
|
|
56486
56519
|
visionline_metadata?: {
|
|
56487
56520
|
card_function_type: 'guest' | 'staff';
|
|
@@ -56572,9 +56605,9 @@ interface Routes {
|
|
|
56572
56605
|
/** 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). */
|
|
56573
56606
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
56574
56607
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
56575
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
56608
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
56576
56609
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
56577
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
56610
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
56578
56611
|
/** Visionline-specific metadata for the credential. */
|
|
56579
56612
|
visionline_metadata?: {
|
|
56580
56613
|
card_function_type: 'guest' | 'staff';
|
|
@@ -57110,9 +57143,9 @@ interface Routes {
|
|
|
57110
57143
|
/** 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). */
|
|
57111
57144
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
57112
57145
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
57113
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
57146
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
57114
57147
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
57115
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
57148
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
57116
57149
|
/** Visionline-specific metadata for the credential. */
|
|
57117
57150
|
visionline_metadata?: {
|
|
57118
57151
|
card_function_type: 'guest' | 'staff';
|
|
@@ -57203,9 +57236,9 @@ interface Routes {
|
|
|
57203
57236
|
/** 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). */
|
|
57204
57237
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
57205
57238
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
57206
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
57239
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
57207
57240
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
57208
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
57241
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
57209
57242
|
/** Visionline-specific metadata for the credential. */
|
|
57210
57243
|
visionline_metadata?: {
|
|
57211
57244
|
card_function_type: 'guest' | 'staff';
|
|
@@ -57333,9 +57366,9 @@ interface Routes {
|
|
|
57333
57366
|
/** 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). */
|
|
57334
57367
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
57335
57368
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
57336
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
57369
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
57337
57370
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
57338
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
57371
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
57339
57372
|
/** Visionline-specific metadata for the credential. */
|
|
57340
57373
|
visionline_metadata?: {
|
|
57341
57374
|
card_function_type: 'guest' | 'staff';
|
|
@@ -57426,9 +57459,9 @@ interface Routes {
|
|
|
57426
57459
|
/** 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). */
|
|
57427
57460
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
57428
57461
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
57429
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
57462
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
57430
57463
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
57431
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
57464
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
57432
57465
|
/** Visionline-specific metadata for the credential. */
|
|
57433
57466
|
visionline_metadata?: {
|
|
57434
57467
|
card_function_type: 'guest' | 'staff';
|
|
@@ -58099,9 +58132,9 @@ interface Routes {
|
|
|
58099
58132
|
/** 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). */
|
|
58100
58133
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
58101
58134
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
58102
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
58135
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
58103
58136
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
58104
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
58137
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
58105
58138
|
/** Visionline-specific metadata for the credential. */
|
|
58106
58139
|
visionline_metadata?: {
|
|
58107
58140
|
card_function_type: 'guest' | 'staff';
|
|
@@ -58192,9 +58225,9 @@ interface Routes {
|
|
|
58192
58225
|
/** 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). */
|
|
58193
58226
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
58194
58227
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
58195
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
58228
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
58196
58229
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
58197
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
58230
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
58198
58231
|
/** Visionline-specific metadata for the credential. */
|
|
58199
58232
|
visionline_metadata?: {
|
|
58200
58233
|
card_function_type: 'guest' | 'staff';
|
|
@@ -58322,9 +58355,9 @@ interface Routes {
|
|
|
58322
58355
|
/** 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). */
|
|
58323
58356
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
58324
58357
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
58325
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
58358
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
58326
58359
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
58327
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
58360
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
58328
58361
|
/** Visionline-specific metadata for the credential. */
|
|
58329
58362
|
visionline_metadata?: {
|
|
58330
58363
|
card_function_type: 'guest' | 'staff';
|
|
@@ -58415,9 +58448,9 @@ interface Routes {
|
|
|
58415
58448
|
/** 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). */
|
|
58416
58449
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
58417
58450
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
58418
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
58451
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
58419
58452
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
58420
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
58453
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
58421
58454
|
/** Visionline-specific metadata for the credential. */
|
|
58422
58455
|
visionline_metadata?: {
|
|
58423
58456
|
card_function_type: 'guest' | 'staff';
|
|
@@ -58910,9 +58943,9 @@ interface Routes {
|
|
|
58910
58943
|
/** 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). */
|
|
58911
58944
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
58912
58945
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
58913
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
58946
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
58914
58947
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
58915
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
58948
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
58916
58949
|
/** Visionline-specific metadata for the credential. */
|
|
58917
58950
|
visionline_metadata?: {
|
|
58918
58951
|
card_function_type: 'guest' | 'staff';
|
|
@@ -59003,9 +59036,9 @@ interface Routes {
|
|
|
59003
59036
|
/** 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). */
|
|
59004
59037
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
59005
59038
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
59006
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
59039
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
59007
59040
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
59008
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
59041
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
59009
59042
|
/** Visionline-specific metadata for the credential. */
|
|
59010
59043
|
visionline_metadata?: {
|
|
59011
59044
|
card_function_type: 'guest' | 'staff';
|
|
@@ -59133,9 +59166,9 @@ interface Routes {
|
|
|
59133
59166
|
/** 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). */
|
|
59134
59167
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
59135
59168
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
59136
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
59169
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
59137
59170
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
59138
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
59171
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
59139
59172
|
/** Visionline-specific metadata for the credential. */
|
|
59140
59173
|
visionline_metadata?: {
|
|
59141
59174
|
card_function_type: 'guest' | 'staff';
|
|
@@ -59226,9 +59259,9 @@ interface Routes {
|
|
|
59226
59259
|
/** 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). */
|
|
59227
59260
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
59228
59261
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
59229
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
59262
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
59230
59263
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
59231
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
59264
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
59232
59265
|
/** Visionline-specific metadata for the credential. */
|
|
59233
59266
|
visionline_metadata?: {
|
|
59234
59267
|
card_function_type: 'guest' | 'staff';
|
|
@@ -60298,9 +60331,9 @@ interface Routes {
|
|
|
60298
60331
|
/** 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). */
|
|
60299
60332
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
60300
60333
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
60301
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
60334
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
60302
60335
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
60303
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
60336
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
60304
60337
|
/** Visionline-specific metadata for the credential. */
|
|
60305
60338
|
visionline_metadata?: {
|
|
60306
60339
|
card_function_type: 'guest' | 'staff';
|
|
@@ -60391,9 +60424,9 @@ interface Routes {
|
|
|
60391
60424
|
/** 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). */
|
|
60392
60425
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
60393
60426
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
60394
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
60427
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
60395
60428
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
60396
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
60429
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
60397
60430
|
/** Visionline-specific metadata for the credential. */
|
|
60398
60431
|
visionline_metadata?: {
|
|
60399
60432
|
card_function_type: 'guest' | 'staff';
|
|
@@ -60521,9 +60554,9 @@ interface Routes {
|
|
|
60521
60554
|
/** 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). */
|
|
60522
60555
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
60523
60556
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
60524
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
60557
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
60525
60558
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
60526
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
60559
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
60527
60560
|
/** Visionline-specific metadata for the credential. */
|
|
60528
60561
|
visionline_metadata?: {
|
|
60529
60562
|
card_function_type: 'guest' | 'staff';
|
|
@@ -60614,9 +60647,9 @@ interface Routes {
|
|
|
60614
60647
|
/** 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). */
|
|
60615
60648
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
60616
60649
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
60617
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
60650
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
60618
60651
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
60619
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
60652
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
60620
60653
|
/** Visionline-specific metadata for the credential. */
|
|
60621
60654
|
visionline_metadata?: {
|
|
60622
60655
|
card_function_type: 'guest' | 'staff';
|
|
@@ -61113,9 +61146,9 @@ interface Routes {
|
|
|
61113
61146
|
/** 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). */
|
|
61114
61147
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
61115
61148
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
61116
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
61149
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
61117
61150
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
61118
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
61151
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
61119
61152
|
/** Visionline-specific metadata for the credential. */
|
|
61120
61153
|
visionline_metadata?: {
|
|
61121
61154
|
card_function_type: 'guest' | 'staff';
|
|
@@ -61206,9 +61239,9 @@ interface Routes {
|
|
|
61206
61239
|
/** 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). */
|
|
61207
61240
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
61208
61241
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
61209
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
61242
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
61210
61243
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
61211
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
61244
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
61212
61245
|
/** Visionline-specific metadata for the credential. */
|
|
61213
61246
|
visionline_metadata?: {
|
|
61214
61247
|
card_function_type: 'guest' | 'staff';
|
|
@@ -61336,9 +61369,9 @@ interface Routes {
|
|
|
61336
61369
|
/** 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). */
|
|
61337
61370
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
61338
61371
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
61339
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
61372
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
61340
61373
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
61341
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
61374
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
61342
61375
|
/** Visionline-specific metadata for the credential. */
|
|
61343
61376
|
visionline_metadata?: {
|
|
61344
61377
|
card_function_type: 'guest' | 'staff';
|
|
@@ -61429,9 +61462,9 @@ interface Routes {
|
|
|
61429
61462
|
/** 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). */
|
|
61430
61463
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
61431
61464
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
61432
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
61465
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
61433
61466
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
61434
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
61467
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
61435
61468
|
/** Visionline-specific metadata for the credential. */
|
|
61436
61469
|
visionline_metadata?: {
|
|
61437
61470
|
card_function_type: 'guest' | 'staff';
|
|
@@ -62991,9 +63024,9 @@ interface Routes {
|
|
|
62991
63024
|
/** 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). */
|
|
62992
63025
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
62993
63026
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
62994
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
63027
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
62995
63028
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
62996
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
63029
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
62997
63030
|
/** Visionline-specific metadata for the credential. */
|
|
62998
63031
|
visionline_metadata?: {
|
|
62999
63032
|
card_function_type: 'guest' | 'staff';
|
|
@@ -63084,9 +63117,9 @@ interface Routes {
|
|
|
63084
63117
|
/** 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). */
|
|
63085
63118
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
63086
63119
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
63087
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
63120
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
63088
63121
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
63089
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
63122
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
63090
63123
|
/** Visionline-specific metadata for the credential. */
|
|
63091
63124
|
visionline_metadata?: {
|
|
63092
63125
|
card_function_type: 'guest' | 'staff';
|
|
@@ -63214,9 +63247,9 @@ interface Routes {
|
|
|
63214
63247
|
/** 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). */
|
|
63215
63248
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
63216
63249
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
63217
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
63250
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
63218
63251
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
63219
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
63252
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
63220
63253
|
/** Visionline-specific metadata for the credential. */
|
|
63221
63254
|
visionline_metadata?: {
|
|
63222
63255
|
card_function_type: 'guest' | 'staff';
|
|
@@ -63307,9 +63340,9 @@ interface Routes {
|
|
|
63307
63340
|
/** 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). */
|
|
63308
63341
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
63309
63342
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
63310
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
63343
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
63311
63344
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
63312
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
63345
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
63313
63346
|
/** Visionline-specific metadata for the credential. */
|
|
63314
63347
|
visionline_metadata?: {
|
|
63315
63348
|
card_function_type: 'guest' | 'staff';
|
|
@@ -63973,9 +64006,9 @@ interface Routes {
|
|
|
63973
64006
|
/** 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). */
|
|
63974
64007
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
63975
64008
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
63976
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
64009
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
63977
64010
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
63978
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
64011
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
63979
64012
|
/** Visionline-specific metadata for the credential. */
|
|
63980
64013
|
visionline_metadata?: {
|
|
63981
64014
|
card_function_type: 'guest' | 'staff';
|
|
@@ -64066,9 +64099,9 @@ interface Routes {
|
|
|
64066
64099
|
/** 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). */
|
|
64067
64100
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
64068
64101
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
64069
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
64102
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
64070
64103
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
64071
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
64104
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
64072
64105
|
/** Visionline-specific metadata for the credential. */
|
|
64073
64106
|
visionline_metadata?: {
|
|
64074
64107
|
card_function_type: 'guest' | 'staff';
|
|
@@ -64196,9 +64229,9 @@ interface Routes {
|
|
|
64196
64229
|
/** 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). */
|
|
64197
64230
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
64198
64231
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
64199
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
64232
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
64200
64233
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
64201
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
64234
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
64202
64235
|
/** Visionline-specific metadata for the credential. */
|
|
64203
64236
|
visionline_metadata?: {
|
|
64204
64237
|
card_function_type: 'guest' | 'staff';
|
|
@@ -64289,9 +64322,9 @@ interface Routes {
|
|
|
64289
64322
|
/** 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). */
|
|
64290
64323
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
64291
64324
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
64292
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
64325
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
64293
64326
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
64294
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
64327
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
64295
64328
|
/** Visionline-specific metadata for the credential. */
|
|
64296
64329
|
visionline_metadata?: {
|
|
64297
64330
|
card_function_type: 'guest' | 'staff';
|
|
@@ -64807,9 +64840,9 @@ interface Routes {
|
|
|
64807
64840
|
/** 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). */
|
|
64808
64841
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
64809
64842
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
64810
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
64843
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
64811
64844
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
64812
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
64845
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
64813
64846
|
/** Visionline-specific metadata for the credential. */
|
|
64814
64847
|
visionline_metadata?: {
|
|
64815
64848
|
card_function_type: 'guest' | 'staff';
|
|
@@ -64900,9 +64933,9 @@ interface Routes {
|
|
|
64900
64933
|
/** 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). */
|
|
64901
64934
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
64902
64935
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
64903
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
64936
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
64904
64937
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
64905
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
64938
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
64906
64939
|
/** Visionline-specific metadata for the credential. */
|
|
64907
64940
|
visionline_metadata?: {
|
|
64908
64941
|
card_function_type: 'guest' | 'staff';
|
|
@@ -65030,9 +65063,9 @@ interface Routes {
|
|
|
65030
65063
|
/** 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). */
|
|
65031
65064
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
65032
65065
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
65033
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
65066
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
65034
65067
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
65035
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
65068
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
65036
65069
|
/** Visionline-specific metadata for the credential. */
|
|
65037
65070
|
visionline_metadata?: {
|
|
65038
65071
|
card_function_type: 'guest' | 'staff';
|
|
@@ -65123,9 +65156,9 @@ interface Routes {
|
|
|
65123
65156
|
/** 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). */
|
|
65124
65157
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
65125
65158
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
65126
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
65159
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
65127
65160
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
65128
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
65161
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
65129
65162
|
/** Visionline-specific metadata for the credential. */
|
|
65130
65163
|
visionline_metadata?: {
|
|
65131
65164
|
card_function_type: 'guest' | 'staff';
|
|
@@ -66933,9 +66966,9 @@ interface Routes {
|
|
|
66933
66966
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
66934
66967
|
user_identity_phone_number?: (string | null) | undefined;
|
|
66935
66968
|
/** */
|
|
66936
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
66969
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
66937
66970
|
/** */
|
|
66938
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
66971
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
66939
66972
|
/** Warnings associated with the `acs_user`. */
|
|
66940
66973
|
warnings: Array<{
|
|
66941
66974
|
created_at: string;
|
|
@@ -67357,9 +67390,9 @@ interface Routes {
|
|
|
67357
67390
|
/** 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). */
|
|
67358
67391
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
67359
67392
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
67360
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
67393
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
67361
67394
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
67362
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
67395
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
67363
67396
|
/** Visionline-specific metadata for the credential. */
|
|
67364
67397
|
visionline_metadata?: {
|
|
67365
67398
|
card_function_type: 'guest' | 'staff';
|
|
@@ -67450,9 +67483,9 @@ interface Routes {
|
|
|
67450
67483
|
/** 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). */
|
|
67451
67484
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
67452
67485
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
67453
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
67486
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
67454
67487
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
67455
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
67488
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
67456
67489
|
/** Visionline-specific metadata for the credential. */
|
|
67457
67490
|
visionline_metadata?: {
|
|
67458
67491
|
card_function_type: 'guest' | 'staff';
|
|
@@ -67580,9 +67613,9 @@ interface Routes {
|
|
|
67580
67613
|
/** 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). */
|
|
67581
67614
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
67582
67615
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
67583
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
67616
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
67584
67617
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
67585
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
67618
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
67586
67619
|
/** Visionline-specific metadata for the credential. */
|
|
67587
67620
|
visionline_metadata?: {
|
|
67588
67621
|
card_function_type: 'guest' | 'staff';
|
|
@@ -67673,9 +67706,9 @@ interface Routes {
|
|
|
67673
67706
|
/** 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). */
|
|
67674
67707
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
67675
67708
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
67676
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
67709
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
67677
67710
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
67678
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
67711
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
67679
67712
|
/** Visionline-specific metadata for the credential. */
|
|
67680
67713
|
visionline_metadata?: {
|
|
67681
67714
|
card_function_type: 'guest' | 'staff';
|