@seamapi/types 1.930.0 → 1.931.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 +33 -33
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +187 -187
- package/dist/index.cjs +33 -33
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.js +1 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.js +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.js +4 -4
- package/lib/seam/connect/models/connected-accounts/connected-account.js +1 -1
- package/lib/seam/connect/models/events/enrollment-automations.js +1 -1
- package/lib/seam/connect/openapi.js +25 -25
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +187 -187
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -1
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +4 -4
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +1 -1
- package/src/lib/seam/connect/models/events/enrollment-automations.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +25 -25
- package/src/lib/seam/connect/route-types.ts +187 -187
package/dist/connect.cjs
CHANGED
|
@@ -653,7 +653,7 @@ var bridge_disconnected = common_connected_account_error.extend({
|
|
|
653
653
|
---
|
|
654
654
|
resource_type: connected_account
|
|
655
655
|
---
|
|
656
|
-
Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system
|
|
656
|
+
Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).
|
|
657
657
|
`);
|
|
658
658
|
var salto_ks_subscription_limit_exceeded = common_connected_account_error.extend({
|
|
659
659
|
error_code: zod.z.literal("salto_ks_subscription_limit_exceeded").describe(error_code_description),
|
|
@@ -3736,7 +3736,7 @@ var common_acs_credential = zod.z.object({
|
|
|
3736
3736
|
"ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs."
|
|
3737
3737
|
),
|
|
3738
3738
|
connected_account_id: zod.z.string().uuid().describe(
|
|
3739
|
-
"ID of the [connected account](https://docs.seam.co/
|
|
3739
|
+
"ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs."
|
|
3740
3740
|
),
|
|
3741
3741
|
acs_credential_pool_id: zod.z.string().uuid().optional().describe("ID of the credential pool to which the credential belongs."),
|
|
3742
3742
|
acs_system_id: zod.z.string().uuid().describe(
|
|
@@ -3921,7 +3921,7 @@ zod.z.object({
|
|
|
3921
3921
|
});
|
|
3922
3922
|
var acs_encoder = zod.z.object({
|
|
3923
3923
|
acs_encoder_id: zod.z.string().uuid().describe(
|
|
3924
|
-
"ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners."
|
|
3924
|
+
"ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners)."
|
|
3925
3925
|
),
|
|
3926
3926
|
acs_system_id: zod.z.string().uuid().describe(
|
|
3927
3927
|
"ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners)."
|
|
@@ -4144,7 +4144,7 @@ var seam_bridge_disconnected = common_acs_system_error.extend({
|
|
|
4144
4144
|
---
|
|
4145
4145
|
Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.
|
|
4146
4146
|
This error might also occur if Seam Bridge is connected to the wrong [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
4147
|
-
See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system
|
|
4147
|
+
See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).
|
|
4148
4148
|
`);
|
|
4149
4149
|
var bridge_disconnected2 = common_acs_system_error.extend({
|
|
4150
4150
|
error_code: zod.z.literal("bridge_disconnected").describe(error_code_description7),
|
|
@@ -4156,7 +4156,7 @@ var bridge_disconnected2 = common_acs_system_error.extend({
|
|
|
4156
4156
|
resource_type: acs_system
|
|
4157
4157
|
---
|
|
4158
4158
|
Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.
|
|
4159
|
-
See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system
|
|
4159
|
+
See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).
|
|
4160
4160
|
`);
|
|
4161
4161
|
var visionline_instance_unreachable = common_acs_system_error.extend({
|
|
4162
4162
|
error_code: zod.z.literal("visionline_instance_unreachable").describe(error_code_description7)
|
|
@@ -4166,7 +4166,7 @@ var visionline_instance_unreachable = common_acs_system_error.extend({
|
|
|
4166
4166
|
---
|
|
4167
4167
|
Indicates that [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge) is functioning correctly and the Seam API can communicate with Seam Bridge, but the Seam API cannot connect to the on-premises [Visionline access control system](https://docs.seam.co/device-and-system-integration-guides/assa-abloy-visionline-access-control-system).
|
|
4168
4168
|
For example, the IP address of the on-premises access control system may be set incorrectly within the Seam [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
4169
|
-
See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system
|
|
4169
|
+
See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-visionline_instance_unreachable).
|
|
4170
4170
|
`);
|
|
4171
4171
|
var salto_ks_subscription_limit_exceeded3 = common_acs_system_error.extend({
|
|
4172
4172
|
error_code: zod.z.literal("salto_ks_subscription_limit_exceeded").describe(error_code_description7)
|
|
@@ -4354,7 +4354,7 @@ var acs_system = zod.z.object({
|
|
|
4354
4354
|
---
|
|
4355
4355
|
Represents an [access control system](https://docs.seam.co/low-level-apis/access-systems).
|
|
4356
4356
|
|
|
4357
|
-
Within an \`acs_system\`, create [\`acs_user\`s](https://docs.seam.co/api/acs/users
|
|
4357
|
+
Within an \`acs_system\`, create [\`acs_user\`s](https://docs.seam.co/api/acs/users/object) and [\`acs_credential\`s](https://docs.seam.co/api/acs/credentials/object) to grant access to the \`acs_user\`s.
|
|
4358
4358
|
|
|
4359
4359
|
For details about the resources associated with an access control system, see the [access control systems namespace](https://docs.seam.co/api/acs).
|
|
4360
4360
|
`);
|
|
@@ -6934,7 +6934,7 @@ var enrollment_automation_deleted_event = enrollment_automation_event.extend({
|
|
|
6934
6934
|
---
|
|
6935
6935
|
route_path: /user_identities/enrollment_automations
|
|
6936
6936
|
---
|
|
6937
|
-
An [enrollment automation](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system
|
|
6937
|
+
An [enrollment automation](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system) was deleted.
|
|
6938
6938
|
`);
|
|
6939
6939
|
var enrollment_automation_events = [
|
|
6940
6940
|
enrollment_automation_deleted_event
|
|
@@ -8470,7 +8470,7 @@ var openapi = {
|
|
|
8470
8470
|
"x-variant-group-key": "locks"
|
|
8471
8471
|
},
|
|
8472
8472
|
{
|
|
8473
|
-
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system
|
|
8473
|
+
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).",
|
|
8474
8474
|
properties: {
|
|
8475
8475
|
created_at: {
|
|
8476
8476
|
description: "Date and time at which Seam created the error.",
|
|
@@ -10608,7 +10608,7 @@ var openapi = {
|
|
|
10608
10608
|
type: "string"
|
|
10609
10609
|
},
|
|
10610
10610
|
connected_account_id: {
|
|
10611
|
-
description: "ID of the [connected account](https://docs.seam.co/
|
|
10611
|
+
description: "ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs.",
|
|
10612
10612
|
format: "uuid",
|
|
10613
10613
|
type: "string"
|
|
10614
10614
|
},
|
|
@@ -10961,7 +10961,7 @@ var openapi = {
|
|
|
10961
10961
|
description: "Represents a hardware device that encodes [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) data onto physical cards within an [access control system](https://docs.seam.co/low-level-apis/access-systems).\n\nSome access control systems require credentials to be encoded onto plastic key cards using a card encoder. This process involves the following two key steps:\n\n1. Credential creation\n Configure the access parameters for the credential.\n2. Card encoding\n Write the credential data onto the card using a compatible card encoder.\n\nSeparately, the Seam API also supports card scanning, which enables you to scan and read the encoded data on a card. You can use this action to confirm consistency with access control system records or diagnose discrepancies if needed.\n\n See [Working with Card Encoders and Scanners](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners).\n\nTo verify if your access control system requires a card encoder, see the corresponding [system integration guide](https://docs.seam.co/device-and-system-integration-guides#access-control-systems).",
|
|
10962
10962
|
properties: {
|
|
10963
10963
|
acs_encoder_id: {
|
|
10964
|
-
description: "ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners.",
|
|
10964
|
+
description: "ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners).",
|
|
10965
10965
|
format: "uuid",
|
|
10966
10966
|
type: "string"
|
|
10967
10967
|
},
|
|
@@ -11492,7 +11492,7 @@ var openapi = {
|
|
|
11492
11492
|
"x-route-path": "/acs/entrances"
|
|
11493
11493
|
},
|
|
11494
11494
|
acs_system: {
|
|
11495
|
-
description: "Represents an [access control system](https://docs.seam.co/low-level-apis/access-systems).\n\nWithin an `acs_system`, create [`acs_user`s](https://docs.seam.co/api/acs/users
|
|
11495
|
+
description: "Represents an [access control system](https://docs.seam.co/low-level-apis/access-systems).\n\nWithin an `acs_system`, create [`acs_user`s](https://docs.seam.co/api/acs/users/object) and [`acs_credential`s](https://docs.seam.co/api/acs/credentials/object) to grant access to the `acs_user`s.\n\nFor details about the resources associated with an access control system, see the [access control systems namespace](https://docs.seam.co/api/acs).",
|
|
11496
11496
|
properties: {
|
|
11497
11497
|
acs_access_group_count: {
|
|
11498
11498
|
description: "Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems).",
|
|
@@ -11539,7 +11539,7 @@ var openapi = {
|
|
|
11539
11539
|
discriminator: { propertyName: "error_code" },
|
|
11540
11540
|
oneOf: [
|
|
11541
11541
|
{
|
|
11542
|
-
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.\nThis error might also occur if Seam Bridge is connected to the wrong [workspace](https://docs.seam.co/core-concepts/workspaces).\nSee also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system
|
|
11542
|
+
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.\nThis error might also occur if Seam Bridge is connected to the wrong [workspace](https://docs.seam.co/core-concepts/workspaces).\nSee also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).",
|
|
11543
11543
|
properties: {
|
|
11544
11544
|
created_at: {
|
|
11545
11545
|
description: "Date and time at which Seam created the error.",
|
|
@@ -11561,7 +11561,7 @@ var openapi = {
|
|
|
11561
11561
|
"x-resource-type": "acs_system"
|
|
11562
11562
|
},
|
|
11563
11563
|
{
|
|
11564
|
-
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.\nSee also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system
|
|
11564
|
+
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.\nSee also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).",
|
|
11565
11565
|
properties: {
|
|
11566
11566
|
created_at: {
|
|
11567
11567
|
description: "Date and time at which Seam created the error.",
|
|
@@ -11587,7 +11587,7 @@ var openapi = {
|
|
|
11587
11587
|
"x-resource-type": "acs_system"
|
|
11588
11588
|
},
|
|
11589
11589
|
{
|
|
11590
|
-
description: "Indicates that [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge) is functioning correctly and the Seam API can communicate with Seam Bridge, but the Seam API cannot connect to the on-premises [Visionline access control system](https://docs.seam.co/device-and-system-integration-guides/assa-abloy-visionline-access-control-system).\nFor example, the IP address of the on-premises access control system may be set incorrectly within the Seam [workspace](https://docs.seam.co/core-concepts/workspaces).\nSee also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system
|
|
11590
|
+
description: "Indicates that [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge) is functioning correctly and the Seam API can communicate with Seam Bridge, but the Seam API cannot connect to the on-premises [Visionline access control system](https://docs.seam.co/device-and-system-integration-guides/assa-abloy-visionline-access-control-system).\nFor example, the IP address of the on-premises access control system may be set incorrectly within the Seam [workspace](https://docs.seam.co/core-concepts/workspaces).\nSee also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-visionline_instance_unreachable).",
|
|
11591
11591
|
properties: {
|
|
11592
11592
|
created_at: {
|
|
11593
11593
|
description: "Date and time at which Seam created the error.",
|
|
@@ -13159,7 +13159,7 @@ var openapi = {
|
|
|
13159
13159
|
type: "string"
|
|
13160
13160
|
},
|
|
13161
13161
|
connected_account_id: {
|
|
13162
|
-
description: "ID of the [connected account](https://docs.seam.co/
|
|
13162
|
+
description: "ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs.",
|
|
13163
13163
|
format: "uuid",
|
|
13164
13164
|
type: "string"
|
|
13165
13165
|
},
|
|
@@ -13556,7 +13556,7 @@ var openapi = {
|
|
|
13556
13556
|
type: "string"
|
|
13557
13557
|
},
|
|
13558
13558
|
connected_account_id: {
|
|
13559
|
-
description: "ID of the [connected account](https://docs.seam.co/
|
|
13559
|
+
description: "ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs.",
|
|
13560
13560
|
format: "uuid",
|
|
13561
13561
|
type: "string"
|
|
13562
13562
|
},
|
|
@@ -14175,7 +14175,7 @@ var openapi = {
|
|
|
14175
14175
|
type: "string"
|
|
14176
14176
|
},
|
|
14177
14177
|
connected_account_id: {
|
|
14178
|
-
description: "ID of the [connected account](https://docs.seam.co/
|
|
14178
|
+
description: "ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs.",
|
|
14179
14179
|
format: "uuid",
|
|
14180
14180
|
type: "string"
|
|
14181
14181
|
},
|
|
@@ -14570,7 +14570,7 @@ var openapi = {
|
|
|
14570
14570
|
type: "string"
|
|
14571
14571
|
},
|
|
14572
14572
|
connected_account_id: {
|
|
14573
|
-
description: "ID of the [connected account](https://docs.seam.co/
|
|
14573
|
+
description: "ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs.",
|
|
14574
14574
|
format: "uuid",
|
|
14575
14575
|
type: "string"
|
|
14576
14576
|
},
|
|
@@ -15216,7 +15216,7 @@ var openapi = {
|
|
|
15216
15216
|
type: "string"
|
|
15217
15217
|
},
|
|
15218
15218
|
connected_account_id: {
|
|
15219
|
-
description: "ID of the [connected account](https://docs.seam.co/
|
|
15219
|
+
description: "ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs.",
|
|
15220
15220
|
format: "uuid",
|
|
15221
15221
|
type: "string"
|
|
15222
15222
|
},
|
|
@@ -18326,7 +18326,7 @@ var openapi = {
|
|
|
18326
18326
|
"x-resource-type": "connected_account"
|
|
18327
18327
|
},
|
|
18328
18328
|
{
|
|
18329
|
-
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system
|
|
18329
|
+
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).",
|
|
18330
18330
|
properties: {
|
|
18331
18331
|
created_at: {
|
|
18332
18332
|
description: "Date and time at which Seam created the error.",
|
|
@@ -19615,7 +19615,7 @@ var openapi = {
|
|
|
19615
19615
|
"x-variant-group-key": "locks"
|
|
19616
19616
|
},
|
|
19617
19617
|
{
|
|
19618
|
-
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system
|
|
19618
|
+
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).",
|
|
19619
19619
|
properties: {
|
|
19620
19620
|
created_at: {
|
|
19621
19621
|
description: "Date and time at which Seam created the error.",
|
|
@@ -31386,7 +31386,7 @@ var openapi = {
|
|
|
31386
31386
|
"x-route-path": "/devices"
|
|
31387
31387
|
},
|
|
31388
31388
|
{
|
|
31389
|
-
description: "An [enrollment automation](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system
|
|
31389
|
+
description: "An [enrollment automation](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system) was deleted.",
|
|
31390
31390
|
properties: {
|
|
31391
31391
|
created_at: {
|
|
31392
31392
|
description: "Date and time at which the event was created.",
|
|
@@ -32580,7 +32580,7 @@ var openapi = {
|
|
|
32580
32580
|
type: "string"
|
|
32581
32581
|
},
|
|
32582
32582
|
connected_account_id: {
|
|
32583
|
-
description: "ID of the [connected account](https://docs.seam.co/
|
|
32583
|
+
description: "ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs.",
|
|
32584
32584
|
format: "uuid",
|
|
32585
32585
|
type: "string"
|
|
32586
32586
|
},
|
|
@@ -34394,7 +34394,7 @@ var openapi = {
|
|
|
34394
34394
|
"x-variant-group-key": "locks"
|
|
34395
34395
|
},
|
|
34396
34396
|
{
|
|
34397
|
-
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system
|
|
34397
|
+
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).",
|
|
34398
34398
|
properties: {
|
|
34399
34399
|
created_at: {
|
|
34400
34400
|
description: "Date and time at which Seam created the error.",
|
|
@@ -35336,7 +35336,7 @@ var openapi = {
|
|
|
35336
35336
|
type: "string"
|
|
35337
35337
|
},
|
|
35338
35338
|
connected_account_id: {
|
|
35339
|
-
description: "ID of the [connected account](https://docs.seam.co/
|
|
35339
|
+
description: "ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs.",
|
|
35340
35340
|
format: "uuid",
|
|
35341
35341
|
type: "string"
|
|
35342
35342
|
},
|
|
@@ -37118,7 +37118,7 @@ var openapi = {
|
|
|
37118
37118
|
"x-variant-group-key": "locks"
|
|
37119
37119
|
},
|
|
37120
37120
|
{
|
|
37121
|
-
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system
|
|
37121
|
+
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).",
|
|
37122
37122
|
properties: {
|
|
37123
37123
|
created_at: {
|
|
37124
37124
|
description: "Date and time at which Seam created the error.",
|
|
@@ -38382,7 +38382,7 @@ var openapi = {
|
|
|
38382
38382
|
"x-undocumented": "Only used internally."
|
|
38383
38383
|
},
|
|
38384
38384
|
use_backup_access_code_pool: {
|
|
38385
|
-
description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes
|
|
38385
|
+
description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/api/access_codes/pull_backup_access_code).",
|
|
38386
38386
|
type: "boolean"
|
|
38387
38387
|
},
|
|
38388
38388
|
use_offline_access_code: {
|
|
@@ -38497,7 +38497,7 @@ var openapi = {
|
|
|
38497
38497
|
type: "string"
|
|
38498
38498
|
},
|
|
38499
38499
|
use_backup_access_code_pool: {
|
|
38500
|
-
description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes
|
|
38500
|
+
description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/api/access_codes/pull_backup_access_code).",
|
|
38501
38501
|
type: "boolean"
|
|
38502
38502
|
}
|
|
38503
38503
|
},
|
|
@@ -38604,7 +38604,7 @@ var openapi = {
|
|
|
38604
38604
|
type: "string"
|
|
38605
38605
|
},
|
|
38606
38606
|
use_backup_access_code_pool: {
|
|
38607
|
-
description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes
|
|
38607
|
+
description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/api/access_codes/pull_backup_access_code).",
|
|
38608
38608
|
type: "boolean"
|
|
38609
38609
|
}
|
|
38610
38610
|
},
|
|
@@ -40668,7 +40668,7 @@ var openapi = {
|
|
|
40668
40668
|
type: "string"
|
|
40669
40669
|
},
|
|
40670
40670
|
use_backup_access_code_pool: {
|
|
40671
|
-
description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes
|
|
40671
|
+
description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/api/access_codes/pull_backup_access_code).",
|
|
40672
40672
|
type: "boolean"
|
|
40673
40673
|
},
|
|
40674
40674
|
use_offline_access_code: {
|
|
@@ -40805,7 +40805,7 @@ var openapi = {
|
|
|
40805
40805
|
type: "string"
|
|
40806
40806
|
},
|
|
40807
40807
|
use_backup_access_code_pool: {
|
|
40808
|
-
description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes
|
|
40808
|
+
description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/api/access_codes/pull_backup_access_code).",
|
|
40809
40809
|
type: "boolean"
|
|
40810
40810
|
},
|
|
40811
40811
|
use_offline_access_code: {
|
|
@@ -40942,7 +40942,7 @@ var openapi = {
|
|
|
40942
40942
|
type: "string"
|
|
40943
40943
|
},
|
|
40944
40944
|
use_backup_access_code_pool: {
|
|
40945
|
-
description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes
|
|
40945
|
+
description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/api/access_codes/pull_backup_access_code).",
|
|
40946
40946
|
type: "boolean"
|
|
40947
40947
|
},
|
|
40948
40948
|
use_offline_access_code: {
|