@seamapi/types 1.233.0 → 1.234.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.
@@ -2497,6 +2497,7 @@ export interface Routes {
2497
2497
  email?: string | undefined
2498
2498
  email_address?: string | undefined
2499
2499
  phone_number?: string | undefined
2500
+ is_managed: true
2500
2501
  }>
2501
2502
  }
2502
2503
  }
@@ -2607,8 +2608,12 @@ export interface Routes {
2607
2608
  joiner_acs_credential_ids?: string[] | undefined
2608
2609
  guest_acs_entrance_ids?: string[] | undefined
2609
2610
  common_acs_entrance_ids?: string[] | undefined
2611
+ is_valid?: boolean | undefined
2612
+ card_id?: string | undefined
2613
+ credential_id?: string | undefined
2610
2614
  }
2611
2615
  | undefined
2616
+ is_managed: true
2612
2617
  }
2613
2618
  }
2614
2619
  }
@@ -2683,8 +2688,12 @@ export interface Routes {
2683
2688
  joiner_acs_credential_ids?: string[] | undefined
2684
2689
  guest_acs_entrance_ids?: string[] | undefined
2685
2690
  common_acs_entrance_ids?: string[] | undefined
2691
+ is_valid?: boolean | undefined
2692
+ card_id?: string | undefined
2693
+ credential_id?: string | undefined
2686
2694
  }
2687
2695
  | undefined
2696
+ is_managed: true
2688
2697
  }
2689
2698
  }
2690
2699
  }
@@ -2749,8 +2758,12 @@ export interface Routes {
2749
2758
  joiner_acs_credential_ids?: string[] | undefined
2750
2759
  guest_acs_entrance_ids?: string[] | undefined
2751
2760
  common_acs_entrance_ids?: string[] | undefined
2761
+ is_valid?: boolean | undefined
2762
+ card_id?: string | undefined
2763
+ credential_id?: string | undefined
2752
2764
  }
2753
2765
  | undefined
2766
+ is_managed: true
2754
2767
  }
2755
2768
  }
2756
2769
  }
@@ -2820,8 +2833,12 @@ export interface Routes {
2820
2833
  joiner_acs_credential_ids?: string[] | undefined
2821
2834
  guest_acs_entrance_ids?: string[] | undefined
2822
2835
  common_acs_entrance_ids?: string[] | undefined
2836
+ is_valid?: boolean | undefined
2837
+ card_id?: string | undefined
2838
+ credential_id?: string | undefined
2823
2839
  }
2824
2840
  | undefined
2841
+ is_managed: true
2825
2842
  }>
2826
2843
  }
2827
2844
  }
@@ -2923,11 +2940,144 @@ export interface Routes {
2923
2940
  joiner_acs_credential_ids?: string[] | undefined
2924
2941
  guest_acs_entrance_ids?: string[] | undefined
2925
2942
  common_acs_entrance_ids?: string[] | undefined
2943
+ is_valid?: boolean | undefined
2944
+ card_id?: string | undefined
2945
+ credential_id?: string | undefined
2946
+ }
2947
+ | undefined
2948
+ is_managed: true
2949
+ }
2950
+ }
2951
+ }
2952
+ '/acs/credentials/unmanaged/get': {
2953
+ route: '/acs/credentials/unmanaged/get'
2954
+ method: 'GET' | 'POST'
2955
+ queryParams: {}
2956
+ jsonBody: {}
2957
+ commonParams: {
2958
+ acs_credential_id: string
2959
+ }
2960
+ formData: {}
2961
+ jsonResponse: {
2962
+ acs_credential: {
2963
+ acs_credential_id: string
2964
+ acs_user_id?: string | undefined
2965
+ acs_credential_pool_id?: string | undefined
2966
+ acs_system_id: string
2967
+ parent_acs_credential_id?: string | undefined
2968
+ display_name: string
2969
+ code?: (string | undefined) | null
2970
+ access_method: 'code' | 'card' | 'mobile_key'
2971
+ external_type?:
2972
+ | (
2973
+ | 'pti_card'
2974
+ | 'brivo_credential'
2975
+ | 'hid_credential'
2976
+ | 'visionline_card'
2977
+ | 'salto_ks_credential'
2978
+ )
2979
+ | undefined
2980
+ external_type_display_name?: string | undefined
2981
+ created_at: string
2982
+ workspace_id: string
2983
+ starts_at?: string | undefined
2984
+ ends_at?: string | undefined
2985
+ errors: Array<{
2986
+ error_code: string
2987
+ message: string
2988
+ }>
2989
+ warnings: Array<{
2990
+ warning_code: string
2991
+ message: string
2992
+ }>
2993
+ is_multi_phone_sync_credential?: boolean | undefined
2994
+ is_latest_desired_state_synced_with_provider?: boolean | undefined
2995
+ latest_desired_state_synced_with_provider_at?: string | undefined
2996
+ visionline_metadata?:
2997
+ | {
2998
+ card_function_type: 'guest' | 'staff'
2999
+ joiner_acs_credential_ids?: string[] | undefined
3000
+ guest_acs_entrance_ids?: string[] | undefined
3001
+ common_acs_entrance_ids?: string[] | undefined
3002
+ is_valid?: boolean | undefined
3003
+ card_id?: string | undefined
3004
+ credential_id?: string | undefined
2926
3005
  }
2927
3006
  | undefined
3007
+ is_managed: false
2928
3008
  }
2929
3009
  }
2930
3010
  }
