@seamapi/types 1.369.2 → 1.370.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/dist/connect.cjs +370 -1
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +519 -28
  4. package/lib/seam/connect/internal/schemas.d.ts +1 -1
  5. package/lib/seam/connect/internal/schemas.js +1 -1
  6. package/lib/seam/connect/internal/schemas.js.map +1 -1
  7. package/lib/seam/connect/models/access-grants/access-grant.d.ts +57 -0
  8. package/lib/seam/connect/models/access-grants/access-grant.js +29 -0
  9. package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -0
  10. package/lib/seam/connect/models/access-grants/access-method.d.ts +21 -0
  11. package/lib/seam/connect/models/access-grants/access-method.js +24 -0
  12. package/lib/seam/connect/models/access-grants/access-method.js.map +1 -0
  13. package/lib/seam/connect/models/access-grants/index.d.ts +2 -0
  14. package/lib/seam/connect/models/access-grants/index.js +3 -0
  15. package/lib/seam/connect/models/access-grants/index.js.map +1 -0
  16. package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.d.ts +4 -4
  17. package/lib/seam/connect/models/acs/acs-credential.d.ts +4 -4
  18. package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +4 -4
  19. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +20 -20
  20. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +8 -8
  21. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +12 -12
  22. package/lib/seam/connect/models/bridges/{bridge_client_session.js → bridge-client-session.js} +1 -1
  23. package/lib/seam/connect/models/bridges/{bridge_client_session.js.map → bridge-client-session.js.map} +1 -1
  24. package/lib/seam/connect/models/bridges/bridge-connected-system.d.ts +30 -0
  25. package/lib/seam/connect/models/bridges/bridge-connected-system.js +17 -0
  26. package/lib/seam/connect/models/bridges/bridge-connected-system.js.map +1 -0
  27. package/lib/seam/connect/models/bridges/index.d.ts +2 -1
  28. package/lib/seam/connect/models/bridges/index.js +2 -1
  29. package/lib/seam/connect/models/bridges/index.js.map +1 -1
  30. package/lib/seam/connect/models/index.d.ts +1 -0
  31. package/lib/seam/connect/models/index.js +1 -0
  32. package/lib/seam/connect/models/index.js.map +1 -1
  33. package/lib/seam/connect/openapi.d.ts +402 -0
  34. package/lib/seam/connect/openapi.js +369 -0
  35. package/lib/seam/connect/openapi.js.map +1 -1
  36. package/lib/seam/connect/route-types.d.ts +89 -0
  37. package/package.json +1 -1
  38. package/src/lib/seam/connect/internal/schemas.ts +3 -0
  39. package/src/lib/seam/connect/models/access-grants/access-grant.ts +34 -0
  40. package/src/lib/seam/connect/models/access-grants/access-method.ts +28 -0
  41. package/src/lib/seam/connect/models/access-grants/index.ts +2 -0
  42. package/src/lib/seam/connect/models/bridges/bridge-connected-system.ts +19 -0
  43. package/src/lib/seam/connect/models/bridges/index.ts +2 -1
  44. package/src/lib/seam/connect/models/index.ts +1 -0
  45. package/src/lib/seam/connect/openapi.ts +394 -0
  46. package/src/lib/seam/connect/route-types.ts +96 -0
  47. /package/lib/seam/connect/models/bridges/{bridge_client_session.d.ts → bridge-client-session.d.ts} +0 -0
  48. /package/src/lib/seam/connect/models/bridges/{bridge_client_session.ts → bridge-client-session.ts} +0 -0
@@ -3683,6 +3683,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
3683
3683
  door_names?: string[] | undefined;
3684
3684
  } | undefined;
3685
3685
  is_one_time_use?: boolean | undefined;
3686
+ issued_at?: string | null | undefined;
3686
3687
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
3687
3688
  external_type_display_name?: string | undefined;
3688
3689
  acs_user_id?: string | undefined;
@@ -3690,7 +3691,6 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
3690
3691
  parent_acs_credential_id?: string | undefined;
3691
3692
  card_number?: string | null | undefined;
3692
3693
  is_issued?: boolean | undefined;
3693
- issued_at?: string | null | undefined;
3694
3694
  is_multi_phone_sync_credential?: boolean | undefined;
3695
3695
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
3696
3696
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -3752,6 +3752,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
3752
3752
  door_names?: string[] | undefined;
3753
3753
  } | undefined;
3754
3754
  is_one_time_use?: boolean | undefined;
3755
+ issued_at?: string | null | undefined;
3755
3756
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
3756
3757
  external_type_display_name?: string | undefined;
3757
3758
  acs_user_id?: string | undefined;
@@ -3759,7 +3760,6 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
3759
3760
  parent_acs_credential_id?: string | undefined;
3760
3761
  card_number?: string | null | undefined;
3761
3762
  is_issued?: boolean | undefined;
3762
- issued_at?: string | null | undefined;
3763
3763
  is_multi_phone_sync_credential?: boolean | undefined;
