You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances.',
180
+
),
181
+
})
182
+
183
+
constacs_system_warning=z
184
+
.union([
185
+
salto_ks_subscription_limit_almost_reached,
186
+
time_zone_does_not_match_location,
187
+
])
188
+
.describe('Warning associated with the `acs_system`.')
Copy file name to clipboardExpand all lines: src/lib/seam/connect/openapi.ts
+46-19Lines changed: 46 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -1005,27 +1005,54 @@ export default {
1005
1005
description: 'Warnings associated with the `acs_system`.',
1006
1006
items: {
1007
1007
description: 'Warning associated with the `acs_system`.',
1008
-
properties: {
1009
-
created_at: {
1010
-
description:
1011
-
'Date and time at which Seam created the warning.',
1012
-
format: 'date-time',
1013
-
type: 'string',
1014
-
},
1015
-
message: {
1016
-
description:
1017
-
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
1018
-
type: 'string',
1008
+
oneOf: [
1009
+
{
1010
+
properties: {
1011
+
created_at: {
1012
+
description:
1013
+
'Date and time at which Seam created the warning.',
1014
+
format: 'date-time',
1015
+
type: 'string',
1016
+
},
1017
+
message: {
1018
+
description:
1019
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
1020
+
type: 'string',
1021
+
},
1022
+
warning_code: {
1023
+
description:
1024
+
'Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this.',
'Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this.',
'Date and time at which Seam created the warning.',
1037
+
format: 'date-time',
1038
+
type: 'string',
1039
+
},
1040
+
message: {
1041
+
description:
1042
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
1043
+
type: 'string',
1044
+
},
1045
+
warning_code: {
1046
+
description:
1047
+
'Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances.',
Copy file name to clipboardExpand all lines: src/lib/seam/connect/route-types.ts
+72-32Lines changed: 72 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -9042,14 +9042,24 @@ export interface Routes {
9042
9042
}
9043
9043
>
9044
9044
/** Warnings associated with the `acs_system`. */
9045
-
warnings: Array<{
9046
-
/** Date and time at which Seam created the warning. */
9047
-
created_at: string
9048
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9049
-
message: string
9050
-
/** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
/** Date and time at which Seam created the warning. */
9048
+
created_at: string
9049
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9050
+
message: string
9051
+
/** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
/** Date and time at which Seam created the warning. */
9056
+
created_at: string
9057
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9058
+
message: string
9059
+
/** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
9060
+
warning_code: 'time_zone_does_not_match_location'
9061
+
}
9062
+
>
9053
9063
/** 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`. */
9054
9064
can_automate_enrollment?: boolean | undefined
9055
9065
/** 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). */
@@ -9199,14 +9209,24 @@ export interface Routes {
9199
9209
}
9200
9210
>
9201
9211
/** Warnings associated with the `acs_system`. */
9202
-
warnings: Array<{
9203
-
/** Date and time at which Seam created the warning. */
9204
-
created_at: string
9205
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9206
-
message: string
9207
-
/** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
/** Date and time at which Seam created the warning. */
9215
+
created_at: string
9216
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9217
+
message: string
9218
+
/** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
/** Date and time at which Seam created the warning. */
9223
+
created_at: string
9224
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9225
+
message: string
9226
+
/** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
9227
+
warning_code: 'time_zone_does_not_match_location'
9228
+
}
9229
+
>
9210
9230
/** 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`. */
9211
9231
can_automate_enrollment?: boolean | undefined
9212
9232
/** 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). */
@@ -9356,14 +9376,24 @@ export interface Routes {
9356
9376
}
9357
9377
>
9358
9378
/** Warnings associated with the `acs_system`. */
9359
-
warnings: Array<{
9360
-
/** Date and time at which Seam created the warning. */
9361
-
created_at: string
9362
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9363
-
message: string
9364
-
/** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
/** Date and time at which Seam created the warning. */
9382
+
created_at: string
9383
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9384
+
message: string
9385
+
/** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
/** Date and time at which Seam created the warning. */
9390
+
created_at: string
9391
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9392
+
message: string
9393
+
/** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
9394
+
warning_code: 'time_zone_does_not_match_location'
9395
+
}
9396
+
>
9367
9397
/** 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`. */
9368
9398
can_automate_enrollment?: boolean | undefined
9369
9399
/** 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). */
/** Date and time at which Seam created the warning. */
36852
-
created_at: string
36853
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
36854
-
message: string
36855
-
/** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
/** Date and time at which Seam created the warning. */
36883
+
created_at: string
36884
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
36885
+
message: string
36886
+
/** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
/** Date and time at which Seam created the warning. */
36891
+
created_at: string
36892
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
36893
+
message: string
36894
+
/** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
36895
+
warning_code: 'time_zone_does_not_match_location'
36896
+
}
36897
+
>
36858
36898
/** 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`. */
36859
36899
can_automate_enrollment?: boolean | undefined
36860
36900
/** 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). */
0 commit comments