3011
+ '/acs/credentials/unmanaged/list': {
3012
+ route: '/acs/credentials/unmanaged/list'
3013
+ method: 'GET' | 'POST'
3014
+ queryParams: {}
3015
+ jsonBody: {}
3016
+ commonParams:
3017
+ | {
3018
+ acs_user_id: string
3019
+ }
3020
+ | {
3021
+ acs_system_id: string
3022
+ }
3023
+ | {
3024
+ acs_user_id: string
3025
+ acs_system_id: string
3026
+ }
3027
+ | {
3028
+ user_identity_id: string
3029
+ }
3030
+ formData: {}
3031
+ jsonResponse: {
3032
+ acs_credentials: Array<{
3033
+ acs_credential_id: string
3034
+ acs_user_id?: string | undefined
3035
+ acs_credential_pool_id?: string | undefined
3036
+ acs_system_id: string
3037
+ parent_acs_credential_id?: string | undefined
3038
+ display_name: string
3039
+ code?: (string | undefined) | null
3040
+ access_method: 'code' | 'card' | 'mobile_key'
3041
+ external_type?:
3042
+ | (
3043
+ | 'pti_card'
3044
+ | 'brivo_credential'
3045
+ | 'hid_credential'
3046
+ | 'visionline_card'
3047
+ | 'salto_ks_credential'
3048
+ )
3049
+ | undefined
3050
+ external_type_display_name?: string | undefined
3051
+ created_at: string
3052
+ workspace_id: string
3053
+ starts_at?: string | undefined
3054
+ ends_at?: string | undefined
3055
+ errors: Array<{
3056
+ error_code: string
3057
+ message: string
3058
+ }>
3059
+ warnings: Array<{
3060
+ warning_code: string
3061
+ message: string
3062
+ }>
3063
+ is_multi_phone_sync_credential?: boolean | undefined
3064
+ is_latest_desired_state_synced_with_provider?: boolean | undefined
3065
+ latest_desired_state_synced_with_provider_at?: string | undefined
3066
+ visionline_metadata?:
3067
+ | {
3068
+ card_function_type: 'guest' | 'staff'
3069
+ joiner_acs_credential_ids?: string[] | undefined
3070
+ guest_acs_entrance_ids?: string[] | undefined
3071
+ common_acs_entrance_ids?: string[] | undefined
3072
+ is_valid?: boolean | undefined
3073
+ card_id?: string | undefined
3074
+ credential_id?: string | undefined
3075
+ }
3076
+ | undefined
3077
+ is_managed: false
3078
+ }>
3079
+ }
3080
+ }
2931
3081
  '/acs/credentials/update': {
2932
3082
  route: '/acs/credentials/update'
2933
3083
  method: 'PATCH' | 'POST'
@@ -2980,8 +3130,12 @@ export interface Routes {
2980
3130
  joiner_acs_credential_ids?: string[] | undefined
2981
3131
  guest_acs_entrance_ids?: string[] | undefined
2982
3132
  common_acs_entrance_ids?: string[] | undefined
3133
+ is_valid?: boolean | undefined
3134
+ card_id?: string | undefined
3135
+ credential_id?: string | undefined
2983
3136
  }
2984
3137
  | undefined
3138
+ is_managed: true
2985
3139
  }