3764
3764
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
3765
3765
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -3982,6 +3982,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
3982
3982
  door_names?: string[] | undefined;
3983
3983
  } | undefined;
3984
3984
  is_one_time_use?: boolean | undefined;
3985
+ issued_at?: string | null | undefined;
3985
3986
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
3986
3987
  external_type_display_name?: string | undefined;
3987
3988
  acs_user_id?: string | undefined;
@@ -3989,7 +3990,6 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
3989
3990
  parent_acs_credential_id?: string | undefined;
3990
3991
  card_number?: string | null | undefined;
3991
3992
  is_issued?: boolean | undefined;
3992
- issued_at?: string | null | undefined;
3993
3993
  is_multi_phone_sync_credential?: boolean | undefined;
3994
3994
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
3995
3995
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -4051,6 +4051,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
4051
4051
  door_names?: string[] | undefined;
4052
4052
  } | undefined;
4053
4053
  is_one_time_use?: boolean | undefined;
4054
+ issued_at?: string | null | undefined;
4054
4055
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
4055
4056
  external_type_display_name?: string | undefined;
4056
4057
  acs_user_id?: string | undefined;
@@ -4058,7 +4059,6 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
4058
4059
  parent_acs_credential_id?: string | undefined;
4059
4060
  card_number?: string | null | undefined;
4060
4061
  is_issued?: boolean | undefined;
4061
- issued_at?: string | null | undefined;
4062
4062
  is_multi_phone_sync_credential?: boolean | undefined;
4063
4063
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
4064
4064
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -4967,11 +4967,11 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
4967
4967
  acs_system_id: string;
4968
4968
  acs_user_id: string;
4969
4969
  email?: string | undefined;
4970
+ user_identity_id?: string | undefined;
4970
4971
  external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
4971
4972
  external_type_display_name?: string | undefined;
4972
4973
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
4973
4974
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
4974
- user_identity_id?: string | undefined;
4975
4975
  email_address?: string | undefined;
4976
4976
  full_name?: string | undefined;
4977
4977
  phone_number?: string | undefined;
@@ -5069,11 +5069,11 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
5069
5069
  acs_system_id: string;
5070
5070
  acs_user_id: string;
5071
5071
  email?: string | undefined;
5072
+ user_identity_id?: string | undefined;
5072
5073
  external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
5073
5074
  external_type_display_name?: string | undefined;
5074
5075
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
5075
5076
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
5076
- user_identity_id?: string | undefined;
5077
5077
  email_address?: string | undefined;
5078
5078
  full_name?: string | undefined;
5079
5079
  phone_number?: string | undefined;
@@ -5486,11 +5486,11 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
5486
5486
  acs_system_id: string;
5487
5487
  acs_user_id: string;
5488
5488
  email?: string | undefined;
5489
+ user_identity_id?: string | undefined;
5489
5490
  external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
5490
5491
  external_type_display_name?: string | undefined;
5491
5492
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
5492
5493
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
5493
- user_identity_id?: string | undefined;
5494
5494
  email_address?: string | undefined;
5495
5495
  full_name?: string | undefined;
5496
5496
  phone_number?: string | undefined;
@@ -5588,11 +5588,11 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
5588
5588
  acs_system_id: string;
5589
5589
  acs_user_id: string;
5590
5590
  email?: string | undefined;
5591
+ user_identity_id?: string | undefined;
5591
5592
  external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
5592
5593
  external_type_display_name?: string | undefined;
5593
5594
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
5594
5595
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
5595
- user_identity_id?: string | undefined;
5596
5596
  email_address?: string | undefined;
5597
5597
  full_name?: string | undefined;
5598
5598
  phone_number?: string | undefined;
@@ -6142,6 +6142,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6142
6142
  door_names?: string[] | undefined;
6143
6143
  } | undefined;
6144
6144
  is_one_time_use?: boolean | undefined;
6145
+ issued_at?: string | null | undefined;
6145
6146
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
6146
6147
  external_type_display_name?: string | undefined;
6147
6148
  acs_user_id?: string | undefined;
@@ -6149,7 +6150,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6149
6150
  parent_acs_credential_id?: string | undefined;
6150
6151
  card_number?: string | null | undefined;
6151
6152
  is_issued?: boolean | undefined;
6152
- issued_at?: string | null | undefined;
6153
6153
  is_multi_phone_sync_credential?: boolean | undefined;
6154
6154
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
6155
6155
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -6211,6 +6211,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6211
6211
  door_names?: string[] | undefined;
6212
6212
  } | undefined;
6213
6213
  is_one_time_use?: boolean | undefined;
6214
+ issued_at?: string | null | undefined;
6214
6215
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
6215
6216
  external_type_display_name?: string | undefined;
6216
6217
  acs_user_id?: string | undefined;
@@ -6218,7 +6219,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6218
6219
  parent_acs_credential_id?: string | undefined;
6219
6220
  card_number?: string | null | undefined;
