@seamapi/types 1.611.0 → 1.613.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 +123 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +546 -0
- package/dist/index.cjs +123 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +71 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +11 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +26 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +52 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +45 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +15 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +288 -0
- package/lib/seam/connect/openapi.d.ts +66 -0
- package/lib/seam/connect/openapi.js +106 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +216 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +12 -0
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +20 -0
- package/src/lib/seam/connect/openapi.ts +122 -0
- package/src/lib/seam/connect/route-types.ts +240 -0
|
@@ -694,6 +694,32 @@ export default {
|
|
|
694
694
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
695
695
|
type: 'object',
|
|
696
696
|
},
|
|
697
|
+
{
|
|
698
|
+
description: 'KeyNest locker is not supported.',
|
|
699
|
+
properties: {
|
|
700
|
+
created_at: {
|
|
701
|
+
description: 'Date and time at which Seam created the error.',
|
|
702
|
+
format: 'date-time',
|
|
703
|
+
type: 'string',
|
|
704
|
+
},
|
|
705
|
+
error_code: {
|
|
706
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
707
|
+
enum: ['keynest_unsupported_third_party_locker'],
|
|
708
|
+
type: 'string',
|
|
709
|
+
},
|
|
710
|
+
is_access_code_error: {
|
|
711
|
+
description: 'Indicates that this is an access code error.',
|
|
712
|
+
enum: [true],
|
|
713
|
+
type: 'boolean',
|
|
714
|
+
},
|
|
715
|
+
message: {
|
|
716
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
717
|
+
type: 'string',
|
|
718
|
+
},
|
|
719
|
+
},
|
|
720
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
721
|
+
type: 'object',
|
|
722
|
+
},
|
|
697
723
|
{
|
|
698
724
|
description: 'Indicates that the account is disconnected.',
|
|
699
725
|
properties: {
|
|
@@ -3347,6 +3373,33 @@ export default {
|
|
|
3347
3373
|
required: ['created_at', 'message', 'mutation_code'],
|
|
3348
3374
|
type: 'object',
|
|
3349
3375
|
},
|
|
3376
|
+
{
|
|
3377
|
+
description: 'User exists in Seam but has not been pushed to the provider yet. Will be created when a credential is issued.',
|
|
3378
|
+
properties: {
|
|
3379
|
+
created_at: {
|
|
3380
|
+
description: 'Date and time at which the mutation was created.',
|
|
3381
|
+
format: 'date-time',
|
|
3382
|
+
type: 'string',
|
|
3383
|
+
},
|
|
3384
|
+
message: {
|
|
3385
|
+
description: 'Detailed description of the mutation.',
|
|
3386
|
+
type: 'string',
|
|
3387
|
+
},
|
|
3388
|
+
mutation_code: {
|
|
3389
|
+
description: 'Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time.',
|
|
3390
|
+
enum: ['deferring_creation'],
|
|
3391
|
+
type: 'string',
|
|
3392
|
+
},
|
|
3393
|
+
scheduled_at: {
|
|
3394
|
+
description: 'Optional: When the user creation is scheduled to occur.',
|
|
3395
|
+
format: 'date-time',
|
|
3396
|
+
nullable: true,
|
|
3397
|
+
type: 'string',
|
|
3398
|
+
},
|
|
3399
|
+
},
|
|
3400
|
+
required: ['created_at', 'message', 'mutation_code'],
|
|
3401
|
+
type: 'object',
|
|
3402
|
+
},
|
|
3350
3403
|
{
|
|
3351
3404
|
properties: {
|
|
3352
3405
|
created_at: {
|
|
@@ -19641,6 +19694,32 @@ export default {
|
|
|
19641
19694
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
19642
19695
|
type: 'object',
|
|
19643
19696
|
},
|
|
19697
|
+
{
|
|
19698
|
+
description: 'KeyNest locker is not supported.',
|
|
19699
|
+
properties: {
|
|
19700
|
+
created_at: {
|
|
19701
|
+
description: 'Date and time at which Seam created the error.',
|
|
19702
|
+
format: 'date-time',
|
|
19703
|
+
type: 'string',
|
|
19704
|
+
},
|
|
19705
|
+
error_code: {
|
|
19706
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
19707
|
+
enum: ['keynest_unsupported_third_party_locker'],
|
|
19708
|
+
type: 'string',
|
|
19709
|
+
},
|
|
19710
|
+
is_access_code_error: {
|
|
19711
|
+
description: 'Indicates that this is an access code error.',
|
|
19712
|
+
enum: [true],
|
|
19713
|
+
type: 'boolean',
|
|
19714
|
+
},
|
|
19715
|
+
message: {
|
|
19716
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
19717
|
+
type: 'string',
|
|
19718
|
+
},
|
|
19719
|
+
},
|
|
19720
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
19721
|
+
type: 'object',
|
|
19722
|
+
},
|
|
19644
19723
|
{
|
|
19645
19724
|
description: 'Indicates that the account is disconnected.',
|
|
19646
19725
|
properties: {
|
|
@@ -21194,6 +21273,33 @@ export default {
|
|
|
21194
21273
|
required: ['created_at', 'message', 'mutation_code'],
|
|
21195
21274
|
type: 'object',
|
|
21196
21275
|
},
|
|
21276
|
+
{
|
|
21277
|
+
description: 'User exists in Seam but has not been pushed to the provider yet. Will be created when a credential is issued.',
|
|
21278
|
+
properties: {
|
|
21279
|
+
created_at: {
|
|
21280
|
+
description: 'Date and time at which the mutation was created.',
|
|
21281
|
+
format: 'date-time',
|
|
21282
|
+
type: 'string',
|
|
21283
|
+
},
|
|
21284
|
+
message: {
|
|
21285
|
+
description: 'Detailed description of the mutation.',
|
|
21286
|
+
type: 'string',
|
|
21287
|
+
},
|
|
21288
|
+
mutation_code: {
|
|
21289
|
+
description: 'Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time.',
|
|
21290
|
+
enum: ['deferring_creation'],
|
|
21291
|
+
type: 'string',
|
|
21292
|
+
},
|
|
21293
|
+
scheduled_at: {
|
|
21294
|
+
description: 'Optional: When the user creation is scheduled to occur.',
|
|
21295
|
+
format: 'date-time',
|
|
21296
|
+
nullable: true,
|
|
21297
|
+
type: 'string',
|
|
21298
|
+
},
|
|
21299
|
+
},
|
|
21300
|
+
required: ['created_at', 'message', 'mutation_code'],
|
|
21301
|
+
type: 'object',
|
|
21302
|
+
},
|
|
21197
21303
|
{
|
|
21198
21304
|
properties: {
|
|
21199
21305
|
created_at: {
|