2986
3140
  }
2987
3141
  }
@@ -3143,8 +3297,12 @@ export interface Routes {
3143
3297
  joiner_acs_credential_ids?: string[] | undefined
3144
3298
  guest_acs_entrance_ids?: string[] | undefined
3145
3299
  common_acs_entrance_ids?: string[] | undefined
3300
+ is_valid?: boolean | undefined
3301
+ card_id?: string | undefined
3302
+ credential_id?: string | undefined
3146
3303
  }
3147
3304
  | undefined
3305
+ is_managed: true
3148
3306
  }>
3149
3307
  }
3150
3308
  }
@@ -3562,6 +3720,7 @@ export interface Routes {
3562
3720
  email?: string | undefined
3563
3721
  email_address?: string | undefined
3564
3722
  phone_number?: string | undefined
3723
+ is_managed: true
3565
3724
  }
3566
3725
  }
3567
3726
  }
@@ -3627,6 +3786,7 @@ export interface Routes {
3627
3786
  email?: string | undefined
3628
3787
  email_address?: string | undefined
3629
3788
  phone_number?: string | undefined
3789
+ is_managed: true
3630
3790
  }
3631
3791
  }
3632
3792
  }
@@ -3686,6 +3846,7 @@ export interface Routes {
3686
3846
  email?: string | undefined
3687
3847
  email_address?: string | undefined
3688
3848
  phone_number?: string | undefined
3849
+ is_managed: true
3689
3850
  }>
3690
3851
  }
3691
3852
  }
@@ -3821,6 +3982,7 @@ export interface Routes {
3821
3982
  email?: string | undefined
3822
3983
  email_address?: string | undefined
3823
3984
  phone_number?: string | undefined
3985
+ is_managed: true
3824
3986
  }
3825
3987
  }
3826
3988
  }
@@ -3830,7 +3992,11 @@ export interface Routes {
3830
3992
  queryParams: {}
3831
3993
  jsonBody: {}
3832
3994
  commonParams: {
3833
- acs_system_id: string
3995
+ user_identity_id?: string | undefined
3996
+ user_identity_phone_number?: string | undefined
3997
+ user_identity_email_address?: string | undefined
3998
+ acs_system_id?: string | undefined
3999
+ limit?: number
3834
4000
  }
3835
4001
  formData: {}
3836
4002
  jsonResponse: {
@@ -3875,6 +4041,7 @@ export interface Routes {
3875
4041
  email?: string | undefined
3876
4042
  email_address?: string | undefined
3877
4043
  phone_number?: string | undefined
4044
+ is_managed: false
3878
4045
  }>
3879
4046
  }
3880
4047
  }
@@ -18313,6 +18480,7 @@ export interface Routes {
18313
18480
  email?: string | undefined
18314
18481
  email_address?: string | undefined
18315
18482
  phone_number?: string | undefined
18483
+ is_managed: true
18316
18484
  }>
18317
18485
  }
18318
18486
  }
@@ -4,6 +4,7 @@ export {
4
4
  acs_credential,
5
5
  acs_entrance,
6
6
  acs_system,
7
+ acs_unmanaged_user,
7
8
  acs_user,
8
9
  action_attempt,
9
10
  client_session,
@@ -16,6 +17,7 @@ export {
16
17
  noise_threshold,
17
18
  seam_event,
18
19
  unmanaged_access_code,
20
+ unmanaged_acs_credential,
19
21
  unmanaged_device,
20
22
  user_identity,
21
23
  webhook,