6220
6221
  is_issued?: boolean | undefined;
6221
- issued_at?: string | null | undefined;
6222
6222
  is_multi_phone_sync_credential?: boolean | undefined;
6223
6223
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
6224
6224
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -6440,6 +6440,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6440
6440
  door_names?: string[] | undefined;
6441
6441
  } | undefined;
6442
6442
  is_one_time_use?: boolean | undefined;
6443
+ issued_at?: string | null | undefined;
6443
6444
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
6444
6445
  external_type_display_name?: string | undefined;
6445
6446
  acs_user_id?: string | undefined;
@@ -6447,7 +6448,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6447
6448
  parent_acs_credential_id?: string | undefined;
6448
6449
  card_number?: string | null | undefined;
6449
6450
  is_issued?: boolean | undefined;
6450
- issued_at?: string | null | undefined;
6451
6451
  is_multi_phone_sync_credential?: boolean | undefined;
6452
6452
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
6453
6453
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -6509,6 +6509,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6509
6509
  door_names?: string[] | undefined;
6510
6510
  } | undefined;
6511
6511
  is_one_time_use?: boolean | undefined;
6512
+ issued_at?: string | null | undefined;
6512
6513
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
6513
6514
  external_type_display_name?: string | undefined;
6514
6515
  acs_user_id?: string | undefined;
@@ -6516,7 +6517,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6516
6517
  parent_acs_credential_id?: string | undefined;
6517
6518
  card_number?: string | null | undefined;
6518
6519
  is_issued?: boolean | undefined;
6519
- issued_at?: string | null | undefined;
6520
6520
  is_multi_phone_sync_credential?: boolean | undefined;
6521
6521
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
6522
6522
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -6615,6 +6615,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6615
6615
  door_names?: string[] | undefined;
6616
6616
  } | undefined;
6617
6617
  is_one_time_use?: boolean | undefined;
6618
+ issued_at?: string | null | undefined;
6618
6619
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
6619
6620
  external_type_display_name?: string | undefined;
6620
6621
  acs_user_id?: string | undefined;
@@ -6622,7 +6623,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6622
6623
  parent_acs_credential_id?: string | undefined;
6623
6624
  card_number?: string | null | undefined;
6624
6625
  is_issued?: boolean | undefined;
6625
- issued_at?: string | null | undefined;
6626
6626
  is_multi_phone_sync_credential?: boolean | undefined;
6627
6627
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
6628
6628
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -6684,6 +6684,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6684
6684
  door_names?: string[] | undefined;
6685
6685
  } | undefined;
6686
6686
  is_one_time_use?: boolean | undefined;
6687
+ issued_at?: string | null | undefined;
6687
6688
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
6688
6689
  external_type_display_name?: string | undefined;
6689
6690
  acs_user_id?: string | undefined;
@@ -6691,7 +6692,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6691
6692
  parent_acs_credential_id?: string | undefined;
6692
6693
  card_number?: string | null | undefined;
6693
6694
  is_issued?: boolean | undefined;
6694
- issued_at?: string | null | undefined;
6695
6695
  is_multi_phone_sync_credential?: boolean | undefined;
6696
6696
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
6697
6697
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -6780,6 +6780,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6780
6780
  door_names?: string[] | undefined;
6781
6781
  } | undefined;
6782
6782
  is_one_time_use?: boolean | undefined;
6783
+ issued_at?: string | null | undefined;
6783
6784
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
6784
6785
  external_type_display_name?: string | undefined;
6785
6786
  acs_user_id?: string | undefined;
@@ -6787,7 +6788,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6787
6788
  parent_acs_credential_id?: string | undefined;
6788
6789
  card_number?: string | null | undefined;
6789
6790
  is_issued?: boolean | undefined;
6790
- issued_at?: string | null | undefined;
6791
6791
  is_multi_phone_sync_credential?: boolean | undefined;
6792
6792
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
6793
6793
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -6849,6 +6849,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6849
6849
  door_names?: string[] | undefined;
6850
6850
  } | undefined;
6851
6851
  is_one_time_use?: boolean | undefined;
6852
+ issued_at?: string | null | undefined;
6852
6853
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
6853
6854
  external_type_display_name?: string | undefined;
6854
6855
  acs_user_id?: string | undefined;
@@ -6856,7 +6857,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6856
6857
  parent_acs_credential_id?: string | undefined;
6857
6858
  card_number?: string | null | undefined;
6858
6859
  is_issued?: boolean | undefined;
6859
- issued_at?: string | null | undefined;
6860
6860
  is_multi_phone_sync_credential?: boolean | undefined;
6861
6861
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
6862
6862
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -6950,6 +6950,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6950
6950
  door_names?: string[] | undefined;
6951
6951
  } | undefined;
6952
6952
  is_one_time_use?: boolean | undefined;
6953
+ issued_at?: string | null | undefined;
6953
6954
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
6954
6955
  external_type_display_name?: string | undefined;
