@seamapi/types 1.739.0 → 1.740.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 +177 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +646 -0
- package/dist/index.cjs +177 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +62 -0
- package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.d.ts +53 -0
- package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.js +19 -0
- package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +62 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +53 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +19 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +172 -0
- package/lib/seam/connect/openapi.d.ts +174 -0
- package/lib/seam/connect/openapi.js +148 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +176 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.ts +26 -0
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +26 -0
- package/src/lib/seam/connect/openapi.ts +168 -0
- package/src/lib/seam/connect/route-types.ts +192 -0
|
@@ -2690,6 +2690,43 @@ export default {
|
|
|
2690
2690
|
],
|
|
2691
2691
|
type: 'object',
|
|
2692
2692
|
},
|
|
2693
|
+
{
|
|
2694
|
+
description: 'A scheduled user membership change is pending for this access group.',
|
|
2695
|
+
properties: {
|
|
2696
|
+
acs_user_id: {
|
|
2697
|
+
description: 'ID of the user involved in the scheduled change.',
|
|
2698
|
+
format: 'uuid',
|
|
2699
|
+
type: 'string',
|
|
2700
|
+
},
|
|
2701
|
+
created_at: {
|
|
2702
|
+
description: 'Date and time at which the mutation was created.',
|
|
2703
|
+
format: 'date-time',
|
|
2704
|
+
type: 'string',
|
|
2705
|
+
},
|
|
2706
|
+
message: {
|
|
2707
|
+
description: 'Detailed description of the mutation.',
|
|
2708
|
+
type: 'string',
|
|
2709
|
+
},
|
|
2710
|
+
mutation_code: {
|
|
2711
|
+
description: 'Mutation code to indicate that a scheduled user membership change is pending for this access group.',
|
|
2712
|
+
enum: ['deferring_user_membership_update'],
|
|
2713
|
+
type: 'string',
|
|
2714
|
+
},
|
|
2715
|
+
variant: {
|
|
2716
|
+
description: 'Whether the user is scheduled to be added to or removed from this access group.',
|
|
2717
|
+
enum: ['adding', 'removing'],
|
|
2718
|
+
type: 'string',
|
|
2719
|
+
},
|
|
2720
|
+
},
|
|
2721
|
+
required: [
|
|
2722
|
+
'created_at',
|
|
2723
|
+
'message',
|
|
2724
|
+
'mutation_code',
|
|
2725
|
+
'acs_user_id',
|
|
2726
|
+
'variant',
|
|
2727
|
+
],
|
|
2728
|
+
type: 'object',
|
|
2729
|
+
},
|
|
2693
2730
|
],
|
|
2694
2731
|
},
|
|
2695
2732
|
type: 'array',
|
|
@@ -4455,6 +4492,43 @@ export default {
|
|
|
4455
4492
|
],
|
|
4456
4493
|
type: 'object',
|
|
4457
4494
|
},
|
|
4495
|
+
{
|
|
4496
|
+
description: 'A scheduled access group membership change is pending for this user.',
|
|
4497
|
+
properties: {
|
|
4498
|
+
acs_access_group_id: {
|
|
4499
|
+
description: 'ID of the access group involved in the scheduled change.',
|
|
4500
|
+
format: 'uuid',
|
|
4501
|
+
type: 'string',
|
|
4502
|
+
},
|
|
4503
|
+
created_at: {
|
|
4504
|
+
description: 'Date and time at which the mutation was created.',
|
|
4505
|
+
format: 'date-time',
|
|
4506
|
+
type: 'string',
|
|
4507
|
+
},
|
|
4508
|
+
message: {
|
|
4509
|
+
description: 'Detailed description of the mutation.',
|
|
4510
|
+
type: 'string',
|
|
4511
|
+
},
|
|
4512
|
+
mutation_code: {
|
|
4513
|
+
description: 'Mutation code to indicate that a scheduled access group membership change is pending for this user.',
|
|
4514
|
+
enum: ['deferring_group_membership_update'],
|
|
4515
|
+
type: 'string',
|
|
4516
|
+
},
|
|
4517
|
+
variant: {
|
|
4518
|
+
description: 'Whether the user is scheduled to be added to or removed from the access group.',
|
|
4519
|
+
enum: ['adding', 'removing'],
|
|
4520
|
+
type: 'string',
|
|
4521
|
+
},
|
|
4522
|
+
},
|
|
4523
|
+
required: [
|
|
4524
|
+
'created_at',
|
|
4525
|
+
'message',
|
|
4526
|
+
'mutation_code',
|
|
4527
|
+
'acs_access_group_id',
|
|
4528
|
+
'variant',
|
|
4529
|
+
],
|
|
4530
|
+
type: 'object',
|
|
4531
|
+
},
|
|
4458
4532
|
],
|
|
4459
4533
|
},
|
|
4460
4534
|
type: 'array',
|
|
@@ -24355,6 +24429,43 @@ export default {
|
|
|
24355
24429
|
],
|
|
24356
24430
|
type: 'object',
|
|
24357
24431
|
},
|
|
24432
|
+
{
|
|
24433
|
+
description: 'A scheduled user membership change is pending for this access group.',
|
|
24434
|
+
properties: {
|
|
24435
|
+
acs_user_id: {
|
|
24436
|
+
description: 'ID of the user involved in the scheduled change.',
|
|
24437
|
+
format: 'uuid',
|
|
24438
|
+
type: 'string',
|
|
24439
|
+
},
|
|
24440
|
+
created_at: {
|
|
24441
|
+
description: 'Date and time at which the mutation was created.',
|
|
24442
|
+
format: 'date-time',
|
|
24443
|
+
type: 'string',
|
|
24444
|
+
},
|
|
24445
|
+
message: {
|
|
24446
|
+
description: 'Detailed description of the mutation.',
|
|
24447
|
+
type: 'string',
|
|
24448
|
+
},
|
|
24449
|
+
mutation_code: {
|
|
24450
|
+
description: 'Mutation code to indicate that a scheduled user membership change is pending for this access group.',
|
|
24451
|
+
enum: ['deferring_user_membership_update'],
|
|
24452
|
+
type: 'string',
|
|
24453
|
+
},
|
|
24454
|
+
variant: {
|
|
24455
|
+
description: 'Whether the user is scheduled to be added to or removed from this access group.',
|
|
24456
|
+
enum: ['adding', 'removing'],
|
|
24457
|
+
type: 'string',
|
|
24458
|
+
},
|
|
24459
|
+
},
|
|
24460
|
+
required: [
|
|
24461
|
+
'created_at',
|
|
24462
|
+
'message',
|
|
24463
|
+
'mutation_code',
|
|
24464
|
+
'acs_user_id',
|
|
24465
|
+
'variant',
|
|
24466
|
+
],
|
|
24467
|
+
type: 'object',
|
|
24468
|
+
},
|
|
24358
24469
|
],
|
|
24359
24470
|
},
|
|
24360
24471
|
type: 'array',
|
|
@@ -25320,6 +25431,43 @@ export default {
|
|
|
25320
25431
|
],
|
|
25321
25432
|
type: 'object',
|
|
25322
25433
|
},
|
|
25434
|
+
{
|
|
25435
|
+
description: 'A scheduled access group membership change is pending for this user.',
|
|
25436
|
+
properties: {
|
|
25437
|
+
acs_access_group_id: {
|
|
25438
|
+
description: 'ID of the access group involved in the scheduled change.',
|
|
25439
|
+
format: 'uuid',
|
|
25440
|
+
type: 'string',
|
|
25441
|
+
},
|
|
25442
|
+
created_at: {
|
|
25443
|
+
description: 'Date and time at which the mutation was created.',
|
|
25444
|
+
format: 'date-time',
|
|
25445
|
+
type: 'string',
|
|
25446
|
+
},
|
|
25447
|
+
message: {
|
|
25448
|
+
description: 'Detailed description of the mutation.',
|
|
25449
|
+
type: 'string',
|
|
25450
|
+
},
|
|
25451
|
+
mutation_code: {
|
|
25452
|
+
description: 'Mutation code to indicate that a scheduled access group membership change is pending for this user.',
|
|
25453
|
+
enum: ['deferring_group_membership_update'],
|
|
25454
|
+
type: 'string',
|
|
25455
|
+
},
|
|
25456
|
+
variant: {
|
|
25457
|
+
description: 'Whether the user is scheduled to be added to or removed from the access group.',
|
|
25458
|
+
enum: ['adding', 'removing'],
|
|
25459
|
+
type: 'string',
|
|
25460
|
+
},
|
|
25461
|
+
},
|
|
25462
|
+
required: [
|
|
25463
|
+
'created_at',
|
|
25464
|
+
'message',
|
|
25465
|
+
'mutation_code',
|
|
25466
|
+
'acs_access_group_id',
|
|
25467
|
+
'variant',
|
|
25468
|
+
],
|
|
25469
|
+
type: 'object',
|
|
25470
|
+
},
|
|
25323
25471
|
],
|
|
25324
25472
|
},
|
|
25325
25473
|
type: 'array',
|