@seamapi/types 1.892.0 → 1.893.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 +185 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +657 -0
- package/dist/index.cjs +185 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +31 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +31 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +162 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +20 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +50 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -0
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +8 -8
- package/lib/seam/connect/models/user-identities/user-identity.js +1 -3
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.js +166 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +449 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +26 -0
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +1 -3
- package/src/lib/seam/connect/openapi.ts +200 -0
- package/src/lib/seam/connect/route-types.ts +492 -0
|
@@ -1233,6 +1233,35 @@ const openapi = {
|
|
|
1233
1233
|
required: ['created_at', 'message', 'error_code'],
|
|
1234
1234
|
type: 'object',
|
|
1235
1235
|
},
|
|
1236
|
+
{
|
|
1237
|
+
description: 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
1238
|
+
properties: {
|
|
1239
|
+
created_at: {
|
|
1240
|
+
description: 'Date and time at which Seam created the error.',
|
|
1241
|
+
format: 'date-time',
|
|
1242
|
+
type: 'string',
|
|
1243
|
+
},
|
|
1244
|
+
error_code: {
|
|
1245
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
1246
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
1247
|
+
type: 'string',
|
|
1248
|
+
},
|
|
1249
|
+
is_bridge_error: {
|
|
1250
|
+
description: 'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
1251
|
+
type: 'boolean',
|
|
1252
|
+
},
|
|
1253
|
+
is_connected_account_error: {
|
|
1254
|
+
description: 'Indicates whether the error is related specifically to the connected account.',
|
|
1255
|
+
type: 'boolean',
|
|
1256
|
+
},
|
|
1257
|
+
message: {
|
|
1258
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
1259
|
+
type: 'string',
|
|
1260
|
+
},
|
|
1261
|
+
},
|
|
1262
|
+
required: ['created_at', 'message', 'error_code'],
|
|
1263
|
+
type: 'object',
|
|
1264
|
+
},
|
|
1236
1265
|
],
|
|
1237
1266
|
},
|
|
1238
1267
|
type: 'array',
|
|
@@ -11234,6 +11263,35 @@ const openapi = {
|
|
|
11234
11263
|
],
|
|
11235
11264
|
type: 'object',
|
|
11236
11265
|
},
|
|
11266
|
+
{
|
|
11267
|
+
description: 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
11268
|
+
properties: {
|
|
11269
|
+
created_at: {
|
|
11270
|
+
description: 'Date and time at which Seam created the error.',
|
|
11271
|
+
format: 'date-time',
|
|
11272
|
+
type: 'string',
|
|
11273
|
+
},
|
|
11274
|
+
error_code: {
|
|
11275
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11276
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
11277
|
+
type: 'string',
|
|
11278
|
+
},
|
|
11279
|
+
is_bridge_error: {
|
|
11280
|
+
description: 'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
11281
|
+
type: 'boolean',
|
|
11282
|
+
},
|
|
11283
|
+
is_connected_account_error: {
|
|
11284
|
+
description: 'Indicates whether the error is related specifically to the connected account.',
|
|
11285
|
+
type: 'boolean',
|
|
11286
|
+
},
|
|
11287
|
+
message: {
|
|
11288
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
11289
|
+
type: 'string',
|
|
11290
|
+
},
|
|
11291
|
+
},
|
|
11292
|
+
required: ['created_at', 'message', 'error_code'],
|
|
11293
|
+
type: 'object',
|
|
11294
|
+
},
|
|
11237
11295
|
],
|
|
11238
11296
|
},
|
|
11239
11297
|
type: 'array',
|
|
@@ -11482,6 +11540,27 @@ const openapi = {
|
|
|
11482
11540
|
required: ['created_at', 'message', 'warning_code'],
|
|
11483
11541
|
type: 'object',
|
|
11484
11542
|
},
|
|
11543
|
+
{
|
|
11544
|
+
description: 'Indicates that one or more dormakaba sites associated with the connected account are not approved. Contact support@getseam.com to finish setting up your account.',
|
|
11545
|
+
properties: {
|
|
11546
|
+
created_at: {
|
|
11547
|
+
description: 'Date and time at which Seam created the warning.',
|
|
11548
|
+
format: 'date-time',
|
|
11549
|
+
type: 'string',
|
|
11550
|
+
},
|
|
11551
|
+
message: {
|
|
11552
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
11553
|
+
type: 'string',
|
|
11554
|
+
},
|
|
11555
|
+
warning_code: {
|
|
11556
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
11557
|
+
enum: ['dormakaba_sites_unapproved'],
|
|
11558
|
+
type: 'string',
|
|
11559
|
+
},
|
|
11560
|
+
},
|
|
11561
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
11562
|
+
type: 'object',
|
|
11563
|
+
},
|
|
11485
11564
|
],
|
|
11486
11565
|
},
|
|
11487
11566
|
type: 'array',
|
|
@@ -12275,6 +12354,35 @@ const openapi = {
|
|
|
12275
12354
|
required: ['created_at', 'message', 'error_code'],
|
|
12276
12355
|
type: 'object',
|
|
12277
12356
|
},
|
|
12357
|
+
{
|
|
12358
|
+
description: 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
12359
|
+
properties: {
|
|
12360
|
+
created_at: {
|
|
12361
|
+
description: 'Date and time at which Seam created the error.',
|
|
12362
|
+
format: 'date-time',
|
|
12363
|
+
type: 'string',
|
|
12364
|
+
},
|
|
12365
|
+
error_code: {
|
|
12366
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12367
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
12368
|
+
type: 'string',
|
|
12369
|
+
},
|
|
12370
|
+
is_bridge_error: {
|
|
12371
|
+
description: 'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
12372
|
+
type: 'boolean',
|
|
12373
|
+
},
|
|
12374
|
+
is_connected_account_error: {
|
|
12375
|
+
description: 'Indicates whether the error is related specifically to the connected account.',
|
|
12376
|
+
type: 'boolean',
|
|
12377
|
+
},
|
|
12378
|
+
message: {
|
|
12379
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
12380
|
+
type: 'string',
|
|
12381
|
+
},
|
|
12382
|
+
},
|
|
12383
|
+
required: ['created_at', 'message', 'error_code'],
|
|
12384
|
+
type: 'object',
|
|
12385
|
+
},
|
|
12278
12386
|
],
|
|
12279
12387
|
},
|
|
12280
12388
|
type: 'array',
|
|
@@ -26515,6 +26623,35 @@ const openapi = {
|
|
|
26515
26623
|
required: ['created_at', 'message', 'error_code'],
|
|
26516
26624
|
type: 'object',
|
|
26517
26625
|
},
|
|
26626
|
+
{
|
|
26627
|
+
description: 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
26628
|
+
properties: {
|
|
26629
|
+
created_at: {
|
|
26630
|
+
description: 'Date and time at which Seam created the error.',
|
|
26631
|
+
format: 'date-time',
|
|
26632
|
+
type: 'string',
|
|
26633
|
+
},
|
|
26634
|
+
error_code: {
|
|
26635
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26636
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
26637
|
+
type: 'string',
|
|
26638
|
+
},
|
|
26639
|
+
is_bridge_error: {
|
|
26640
|
+
description: 'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
26641
|
+
type: 'boolean',
|
|
26642
|
+
},
|
|
26643
|
+
is_connected_account_error: {
|
|
26644
|
+
description: 'Indicates whether the error is related specifically to the connected account.',
|
|
26645
|
+
type: 'boolean',
|
|
26646
|
+
},
|
|
26647
|
+
message: {
|
|
26648
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26649
|
+
type: 'string',
|
|
26650
|
+
},
|
|
26651
|
+
},
|
|
26652
|
+
required: ['created_at', 'message', 'error_code'],
|
|
26653
|
+
type: 'object',
|
|
26654
|
+
},
|
|
26518
26655
|
],
|
|
26519
26656
|
},
|
|
26520
26657
|
type: 'array',
|
|
@@ -29262,6 +29399,35 @@ const openapi = {
|
|
|
29262
29399
|
required: ['created_at', 'message', 'error_code'],
|
|
29263
29400
|
type: 'object',
|
|
29264
29401
|
},
|
|
29402
|
+
{
|
|
29403
|
+
description: 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
29404
|
+
properties: {
|
|
29405
|
+
created_at: {
|
|
29406
|
+
description: 'Date and time at which Seam created the error.',
|
|
29407
|
+
format: 'date-time',
|
|
29408
|
+
type: 'string',
|
|
29409
|
+
},
|
|
29410
|
+
error_code: {
|
|
29411
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
29412
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
29413
|
+
type: 'string',
|
|
29414
|
+
},
|
|
29415
|
+
is_bridge_error: {
|
|
29416
|
+
description: 'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
29417
|
+
type: 'boolean',
|
|
29418
|
+
},
|
|
29419
|
+
is_connected_account_error: {
|
|
29420
|
+
description: 'Indicates whether the error is related specifically to the connected account.',
|
|
29421
|
+
type: 'boolean',
|
|
29422
|
+
},
|
|
29423
|
+
message: {
|
|
29424
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
29425
|
+
type: 'string',
|
|
29426
|
+
},
|
|
29427
|
+
},
|
|
29428
|
+
required: ['created_at', 'message', 'error_code'],
|
|
29429
|
+
type: 'object',
|
|
29430
|
+
},
|
|
29265
29431
|
],
|
|
29266
29432
|
},
|
|
29267
29433
|
type: 'array',
|