6955
6956
  acs_user_id?: string | undefined;
@@ -6957,7 +6958,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6957
6958
  parent_acs_credential_id?: string | undefined;
6958
6959
  card_number?: string | null | undefined;
6959
6960
  is_issued?: boolean | undefined;
6960
- issued_at?: string | null | undefined;
6961
6961
  is_multi_phone_sync_credential?: boolean | undefined;
6962
6962
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
6963
6963
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -7019,6 +7019,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7019
7019
  door_names?: string[] | undefined;
7020
7020
  } | undefined;
7021
7021
  is_one_time_use?: boolean | undefined;
7022
+ issued_at?: string | null | undefined;
7022
7023
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
7023
7024
  external_type_display_name?: string | undefined;
7024
7025
  acs_user_id?: string | undefined;
@@ -7026,7 +7027,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7026
7027
  parent_acs_credential_id?: string | undefined;
7027
7028
  card_number?: string | null | undefined;
7028
7029
  is_issued?: boolean | undefined;
7029
- issued_at?: string | null | undefined;
7030
7030
  is_multi_phone_sync_credential?: boolean | undefined;
7031
7031
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
7032
7032
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -7121,6 +7121,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7121
7121
  door_names?: string[] | undefined;
7122
7122
  } | undefined;
7123
7123
  is_one_time_use?: boolean | undefined;
7124
+ issued_at?: string | null | undefined;
7124
7125
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
7125
7126
  external_type_display_name?: string | undefined;
7126
7127
  acs_user_id?: string | undefined;
@@ -7128,7 +7129,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7128
7129
  parent_acs_credential_id?: string | undefined;
7129
7130
  card_number?: string | null | undefined;
7130
7131
  is_issued?: boolean | undefined;
7131
- issued_at?: string | null | undefined;
7132
7132
  is_multi_phone_sync_credential?: boolean | undefined;
7133
7133
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
7134
7134
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -7190,6 +7190,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7190
7190
  door_names?: string[] | undefined;
7191
7191
  } | undefined;
7192
7192
  is_one_time_use?: boolean | undefined;
7193
+ issued_at?: string | null | undefined;
7193
7194
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
7194
7195
  external_type_display_name?: string | undefined;
7195
7196
  acs_user_id?: string | undefined;
@@ -7197,7 +7198,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7197
7198
  parent_acs_credential_id?: string | undefined;
7198
7199
  card_number?: string | null | undefined;
7199
7200
  is_issued?: boolean | undefined;
7200
- issued_at?: string | null | undefined;
7201
7201
  is_multi_phone_sync_credential?: boolean | undefined;
7202
7202
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
7203
7203
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -7517,6 +7517,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7517
7517
  door_names?: string[] | undefined;
7518
7518
  } | undefined;
7519
7519
  is_one_time_use?: boolean | undefined;
7520
+ issued_at?: string | null | undefined;
7520
7521
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
7521
7522
  external_type_display_name?: string | undefined;
7522
7523
  acs_user_id?: string | undefined;
@@ -7524,7 +7525,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7524
7525
  parent_acs_credential_id?: string | undefined;
7525
7526
  card_number?: string | null | undefined;
7526
7527
  is_issued?: boolean | undefined;
7527
- issued_at?: string | null | undefined;
7528
7528
  is_multi_phone_sync_credential?: boolean | undefined;
7529
7529
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
7530
7530
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -7586,6 +7586,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7586
7586
  door_names?: string[] | undefined;
7587
7587
  } | undefined;
7588
7588
  is_one_time_use?: boolean | undefined;
7589
+ issued_at?: string | null | undefined;
7589
7590
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
7590
7591
  external_type_display_name?: string | undefined;
7591
7592
  acs_user_id?: string | undefined;
@@ -7593,7 +7594,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7593
7594
  parent_acs_credential_id?: string | undefined;
7594
7595
  card_number?: string | null | undefined;
7595
7596
  is_issued?: boolean | undefined;
7596
- issued_at?: string | null | undefined;
7597
7597
  is_multi_phone_sync_credential?: boolean | undefined;
7598
7598
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
7599
7599
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -7815,6 +7815,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7815
7815
  door_names?: string[] | undefined;
7816
7816
  } | undefined;
7817
7817
  is_one_time_use?: boolean | undefined;
7818
+ issued_at?: string | null | undefined;
7818
7819
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
7819
7820
  external_type_display_name?: string | undefined;
7820
7821
  acs_user_id?: string | undefined;
@@ -7822,7 +7823,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7822
7823
  parent_acs_credential_id?: string | undefined;
7823
7824
  card_number?: string | null | undefined;
7824
7825
  is_issued?: boolean | undefined;
7825
- issued_at?: string | null | undefined;
7826
7826
  is_multi_phone_sync_credential?: boolean | undefined;
7827
7827
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
7828
7828
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -7884,6 +7884,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7884
7884
  door_names?: string[] | undefined;
7885
7885
  } | undefined;
