@seamapi/types 1.378.0 → 1.379.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 +74 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +132 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +60 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +61 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +1 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +30 -0
- package/lib/seam/connect/openapi.js +72 -12
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +42 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +72 -12
- package/src/lib/seam/connect/route-types.ts +42 -0
|
@@ -2586,17 +2586,19 @@ export default {
|
|
|
2586
2586
|
{
|
|
2587
2587
|
properties: {
|
|
2588
2588
|
created_at: { format: 'date-time', type: 'string' },
|
|
2589
|
+
message: { type: 'string' },
|
|
2589
2590
|
mutation_code: { enum: ['creating'], type: 'string' },
|
|
2590
2591
|
},
|
|
2591
|
-
required: ['created_at', 'mutation_code'],
|
|
2592
|
+
required: ['created_at', 'message', 'mutation_code'],
|
|
2592
2593
|
type: 'object',
|
|
2593
2594
|
},
|
|
2594
2595
|
{
|
|
2595
2596
|
properties: {
|
|
2596
2597
|
created_at: { format: 'date-time', type: 'string' },
|
|
2598
|
+
message: { type: 'string' },
|
|
2597
2599
|
mutation_code: { enum: ['deleting'], type: 'string' },
|
|
2598
2600
|
},
|
|
2599
|
-
required: ['created_at', 'mutation_code'],
|
|
2601
|
+
required: ['created_at', 'message', 'mutation_code'],
|
|
2600
2602
|
type: 'object',
|
|
2601
2603
|
},
|
|
2602
2604
|
{
|
|
@@ -2614,6 +2616,7 @@ export default {
|
|
|
2614
2616
|
},
|
|
2615
2617
|
type: 'object',
|
|
2616
2618
|
},
|
|
2619
|
+
message: { type: 'string' },
|
|
2617
2620
|
mutation_code: {
|
|
2618
2621
|
enum: ['updating_user_information'],
|
|
2619
2622
|
type: 'string',
|
|
@@ -2631,7 +2634,13 @@ export default {
|
|
|
2631
2634
|
type: 'object',
|
|
2632
2635
|
},
|
|
2633
2636
|
},
|
|
2634
|
-
required: [
|
|
2637
|
+
required: [
|
|
2638
|
+
'created_at',
|
|
2639
|
+
'message',
|
|
2640
|
+
'mutation_code',
|
|
2641
|
+
'from',
|
|
2642
|
+
'to',
|
|
2643
|
+
],
|
|
2635
2644
|
type: 'object',
|
|
2636
2645
|
},
|
|
2637
2646
|
{
|
|
@@ -2653,6 +2662,7 @@ export default {
|
|
|
2653
2662
|
required: ['starts_at', 'ends_at'],
|
|
2654
2663
|
type: 'object',
|
|
2655
2664
|
},
|
|
2665
|
+
message: { type: 'string' },
|
|
2656
2666
|
mutation_code: {
|
|
2657
2667
|
enum: ['updating_access_schedule'],
|
|
2658
2668
|
type: 'string',
|
|
@@ -2674,7 +2684,13 @@ export default {
|
|
|
2674
2684
|
type: 'object',
|
|
2675
2685
|
},
|
|
2676
2686
|
},
|
|
2677
|
-
required: [
|
|
2687
|
+
required: [
|
|
2688
|
+
'created_at',
|
|
2689
|
+
'message',
|
|
2690
|
+
'mutation_code',
|
|
2691
|
+
'from',
|
|
2692
|
+
'to',
|
|
2693
|
+
],
|
|
2678
2694
|
type: 'object',
|
|
2679
2695
|
},
|
|
2680
2696
|
{
|
|
@@ -2685,6 +2701,7 @@ export default {
|
|
|
2685
2701
|
required: ['is_suspended'],
|
|
2686
2702
|
type: 'object',
|
|
2687
2703
|
},
|
|
2704
|
+
message: { type: 'string' },
|
|
2688
2705
|
mutation_code: {
|
|
2689
2706
|
enum: ['updating_suspension_state'],
|
|
2690
2707
|
type: 'string',
|
|
@@ -2695,7 +2712,13 @@ export default {
|
|
|
2695
2712
|
type: 'object',
|
|
2696
2713
|
},
|
|
2697
2714
|
},
|
|
2698
|
-
required: [
|
|
2715
|
+
required: [
|
|
2716
|
+
'created_at',
|
|
2717
|
+
'message',
|
|
2718
|
+
'mutation_code',
|
|
2719
|
+
'from',
|
|
2720
|
+
'to',
|
|
2721
|
+
],
|
|
2699
2722
|
type: 'object',
|
|
2700
2723
|
},
|
|
2701
2724
|
{
|
|
@@ -2712,6 +2735,7 @@ export default {
|
|
|
2712
2735
|
required: ['acs_access_group_id'],
|
|
2713
2736
|
type: 'object',
|
|
2714
2737
|
},
|
|
2738
|
+
message: { type: 'string' },
|
|
2715
2739
|
mutation_code: {
|
|
2716
2740
|
enum: ['updating_group_membership'],
|
|
2717
2741
|
type: 'string',
|
|
@@ -2728,7 +2752,13 @@ export default {
|
|
|
2728
2752
|
type: 'object',
|
|
2729
2753
|
},
|
|
2730
2754
|
},
|
|
2731
|
-
required: [
|
|
2755
|
+
required: [
|
|
2756
|
+
'created_at',
|
|
2757
|
+
'message',
|
|
2758
|
+
'mutation_code',
|
|
2759
|
+
'from',
|
|
2760
|
+
'to',
|
|
2761
|
+
],
|
|
2732
2762
|
type: 'object',
|
|
2733
2763
|
},
|
|
2734
2764
|
],
|
|
@@ -14587,17 +14617,19 @@ export default {
|
|
|
14587
14617
|
{
|
|
14588
14618
|
properties: {
|
|
14589
14619
|
created_at: { format: 'date-time', type: 'string' },
|
|
14620
|
+
message: { type: 'string' },
|
|
14590
14621
|
mutation_code: { enum: ['creating'], type: 'string' },
|
|
14591
14622
|
},
|
|
14592
|
-
required: ['created_at', 'mutation_code'],
|
|
14623
|
+
required: ['created_at', 'message', 'mutation_code'],
|
|
14593
14624
|
type: 'object',
|
|
14594
14625
|
},
|
|
14595
14626
|
{
|
|
14596
14627
|
properties: {
|
|
14597
14628
|
created_at: { format: 'date-time', type: 'string' },
|
|
14629
|
+
message: { type: 'string' },
|
|
14598
14630
|
mutation_code: { enum: ['deleting'], type: 'string' },
|
|
14599
14631
|
},
|
|
14600
|
-
required: ['created_at', 'mutation_code'],
|
|
14632
|
+
required: ['created_at', 'message', 'mutation_code'],
|
|
14601
14633
|
type: 'object',
|
|
14602
14634
|
},
|
|
14603
14635
|
{
|
|
@@ -14615,6 +14647,7 @@ export default {
|
|
|
14615
14647
|
},
|
|
14616
14648
|
type: 'object',
|
|
14617
14649
|
},
|
|
14650
|
+
message: { type: 'string' },
|
|
14618
14651
|
mutation_code: {
|
|
14619
14652
|
enum: ['updating_user_information'],
|
|
14620
14653
|
type: 'string',
|
|
@@ -14632,7 +14665,13 @@ export default {
|
|
|
14632
14665
|
type: 'object',
|
|
14633
14666
|
},
|
|
14634
14667
|
},
|
|
14635
|
-
required: [
|
|
14668
|
+
required: [
|
|
14669
|
+
'created_at',
|
|
14670
|
+
'message',
|
|
14671
|
+
'mutation_code',
|
|
14672
|
+
'from',
|
|
14673
|
+
'to',
|
|
14674
|
+
],
|
|
14636
14675
|
type: 'object',
|
|
14637
14676
|
},
|
|
14638
14677
|
{
|
|
@@ -14654,6 +14693,7 @@ export default {
|
|
|
14654
14693
|
required: ['starts_at', 'ends_at'],
|
|
14655
14694
|
type: 'object',
|
|
14656
14695
|
},
|
|
14696
|
+
message: { type: 'string' },
|
|
14657
14697
|
mutation_code: {
|
|
14658
14698
|
enum: ['updating_access_schedule'],
|
|
14659
14699
|
type: 'string',
|
|
@@ -14675,7 +14715,13 @@ export default {
|
|
|
14675
14715
|
type: 'object',
|
|
14676
14716
|
},
|
|
14677
14717
|
},
|
|
14678
|
-
required: [
|
|
14718
|
+
required: [
|
|
14719
|
+
'created_at',
|
|
14720
|
+
'message',
|
|
14721
|
+
'mutation_code',
|
|
14722
|
+
'from',
|
|
14723
|
+
'to',
|
|
14724
|
+
],
|
|
14679
14725
|
type: 'object',
|
|
14680
14726
|
},
|
|
14681
14727
|
{
|
|
@@ -14686,6 +14732,7 @@ export default {
|
|
|
14686
14732
|
required: ['is_suspended'],
|
|
14687
14733
|
type: 'object',
|
|
14688
14734
|
},
|
|
14735
|
+
message: { type: 'string' },
|
|
14689
14736
|
mutation_code: {
|
|
14690
14737
|
enum: ['updating_suspension_state'],
|
|
14691
14738
|
type: 'string',
|
|
@@ -14696,7 +14743,13 @@ export default {
|
|
|
14696
14743
|
type: 'object',
|
|
14697
14744
|
},
|
|
14698
14745
|
},
|
|
14699
|
-
required: [
|
|
14746
|
+
required: [
|
|
14747
|
+
'created_at',
|
|
14748
|
+
'message',
|
|
14749
|
+
'mutation_code',
|
|
14750
|
+
'from',
|
|
14751
|
+
'to',
|
|
14752
|
+
],
|
|
14700
14753
|
type: 'object',
|
|
14701
14754
|
},
|
|
14702
14755
|
{
|
|
@@ -14713,6 +14766,7 @@ export default {
|
|
|
14713
14766
|
required: ['acs_access_group_id'],
|
|
14714
14767
|
type: 'object',
|
|
14715
14768
|
},
|
|
14769
|
+
message: { type: 'string' },
|
|
14716
14770
|
mutation_code: {
|
|
14717
14771
|
enum: ['updating_group_membership'],
|
|
14718
14772
|
type: 'string',
|
|
@@ -14729,7 +14783,13 @@ export default {
|
|
|
14729
14783
|
type: 'object',
|
|
14730
14784
|
},
|
|
14731
14785
|
},
|
|
14732
|
-
required: [
|
|
14786
|
+
required: [
|
|
14787
|
+
'created_at',
|
|
14788
|
+
'message',
|
|
14789
|
+
'mutation_code',
|
|
14790
|
+
'from',
|
|
14791
|
+
'to',
|
|
14792
|
+
],
|
|
14733
14793
|
type: 'object',
|
|
14734
14794
|
},
|
|
14735
14795
|
],
|