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
.describe(`Indicates that the Seam API cannot communicate with the [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.
76
76
This error might also occur if the Seam Bridge is connected to the wrong [workspace](https://docs.seam.co/latest/core-concepts/workspaces).
77
77
See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).`)
For example, the IP address of the on-premises access control system may be set incorrectly within the Seam [workspace](https://docs.seam.co/latest/core-concepts/workspaces).
85
86
See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.visionline_instance_unreachable).`)
'Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit.',
'Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit.',
'Indicates that the access system has been disconnected. Please refer to [this guide](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system guide) to resolve the issue.',
'Indicates that the access system has been disconnected. See [this guide](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system guide) to resolve the issue.',
106
+
)
107
+
108
+
constaccount_disconnected=common_acs_system_error
109
+
.extend({
110
+
error_code: z
111
+
.literal('account_disconnected')
112
+
.describe(error_code_description),
113
+
})
114
+
.describe(
115
+
'Indicates that the login credentials are invalid. Reconnect the account using the Connect Webview to restore access.',
Copy file name to clipboardExpand all lines: src/lib/seam/connect/openapi.ts
+13-3Lines changed: 13 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -700,6 +700,8 @@ export default {
700
700
type: 'object',
701
701
},
702
702
{
703
+
description:
704
+
'Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit.',
703
705
properties: {
704
706
created_at: {
705
707
description:
@@ -709,7 +711,7 @@ export default {
709
711
},
710
712
error_code: {
711
713
description:
712
-
'Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit.',
714
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
713
715
enum: ['salto_ks_subscription_limit_exceeded'],
714
716
type: 'string',
715
717
},
@@ -723,6 +725,8 @@ export default {
723
725
type: 'object',
724
726
},
725
727
{
728
+
description:
729
+
'Indicates that the access system has been disconnected. See [this guide](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system guide) to resolve the issue.',
726
730
properties: {
727
731
created_at: {
728
732
description:
@@ -732,7 +736,7 @@ export default {
732
736
},
733
737
error_code: {
734
738
description:
735
-
'Indicates that the access system has been disconnected. Please refer to [this guide](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system guide) to resolve the issue.',
739
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
736
740
enum: ['acs_system_disconnected'],
737
741
type: 'string',
738
742
},
@@ -746,6 +750,8 @@ export default {
746
750
type: 'object',
747
751
},
748
752
{
753
+
description:
754
+
'Indicates that the login credentials are invalid. Reconnect the account using the Connect Webview to restore access.',
749
755
properties: {
750
756
created_at: {
751
757
description:
@@ -755,7 +761,7 @@ export default {
755
761
},
756
762
error_code: {
757
763
description:
758
-
'Indicates that the login credentials are invalid. Please reconnect the account using the Connect Webview to restore access.',
764
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
Copy file name to clipboardExpand all lines: src/lib/seam/connect/route-types.ts
+16-12Lines changed: 16 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -8148,23 +8148,23 @@ export interface Routes {
8148
8148
created_at: string
8149
8149
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8150
8150
message: string
8151
-
/** Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit. */
8151
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
/** Date and time at which Seam created the error. */
8156
8156
created_at: string
8157
8157
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8158
8158
message: string
8159
-
/** Indicates that the access system has been disconnected. Please refer to [this guide](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system guide) to resolve the issue. */
8159
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
8160
8160
error_code: 'acs_system_disconnected'
8161
8161
}
8162
8162
| {
8163
8163
/** Date and time at which Seam created the error. */
8164
8164
created_at: string
8165
8165
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8166
8166
message: string
8167
-
/** Indicates that the login credentials are invalid. Please reconnect the account using the Connect Webview to restore access. */
8167
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
8168
8168
error_code: 'account_disconnected'
8169
8169
}
8170
8170
>
@@ -8295,23 +8295,23 @@ export interface Routes {
8295
8295
created_at: string
8296
8296
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8297
8297
message: string
8298
-
/** Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit. */
8298
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
/** Date and time at which Seam created the error. */
8303
8303
created_at: string
8304
8304
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8305
8305
message: string
8306
-
/** Indicates that the access system has been disconnected. Please refer to [this guide](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system guide) to resolve the issue. */
8306
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
8307
8307
error_code: 'acs_system_disconnected'
8308
8308
}
8309
8309
| {
8310
8310
/** Date and time at which Seam created the error. */
8311
8311
created_at: string
8312
8312
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8313
8313
message: string
8314
-
/** Indicates that the login credentials are invalid. Please reconnect the account using the Connect Webview to restore access. */
8314
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
8315
8315
error_code: 'account_disconnected'
8316
8316
}
8317
8317
>
@@ -8442,23 +8442,23 @@ export interface Routes {
8442
8442
created_at: string
8443
8443
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8444
8444
message: string
8445
-
/** Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit. */
8445
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
/** Date and time at which Seam created the error. */
8450
8450
created_at: string
8451
8451
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8452
8452
message: string
8453
-
/** Indicates that the access system has been disconnected. Please refer to [this guide](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system guide) to resolve the issue. */
8453
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
8454
8454
error_code: 'acs_system_disconnected'
8455
8455
}
8456
8456
| {
8457
8457
/** Date and time at which Seam created the error. */
8458
8458
created_at: string
8459
8459
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8460
8460
message: string
8461
-
/** Indicates that the login credentials are invalid. Please reconnect the account using the Connect Webview to restore access. */
8461
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
31779
31783
message: string
31780
-
/** Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit. */
31784
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
/** Date and time at which Seam created the error. */
31785
31789
created_at: string
31786
31790
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
31787
31791
message: string
31788
-
/** Indicates that the access system has been disconnected. Please refer to [this guide](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system guide) to resolve the issue. */
31792
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31789
31793
error_code: 'acs_system_disconnected'
31790
31794
}
31791
31795
| {
31792
31796
/** Date and time at which Seam created the error. */
31793
31797
created_at: string
31794
31798
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
31795
31799
message: string
31796
-
/** Indicates that the login credentials are invalid. Please reconnect the account using the Connect Webview to restore access. */
31800
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
0 commit comments