7886
7886
  is_one_time_use?: boolean | undefined;
7887
+ issued_at?: string | null | undefined;
7887
7888
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
7888
7889
  external_type_display_name?: string | undefined;
7889
7890
  acs_user_id?: string | undefined;
@@ -7891,7 +7892,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7891
7892
  parent_acs_credential_id?: string | undefined;
7892
7893
  card_number?: string | null | undefined;
7893
7894
  is_issued?: boolean | undefined;
7894
- issued_at?: string | null | undefined;
7895
7895
  is_multi_phone_sync_credential?: boolean | undefined;
7896
7896
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
7897
7897
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -7958,6 +7958,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7958
7958
  door_names?: string[] | undefined;
7959
7959
  } | undefined;
7960
7960
  is_one_time_use?: boolean | undefined;
7961
+ issued_at?: string | null | undefined;
7961
7962
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
7962
7963
  external_type_display_name?: string | undefined;
7963
7964
  acs_user_id?: string | undefined;
@@ -7965,7 +7966,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7965
7966
  parent_acs_credential_id?: string | undefined;
7966
7967
  card_number?: string | null | undefined;
7967
7968
  is_issued?: boolean | undefined;
7968
- issued_at?: string | null | undefined;
7969
7969
  is_multi_phone_sync_credential?: boolean | undefined;
7970
7970
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
7971
7971
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -8027,6 +8027,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8027
8027
  door_names?: string[] | undefined;
8028
8028
  } | undefined;
8029
8029
  is_one_time_use?: boolean | undefined;
8030
+ issued_at?: string | null | undefined;
8030
8031
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
8031
8032
  external_type_display_name?: string | undefined;
8032
8033
  acs_user_id?: string | undefined;
@@ -8034,7 +8035,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8034
8035
  parent_acs_credential_id?: string | undefined;
8035
8036
  card_number?: string | null | undefined;
8036
8037
  is_issued?: boolean | undefined;
8037
- issued_at?: string | null | undefined;
8038
8038
  is_multi_phone_sync_credential?: boolean | undefined;
8039
8039
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
8040
8040
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -8102,6 +8102,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8102
8102
  door_names?: string[] | undefined;
8103
8103
  } | undefined;
8104
8104
  is_one_time_use?: boolean | undefined;
8105
+ issued_at?: string | null | undefined;
8105
8106
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
8106
8107
  external_type_display_name?: string | undefined;
8107
8108
  acs_user_id?: string | undefined;
@@ -8109,7 +8110,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8109
8110
  parent_acs_credential_id?: string | undefined;
8110
8111
  card_number?: string | null | undefined;
8111
8112
  is_issued?: boolean | undefined;
8112
- issued_at?: string | null | undefined;
8113
8113
  is_multi_phone_sync_credential?: boolean | undefined;
8114
8114
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
8115
8115
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -8171,6 +8171,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8171
8171
  door_names?: string[] | undefined;
8172
8172
  } | undefined;
8173
8173
  is_one_time_use?: boolean | undefined;
8174
+ issued_at?: string | null | undefined;
8174
8175
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
8175
8176
  external_type_display_name?: string | undefined;
8176
8177
  acs_user_id?: string | undefined;
@@ -8178,7 +8179,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8178
8179
  parent_acs_credential_id?: string | undefined;
8179
8180
  card_number?: string | null | undefined;
8180
8181
  is_issued?: boolean | undefined;
8181
- issued_at?: string | null | undefined;
8182
8182
  is_multi_phone_sync_credential?: boolean | undefined;
8183
8183
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
8184
8184
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
@@ -40591,6 +40591,166 @@ declare const _default: {
40591
40591
  'x-undocumented': string;
40592
40592
  };
40593
40593
  };
