@seamapi/types 1.612.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 +64 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +289 -0
- package/dist/index.cjs +64 -0
- package/dist/index.cjs.map +1 -1
- 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 +144 -0
- package/lib/seam/connect/openapi.d.ts +66 -0
- package/lib/seam/connect/openapi.js +54 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +99 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +20 -0
- package/src/lib/seam/connect/openapi.ts +62 -0
- package/src/lib/seam/connect/route-types.ts +110 -0
|
@@ -3373,6 +3373,33 @@ export default {
|
|
|
3373
3373
|
required: ['created_at', 'message', 'mutation_code'],
|
|
3374
3374
|
type: 'object',
|
|
3375
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
|
+
},
|
|
3376
3403
|
{
|
|
3377
3404
|
properties: {
|
|
3378
3405
|
created_at: {
|
|
@@ -21246,6 +21273,33 @@ export default {
|
|
|
21246
21273
|
required: ['created_at', 'message', 'mutation_code'],
|
|
21247
21274
|
type: 'object',
|
|
21248
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
|
+
},
|
|
21249
21303
|
{
|
|
21250
21304
|
properties: {
|
|
21251
21305
|
created_at: {
|