@seamapi/types 1.195.0 → 1.196.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +141 -48
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +115 -8
- package/lib/seam/connect/models/acs/acs-system.js +84 -29
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +22 -0
- package/lib/seam/connect/openapi.js +79 -18
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +93 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +105 -26
- package/src/lib/seam/connect/openapi.ts +98 -18
- package/src/lib/seam/connect/route-types.ts +93 -8
|
@@ -2943,8 +2943,11 @@ export interface Routes {
|
|
|
2943
2943
|
}
|
|
2944
2944
|
formData: {}
|
|
2945
2945
|
jsonResponse: {
|
|
2946
|
+
/** Represents an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
2946
2947
|
acs_system: {
|
|
2948
|
+
/** ID of the `acs_system`. */
|
|
2947
2949
|
acs_system_id: string
|
|
2950
|
+
/** Brand-specific terminology for the `acs_system` type. */
|
|
2948
2951
|
external_type?:
|
|
2949
2952
|
| (
|
|
2950
2953
|
| 'pti_site'
|
|
@@ -2957,9 +2960,10 @@ export interface Routes {
|
|
|
2957
2960
|
| 'latch_building'
|
|
2958
2961
|
)
|
|
2959
2962
|
| undefined
|
|
2963
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
2960
2964
|
external_type_display_name?: string | undefined
|
|
2961
2965
|
/**
|
|
2962
|
-
* @deprecated
|
|
2966
|
+
* @deprecated Use `external_type`. */
|
|
2963
2967
|
system_type?:
|
|
2964
2968
|
| (
|
|
2965
2969
|
| 'pti_site'
|
|
@@ -2973,30 +2977,48 @@ export interface Routes {
|
|
|
2973
2977
|
)
|
|
2974
2978
|
| undefined
|
|
2975
2979
|
/**
|
|
2976
|
-
* @deprecated
|
|
2980
|
+
* @deprecated Use `external_type_display_name`. */
|
|
2977
2981
|
system_type_display_name?: string | undefined
|
|
2982
|
+
/** Name of the `acs_system`. */
|
|
2978
2983
|
name: string
|
|
2984
|
+
/** Date and time at which the `acs_system` was created. */
|
|
2979
2985
|
created_at: string
|
|
2986
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */
|
|
2980
2987
|
workspace_id: string
|
|
2988
|
+
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */
|
|
2981
2989
|
connected_account_ids: string[]
|
|
2990
|
+
/** URL for the image that represents the `acs_system`. */
|
|
2982
2991
|
image_url: string
|
|
2992
|
+
/** Alternative text for the `acs_system` image. */
|
|
2983
2993
|
image_alt_text: string
|
|
2994
|
+
/** Errors associated with the `acs_system`. */
|
|
2984
2995
|
errors: Array<
|
|
2985
2996
|
| {
|
|
2997
|
+
/** Date and time at which Seam created the error. */
|
|
2986
2998
|
created_at: string
|
|
2999
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2987
3000
|
message: string
|
|
3001
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2988
3002
|
error_code: 'seam_bridge_disconnected'
|
|
2989
3003
|
}
|
|
2990
3004
|
| {
|
|
3005
|
+
/** Date and time at which Seam created the error. */
|
|
2991
3006
|
created_at: string
|
|
3007
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2992
3008
|
message: string
|
|
3009
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2993
3010
|
error_code: 'visionline_instance_unreachable'
|
|
2994
3011
|
}
|
|
2995
3012
|
>
|
|
3013
|
+
/** */
|
|
2996
3014
|
warnings: Array<{}>
|
|
3015
|
+
/** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
|
|
2997
3016
|
can_automate_enrollment?: boolean | undefined
|
|
3017
|
+
/** Indicates whether the `acs_system` supports creating [access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
|
|
2998
3018
|
can_create_acs_access_groups?: boolean | undefined
|
|
3019
|
+
/** Indicates whether the `acs_system` supports [removing users from access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups#remove-an-acs-user-from-an-access-group). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
|
|
2999
3020
|
can_remove_acs_users_from_acs_access_groups?: boolean | undefined
|
|
3021
|
+
/** Indicates whether the `acs_system` supports [adding users to access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups#add-an-acs-user-to-an-access-group). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
|
|
3000
3022
|
can_add_acs_users_to_acs_access_groups?: boolean | undefined
|
|
3001
3023
|
}
|
|
3002
3024
|
}
|
|
@@ -3012,7 +3034,9 @@ export interface Routes {
|
|
|
3012
3034
|
formData: {}
|
|
3013
3035
|
jsonResponse: {
|
|
3014
3036
|
acs_systems: Array<{
|
|
3037
|
+
/** ID of the `acs_system`. */
|
|
3015
3038
|
acs_system_id: string
|
|
3039
|
+
/** Brand-specific terminology for the `acs_system` type. */
|
|
3016
3040
|
external_type?:
|
|
3017
3041
|
| (
|
|
3018
3042
|
| 'pti_site'
|
|
@@ -3025,9 +3049,10 @@ export interface Routes {
|
|
|
3025
3049
|
| 'latch_building'
|
|
3026
3050
|
)
|
|
3027
3051
|
| undefined
|
|
3052
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
3028
3053
|
external_type_display_name?: string | undefined
|
|
3029
3054
|
/**
|
|
3030
|
-
* @deprecated
|
|
3055
|
+
* @deprecated Use `external_type`. */
|
|
3031
3056
|
system_type?:
|
|
3032
3057
|
| (
|
|
3033
3058
|
| 'pti_site'
|
|
@@ -3041,30 +3066,48 @@ export interface Routes {
|
|
|
3041
3066
|
)
|
|
3042
3067
|
| undefined
|
|
3043
3068
|
/**
|
|
3044
|
-
* @deprecated
|
|
3069
|
+
* @deprecated Use `external_type_display_name`. */
|
|
3045
3070
|
system_type_display_name?: string | undefined
|
|
3071
|
+
/** Name of the `acs_system`. */
|
|
3046
3072
|
name: string
|
|
3073
|
+
/** Date and time at which the `acs_system` was created. */
|
|
3047
3074
|
created_at: string
|
|
3075
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */
|
|
3048
3076
|
workspace_id: string
|
|
3077
|
+
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */
|
|
3049
3078
|
connected_account_ids: string[]
|
|
3079
|
+
/** URL for the image that represents the `acs_system`. */
|
|
3050
3080
|
image_url: string
|
|
3081
|
+
/** Alternative text for the `acs_system` image. */
|
|
3051
3082
|
image_alt_text: string
|
|
3083
|
+
/** Errors associated with the `acs_system`. */
|
|
3052
3084
|
errors: Array<
|
|
3053
3085
|
| {
|
|
3086
|
+
/** Date and time at which Seam created the error. */
|
|
3054
3087
|
created_at: string
|
|
3088
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3055
3089
|
message: string
|
|
3090
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3056
3091
|
error_code: 'seam_bridge_disconnected'
|
|
3057
3092
|
}
|
|
3058
3093
|
| {
|
|
3094
|
+
/** Date and time at which Seam created the error. */
|
|
3059
3095
|
created_at: string
|
|
3096
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3060
3097
|
message: string
|
|
3098
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3061
3099
|
error_code: 'visionline_instance_unreachable'
|
|
3062
3100
|
}
|
|
3063
3101
|
>
|
|
3102
|
+
/** */
|
|
3064
3103
|
warnings: Array<{}>
|
|
3104
|
+
/** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
|
|
3065
3105
|
can_automate_enrollment?: boolean | undefined
|
|
3106
|
+
/** Indicates whether the `acs_system` supports creating [access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
|
|
3066
3107
|
can_create_acs_access_groups?: boolean | undefined
|
|
3108
|
+
/** Indicates whether the `acs_system` supports [removing users from access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups#remove-an-acs-user-from-an-access-group). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
|
|
3067
3109
|
can_remove_acs_users_from_acs_access_groups?: boolean | undefined
|
|
3110
|
+
/** Indicates whether the `acs_system` supports [adding users to access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups#add-an-acs-user-to-an-access-group). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
|
|
3068
3111
|
can_add_acs_users_to_acs_access_groups?: boolean | undefined
|
|
3069
3112
|
}>
|
|
3070
3113
|
}
|
|
@@ -3080,7 +3123,9 @@ export interface Routes {
|
|
|
3080
3123
|
formData: {}
|
|
3081
3124
|
jsonResponse: {
|
|
3082
3125
|
acs_systems: Array<{
|
|
3126
|
+
/** ID of the `acs_system`. */
|
|
3083
3127
|
acs_system_id: string
|
|
3128
|
+
/** Brand-specific terminology for the `acs_system` type. */
|
|
3084
3129
|
external_type?:
|
|
3085
3130
|
| (
|
|
3086
3131
|
| 'pti_site'
|
|
@@ -3093,9 +3138,10 @@ export interface Routes {
|
|
|
3093
3138
|
| 'latch_building'
|
|
3094
3139
|
)
|
|
3095
3140
|
| undefined
|
|
3141
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
3096
3142
|
external_type_display_name?: string | undefined
|
|
3097
3143
|
/**
|
|
3098
|
-
* @deprecated
|
|
3144
|
+
* @deprecated Use `external_type`. */
|
|
3099
3145
|
system_type?:
|
|
3100
3146
|
| (
|
|
3101
3147
|
| 'pti_site'
|
|
@@ -3109,30 +3155,48 @@ export interface Routes {
|
|
|
3109
3155
|
)
|
|
3110
3156
|
| undefined
|
|
3111
3157
|
/**
|
|
3112
|
-
* @deprecated
|
|
3158
|
+
* @deprecated Use `external_type_display_name`. */
|
|
3113
3159
|
system_type_display_name?: string | undefined
|
|
3160
|
+
/** Name of the `acs_system`. */
|
|
3114
3161
|
name: string
|
|
3162
|
+
/** Date and time at which the `acs_system` was created. */
|
|
3115
3163
|
created_at: string
|
|
3164
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */
|
|
3116
3165
|
workspace_id: string
|
|
3166
|
+
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */
|
|
3117
3167
|
connected_account_ids: string[]
|
|
3168
|
+
/** URL for the image that represents the `acs_system`. */
|
|
3118
3169
|
image_url: string
|
|
3170
|
+
/** Alternative text for the `acs_system` image. */
|
|
3119
3171
|
image_alt_text: string
|
|
3172
|
+
/** Errors associated with the `acs_system`. */
|
|
3120
3173
|
errors: Array<
|
|
3121
3174
|
| {
|
|
3175
|
+
/** Date and time at which Seam created the error. */
|
|
3122
3176
|
created_at: string
|
|
3177
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3123
3178
|
message: string
|
|
3179
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3124
3180
|
error_code: 'seam_bridge_disconnected'
|
|
3125
3181
|
}
|
|
3126
3182
|
| {
|
|
3183
|
+
/** Date and time at which Seam created the error. */
|
|
3127
3184
|
created_at: string
|
|
3185
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3128
3186
|
message: string
|
|
3187
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3129
3188
|
error_code: 'visionline_instance_unreachable'
|
|
3130
3189
|
}
|
|
3131
3190
|
>
|
|
3191
|
+
/** */
|
|
3132
3192
|
warnings: Array<{}>
|
|
3193
|
+
/** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
|
|
3133
3194
|
can_automate_enrollment?: boolean | undefined
|
|
3195
|
+
/** Indicates whether the `acs_system` supports creating [access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
|
|
3134
3196
|
can_create_acs_access_groups?: boolean | undefined
|
|
3197
|
+
/** Indicates whether the `acs_system` supports [removing users from access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups#remove-an-acs-user-from-an-access-group). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
|
|
3135
3198
|
can_remove_acs_users_from_acs_access_groups?: boolean | undefined
|
|
3199
|
+
/** Indicates whether the `acs_system` supports [adding users to access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups#add-an-acs-user-to-an-access-group). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
|
|
3136
3200
|
can_add_acs_users_to_acs_access_groups?: boolean | undefined
|
|
3137
3201
|
}>
|
|
3138
3202
|
}
|
|
@@ -18166,7 +18230,9 @@ export interface Routes {
|
|
|
18166
18230
|
formData: {}
|
|
18167
18231
|
jsonResponse: {
|
|
18168
18232
|
acs_systems: Array<{
|
|
18233
|
+
/** ID of the `acs_system`. */
|
|
18169
18234
|
acs_system_id: string
|
|
18235
|
+
/** Brand-specific terminology for the `acs_system` type. */
|
|
18170
18236
|
external_type?:
|
|
18171
18237
|
| (
|
|
18172
18238
|
| 'pti_site'
|
|
@@ -18179,9 +18245,10 @@ export interface Routes {
|
|
|
18179
18245
|
| 'latch_building'
|
|
18180
18246
|
)
|
|
18181
18247
|
| undefined
|
|
18248
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
18182
18249
|
external_type_display_name?: string | undefined
|
|
18183
18250
|
/**
|
|
18184
|
-
* @deprecated
|
|
18251
|
+
* @deprecated Use `external_type`. */
|
|
18185
18252
|
system_type?:
|
|
18186
18253
|
| (
|
|
18187
18254
|
| 'pti_site'
|
|
@@ -18195,30 +18262,48 @@ export interface Routes {
|
|
|
18195
18262
|
)
|
|
18196
18263
|
| undefined
|
|
18197
18264
|
/**
|
|
18198
|
-
* @deprecated
|
|
18265
|
+
* @deprecated Use `external_type_display_name`. */
|
|
18199
18266
|
system_type_display_name?: string | undefined
|
|
18267
|
+
/** Name of the `acs_system`. */
|
|
18200
18268
|
name: string
|
|
18269
|
+
/** Date and time at which the `acs_system` was created. */
|
|
18201
18270
|
created_at: string
|
|
18271
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */
|
|
18202
18272
|
workspace_id: string
|
|
18273
|
+
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */
|
|
18203
18274
|
connected_account_ids: string[]
|
|
18275
|
+
/** URL for the image that represents the `acs_system`. */
|
|
18204
18276
|
image_url: string
|
|
18277
|
+
/** Alternative text for the `acs_system` image. */
|
|
18205
18278
|
image_alt_text: string
|
|
18279
|
+
/** Errors associated with the `acs_system`. */
|
|
18206
18280
|
errors: Array<
|
|
18207
18281
|
| {
|
|
18282
|
+
/** Date and time at which Seam created the error. */
|
|
18208
18283
|
created_at: string
|
|
18284
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
18209
18285
|
message: string
|
|
18286
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
18210
18287
|
error_code: 'seam_bridge_disconnected'
|
|
18211
18288
|
}
|
|
18212
18289
|
| {
|
|
18290
|
+
/** Date and time at which Seam created the error. */
|
|
18213
18291
|
created_at: string
|
|
18292
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
18214
18293
|
message: string
|
|
18294
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
18215
18295
|
error_code: 'visionline_instance_unreachable'
|
|
18216
18296
|
}
|
|
18217
18297
|
>
|
|
18298
|
+
/** */
|
|
18218
18299
|
warnings: Array<{}>
|
|
18300
|
+
/** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
|
|
18219
18301
|
can_automate_enrollment?: boolean | undefined
|
|
18302
|
+
/** Indicates whether the `acs_system` supports creating [access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
|
|
18220
18303
|
can_create_acs_access_groups?: boolean | undefined
|
|
18304
|
+
/** Indicates whether the `acs_system` supports [removing users from access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups#remove-an-acs-user-from-an-access-group). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
|
|
18221
18305
|
can_remove_acs_users_from_acs_access_groups?: boolean | undefined
|
|
18306
|
+
/** Indicates whether the `acs_system` supports [adding users to access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups#add-an-acs-user-to-an-access-group). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
|
|
18222
18307
|
can_add_acs_users_to_acs_access_groups?: boolean | undefined
|
|
18223
18308
|
}>
|
|
18224
18309
|
}
|