40594
+ '/seam/bridge/v1/bridge_connected_systems/list': {
40595
+ get: {
40596
+ description: string;
40597
+ operationId: string;
40598
+ responses: {
40599
+ 200: {
40600
+ content: {
40601
+ 'application/json': {
40602
+ schema: {
40603
+ properties: {
40604
+ bridge_connected_systems: {
40605
+ items: {
40606
+ properties: {
40607
+ acs_system_display_name: {
40608
+ type: string;
40609
+ };
40610
+ acs_system_id: {
40611
+ format: string;
40612
+ type: string;
40613
+ };
40614
+ bridge_created_at: {
40615
+ format: string;
40616
+ type: string;
40617
+ };
40618
+ bridge_id: {
40619
+ format: string;
40620
+ type: string;
40621
+ };
40622
+ connected_account_created_at: {
40623
+ format: string;
40624
+ type: string;
40625
+ };
40626
+ connected_account_id: {
40627
+ format: string;
40628
+ type: string;
40629
+ };
40630
+ workspace_display_name: {
40631
+ type: string;
40632
+ };
40633
+ workspace_id: {
40634
+ format: string;
40635
+ type: string;
40636
+ };
40637
+ };
40638
+ required: string[];
40639
+ type: string;
40640
+ 'x-route-path': string;
40641
+ 'x-undocumented': string;
40642
+ };
40643
+ type: string;
40644
+ };
40645
+ ok: {
40646
+ type: string;
40647
+ };
40648
+ };
40649
+ required: string[];
40650
+ type: string;
40651
+ };
40652
+ };
40653
+ };
40654
+ description: string;
40655
+ };
40656
+ 400: {
40657
+ description: string;
40658
+ };
40659
+ 401: {
40660
+ description: string;
40661
+ };
40662
+ };
40663
+ security: {
40664
+ bridge_client_session: never[];
40665
+ }[];
40666
+ summary: string;
40667
+ tags: never[];
40668
+ 'x-fern-ignore': boolean;
40669
+ 'x-response-key': string;
40670
+ 'x-title': string;
40671
+ 'x-undocumented': string;
40672
+ };
40673
+ post: {
40674
+ description: string;
40675
+ operationId: string;
40676
+ responses: {
40677
+ 200: {
40678
+ content: {
40679
+ 'application/json': {
40680
+ schema: {
40681
+ properties: {
40682
+ bridge_connected_systems: {
40683
+ items: {
40684
+ properties: {
40685
+ acs_system_display_name: {
40686
+ type: string;
40687
+ };
40688
+ acs_system_id: {
40689
+ format: string;
40690
+ type: string;
40691
+ };
40692
+ bridge_created_at: {
40693
+ format: string;
40694
+ type: string;
40695
+ };
40696
+ bridge_id: {
40697
+ format: string;
40698
+ type: string;
40699
+ };
40700
+ connected_account_created_at: {
40701
+ format: string;
40702
+ type: string;
40703
+ };
40704
+ connected_account_id: {
40705
+ format: string;
40706
+ type: string;
40707
+ };
40708
+ workspace_display_name: {
40709
+ type: string;
40710
+ };
40711
+ workspace_id: {
40712
+ format: string;
40713
+ type: string;
40714
+ };
40715
+ };
40716
+ required: string[];
40717
+ type: string;
40718
+ 'x-route-path': string;
40719
+ 'x-undocumented': string;
40720
+ };
40721
+ type: string;
40722
+ };
40723
+ ok: {
40724
+ type: string;
40725
+ };
40726
+ };
40727
+ required: string[];
40728
+ type: string;
40729
+ };
40730
+ };
40731
+ };
40732
+ description: string;
40733
+ };
40734
+ 400: {
40735
+ description: string;
40736
+ };
40737
+ 401: {
40738
+ description: string;
40739
+ };
40740
+ };
40741
+ security: {
40742
+ bridge_client_session: never[];
40743
+ }[];
40744
+ summary: string;
40745
+ tags: never[];
40746
+ 'x-fern-sdk-group-name': string[];
40747
+ 'x-fern-sdk-method-name': string;
40748
+ 'x-fern-sdk-return-value': string;
40749
+ 'x-response-key': string;
40750
+ 'x-title': string;
40751
+ 'x-undocumented': string;
40752
+ };
40753
+ };
40594
40754
  '/thermostats/activate_climate_preset': {
40595
40755
  post: {
40596
40756
  description: string;
@@ -43054,6 +43214,245 @@ declare const _default: {
43054
43214
  'x-title': string;
43055
43215
  };
43056
43216
  };
43217
+ '/unstable_access_grants/create': {
43218
+ post: {
43219
+ description: string;
43220
+ operationId: string;
43221
+ requestBody: {
43222
+ content: {
43223
+ 'application/json': {
43224
+ schema: {
43225
+ allOf: ({
43226
+ oneOf: ({
43227
+ properties: {
43228
+ user_identity_id: {
43229
+ description: string;
43230
+ format: string;
43231
+ type: string;
43232
+ };
43233
+ user_identity?: never;
43234
+ };
43235
+ type: string;
43236
+ } | {
43237
+ properties: {
43238
+ user_identity: {
43239
+ description: string;
43240
+ properties: {
43241
+ email_address: {
43242
+ description: string;
43243
+ format: string;
43244
+ nullable: boolean;
43245
+ type: string;
43246
+ };
43247
+ full_name: {
43248
+ minLength: number;
43249
+ nullable: boolean;
43250
+ type: string;
43251
+ };
43252
+ phone_number: {
43253
+ description: string;
43254
+ nullable: boolean;
43255
+ type: string;
43256
+ };
43257
+ };
43258
+ type: string;
43259
+ 'x-route-path': string;
43260
+ };
43261
+ user_identity_id?: never;
43262
+ };
43263
+ type: string;
43264
+ })[];
43265
+ properties?: never;
43266
+ required?: never;
43267
+ type?: never;
43268
+ } | {
43269
+ properties: {
43270
+ desired_access_methods: {
43271
+ items: {
43272
+ properties: {
43273
+ mode: {
43274
+ description: string;
43275
+ enum: string[];
43276
+ type: string;
43277
+ };
43278
+ };
43279
+ required: string[];
43280
+ type: string;
43281
+ };
43282
+ type: string;
43283
+ };
43284
+ ends_at: {
43285
+ description: string;
43286
+ format: string;
43287
+ type: string;
43288
+ };
43289
+ location: {
43290
+ description: string;
43291
+ properties: {
43292
+ acs_entrance_ids: {
43293
+ default: never[];
43294
+ description: string;
43295
+ items: {
43296
+ format: string;
43297
+ type: string;
43298
+ };
43299
+ type: string;
43300
+ };
43301
+ device_ids: {
43302
+ default: never[];
43303
+ description: string;
43304
+ items: {
43305
+ format: string;
43306
+ type: string;
43307
+ };
43308
+ type: string;
43309
+ };
43310
+ };
43311
+ type: string;
43312
+ };
43313
+ location_ids: {
43314
+ description: string;
43315
+ items: {
43316
+ format: string;
43317
+ type: string;
43318
+ };
43319
+ type: string;
43320
+ };
43321
+ starts_at: {
43322
+ description: string;
43323
+ format: string;
43324
+ type: string;
43325
+ };
43326
+ };
43327
+ required: string[];
43328
+ type: string;
43329
+ oneOf?: never;
43330
+ })[];
43331
+ };
43332
+ };
43333
+ };
43334
+ };
43335
+ responses: {
43336
+ 200: {
43337
+ content: {
43338
+ 'application/json': {
43339
+ schema: {
43340
+ properties: {
43341
+ access_grant: {
43342
+ properties: {
43343
+ access_grant_id: {
43344
+ description: string;
43345
+ format: string;
43346
+ type: string;
43347
+ };
43348
+ access_methods: {
43349
+ description: string;
43350
+ items: {
43351
+ properties: {
43352
+ access_method_key: {
43353
+ description: string;
43354
+ type: string;
43355
+ };
43356
+ created_at: {
43357
+ description: string;
43358
+ format: string;
43359
+ type: string;
43360
+ };
43361
+ display_name: {
43362
+ description: string;
43363
+ type: string;
43364
+ };
43365
+ issued_at: {
43366
+ description: string;
43367
+ format: string;
43368
+ nullable: boolean;
43369
+ type: string;
43370
+ };
43371
+ mode: {
43372
+ description: string;
43373
+ enum: string[];
43374
+ type: string;
43375
+ };
43376
+ };
43377
+ required: string[];
43378
+ type: string;
43379
+ 'x-undocumented': string;
43380
+ };
43381
+ type: string;
43382
+ };
43383
+ created_at: {
43384
+ description: string;
43385
+ format: string;
43386
+ type: string;
43387
+ };
43388
+ display_name: {
43389
+ description: string;
43390
+ type: string;
43391
+ };
43392
+ location_ids: {
43393
+ description: string;
43394
+ items: {
43395
+ format: string;
43396
+ type: string;
43397
+ };
43398
+ type: string;
43399
+ };
43400
+ user_identity_id: {
43401
+ description: string;
43402
+ format: string;
43403
+ type: string;
43404
+ };
43405
+ workspace_id: {
43406
+ description: string;
43407
+ format: string;
43408
+ type: string;
43409
+ };
43410
+ };
43411
+ required: string[];
43412
+ type: string;
43413
+ 'x-undocumented': string;
43414
+ };
43415
+ ok: {
43416
+ type: string;
43417
+ };
43418
+ };
43419
+ required: string[];
43420
+ type: string;
43421
+ };
43422
+ };
43423
+ };
43424
+ description: string;
43425
+ };
43426
+ 400: {
43427
+ description: string;
43428
+ };
43429
+ 401: {
43430
+ description: string;
43431
+ };
43432
+ };
43433
+ security: ({
43434
+ pat_with_workspace: never[];
43435
+ console_session_with_workspace?: never;
43436
+ api_key?: never;
43437
+ } | {
43438
+ console_session_with_workspace: never[];
43439
+ pat_with_workspace?: never;
43440
+ api_key?: never;
43441
+ } | {
43442
+ api_key: never[];
43443
+ pat_with_workspace?: never;
43444
+ console_session_with_workspace?: never;
43445
+ })[];
43446
+ summary: string;
43447
+ tags: never[];
43448
+ 'x-fern-sdk-group-name': string[];
43449
+ 'x-fern-sdk-method-name': string;
43450
+ 'x-fern-sdk-return-value': string;
43451
+ 'x-response-key': string;
43452
+ 'x-title': string;
43453
+ 'x-undocumented': string;
43454
+ };
43455
+ };
43057
43456
  '/unstable_locations/add_devices': {
43058
43457
  post: {
43059
43458
  description: string;
@@ -46004,6 +46403,9 @@ declare const _default: {
46004
46403
  webview_primary_button_text_color: {
46005
46404
  type: string;
46006
46405
  };
46406
+ webview_success_message: {
46407
+ type: string;
46408
+ };
46007
46409
  };
46008
46410
  required: string[];
46009
46411
  type: string;
@@ -75678,6 +76080,26 @@ interface Routes {
75678
76080
  };
75679
76081
  };
75680
76082
  };
76083
+ '/seam/bridge/v1/bridge_connected_systems/list': {
76084
+ route: '/seam/bridge/v1/bridge_connected_systems/list';
76085
+ method: 'GET' | 'POST';
76086
+ queryParams: {};
76087
+ jsonBody: {};
76088
+ commonParams: {};
76089
+ formData: {};
76090
+ jsonResponse: {
76091
+ bridge_connected_systems: Array<{
76092
+ bridge_id: string;
76093
+ bridge_created_at: string;
76094
+ connected_account_id: string;
76095
+ connected_account_created_at: string;
76096
+ acs_system_id: string;
76097
+ acs_system_display_name: string;
76098
+ workspace_id: string;
76099
+ workspace_display_name: string;
76100
+ }>;
76101
+ };
76102
+ };
75681
76103
  '/thermostats/activate_climate_preset': {
75682
76104
  route: '/thermostats/activate_climate_preset';
75683
76105
  method: 'POST';
@@ -84942,6 +85364,74 @@ interface Routes {
84942
85364
  formData: {};
84943
85365
  jsonResponse: {};
84944
85366
  };
85367
+ '/unstable_access_grants/create': {
85368
+ route: '/unstable_access_grants/create';
85369
+ method: 'POST';
85370
+ queryParams: {};
85371
+ jsonBody: {};
85372
+ commonParams: ({
85373
+ /** ID of user identity for whom access is being granted. */
85374
+ user_identity_id?: string | undefined;
85375
+ } | {
85376
+ /** When used, creates a new user identity with the given details, and grants them access. */
85377
+ user_identity?: {
85378
+ /** Unique email address for the user identity. */
85379
+ email_address?: (string | null) | undefined;
85380
+ /** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
85381
+ phone_number?: (string | null) | undefined;
85382
+ full_name?: (string | null) | undefined;
85383
+ } | undefined;
85384
+ }) & {
85385
+ /** Set of IDs of existing locations to which access is being granted. */
85386
+ location_ids?: string[] | undefined;
85387
+ /** When used, creates a new location with the given entrances and devices, and gives the user access to this location. */
85388
+ location?: {
85389
+ /** Set of IDs of the [entrances](https://docs.seam.co/latest/api/acs/systems/list) to add to the location to which access is being granted. */
85390
+ acs_entrance_ids?: string[];
85391
+ /** Set of IDs of the [devices](https://docs.seam.co/latest/api/devices/list) to add to the location to which access is being granted. */
85392
+ device_ids?: string[];
85393
+ } | undefined;
85394
+ desired_access_methods: Array<{
85395
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
85396
+ mode: 'code' | 'card' | 'mobile_key';
85397
+ }>;
85398
+ /** Date and time at which the validity of the new grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
85399
+ starts_at?: string | undefined;
85400
+ /** Date and time at which the validity of the new grant 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`. */
85401
+ ends_at?: string | undefined;
85402
+ };
85403
+ formData: {};
85404
+ jsonResponse: {
85405
+ /** */
85406
+ access_grant: {
85407
+ /** Unique identifier for the Seam workspace associated with the access grant. */
85408
+ workspace_id: string;
85409
+ /** ID of the access grant. */
85410
+ access_grant_id: string;
85411
+ /** ID of user identity to which access is being granted. */
85412
+ user_identity_id: string;
85413
+ /** IDs of the locations to which access is being given. */
85414
+ location_ids: string[];
85415
+ /** Access methods associated with this access grant. */
85416
+ access_methods: Array<{
85417
+ /** Key for the access method - unique within an access grant. */
85418
+ access_method_key: string;
85419
+ /** Display name of the access method. */
85420
+ display_name: string;
85421
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
85422
+ mode: 'code' | 'card' | 'mobile_key';
85423
+ /** Date and time at which the access method was created. */
85424
+ created_at: string;
85425
+ /** Date and time at which the access method was issued. */
85426
+ issued_at: string | null;
85427
+ }>;
85428
+ /** Display name of the access grant. */
85429
+ display_name: string;
85430
+ /** Date and time at which the access grant was created. */
85431
+ created_at: string;
85432
+ };
85433
+ };
85434
+ };
84945
85435
  '/unstable_locations/add_devices': {
84946
85436
  route: '/unstable_locations/add_devices';
84947
85437
  method: 'POST' | 'PUT';
@@ -87158,6 +87648,7 @@ interface Routes {
87158
87648
  webview_primary_button_color?: string | undefined;
87159
87649
  webview_primary_button_text_color?: string | undefined;
87160
87650
  webview_logo_shape?: ('circle' | 'square') | undefined;
87651
+ webview_success_message?: string | undefined;
87161
87652
  };
87162
87653
  commonParams: {};
87163
87654
  formData: {};