@seamapi/types 1.321.1 → 1.322.1
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 +62 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +475 -305
- 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/models/devices/capability-properties/index.d.ts +26 -5
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +26 -5
- package/lib/seam/connect/models/devices/device.d.ts +34 -7
- package/lib/seam/connect/models/devices/phone.d.ts +26 -5
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +26 -5
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +18 -3
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +4 -1
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +54 -0
- package/lib/seam/connect/openapi.js +48 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +271 -218
- 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/models/thermostats/thermostat-schedule.ts +6 -1
- package/src/lib/seam/connect/openapi.ts +49 -0
- package/src/lib/seam/connect/route-types.ts +341 -218
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<{
|
|
@@ -7046,27 +7046,42 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7046
7046
|
unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
7047
7047
|
ends_at: z.ZodString;
|
|
7048
7048
|
created_at: z.ZodString;
|
|
7049
|
-
errors: z.
|
|
7049
|
+
errors: z.ZodArray<z.ZodObject<{
|
|
7050
|
+
error_code: z.ZodString;
|
|
7051
|
+
message: z.ZodString;
|
|
7052
|
+
}, "strip", z.ZodTypeAny, {
|
|
7053
|
+
message: string;
|
|
7054
|
+
error_code: string;
|
|
7055
|
+
}, {
|
|
7056
|
+
message: string;
|
|
7057
|
+
error_code: string;
|
|
7058
|
+
}>, "many">;
|
|
7050
7059
|
}, "strip", z.ZodTypeAny, {
|
|
7051
7060
|
created_at: string;
|
|
7061
|
+
errors: {
|
|
7062
|
+
message: string;
|
|
7063
|
+
error_code: string;
|
|
7064
|
+
}[];
|
|
7052
7065
|
climate_preset_key: string;
|
|
7053
7066
|
thermostat_schedule_id: string;
|
|
7054
7067
|
device_id: string;
|
|
7055
7068
|
max_override_period_minutes: number;
|
|
7056
7069
|
starts_at: string;
|
|
7057
7070
|
ends_at: string;
|
|
7058
|
-
errors?: any;
|
|
7059
7071
|
name?: string | undefined;
|
|
7060
7072
|
unstable_is_override_allowed?: boolean | undefined;
|
|
7061
7073
|
}, {
|
|
7062
7074
|
created_at: string;
|
|
7075
|
+
errors: {
|
|
7076
|
+
message: string;
|
|
7077
|
+
error_code: string;
|
|
7078
|
+
}[];
|
|
7063
7079
|
climate_preset_key: string;
|
|
7064
7080
|
thermostat_schedule_id: string;
|
|
7065
7081
|
device_id: string;
|
|
7066
7082
|
max_override_period_minutes: number;
|
|
7067
7083
|
starts_at: string;
|
|
7068
7084
|
ends_at: string;
|
|
7069
|
-
errors?: any;
|
|
7070
7085
|
name?: string | undefined;
|
|
7071
7086
|
unstable_is_override_allowed?: boolean | undefined;
|
|
7072
7087
|
}>>>>;
|
|
@@ -7152,13 +7167,16 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7152
7167
|
fallback_climate_preset_key?: string | null | undefined;
|
|
7153
7168
|
active_thermostat_schedule?: {
|
|
7154
7169
|
created_at: string;
|
|
7170
|
+
errors: {
|
|
7171
|
+
message: string;
|
|
7172
|
+
error_code: string;
|
|
7173
|
+
}[];
|
|
7155
7174
|
climate_preset_key: string;
|
|
7156
7175
|
thermostat_schedule_id: string;
|
|
7157
7176
|
device_id: string;
|
|
7158
7177
|
max_override_period_minutes: number;
|
|
7159
7178
|
starts_at: string;
|
|
7160
7179
|
ends_at: string;
|
|
7161
|
-
errors?: any;
|
|
7162
7180
|
name?: string | undefined;
|
|
7163
7181
|
unstable_is_override_allowed?: boolean | undefined;
|
|
7164
7182
|
} | null | undefined;
|
|
@@ -7234,13 +7252,16 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7234
7252
|
fallback_climate_preset_key?: string | null | undefined;
|
|
7235
7253
|
active_thermostat_schedule?: {
|
|
7236
7254
|
created_at: string;
|
|
7255
|
+
errors: {
|
|
7256
|
+
message: string;
|
|
7257
|
+
error_code: string;
|
|
7258
|
+
}[];
|
|
7237
7259
|
climate_preset_key: string;
|
|
7238
7260
|
thermostat_schedule_id: string;
|
|
7239
7261
|
device_id: string;
|
|
7240
7262
|
max_override_period_minutes: number;
|
|
7241
7263
|
starts_at: string;
|
|
7242
7264
|
ends_at: string;
|
|
7243
|
-
errors?: any;
|
|
7244
7265
|
name?: string | undefined;
|
|
7245
7266
|
unstable_is_override_allowed?: boolean | undefined;
|
|
7246
7267
|
} | null | undefined;
|
|
@@ -7694,13 +7715,16 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7694
7715
|
fallback_climate_preset_key?: string | null | undefined;
|
|
7695
7716
|
active_thermostat_schedule?: {
|
|
7696
7717
|
created_at: string;
|
|
7718
|
+
errors: {
|
|
7719
|
+
message: string;
|
|
7720
|
+
error_code: string;
|
|
7721
|
+
}[];
|
|
7697
7722
|
climate_preset_key: string;
|
|
7698
7723
|
thermostat_schedule_id: string;
|
|
7699
7724
|
device_id: string;
|
|
7700
7725
|
max_override_period_minutes: number;
|
|
7701
7726
|
starts_at: string;
|
|
7702
7727
|
ends_at: string;
|
|
7703
|
-
errors?: any;
|
|
7704
7728
|
name?: string | undefined;
|
|
7705
7729
|
unstable_is_override_allowed?: boolean | undefined;
|
|
7706
7730
|
} | null | undefined;
|
|
@@ -8106,13 +8130,16 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8106
8130
|
fallback_climate_preset_key?: string | null | undefined;
|
|
8107
8131
|
active_thermostat_schedule?: {
|
|
8108
8132
|
created_at: string;
|
|
8133
|
+
errors: {
|
|
8134
|
+
message: string;
|
|
8135
|
+
error_code: string;
|
|
8136
|
+
}[];
|
|
8109
8137
|
climate_preset_key: string;
|
|
8110
8138
|
thermostat_schedule_id: string;
|
|
8111
8139
|
device_id: string;
|
|
8112
8140
|
max_override_period_minutes: number;
|
|
8113
8141
|
starts_at: string;
|
|
8114
8142
|
ends_at: string;
|
|
8115
|
-
errors?: any;
|
|
8116
8143
|
name?: string | undefined;
|
|
8117
8144
|
unstable_is_override_allowed?: boolean | undefined;
|
|
8118
8145
|
} | null | undefined;
|
|
@@ -9850,27 +9877,42 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9850
9877
|
unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
9851
9878
|
ends_at: z.ZodString;
|
|
9852
9879
|
created_at: z.ZodString;
|
|
9853
|
-
errors: z.
|
|
9880
|
+
errors: z.ZodArray<z.ZodObject<{
|
|
9881
|
+
error_code: z.ZodString;
|
|
9882
|
+
message: z.ZodString;
|
|
9883
|
+
}, "strip", z.ZodTypeAny, {
|
|
9884
|
+
message: string;
|
|
9885
|
+
error_code: string;
|
|
9886
|
+
}, {
|
|
9887
|
+
message: string;
|
|
9888
|
+
error_code: string;
|
|
9889
|
+
}>, "many">;
|
|
9854
9890
|
}, "strip", z.ZodTypeAny, {
|
|
9855
9891
|
created_at: string;
|
|
9892
|
+
errors: {
|
|
9893
|
+
message: string;
|
|
9894
|
+
error_code: string;
|
|
9895
|
+
}[];
|
|
9856
9896
|
climate_preset_key: string;
|
|
9857
9897
|
thermostat_schedule_id: string;
|
|
9858
9898
|
device_id: string;
|
|
9859
9899
|
max_override_period_minutes: number;
|
|
9860
9900
|
starts_at: string;
|
|
9861
9901
|
ends_at: string;
|
|
9862
|
-
errors?: any;
|
|
9863
9902
|
name?: string | undefined;
|
|
9864
9903
|
unstable_is_override_allowed?: boolean | undefined;
|
|
9865
9904
|
}, {
|
|
9866
9905
|
created_at: string;
|
|
9906
|
+
errors: {
|
|
9907
|
+
message: string;
|
|
9908
|
+
error_code: string;
|
|
9909
|
+
}[];
|
|
9867
9910
|
climate_preset_key: string;
|
|
9868
9911
|
thermostat_schedule_id: string;
|
|
9869
9912
|
device_id: string;
|
|
9870
9913
|
max_override_period_minutes: number;
|
|
9871
9914
|
starts_at: string;
|
|
9872
9915
|
ends_at: string;
|
|
9873
|
-
errors?: any;
|
|
9874
9916
|
name?: string | undefined;
|
|
9875
9917
|
unstable_is_override_allowed?: boolean | undefined;
|
|
9876
9918
|
}>>>>;
|
|
@@ -9956,13 +9998,16 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9956
9998
|
fallback_climate_preset_key?: string | null | undefined;
|
|
9957
9999
|
active_thermostat_schedule?: {
|
|
9958
10000
|
created_at: string;
|
|
10001
|
+
errors: {
|
|
10002
|
+
message: string;
|
|
10003
|
+
error_code: string;
|
|
10004
|
+
}[];
|
|
9959
10005
|
climate_preset_key: string;
|
|
9960
10006
|
thermostat_schedule_id: string;
|
|
9961
10007
|
device_id: string;
|
|
9962
10008
|
max_override_period_minutes: number;
|
|
9963
10009
|
starts_at: string;
|
|
9964
10010
|
ends_at: string;
|
|
9965
|
-
errors?: any;
|
|
9966
10011
|
name?: string | undefined;
|
|
9967
10012
|
unstable_is_override_allowed?: boolean | undefined;
|
|
9968
10013
|
} | null | undefined;
|
|
@@ -10038,13 +10083,16 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
10038
10083
|
fallback_climate_preset_key?: string | null | undefined;
|
|
10039
10084
|
active_thermostat_schedule?: {
|
|
10040
10085
|
created_at: string;
|
|
10086
|
+
errors: {
|
|
10087
|
+
message: string;
|
|
10088
|
+
error_code: string;
|
|
10089
|
+
}[];
|
|
10041
10090
|
climate_preset_key: string;
|
|
10042
10091
|
thermostat_schedule_id: string;
|
|
10043
10092
|
device_id: string;
|
|
10044
10093
|
max_override_period_minutes: number;
|
|
10045
10094
|
starts_at: string;
|
|
10046
10095
|
ends_at: string;
|
|
10047
|
-
errors?: any;
|
|
10048
10096
|
name?: string | undefined;
|
|
10049
10097
|
unstable_is_override_allowed?: boolean | undefined;
|
|
10050
10098
|
} | null | undefined;
|
|
@@ -12498,27 +12546,42 @@ declare const thermostat_schedule: z.ZodObject<{
|
|
|
12498
12546
|
unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
12499
12547
|
ends_at: z.ZodString;
|
|
12500
12548
|
created_at: z.ZodString;
|
|
12501
|
-
errors: z.
|
|
12549
|
+
errors: z.ZodArray<z.ZodObject<{
|
|
12550
|
+
error_code: z.ZodString;
|
|
12551
|
+
message: z.ZodString;
|
|
12552
|
+
}, "strip", z.ZodTypeAny, {
|
|
12553
|
+
message: string;
|
|
12554
|
+
error_code: string;
|
|
12555
|
+
}, {
|
|
12556
|
+
message: string;
|
|
12557
|
+
error_code: string;
|
|
12558
|
+
}>, "many">;
|
|
12502
12559
|
}, "strip", z.ZodTypeAny, {
|
|
12503
12560
|
created_at: string;
|
|
12561
|
+
errors: {
|
|
12562
|
+
message: string;
|
|
12563
|
+
error_code: string;
|
|
12564
|
+
}[];
|
|
12504
12565
|
climate_preset_key: string;
|
|
12505
12566
|
thermostat_schedule_id: string;
|
|
12506
12567
|
device_id: string;
|
|
12507
12568
|
max_override_period_minutes: number;
|
|
12508
12569
|
starts_at: string;
|
|
12509
12570
|
ends_at: string;
|
|
12510
|
-
errors?: any;
|
|
12511
12571
|
name?: string | undefined;
|
|
12512
12572
|
unstable_is_override_allowed?: boolean | undefined;
|
|
12513
12573
|
}, {
|
|
12514
12574
|
created_at: string;
|
|
12575
|
+
errors: {
|
|
12576
|
+
message: string;
|
|
12577
|
+
error_code: string;
|
|
12578
|
+
}[];
|
|
12515
12579
|
climate_preset_key: string;
|
|
12516
12580
|
thermostat_schedule_id: string;
|
|
12517
12581
|
device_id: string;
|
|
12518
12582
|
max_override_period_minutes: number;
|
|
12519
12583
|
starts_at: string;
|
|
12520
12584
|
ends_at: string;
|
|
12521
|
-
errors?: any;
|
|
12522
12585
|
name?: string | undefined;
|
|
12523
12586
|
unstable_is_override_allowed?: boolean | undefined;
|
|
12524
12587
|
}>;
|
|
@@ -12962,6 +13025,7 @@ declare const _default: {
|
|
|
12962
13025
|
};
|
|
12963
13026
|
is_latest_desired_state_synced_with_provider: {
|
|
12964
13027
|
description: string;
|
|
13028
|
+
nullable: boolean;
|
|
12965
13029
|
type: string;
|
|
12966
13030
|
};
|
|
12967
13031
|
is_managed: {
|
|
@@ -12984,6 +13048,7 @@ declare const _default: {
|
|
|
12984
13048
|
latest_desired_state_synced_with_provider_at: {
|
|
12985
13049
|
description: string;
|
|
12986
13050
|
format: string;
|
|
13051
|
+
nullable: boolean;
|
|
12987
13052
|
type: string;
|
|
12988
13053
|
};
|
|
12989
13054
|
parent_acs_credential_id: {
|
|
@@ -13627,6 +13692,7 @@ declare const _default: {
|
|
|
13627
13692
|
type: string;
|
|
13628
13693
|
};
|
|
13629
13694
|
is_latest_desired_state_synced_with_provider: {
|
|
13695
|
+
nullable: boolean;
|
|
13630
13696
|
type: string;
|
|
13631
13697
|
'x-undocumented': string;
|
|
13632
13698
|
};
|
|
@@ -13640,6 +13706,7 @@ declare const _default: {
|
|
|
13640
13706
|
};
|
|
13641
13707
|
latest_desired_state_synced_with_provider_at: {
|
|
13642
13708
|
format: string;
|
|
13709
|
+
nullable: boolean;
|
|
13643
13710
|
type: string;
|
|
13644
13711
|
'x-undocumented': string;
|
|
13645
13712
|
};
|
|
@@ -14012,6 +14079,7 @@ declare const _default: {
|
|
|
14012
14079
|
};
|
|
14013
14080
|
is_latest_desired_state_synced_with_provider: {
|
|
14014
14081
|
description: string;
|
|
14082
|
+
nullable: boolean;
|
|
14015
14083
|
type: string;
|
|
14016
14084
|
};
|
|
14017
14085
|
is_managed: {
|
|
@@ -14034,6 +14102,7 @@ declare const _default: {
|
|
|
14034
14102
|
latest_desired_state_synced_with_provider_at: {
|
|
14035
14103
|
description: string;
|
|
14036
14104
|
format: string;
|
|
14105
|
+
nullable: boolean;
|
|
14037
14106
|
type: string;
|
|
14038
14107
|
};
|
|
14039
14108
|
parent_acs_credential_id: {
|
|
@@ -14308,6 +14377,7 @@ declare const _default: {
|
|
|
14308
14377
|
};
|
|
14309
14378
|
is_latest_desired_state_synced_with_provider: {
|
|
14310
14379
|
description: string;
|
|
14380
|
+
nullable: boolean;
|
|
14311
14381
|
type: string;
|
|
14312
14382
|
};
|
|
14313
14383
|
is_managed: {
|
|
@@ -14330,6 +14400,7 @@ declare const _default: {
|
|
|
14330
14400
|
latest_desired_state_synced_with_provider_at: {
|
|
14331
14401
|
description: string;
|
|
14332
14402
|
format: string;
|
|
14403
|
+
nullable: boolean;
|
|
14333
14404
|
type: string;
|
|
14334
14405
|
};
|
|
14335
14406
|
parent_acs_credential_id: {
|
|
@@ -16103,6 +16174,19 @@ declare const _default: {
|
|
|
16103
16174
|
};
|
|
16104
16175
|
errors: {
|
|
16105
16176
|
description: string;
|
|
16177
|
+
items: {
|
|
16178
|
+
properties: {
|
|
16179
|
+
error_code: {
|
|
16180
|
+
type: string;
|
|
16181
|
+
};
|
|
16182
|
+
message: {
|
|
16183
|
+
type: string;
|
|
16184
|
+
};
|
|
16185
|
+
};
|
|
16186
|
+
required: string[];
|
|
16187
|
+
type: string;
|
|
16188
|
+
};
|
|
16189
|
+
type: string;
|
|
16106
16190
|
};
|
|
16107
16191
|
max_override_period_minutes: {
|
|
16108
16192
|
description: string;
|
|
@@ -19182,6 +19266,19 @@ declare const _default: {
|
|
|
19182
19266
|
};
|
|
19183
19267
|
errors: {
|
|
19184
19268
|
description: string;
|
|
19269
|
+
items: {
|
|
19270
|
+
properties: {
|
|
19271
|
+
error_code: {
|
|
19272
|
+
type: string;
|
|
19273
|
+
};
|
|
19274
|
+
message: {
|
|
19275
|
+
type: string;
|
|
19276
|
+
};
|
|
19277
|
+
};
|
|
19278
|
+
required: string[];
|
|
19279
|
+
type: string;
|
|
19280
|
+
};
|
|
19281
|
+
type: string;
|
|
19185
19282
|
};
|
|
19186
19283
|
max_override_period_minutes: {
|
|
19187
19284
|
description: string;
|
|
@@ -22963,6 +23060,18 @@ declare const _default: {
|
|
|
22963
23060
|
description: string;
|
|
22964
23061
|
type: string;
|
|
22965
23062
|
};
|
|
23063
|
+
salto_space_metadata: {
|
|
23064
|
+
description: string;
|
|
23065
|
+
properties: {
|
|
23066
|
+
assign_new_key: {
|
|
23067
|
+
type: string;
|
|
23068
|
+
};
|
|
23069
|
+
update_current_key: {
|
|
23070
|
+
type: string;
|
|
23071
|
+
};
|
|
23072
|
+
};
|
|
23073
|
+
type: string;
|
|
23074
|
+
};
|
|
22966
23075
|
starts_at: {
|
|
22967
23076
|
description: string;
|
|
22968
23077
|
format: string;
|
|
@@ -23766,6 +23875,7 @@ declare const _default: {
|
|
|
23766
23875
|
};
|
|
23767
23876
|
is_latest_desired_state_synced_with_provider: {
|
|
23768
23877
|
description: string;
|
|
23878
|
+
nullable: boolean;
|
|
23769
23879
|
type: string;
|
|
23770
23880
|
};
|
|
23771
23881
|
is_managed: {
|
|
@@ -23788,6 +23898,7 @@ declare const _default: {
|
|
|
23788
23898
|
latest_desired_state_synced_with_provider_at: {
|
|
23789
23899
|
description: string;
|
|
23790
23900
|
format: string;
|
|
23901
|
+
nullable: boolean;
|
|
23791
23902
|
type: string;
|
|
23792
23903
|
};
|
|
23793
23904
|
parent_acs_credential_id: {
|
|
@@ -24073,6 +24184,7 @@ declare const _default: {
|
|
|
24073
24184
|
};
|
|
24074
24185
|
is_latest_desired_state_synced_with_provider: {
|
|
24075
24186
|
description: string;
|
|
24187
|
+
nullable: boolean;
|
|
24076
24188
|
type: string;
|
|
24077
24189
|
};
|
|
24078
24190
|
is_managed: {
|
|
@@ -24095,6 +24207,7 @@ declare const _default: {
|
|
|
24095
24207
|
latest_desired_state_synced_with_provider_at: {
|
|
24096
24208
|
description: string;
|
|
24097
24209
|
format: string;
|
|
24210
|
+
nullable: boolean;
|
|
24098
24211
|
type: string;
|
|
24099
24212
|
};
|
|
24100
24213
|
parent_acs_credential_id: {
|
|
@@ -26480,6 +26593,7 @@ declare const _default: {
|
|
|
26480
26593
|
type: string;
|
|
26481
26594
|
};
|
|
26482
26595
|
is_latest_desired_state_synced_with_provider: {
|
|
26596
|
+
nullable: boolean;
|
|
26483
26597
|
type: string;
|
|
26484
26598
|
'x-undocumented': string;
|
|
26485
26599
|
};
|
|
@@ -26493,6 +26607,7 @@ declare const _default: {
|
|
|
26493
26607
|
};
|
|
26494
26608
|
latest_desired_state_synced_with_provider_at: {
|
|
26495
26609
|
format: string;
|
|
26610
|
+
nullable: boolean;
|
|
26496
26611
|
type: string;
|
|
26497
26612
|
'x-undocumented': string;
|
|
26498
26613
|
};
|
|
@@ -26729,6 +26844,7 @@ declare const _default: {
|
|
|
26729
26844
|
type: string;
|
|
26730
26845
|
};
|
|
26731
26846
|
is_latest_desired_state_synced_with_provider: {
|
|
26847
|
+
nullable: boolean;
|
|
26732
26848
|
type: string;
|
|
26733
26849
|
'x-undocumented': string;
|
|
26734
26850
|
};
|
|
@@ -26742,6 +26858,7 @@ declare const _default: {
|
|
|
26742
26858
|
};
|
|
26743
26859
|
latest_desired_state_synced_with_provider_at: {
|
|
26744
26860
|
format: string;
|
|
26861
|
+
nullable: boolean;
|
|
26745
26862
|
type: string;
|
|
26746
26863
|
'x-undocumented': string;
|
|
26747
26864
|
};
|
|
@@ -36324,9 +36441,9 @@ interface Routes {
|
|
|
36324
36441
|
/** 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
36442
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
36326
36443
|
/** 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;
|
|
36444
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
36328
36445
|
/** 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;
|
|
36446
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
36330
36447
|
/** Visionline-specific metadata for the credential. */
|
|
36331
36448
|
visionline_metadata?: {
|
|
36332
36449
|
card_function_type: 'guest' | 'staff';
|
|
@@ -36417,9 +36534,9 @@ interface Routes {
|
|
|
36417
36534
|
/** 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
36535
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
36419
36536
|
/** 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;
|
|
36537
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
36421
36538
|
/** 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;
|
|
36539
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
36423
36540
|
/** Visionline-specific metadata for the credential. */
|
|
36424
36541
|
visionline_metadata?: {
|
|
36425
36542
|
card_function_type: 'guest' | 'staff';
|
|
@@ -36547,9 +36664,9 @@ interface Routes {
|
|
|
36547
36664
|
/** 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
36665
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
36549
36666
|
/** 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;
|
|
36667
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
36551
36668
|
/** 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;
|
|
36669
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
36553
36670
|
/** Visionline-specific metadata for the credential. */
|
|
36554
36671
|
visionline_metadata?: {
|
|
36555
36672
|
card_function_type: 'guest' | 'staff';
|
|
@@ -36640,9 +36757,9 @@ interface Routes {
|
|
|
36640
36757
|
/** 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
36758
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
36642
36759
|
/** 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;
|
|
36760
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
36644
36761
|
/** 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;
|
|
36762
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
36646
36763
|
/** Visionline-specific metadata for the credential. */
|
|
36647
36764
|
visionline_metadata?: {
|
|
36648
36765
|
card_function_type: 'guest' | 'staff';
|
|
@@ -37279,9 +37396,9 @@ interface Routes {
|
|
|
37279
37396
|
/** 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
37397
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
37281
37398
|
/** 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;
|
|
37399
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
37283
37400
|
/** 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;
|
|
37401
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
37285
37402
|
/** Visionline-specific metadata for the credential. */
|
|
37286
37403
|
visionline_metadata?: {
|
|
37287
37404
|
card_function_type: 'guest' | 'staff';
|
|
@@ -37372,9 +37489,9 @@ interface Routes {
|
|
|
37372
37489
|
/** 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
37490
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
37374
37491
|
/** 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;
|
|
37492
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
37376
37493
|
/** 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;
|
|
37494
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
37378
37495
|
/** Visionline-specific metadata for the credential. */
|
|
37379
37496
|
visionline_metadata?: {
|
|
37380
37497
|
card_function_type: 'guest' | 'staff';
|
|
@@ -37502,9 +37619,9 @@ interface Routes {
|
|
|
37502
37619
|
/** 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
37620
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
37504
37621
|
/** 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;
|
|
37622
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
37506
37623
|
/** 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;
|
|
37624
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
37508
37625
|
/** Visionline-specific metadata for the credential. */
|
|
37509
37626
|
visionline_metadata?: {
|
|
37510
37627
|
card_function_type: 'guest' | 'staff';
|
|
@@ -37595,9 +37712,9 @@ interface Routes {
|
|
|
37595
37712
|
/** 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
37713
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
37597
37714
|
/** 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;
|
|
37715
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
37599
37716
|
/** 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;
|
|
37717
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
37601
37718
|
/** Visionline-specific metadata for the credential. */
|
|
37602
37719
|
visionline_metadata?: {
|
|
37603
37720
|
card_function_type: 'guest' | 'staff';
|
|
@@ -38452,9 +38569,9 @@ interface Routes {
|
|
|
38452
38569
|
/** 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
38570
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
38454
38571
|
/** 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;
|
|
38572
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
38456
38573
|
/** 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;
|
|
38574
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
38458
38575
|
/** Visionline-specific metadata for the credential. */
|
|
38459
38576
|
visionline_metadata?: {
|
|
38460
38577
|
card_function_type: 'guest' | 'staff';
|
|
@@ -38545,9 +38662,9 @@ interface Routes {
|
|
|
38545
38662
|
/** 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
38663
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
38547
38664
|
/** 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;
|
|
38665
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
38549
38666
|
/** 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;
|
|
38667
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
38551
38668
|
/** Visionline-specific metadata for the credential. */
|
|
38552
38669
|
visionline_metadata?: {
|
|
38553
38670
|
card_function_type: 'guest' | 'staff';
|
|
@@ -38675,9 +38792,9 @@ interface Routes {
|
|
|
38675
38792
|
/** 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
38793
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
38677
38794
|
/** 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;
|
|
38795
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
38679
38796
|
/** 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;
|
|
38797
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
38681
38798
|
/** Visionline-specific metadata for the credential. */
|
|
38682
38799
|
visionline_metadata?: {
|
|
38683
38800
|
card_function_type: 'guest' | 'staff';
|
|
@@ -38768,9 +38885,9 @@ interface Routes {
|
|
|
38768
38885
|
/** 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
38886
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
38770
38887
|
/** 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;
|
|
38888
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
38772
38889
|
/** 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;
|
|
38890
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
38774
38891
|
/** Visionline-specific metadata for the credential. */
|
|
38775
38892
|
visionline_metadata?: {
|
|
38776
38893
|
card_function_type: 'guest' | 'staff';
|
|
@@ -39394,9 +39511,9 @@ interface Routes {
|
|
|
39394
39511
|
/** 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
39512
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
39396
39513
|
/** 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;
|
|
39514
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
39398
39515
|
/** 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;
|
|
39516
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
39400
39517
|
/** Visionline-specific metadata for the credential. */
|
|
39401
39518
|
visionline_metadata?: {
|
|
39402
39519
|
card_function_type: 'guest' | 'staff';
|
|
@@ -39487,9 +39604,9 @@ interface Routes {
|
|
|
39487
39604
|
/** 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
39605
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
39489
39606
|
/** 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;
|
|
39607
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
39491
39608
|
/** 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;
|
|
39609
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
39493
39610
|
/** Visionline-specific metadata for the credential. */
|
|
39494
39611
|
visionline_metadata?: {
|
|
39495
39612
|
card_function_type: 'guest' | 'staff';
|
|
@@ -39617,9 +39734,9 @@ interface Routes {
|
|
|
39617
39734
|
/** 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
39735
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
39619
39736
|
/** 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;
|
|
39737
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
39621
39738
|
/** 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;
|
|
39739
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
39623
39740
|
/** Visionline-specific metadata for the credential. */
|
|
39624
39741
|
visionline_metadata?: {
|
|
39625
39742
|
card_function_type: 'guest' | 'staff';
|
|
@@ -39710,9 +39827,9 @@ interface Routes {
|
|
|
39710
39827
|
/** 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
39828
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
39712
39829
|
/** 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;
|
|
39830
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
39714
39831
|
/** 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;
|
|
39832
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
39716
39833
|
/** Visionline-specific metadata for the credential. */
|
|
39717
39834
|
visionline_metadata?: {
|
|
39718
39835
|
card_function_type: 'guest' | 'staff';
|
|
@@ -40256,9 +40373,9 @@ interface Routes {
|
|
|
40256
40373
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
40257
40374
|
user_identity_phone_number?: (string | null) | undefined;
|
|
40258
40375
|
/** */
|
|
40259
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
40376
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
40260
40377
|
/** */
|
|
40261
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
40378
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
40262
40379
|
/** Warnings associated with the `acs_user`. */
|
|
40263
40380
|
warnings: Array<{
|
|
40264
40381
|
created_at: string;
|
|
@@ -40559,9 +40676,9 @@ interface Routes {
|
|
|
40559
40676
|
/** 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
40677
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
40561
40678
|
/** 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;
|
|
40679
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
40563
40680
|
/** 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;
|
|
40681
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
40565
40682
|
/** Visionline-specific metadata for the credential. */
|
|
40566
40683
|
visionline_metadata?: {
|
|
40567
40684
|
card_function_type: 'guest' | 'staff';
|
|
@@ -40615,6 +40732,11 @@ interface Routes {
|
|
|
40615
40732
|
join_all_guest_acs_entrances?: boolean | undefined;
|
|
40616
40733
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
40617
40734
|
} | undefined;
|
|
40735
|
+
/** Salto Space-specific metadata for the new credential. */
|
|
40736
|
+
salto_space_metadata?: {
|
|
40737
|
+
assign_new_key?: boolean | undefined;
|
|
40738
|
+
update_current_key?: boolean | undefined;
|
|
40739
|
+
} | undefined;
|
|
40618
40740
|
/** 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
40741
|
starts_at?: string | undefined;
|
|
40620
40742
|
/** 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 +40824,9 @@ interface Routes {
|
|
|
40702
40824
|
/** 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
40825
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
40704
40826
|
/** 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;
|
|
40827
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
40706
40828
|
/** 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;
|
|
40829
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
40708
40830
|
/** Visionline-specific metadata for the credential. */
|
|
40709
40831
|
visionline_metadata?: {
|
|
40710
40832
|
card_function_type: 'guest' | 'staff';
|
|
@@ -40819,9 +40941,9 @@ interface Routes {
|
|
|
40819
40941
|
/** 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
40942
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
40821
40943
|
/** 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;
|
|
40944
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
40823
40945
|
/** 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;
|
|
40946
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
40825
40947
|
/** Visionline-specific metadata for the credential. */
|
|
40826
40948
|
visionline_metadata?: {
|
|
40827
40949
|
card_function_type: 'guest' | 'staff';
|
|
@@ -40940,9 +41062,9 @@ interface Routes {
|
|
|
40940
41062
|
/** 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
41063
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
40942
41064
|
/** 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;
|
|
41065
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
40944
41066
|
/** 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;
|
|
41067
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
40946
41068
|
/** Visionline-specific metadata for the credential. */
|
|
40947
41069
|
visionline_metadata?: {
|
|
40948
41070
|
card_function_type: 'guest' | 'staff';
|
|
@@ -41065,9 +41187,9 @@ interface Routes {
|
|
|
41065
41187
|
/** 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
41188
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41067
41189
|
/** 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;
|
|
41190
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
41069
41191
|
/** 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;
|
|
41192
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
41071
41193
|
/** Visionline-specific metadata for the credential. */
|
|
41072
41194
|
visionline_metadata?: {
|
|
41073
41195
|
card_function_type: 'guest' | 'staff';
|
|
@@ -41243,9 +41365,9 @@ interface Routes {
|
|
|
41243
41365
|
/** 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
41366
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41245
41367
|
/** 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;
|
|
41368
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
41247
41369
|
/** 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;
|
|
41370
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
41249
41371
|
/** Visionline-specific metadata for the credential. */
|
|
41250
41372
|
visionline_metadata?: {
|
|
41251
41373
|
card_function_type: 'guest' | 'staff';
|
|
@@ -41352,9 +41474,9 @@ interface Routes {
|
|
|
41352
41474
|
/** 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
41475
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41354
41476
|
/** 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;
|
|
41477
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
41356
41478
|
/** 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;
|
|
41479
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
41358
41480
|
/** Visionline-specific metadata for the credential. */
|
|
41359
41481
|
visionline_metadata?: {
|
|
41360
41482
|
card_function_type: 'guest' | 'staff';
|
|
@@ -41470,9 +41592,9 @@ interface Routes {
|
|
|
41470
41592
|
/** 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
41593
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41472
41594
|
/** 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;
|
|
41595
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
41474
41596
|
/** 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;
|
|
41597
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
41476
41598
|
/** Visionline-specific metadata for the credential. */
|
|
41477
41599
|
visionline_metadata?: {
|
|
41478
41600
|
card_function_type: 'guest' | 'staff';
|
|
@@ -41583,9 +41705,9 @@ interface Routes {
|
|
|
41583
41705
|
/** 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
41706
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41585
41707
|
/** 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;
|
|
41708
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
41587
41709
|
/** 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;
|
|
41710
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
41589
41711
|
/** Visionline-specific metadata for the credential. */
|
|
41590
41712
|
visionline_metadata?: {
|
|
41591
41713
|
card_function_type: 'guest' | 'staff';
|
|
@@ -41782,9 +41904,9 @@ interface Routes {
|
|
|
41782
41904
|
/** 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
41905
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41784
41906
|
/** 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;
|
|
41907
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
41786
41908
|
/** 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;
|
|
41909
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
41788
41910
|
/** Visionline-specific metadata for the credential. */
|
|
41789
41911
|
visionline_metadata?: {
|
|
41790
41912
|
card_function_type: 'guest' | 'staff';
|
|
@@ -41875,9 +41997,9 @@ interface Routes {
|
|
|
41875
41997
|
/** 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
41998
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41877
41999
|
/** 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;
|
|
42000
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
41879
42001
|
/** 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;
|
|
42002
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
41881
42003
|
/** Visionline-specific metadata for the credential. */
|
|
41882
42004
|
visionline_metadata?: {
|
|
41883
42005
|
card_function_type: 'guest' | 'staff';
|
|
@@ -42005,9 +42127,9 @@ interface Routes {
|
|
|
42005
42127
|
/** 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
42128
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42007
42129
|
/** 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;
|
|
42130
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
42009
42131
|
/** 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;
|
|
42132
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
42011
42133
|
/** Visionline-specific metadata for the credential. */
|
|
42012
42134
|
visionline_metadata?: {
|
|
42013
42135
|
card_function_type: 'guest' | 'staff';
|
|
@@ -42098,9 +42220,9 @@ interface Routes {
|
|
|
42098
42220
|
/** 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
42221
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42100
42222
|
/** 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;
|
|
42223
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
42102
42224
|
/** 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;
|
|
42225
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
42104
42226
|
/** Visionline-specific metadata for the credential. */
|
|
42105
42227
|
visionline_metadata?: {
|
|
42106
42228
|
card_function_type: 'guest' | 'staff';
|
|
@@ -42627,9 +42749,9 @@ interface Routes {
|
|
|
42627
42749
|
/** 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
42750
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42629
42751
|
/** 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;
|
|
42752
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
42631
42753
|
/** 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;
|
|
42754
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
42633
42755
|
/** Visionline-specific metadata for the credential. */
|
|
42634
42756
|
visionline_metadata?: {
|
|
42635
42757
|
card_function_type: 'guest' | 'staff';
|
|
@@ -42720,9 +42842,9 @@ interface Routes {
|
|
|
42720
42842
|
/** 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
42843
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42722
42844
|
/** 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;
|
|
42845
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
42724
42846
|
/** 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;
|
|
42847
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
42726
42848
|
/** Visionline-specific metadata for the credential. */
|
|
42727
42849
|
visionline_metadata?: {
|
|
42728
42850
|
card_function_type: 'guest' | 'staff';
|
|
@@ -42850,9 +42972,9 @@ interface Routes {
|
|
|
42850
42972
|
/** 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
42973
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42852
42974
|
/** 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;
|
|
42975
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
42854
42976
|
/** 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;
|
|
42977
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
42856
42978
|
/** Visionline-specific metadata for the credential. */
|
|
42857
42979
|
visionline_metadata?: {
|
|
42858
42980
|
card_function_type: 'guest' | 'staff';
|
|
@@ -42943,9 +43065,9 @@ interface Routes {
|
|
|
42943
43065
|
/** 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
43066
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42945
43067
|
/** 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;
|
|
43068
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
42947
43069
|
/** 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;
|
|
43070
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
42949
43071
|
/** Visionline-specific metadata for the credential. */
|
|
42950
43072
|
visionline_metadata?: {
|
|
42951
43073
|
card_function_type: 'guest' | 'staff';
|
|
@@ -43551,9 +43673,9 @@ interface Routes {
|
|
|
43551
43673
|
/** 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
43674
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
43553
43675
|
/** 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;
|
|
43676
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
43555
43677
|
/** 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;
|
|
43678
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
43557
43679
|
/** Visionline-specific metadata for the credential. */
|
|
43558
43680
|
visionline_metadata?: {
|
|
43559
43681
|
card_function_type: 'guest' | 'staff';
|
|
@@ -44029,9 +44151,9 @@ interface Routes {
|
|
|
44029
44151
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
44030
44152
|
user_identity_phone_number?: (string | null) | undefined;
|
|
44031
44153
|
/** */
|
|
44032
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
44154
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
44033
44155
|
/** */
|
|
44034
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
44156
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
44035
44157
|
/** Warnings associated with the `acs_user`. */
|
|
44036
44158
|
warnings: Array<{
|
|
44037
44159
|
created_at: string;
|
|
@@ -44145,9 +44267,9 @@ interface Routes {
|
|
|
44145
44267
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
44146
44268
|
user_identity_phone_number?: (string | null) | undefined;
|
|
44147
44269
|
/** */
|
|
44148
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
44270
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
44149
44271
|
/** */
|
|
44150
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
44272
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
44151
44273
|
/** Warnings associated with the `acs_user`. */
|
|
44152
44274
|
warnings: Array<{
|
|
44153
44275
|
created_at: string;
|
|
@@ -44256,9 +44378,9 @@ interface Routes {
|
|
|
44256
44378
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
44257
44379
|
user_identity_phone_number?: (string | null) | undefined;
|
|
44258
44380
|
/** */
|
|
44259
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
44381
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
44260
44382
|
/** */
|
|
44261
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
44383
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
44262
44384
|
/** Warnings associated with the `acs_user`. */
|
|
44263
44385
|
warnings: Array<{
|
|
44264
44386
|
created_at: string;
|
|
@@ -44464,9 +44586,9 @@ interface Routes {
|
|
|
44464
44586
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
44465
44587
|
user_identity_phone_number?: (string | null) | undefined;
|
|
44466
44588
|
/** */
|
|
44467
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
44589
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
44468
44590
|
/** */
|
|
44469
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
44591
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
44470
44592
|
/** Warnings associated with the `acs_user`. */
|
|
44471
44593
|
warnings: Array<{
|
|
44472
44594
|
created_at: string;
|
|
@@ -44570,9 +44692,9 @@ interface Routes {
|
|
|
44570
44692
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
44571
44693
|
user_identity_phone_number?: (string | null) | undefined;
|
|
44572
44694
|
/** */
|
|
44573
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
44695
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
44574
44696
|
/** */
|
|
44575
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
44697
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
44576
44698
|
/** Warnings associated with the `acs_user`. */
|
|
44577
44699
|
warnings: Array<{
|
|
44578
44700
|
created_at: string;
|
|
@@ -44845,9 +44967,9 @@ interface Routes {
|
|
|
44845
44967
|
/** 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
44968
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
44847
44969
|
/** 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;
|
|
44970
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
44849
44971
|
/** 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;
|
|
44972
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
44851
44973
|
/** Visionline-specific metadata for the credential. */
|
|
44852
44974
|
visionline_metadata?: {
|
|
44853
44975
|
card_function_type: 'guest' | 'staff';
|
|
@@ -44938,9 +45060,9 @@ interface Routes {
|
|
|
44938
45060
|
/** 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
45061
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
44940
45062
|
/** 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;
|
|
45063
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
44942
45064
|
/** 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;
|
|
45065
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
44944
45066
|
/** Visionline-specific metadata for the credential. */
|
|
44945
45067
|
visionline_metadata?: {
|
|
44946
45068
|
card_function_type: 'guest' | 'staff';
|
|
@@ -45068,9 +45190,9 @@ interface Routes {
|
|
|
45068
45190
|
/** 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
45191
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
45070
45192
|
/** 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;
|
|
45193
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
45072
45194
|
/** 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;
|
|
45195
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
45074
45196
|
/** Visionline-specific metadata for the credential. */
|
|
45075
45197
|
visionline_metadata?: {
|
|
45076
45198
|
card_function_type: 'guest' | 'staff';
|
|
@@ -45161,9 +45283,9 @@ interface Routes {
|
|
|
45161
45283
|
/** 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
45284
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
45163
45285
|
/** 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;
|
|
45286
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
45165
45287
|
/** 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;
|
|
45288
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
45167
45289
|
/** Visionline-specific metadata for the credential. */
|
|
45168
45290
|
visionline_metadata?: {
|
|
45169
45291
|
card_function_type: 'guest' | 'staff';
|
|
@@ -45649,9 +45771,9 @@ interface Routes {
|
|
|
45649
45771
|
/** 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
45772
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
45651
45773
|
/** 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;
|
|
45774
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
45653
45775
|
/** 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;
|
|
45776
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
45655
45777
|
/** Visionline-specific metadata for the credential. */
|
|
45656
45778
|
visionline_metadata?: {
|
|
45657
45779
|
card_function_type: 'guest' | 'staff';
|
|
@@ -45742,9 +45864,9 @@ interface Routes {
|
|
|
45742
45864
|
/** 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
45865
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
45744
45866
|
/** 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;
|
|
45867
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
45746
45868
|
/** 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;
|
|
45869
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
45748
45870
|
/** Visionline-specific metadata for the credential. */
|
|
45749
45871
|
visionline_metadata?: {
|
|
45750
45872
|
card_function_type: 'guest' | 'staff';
|
|
@@ -45872,9 +45994,9 @@ interface Routes {
|
|
|
45872
45994
|
/** 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
45995
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
45874
45996
|
/** 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;
|
|
45997
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
45876
45998
|
/** 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;
|
|
45999
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
45878
46000
|
/** Visionline-specific metadata for the credential. */
|
|
45879
46001
|
visionline_metadata?: {
|
|
45880
46002
|
card_function_type: 'guest' | 'staff';
|
|
@@ -45965,9 +46087,9 @@ interface Routes {
|
|
|
45965
46087
|
/** 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
46088
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
45967
46089
|
/** 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;
|
|
46090
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
45969
46091
|
/** 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;
|
|
46092
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
45971
46093
|
/** Visionline-specific metadata for the credential. */
|
|
45972
46094
|
visionline_metadata?: {
|
|
45973
46095
|
card_function_type: 'guest' | 'staff';
|
|
@@ -47183,7 +47305,10 @@ interface Routes {
|
|
|
47183
47305
|
/** Date and time at which the thermostat schedule was created. */
|
|
47184
47306
|
created_at: string;
|
|
47185
47307
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
47186
|
-
errors
|
|
47308
|
+
errors: Array<{
|
|
47309
|
+
error_code: string;
|
|
47310
|
+
message: string;
|
|
47311
|
+
}>;
|
|
47187
47312
|
} | null) | undefined;
|
|
47188
47313
|
min_cooling_set_point_celsius?: number | undefined;
|
|
47189
47314
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -47737,7 +47862,10 @@ interface Routes {
|
|
|
47737
47862
|
/** Date and time at which the thermostat schedule was created. */
|
|
47738
47863
|
created_at: string;
|
|
47739
47864
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
47740
|
-
errors
|
|
47865
|
+
errors: Array<{
|
|
47866
|
+
error_code: string;
|
|
47867
|
+
message: string;
|
|
47868
|
+
}>;
|
|
47741
47869
|
} | null) | undefined;
|
|
47742
47870
|
min_cooling_set_point_celsius?: number | undefined;
|
|
47743
47871
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -50890,7 +51018,10 @@ interface Routes {
|
|
|
50890
51018
|
/** Date and time at which the thermostat schedule was created. */
|
|
50891
51019
|
created_at: string;
|
|
50892
51020
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
50893
|
-
errors
|
|
51021
|
+
errors: Array<{
|
|
51022
|
+
error_code: string;
|
|
51023
|
+
message: string;
|
|
51024
|
+
}>;
|
|
50894
51025
|
} | null) | undefined;
|
|
50895
51026
|
min_cooling_set_point_celsius?: number | undefined;
|
|
50896
51027
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -51407,7 +51538,10 @@ interface Routes {
|
|
|
51407
51538
|
/** Date and time at which the thermostat schedule was created. */
|
|
51408
51539
|
created_at: string;
|
|
51409
51540
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
51410
|
-
errors
|
|
51541
|
+
errors: Array<{
|
|
51542
|
+
error_code: string;
|
|
51543
|
+
message: string;
|
|
51544
|
+
}>;
|
|
51411
51545
|
} | null) | undefined;
|
|
51412
51546
|
min_cooling_set_point_celsius?: number | undefined;
|
|
51413
51547
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -51961,7 +52095,10 @@ interface Routes {
|
|
|
51961
52095
|
/** Date and time at which the thermostat schedule was created. */
|
|
51962
52096
|
created_at: string;
|
|
51963
52097
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
51964
|
-
errors
|
|
52098
|
+
errors: Array<{
|
|
52099
|
+
error_code: string;
|
|
52100
|
+
message: string;
|
|
52101
|
+
}>;
|
|
51965
52102
|
} | null) | undefined;
|
|
51966
52103
|
min_cooling_set_point_celsius?: number | undefined;
|
|
51967
52104
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -52478,7 +52615,10 @@ interface Routes {
|
|
|
52478
52615
|
/** Date and time at which the thermostat schedule was created. */
|
|
52479
52616
|
created_at: string;
|
|
52480
52617
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
52481
|
-
errors
|
|
52618
|
+
errors: Array<{
|
|
52619
|
+
error_code: string;
|
|
52620
|
+
message: string;
|
|
52621
|
+
}>;
|
|
52482
52622
|
} | null) | undefined;
|
|
52483
52623
|
min_cooling_set_point_celsius?: number | undefined;
|
|
52484
52624
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -52721,9 +52861,9 @@ interface Routes {
|
|
|
52721
52861
|
/** 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
52862
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
52723
52863
|
/** 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;
|
|
52864
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
52725
52865
|
/** 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;
|
|
52866
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
52727
52867
|
/** Visionline-specific metadata for the credential. */
|
|
52728
52868
|
visionline_metadata?: {
|
|
52729
52869
|
card_function_type: 'guest' | 'staff';
|
|
@@ -52814,9 +52954,9 @@ interface Routes {
|
|
|
52814
52954
|
/** 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
52955
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
52816
52956
|
/** 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;
|
|
52957
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
52818
52958
|
/** 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;
|
|
52959
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
52820
52960
|
/** Visionline-specific metadata for the credential. */
|
|
52821
52961
|
visionline_metadata?: {
|
|
52822
52962
|
card_function_type: 'guest' | 'staff';
|
|
@@ -52944,9 +53084,9 @@ interface Routes {
|
|
|
52944
53084
|
/** 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
53085
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
52946
53086
|
/** 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;
|
|
53087
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
52948
53088
|
/** 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;
|
|
53089
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
52950
53090
|
/** Visionline-specific metadata for the credential. */
|
|
52951
53091
|
visionline_metadata?: {
|
|
52952
53092
|
card_function_type: 'guest' | 'staff';
|
|
@@ -53037,9 +53177,9 @@ interface Routes {
|
|
|
53037
53177
|
/** 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
53178
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
53039
53179
|
/** 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;
|
|
53180
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
53041
53181
|
/** 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;
|
|
53182
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
53043
53183
|
/** Visionline-specific metadata for the credential. */
|
|
53044
53184
|
visionline_metadata?: {
|
|
53045
53185
|
card_function_type: 'guest' | 'staff';
|
|
@@ -53526,9 +53666,9 @@ interface Routes {
|
|
|
53526
53666
|
/** 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
53667
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
53528
53668
|
/** 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;
|
|
53669
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
53530
53670
|
/** 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;
|
|
53671
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
53532
53672
|
/** Visionline-specific metadata for the credential. */
|
|
53533
53673
|
visionline_metadata?: {
|
|
53534
53674
|
card_function_type: 'guest' | 'staff';
|
|
@@ -53619,9 +53759,9 @@ interface Routes {
|
|
|
53619
53759
|
/** 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
53760
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
53621
53761
|
/** 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;
|
|
53762
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
53623
53763
|
/** 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;
|
|
53764
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
53625
53765
|
/** Visionline-specific metadata for the credential. */
|
|
53626
53766
|
visionline_metadata?: {
|
|
53627
53767
|
card_function_type: 'guest' | 'staff';
|
|
@@ -53749,9 +53889,9 @@ interface Routes {
|
|
|
53749
53889
|
/** 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
53890
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
53751
53891
|
/** 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;
|
|
53892
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
53753
53893
|
/** 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;
|
|
53894
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
53755
53895
|
/** Visionline-specific metadata for the credential. */
|
|
53756
53896
|
visionline_metadata?: {
|
|
53757
53897
|
card_function_type: 'guest' | 'staff';
|
|
@@ -53842,9 +53982,9 @@ interface Routes {
|
|
|
53842
53982
|
/** 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
53983
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
53844
53984
|
/** 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;
|
|
53985
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
53846
53986
|
/** 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;
|
|
53987
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
53848
53988
|
/** Visionline-specific metadata for the credential. */
|
|
53849
53989
|
visionline_metadata?: {
|
|
53850
53990
|
card_function_type: 'guest' | 'staff';
|
|
@@ -54676,7 +54816,10 @@ interface Routes {
|
|
|
54676
54816
|
/** Date and time at which the thermostat schedule was created. */
|
|
54677
54817
|
created_at: string;
|
|
54678
54818
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
54679
|
-
errors
|
|
54819
|
+
errors: Array<{
|
|
54820
|
+
error_code: string;
|
|
54821
|
+
message: string;
|
|
54822
|
+
}>;
|
|
54680
54823
|
} | null) | undefined;
|
|
54681
54824
|
min_cooling_set_point_celsius?: number | undefined;
|
|
54682
54825
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -55193,7 +55336,10 @@ interface Routes {
|
|
|
55193
55336
|
/** Date and time at which the thermostat schedule was created. */
|
|
55194
55337
|
created_at: string;
|
|
55195
55338
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
55196
|
-
errors
|
|
55339
|
+
errors: Array<{
|
|
55340
|
+
error_code: string;
|
|
55341
|
+
message: string;
|
|
55342
|
+
}>;
|
|
55197
55343
|
} | null) | undefined;
|
|
55198
55344
|
min_cooling_set_point_celsius?: number | undefined;
|
|
55199
55345
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -55441,9 +55587,9 @@ interface Routes {
|
|
|
55441
55587
|
/** 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
55588
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
55443
55589
|
/** 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;
|
|
55590
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
55445
55591
|
/** 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;
|
|
55592
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
55447
55593
|
/** Visionline-specific metadata for the credential. */
|
|
55448
55594
|
visionline_metadata?: {
|
|
55449
55595
|
card_function_type: 'guest' | 'staff';
|
|
@@ -55534,9 +55680,9 @@ interface Routes {
|
|
|
55534
55680
|
/** 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
55681
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
55536
55682
|
/** 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;
|
|
55683
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
55538
55684
|
/** 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;
|
|
55685
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
55540
55686
|
/** Visionline-specific metadata for the credential. */
|
|
55541
55687
|
visionline_metadata?: {
|
|
55542
55688
|
card_function_type: 'guest' | 'staff';
|
|
@@ -55664,9 +55810,9 @@ interface Routes {
|
|
|
55664
55810
|
/** 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
55811
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
55666
55812
|
/** 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;
|
|
55813
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
55668
55814
|
/** 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;
|
|
55815
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
55670
55816
|
/** Visionline-specific metadata for the credential. */
|
|
55671
55817
|
visionline_metadata?: {
|
|
55672
55818
|
card_function_type: 'guest' | 'staff';
|
|
@@ -55757,9 +55903,9 @@ interface Routes {
|
|
|
55757
55903
|
/** 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
55904
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
55759
55905
|
/** 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;
|
|
55906
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
55761
55907
|
/** 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;
|
|
55908
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
55763
55909
|
/** Visionline-specific metadata for the credential. */
|
|
55764
55910
|
visionline_metadata?: {
|
|
55765
55911
|
card_function_type: 'guest' | 'staff';
|
|
@@ -56256,9 +56402,9 @@ interface Routes {
|
|
|
56256
56402
|
/** 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
56403
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
56258
56404
|
/** 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;
|
|
56405
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
56260
56406
|
/** 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;
|
|
56407
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
56262
56408
|
/** Visionline-specific metadata for the credential. */
|
|
56263
56409
|
visionline_metadata?: {
|
|
56264
56410
|
card_function_type: 'guest' | 'staff';
|
|
@@ -56349,9 +56495,9 @@ interface Routes {
|
|
|
56349
56495
|
/** 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
56496
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
56351
56497
|
/** 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;
|
|
56498
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
56353
56499
|
/** 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;
|
|
56500
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
56355
56501
|
/** Visionline-specific metadata for the credential. */
|
|
56356
56502
|
visionline_metadata?: {
|
|
56357
56503
|
card_function_type: 'guest' | 'staff';
|
|
@@ -56479,9 +56625,9 @@ interface Routes {
|
|
|
56479
56625
|
/** 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
56626
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
56481
56627
|
/** 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;
|
|
56628
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
56483
56629
|
/** 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;
|
|
56630
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
56485
56631
|
/** Visionline-specific metadata for the credential. */
|
|
56486
56632
|
visionline_metadata?: {
|
|
56487
56633
|
card_function_type: 'guest' | 'staff';
|
|
@@ -56572,9 +56718,9 @@ interface Routes {
|
|
|
56572
56718
|
/** 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
56719
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
56574
56720
|
/** 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;
|
|
56721
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
56576
56722
|
/** 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;
|
|
56723
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
56578
56724
|
/** Visionline-specific metadata for the credential. */
|
|
56579
56725
|
visionline_metadata?: {
|
|
56580
56726
|
card_function_type: 'guest' | 'staff';
|
|
@@ -57110,9 +57256,9 @@ interface Routes {
|
|
|
57110
57256
|
/** 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
57257
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
57112
57258
|
/** 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;
|
|
57259
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
57114
57260
|
/** 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;
|
|
57261
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
57116
57262
|
/** Visionline-specific metadata for the credential. */
|
|
57117
57263
|
visionline_metadata?: {
|
|
57118
57264
|
card_function_type: 'guest' | 'staff';
|
|
@@ -57203,9 +57349,9 @@ interface Routes {
|
|
|
57203
57349
|
/** 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
57350
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
57205
57351
|
/** 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;
|
|
57352
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
57207
57353
|
/** 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;
|
|
57354
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
57209
57355
|
/** Visionline-specific metadata for the credential. */
|
|
57210
57356
|
visionline_metadata?: {
|
|
57211
57357
|
card_function_type: 'guest' | 'staff';
|
|
@@ -57333,9 +57479,9 @@ interface Routes {
|
|
|
57333
57479
|
/** 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
57480
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
57335
57481
|
/** 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;
|
|
57482
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
57337
57483
|
/** 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;
|
|
57484
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
57339
57485
|
/** Visionline-specific metadata for the credential. */
|
|
57340
57486
|
visionline_metadata?: {
|
|
57341
57487
|
card_function_type: 'guest' | 'staff';
|
|
@@ -57426,9 +57572,9 @@ interface Routes {
|
|
|
57426
57572
|
/** 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
57573
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
57428
57574
|
/** 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;
|
|
57575
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
57430
57576
|
/** 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;
|
|
57577
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
57432
57578
|
/** Visionline-specific metadata for the credential. */
|
|
57433
57579
|
visionline_metadata?: {
|
|
57434
57580
|
card_function_type: 'guest' | 'staff';
|
|
@@ -58099,9 +58245,9 @@ interface Routes {
|
|
|
58099
58245
|
/** 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
58246
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
58101
58247
|
/** 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;
|
|
58248
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
58103
58249
|
/** 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;
|
|
58250
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
58105
58251
|
/** Visionline-specific metadata for the credential. */
|
|
58106
58252
|
visionline_metadata?: {
|
|
58107
58253
|
card_function_type: 'guest' | 'staff';
|
|
@@ -58192,9 +58338,9 @@ interface Routes {
|
|
|
58192
58338
|
/** 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
58339
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
58194
58340
|
/** 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;
|
|
58341
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
58196
58342
|
/** 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;
|
|
58343
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
58198
58344
|
/** Visionline-specific metadata for the credential. */
|
|
58199
58345
|
visionline_metadata?: {
|
|
58200
58346
|
card_function_type: 'guest' | 'staff';
|
|
@@ -58322,9 +58468,9 @@ interface Routes {
|
|
|
58322
58468
|
/** 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
58469
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
58324
58470
|
/** 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;
|
|
58471
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
58326
58472
|
/** 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;
|
|
58473
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
58328
58474
|
/** Visionline-specific metadata for the credential. */
|
|
58329
58475
|
visionline_metadata?: {
|
|
58330
58476
|
card_function_type: 'guest' | 'staff';
|
|
@@ -58415,9 +58561,9 @@ interface Routes {
|
|
|
58415
58561
|
/** 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
58562
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
58417
58563
|
/** 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;
|
|
58564
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
58419
58565
|
/** 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;
|
|
58566
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
58421
58567
|
/** Visionline-specific metadata for the credential. */
|
|
58422
58568
|
visionline_metadata?: {
|
|
58423
58569
|
card_function_type: 'guest' | 'staff';
|
|
@@ -58910,9 +59056,9 @@ interface Routes {
|
|
|
58910
59056
|
/** 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
59057
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
58912
59058
|
/** 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;
|
|
59059
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
58914
59060
|
/** 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;
|
|
59061
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
58916
59062
|
/** Visionline-specific metadata for the credential. */
|
|
58917
59063
|
visionline_metadata?: {
|
|
58918
59064
|
card_function_type: 'guest' | 'staff';
|
|
@@ -59003,9 +59149,9 @@ interface Routes {
|
|
|
59003
59149
|
/** 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
59150
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
59005
59151
|
/** 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;
|
|
59152
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
59007
59153
|
/** 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;
|
|
59154
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
59009
59155
|
/** Visionline-specific metadata for the credential. */
|
|
59010
59156
|
visionline_metadata?: {
|
|
59011
59157
|
card_function_type: 'guest' | 'staff';
|
|
@@ -59133,9 +59279,9 @@ interface Routes {
|
|
|
59133
59279
|
/** 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
59280
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
59135
59281
|
/** 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;
|
|
59282
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
59137
59283
|
/** 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;
|
|
59284
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
59139
59285
|
/** Visionline-specific metadata for the credential. */
|
|
59140
59286
|
visionline_metadata?: {
|
|
59141
59287
|
card_function_type: 'guest' | 'staff';
|
|
@@ -59226,9 +59372,9 @@ interface Routes {
|
|
|
59226
59372
|
/** 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
59373
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
59228
59374
|
/** 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;
|
|
59375
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
59230
59376
|
/** 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;
|
|
59377
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
59232
59378
|
/** Visionline-specific metadata for the credential. */
|
|
59233
59379
|
visionline_metadata?: {
|
|
59234
59380
|
card_function_type: 'guest' | 'staff';
|
|
@@ -60049,7 +60195,10 @@ interface Routes {
|
|
|
60049
60195
|
/** Date and time at which the thermostat schedule was created. */
|
|
60050
60196
|
created_at: string;
|
|
60051
60197
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
60052
|
-
errors
|
|
60198
|
+
errors: Array<{
|
|
60199
|
+
error_code: string;
|
|
60200
|
+
message: string;
|
|
60201
|
+
}>;
|
|
60053
60202
|
} | null) | undefined;
|
|
60054
60203
|
min_cooling_set_point_celsius?: number | undefined;
|
|
60055
60204
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -60298,9 +60447,9 @@ interface Routes {
|
|
|
60298
60447
|
/** 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
60448
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
60300
60449
|
/** 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;
|
|
60450
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
60302
60451
|
/** 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;
|
|
60452
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
60304
60453
|
/** Visionline-specific metadata for the credential. */
|
|
60305
60454
|
visionline_metadata?: {
|
|
60306
60455
|
card_function_type: 'guest' | 'staff';
|
|
@@ -60391,9 +60540,9 @@ interface Routes {
|
|
|
60391
60540
|
/** 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
60541
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
60393
60542
|
/** 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;
|
|
60543
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
60395
60544
|
/** 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;
|
|
60545
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
60397
60546
|
/** Visionline-specific metadata for the credential. */
|
|
60398
60547
|
visionline_metadata?: {
|
|
60399
60548
|
card_function_type: 'guest' | 'staff';
|
|
@@ -60521,9 +60670,9 @@ interface Routes {
|
|
|
60521
60670
|
/** 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
60671
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
60523
60672
|
/** 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;
|
|
60673
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
60525
60674
|
/** 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;
|
|
60675
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
60527
60676
|
/** Visionline-specific metadata for the credential. */
|
|
60528
60677
|
visionline_metadata?: {
|
|
60529
60678
|
card_function_type: 'guest' | 'staff';
|
|
@@ -60614,9 +60763,9 @@ interface Routes {
|
|
|
60614
60763
|
/** 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
60764
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
60616
60765
|
/** 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;
|
|
60766
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
60618
60767
|
/** 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;
|
|
60768
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
60620
60769
|
/** Visionline-specific metadata for the credential. */
|
|
60621
60770
|
visionline_metadata?: {
|
|
60622
60771
|
card_function_type: 'guest' | 'staff';
|
|
@@ -61113,9 +61262,9 @@ interface Routes {
|
|
|
61113
61262
|
/** 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
61263
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
61115
61264
|
/** 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;
|
|
61265
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
61117
61266
|
/** 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;
|
|
61267
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
61119
61268
|
/** Visionline-specific metadata for the credential. */
|
|
61120
61269
|
visionline_metadata?: {
|
|
61121
61270
|
card_function_type: 'guest' | 'staff';
|
|
@@ -61206,9 +61355,9 @@ interface Routes {
|
|
|
61206
61355
|
/** 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
61356
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
61208
61357
|
/** 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;
|
|
61358
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
61210
61359
|
/** 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;
|
|
61360
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
61212
61361
|
/** Visionline-specific metadata for the credential. */
|
|
61213
61362
|
visionline_metadata?: {
|
|
61214
61363
|
card_function_type: 'guest' | 'staff';
|
|
@@ -61336,9 +61485,9 @@ interface Routes {
|
|
|
61336
61485
|
/** 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
61486
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
61338
61487
|
/** 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;
|
|
61488
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
61340
61489
|
/** 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;
|
|
61490
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
61342
61491
|
/** Visionline-specific metadata for the credential. */
|
|
61343
61492
|
visionline_metadata?: {
|
|
61344
61493
|
card_function_type: 'guest' | 'staff';
|
|
@@ -61429,9 +61578,9 @@ interface Routes {
|
|
|
61429
61578
|
/** 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
61579
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
61431
61580
|
/** 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;
|
|
61581
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
61433
61582
|
/** 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;
|
|
61583
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
61435
61584
|
/** Visionline-specific metadata for the credential. */
|
|
61436
61585
|
visionline_metadata?: {
|
|
61437
61586
|
card_function_type: 'guest' | 'staff';
|
|
@@ -62229,7 +62378,10 @@ interface Routes {
|
|
|
62229
62378
|
/** Date and time at which the thermostat schedule was created. */
|
|
62230
62379
|
created_at: string;
|
|
62231
62380
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
62232
|
-
errors
|
|
62381
|
+
errors: Array<{
|
|
62382
|
+
error_code: string;
|
|
62383
|
+
message: string;
|
|
62384
|
+
}>;
|
|
62233
62385
|
} | null) | undefined;
|
|
62234
62386
|
min_cooling_set_point_celsius?: number | undefined;
|
|
62235
62387
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -62746,7 +62898,10 @@ interface Routes {
|
|
|
62746
62898
|
/** Date and time at which the thermostat schedule was created. */
|
|
62747
62899
|
created_at: string;
|
|
62748
62900
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
62749
|
-
errors
|
|
62901
|
+
errors: Array<{
|
|
62902
|
+
error_code: string;
|
|
62903
|
+
message: string;
|
|
62904
|
+
}>;
|
|
62750
62905
|
} | null) | undefined;
|
|
62751
62906
|
min_cooling_set_point_celsius?: number | undefined;
|
|
62752
62907
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -62991,9 +63146,9 @@ interface Routes {
|
|
|
62991
63146
|
/** 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
63147
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
62993
63148
|
/** 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;
|
|
63149
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
62995
63150
|
/** 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;
|
|
63151
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
62997
63152
|
/** Visionline-specific metadata for the credential. */
|
|
62998
63153
|
visionline_metadata?: {
|
|
62999
63154
|
card_function_type: 'guest' | 'staff';
|
|
@@ -63084,9 +63239,9 @@ interface Routes {
|
|
|
63084
63239
|
/** 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
63240
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
63086
63241
|
/** 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;
|
|
63242
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
63088
63243
|
/** 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;
|
|
63244
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
63090
63245
|
/** Visionline-specific metadata for the credential. */
|
|
63091
63246
|
visionline_metadata?: {
|
|
63092
63247
|
card_function_type: 'guest' | 'staff';
|
|
@@ -63214,9 +63369,9 @@ interface Routes {
|
|
|
63214
63369
|
/** 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
63370
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
63216
63371
|
/** 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;
|
|
63372
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
63218
63373
|
/** 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;
|
|
63374
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
63220
63375
|
/** Visionline-specific metadata for the credential. */
|
|
63221
63376
|
visionline_metadata?: {
|
|
63222
63377
|
card_function_type: 'guest' | 'staff';
|
|
@@ -63307,9 +63462,9 @@ interface Routes {
|
|
|
63307
63462
|
/** 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
63463
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
63309
63464
|
/** 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;
|
|
63465
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
63311
63466
|
/** 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;
|
|
63467
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
63313
63468
|
/** Visionline-specific metadata for the credential. */
|
|
63314
63469
|
visionline_metadata?: {
|
|
63315
63470
|
card_function_type: 'guest' | 'staff';
|
|
@@ -63661,7 +63816,10 @@ interface Routes {
|
|
|
63661
63816
|
/** Date and time at which the thermostat schedule was created. */
|
|
63662
63817
|
created_at: string;
|
|
63663
63818
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
63664
|
-
errors
|
|
63819
|
+
errors: Array<{
|
|
63820
|
+
error_code: string;
|
|
63821
|
+
message: string;
|
|
63822
|
+
}>;
|
|
63665
63823
|
};
|
|
63666
63824
|
};
|
|
63667
63825
|
};
|
|
@@ -63709,7 +63867,10 @@ interface Routes {
|
|
|
63709
63867
|
/** Date and time at which the thermostat schedule was created. */
|
|
63710
63868
|
created_at: string;
|
|
63711
63869
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
63712
|
-
errors
|
|
63870
|
+
errors: Array<{
|
|
63871
|
+
error_code: string;
|
|
63872
|
+
message: string;
|
|
63873
|
+
}>;
|
|
63713
63874
|
};
|
|
63714
63875
|
};
|
|
63715
63876
|
};
|
|
@@ -63746,7 +63907,10 @@ interface Routes {
|
|
|
63746
63907
|
/** Date and time at which the thermostat schedule was created. */
|
|
63747
63908
|
created_at: string;
|
|
63748
63909
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
63749
|
-
errors
|
|
63910
|
+
errors: Array<{
|
|
63911
|
+
error_code: string;
|
|
63912
|
+
message: string;
|
|
63913
|
+
}>;
|
|
63750
63914
|
}>;
|
|
63751
63915
|
};
|
|
63752
63916
|
};
|
|
@@ -63973,9 +64137,9 @@ interface Routes {
|
|
|
63973
64137
|
/** 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
64138
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
63975
64139
|
/** 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;
|
|
64140
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
63977
64141
|
/** 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;
|
|
64142
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
63979
64143
|
/** Visionline-specific metadata for the credential. */
|
|
63980
64144
|
visionline_metadata?: {
|
|
63981
64145
|
card_function_type: 'guest' | 'staff';
|
|
@@ -64066,9 +64230,9 @@ interface Routes {
|
|
|
64066
64230
|
/** 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
64231
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
64068
64232
|
/** 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;
|
|
64233
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
64070
64234
|
/** 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;
|
|
64235
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
64072
64236
|
/** Visionline-specific metadata for the credential. */
|
|
64073
64237
|
visionline_metadata?: {
|
|
64074
64238
|
card_function_type: 'guest' | 'staff';
|
|
@@ -64196,9 +64360,9 @@ interface Routes {
|
|
|
64196
64360
|
/** 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
64361
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
64198
64362
|
/** 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;
|
|
64363
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
64200
64364
|
/** 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;
|
|
64365
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
64202
64366
|
/** Visionline-specific metadata for the credential. */
|
|
64203
64367
|
visionline_metadata?: {
|
|
64204
64368
|
card_function_type: 'guest' | 'staff';
|
|
@@ -64289,9 +64453,9 @@ interface Routes {
|
|
|
64289
64453
|
/** 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
64454
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
64291
64455
|
/** 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;
|
|
64456
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
64293
64457
|
/** 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;
|
|
64458
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
64295
64459
|
/** Visionline-specific metadata for the credential. */
|
|
64296
64460
|
visionline_metadata?: {
|
|
64297
64461
|
card_function_type: 'guest' | 'staff';
|
|
@@ -64807,9 +64971,9 @@ interface Routes {
|
|
|
64807
64971
|
/** 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
64972
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
64809
64973
|
/** 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;
|
|
64974
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
64811
64975
|
/** 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;
|
|
64976
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
64813
64977
|
/** Visionline-specific metadata for the credential. */
|
|
64814
64978
|
visionline_metadata?: {
|
|
64815
64979
|
card_function_type: 'guest' | 'staff';
|
|
@@ -64900,9 +65064,9 @@ interface Routes {
|
|
|
64900
65064
|
/** 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
65065
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
64902
65066
|
/** 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;
|
|
65067
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
64904
65068
|
/** 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;
|
|
65069
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
64906
65070
|
/** Visionline-specific metadata for the credential. */
|
|
64907
65071
|
visionline_metadata?: {
|
|
64908
65072
|
card_function_type: 'guest' | 'staff';
|
|
@@ -65030,9 +65194,9 @@ interface Routes {
|
|
|
65030
65194
|
/** 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
65195
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
65032
65196
|
/** 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;
|
|
65197
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
65034
65198
|
/** 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;
|
|
65199
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
65036
65200
|
/** Visionline-specific metadata for the credential. */
|
|
65037
65201
|
visionline_metadata?: {
|
|
65038
65202
|
card_function_type: 'guest' | 'staff';
|
|
@@ -65123,9 +65287,9 @@ interface Routes {
|
|
|
65123
65287
|
/** 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
65288
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
65125
65289
|
/** 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;
|
|
65290
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
65127
65291
|
/** 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;
|
|
65292
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
65129
65293
|
/** Visionline-specific metadata for the credential. */
|
|
65130
65294
|
visionline_metadata?: {
|
|
65131
65295
|
card_function_type: 'guest' | 'staff';
|
|
@@ -66178,7 +66342,10 @@ interface Routes {
|
|
|
66178
66342
|
/** Date and time at which the thermostat schedule was created. */
|
|
66179
66343
|
created_at: string;
|
|
66180
66344
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
66181
|
-
errors
|
|
66345
|
+
errors: Array<{
|
|
66346
|
+
error_code: string;
|
|
66347
|
+
message: string;
|
|
66348
|
+
}>;
|
|
66182
66349
|
} | null) | undefined;
|
|
66183
66350
|
min_cooling_set_point_celsius?: number | undefined;
|
|
66184
66351
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -66697,7 +66864,10 @@ interface Routes {
|
|
|
66697
66864
|
/** Date and time at which the thermostat schedule was created. */
|
|
66698
66865
|
created_at: string;
|
|
66699
66866
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
66700
|
-
errors
|
|
66867
|
+
errors: Array<{
|
|
66868
|
+
error_code: string;
|
|
66869
|
+
message: string;
|
|
66870
|
+
}>;
|
|
66701
66871
|
} | null) | undefined;
|
|
66702
66872
|
min_cooling_set_point_celsius?: number | undefined;
|
|
66703
66873
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -66933,9 +67103,9 @@ interface Routes {
|
|
|
66933
67103
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
66934
67104
|
user_identity_phone_number?: (string | null) | undefined;
|
|
66935
67105
|
/** */
|
|
66936
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
67106
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
66937
67107
|
/** */
|
|
66938
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
67108
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
66939
67109
|
/** Warnings associated with the `acs_user`. */
|
|
66940
67110
|
warnings: Array<{
|
|
66941
67111
|
created_at: string;
|
|
@@ -67357,9 +67527,9 @@ interface Routes {
|
|
|
67357
67527
|
/** 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
67528
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
67359
67529
|
/** 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;
|
|
67530
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
67361
67531
|
/** 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;
|
|
67532
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
67363
67533
|
/** Visionline-specific metadata for the credential. */
|
|
67364
67534
|
visionline_metadata?: {
|
|
67365
67535
|
card_function_type: 'guest' | 'staff';
|
|
@@ -67450,9 +67620,9 @@ interface Routes {
|
|
|
67450
67620
|
/** 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
67621
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
67452
67622
|
/** 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;
|
|
67623
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
67454
67624
|
/** 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;
|
|
67625
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
67456
67626
|
/** Visionline-specific metadata for the credential. */
|
|
67457
67627
|
visionline_metadata?: {
|
|
67458
67628
|
card_function_type: 'guest' | 'staff';
|
|
@@ -67580,9 +67750,9 @@ interface Routes {
|
|
|
67580
67750
|
/** 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
67751
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
67582
67752
|
/** 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;
|
|
67753
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
67584
67754
|
/** 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;
|
|
67755
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
67586
67756
|
/** Visionline-specific metadata for the credential. */
|
|
67587
67757
|
visionline_metadata?: {
|
|
67588
67758
|
card_function_type: 'guest' | 'staff';
|
|
@@ -67673,9 +67843,9 @@ interface Routes {
|
|
|
67673
67843
|
/** 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
67844
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
67675
67845
|
/** 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;
|
|
67846
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
67677
67847
|
/** 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;
|
|
67848
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
67679
67849
|
/** Visionline-specific metadata for the credential. */
|
|
67680
67850
|
visionline_metadata?: {
|
|
67681
67851
|
card_function_type: 'guest' | 'staff';
|