@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
|
@@ -9594,14 +9594,17 @@ export interface Routes {
|
|
|
9594
9594
|
| Array<
|
|
9595
9595
|
| {
|
|
9596
9596
|
created_at: string
|
|
9597
|
+
message: string
|
|
9597
9598
|
mutation_code: 'creating'
|
|
9598
9599
|
}
|
|
9599
9600
|
| {
|
|
9600
9601
|
created_at: string
|
|
9602
|
+
message: string
|
|
9601
9603
|
mutation_code: 'deleting'
|
|
9602
9604
|
}
|
|
9603
9605
|
| {
|
|
9604
9606
|
created_at: string
|
|
9607
|
+
message: string
|
|
9605
9608
|
mutation_code: 'updating_user_information'
|
|
9606
9609
|
from: {
|
|
9607
9610
|
email_address?: (string | null) | undefined
|
|
@@ -9616,6 +9619,7 @@ export interface Routes {
|
|
|
9616
9619
|
}
|
|
9617
9620
|
| {
|
|
9618
9621
|
created_at: string
|
|
9622
|
+
message: string
|
|
9619
9623
|
mutation_code: 'updating_access_schedule'
|
|
9620
9624
|
from: {
|
|
9621
9625
|
starts_at: string | null
|
|
@@ -9628,6 +9632,7 @@ export interface Routes {
|
|
|
9628
9632
|
}
|
|
9629
9633
|
| {
|
|
9630
9634
|
created_at: string
|
|
9635
|
+
message: string
|
|
9631
9636
|
mutation_code: 'updating_suspension_state'
|
|
9632
9637
|
from: {
|
|
9633
9638
|
is_suspended: boolean
|
|
@@ -9638,6 +9643,7 @@ export interface Routes {
|
|
|
9638
9643
|
}
|
|
9639
9644
|
| {
|
|
9640
9645
|
created_at: string
|
|
9646
|
+
message: string
|
|
9641
9647
|
mutation_code: 'updating_group_membership'
|
|
9642
9648
|
from: {
|
|
9643
9649
|
acs_access_group_id: string | null
|
|
@@ -14967,14 +14973,17 @@ export interface Routes {
|
|
|
14967
14973
|
| Array<
|
|
14968
14974
|
| {
|
|
14969
14975
|
created_at: string
|
|
14976
|
+
message: string
|
|
14970
14977
|
mutation_code: 'creating'
|
|
14971
14978
|
}
|
|
14972
14979
|
| {
|
|
14973
14980
|
created_at: string
|
|
14981
|
+
message: string
|
|
14974
14982
|
mutation_code: 'deleting'
|
|
14975
14983
|
}
|
|
14976
14984
|
| {
|
|
14977
14985
|
created_at: string
|
|
14986
|
+
message: string
|
|
14978
14987
|
mutation_code: 'updating_user_information'
|
|
14979
14988
|
from: {
|
|
14980
14989
|
email_address?: (string | null) | undefined
|
|
@@ -14989,6 +14998,7 @@ export interface Routes {
|
|
|
14989
14998
|
}
|
|
14990
14999
|
| {
|
|
14991
15000
|
created_at: string
|
|
15001
|
+
message: string
|
|
14992
15002
|
mutation_code: 'updating_access_schedule'
|
|
14993
15003
|
from: {
|
|
14994
15004
|
starts_at: string | null
|
|
@@ -15001,6 +15011,7 @@ export interface Routes {
|
|
|
15001
15011
|
}
|
|
15002
15012
|
| {
|
|
15003
15013
|
created_at: string
|
|
15014
|
+
message: string
|
|
15004
15015
|
mutation_code: 'updating_suspension_state'
|
|
15005
15016
|
from: {
|
|
15006
15017
|
is_suspended: boolean
|
|
@@ -15011,6 +15022,7 @@ export interface Routes {
|
|
|
15011
15022
|
}
|
|
15012
15023
|
| {
|
|
15013
15024
|
created_at: string
|
|
15025
|
+
message: string
|
|
15014
15026
|
mutation_code: 'updating_group_membership'
|
|
15015
15027
|
from: {
|
|
15016
15028
|
acs_access_group_id: string | null
|
|
@@ -15182,14 +15194,17 @@ export interface Routes {
|
|
|
15182
15194
|
| Array<
|
|
15183
15195
|
| {
|
|
15184
15196
|
created_at: string
|
|
15197
|
+
message: string
|
|
15185
15198
|
mutation_code: 'creating'
|
|
15186
15199
|
}
|
|
15187
15200
|
| {
|
|
15188
15201
|
created_at: string
|
|
15202
|
+
message: string
|
|
15189
15203
|
mutation_code: 'deleting'
|
|
15190
15204
|
}
|
|
15191
15205
|
| {
|
|
15192
15206
|
created_at: string
|
|
15207
|
+
message: string
|
|
15193
15208
|
mutation_code: 'updating_user_information'
|
|
15194
15209
|
from: {
|
|
15195
15210
|
email_address?: (string | null) | undefined
|
|
@@ -15204,6 +15219,7 @@ export interface Routes {
|
|
|
15204
15219
|
}
|
|
15205
15220
|
| {
|
|
15206
15221
|
created_at: string
|
|
15222
|
+
message: string
|
|
15207
15223
|
mutation_code: 'updating_access_schedule'
|
|
15208
15224
|
from: {
|
|
15209
15225
|
starts_at: string | null
|
|
@@ -15216,6 +15232,7 @@ export interface Routes {
|
|
|
15216
15232
|
}
|
|
15217
15233
|
| {
|
|
15218
15234
|
created_at: string
|
|
15235
|
+
message: string
|
|
15219
15236
|
mutation_code: 'updating_suspension_state'
|
|
15220
15237
|
from: {
|
|
15221
15238
|
is_suspended: boolean
|
|
@@ -15226,6 +15243,7 @@ export interface Routes {
|
|
|
15226
15243
|
}
|
|
15227
15244
|
| {
|
|
15228
15245
|
created_at: string
|
|
15246
|
+
message: string
|
|
15229
15247
|
mutation_code: 'updating_group_membership'
|
|
15230
15248
|
from: {
|
|
15231
15249
|
acs_access_group_id: string | null
|
|
@@ -15393,14 +15411,17 @@ export interface Routes {
|
|
|
15393
15411
|
| Array<
|
|
15394
15412
|
| {
|
|
15395
15413
|
created_at: string
|
|
15414
|
+
message: string
|
|
15396
15415
|
mutation_code: 'creating'
|
|
15397
15416
|
}
|
|
15398
15417
|
| {
|
|
15399
15418
|
created_at: string
|
|
15419
|
+
message: string
|
|
15400
15420
|
mutation_code: 'deleting'
|
|
15401
15421
|
}
|
|
15402
15422
|
| {
|
|
15403
15423
|
created_at: string
|
|
15424
|
+
message: string
|
|
15404
15425
|
mutation_code: 'updating_user_information'
|
|
15405
15426
|
from: {
|
|
15406
15427
|
email_address?: (string | null) | undefined
|
|
@@ -15415,6 +15436,7 @@ export interface Routes {
|
|
|
15415
15436
|
}
|
|
15416
15437
|
| {
|
|
15417
15438
|
created_at: string
|
|
15439
|
+
message: string
|
|
15418
15440
|
mutation_code: 'updating_access_schedule'
|
|
15419
15441
|
from: {
|
|
15420
15442
|
starts_at: string | null
|
|
@@ -15427,6 +15449,7 @@ export interface Routes {
|
|
|
15427
15449
|
}
|
|
15428
15450
|
| {
|
|
15429
15451
|
created_at: string
|
|
15452
|
+
message: string
|
|
15430
15453
|
mutation_code: 'updating_suspension_state'
|
|
15431
15454
|
from: {
|
|
15432
15455
|
is_suspended: boolean
|
|
@@ -15437,6 +15460,7 @@ export interface Routes {
|
|
|
15437
15460
|
}
|
|
15438
15461
|
| {
|
|
15439
15462
|
created_at: string
|
|
15463
|
+
message: string
|
|
15440
15464
|
mutation_code: 'updating_group_membership'
|
|
15441
15465
|
from: {
|
|
15442
15466
|
acs_access_group_id: string | null
|
|
@@ -15736,14 +15760,17 @@ export interface Routes {
|
|
|
15736
15760
|
| Array<
|
|
15737
15761
|
| {
|
|
15738
15762
|
created_at: string
|
|
15763
|
+
message: string
|
|
15739
15764
|
mutation_code: 'creating'
|
|
15740
15765
|
}
|
|
15741
15766
|
| {
|
|
15742
15767
|
created_at: string
|
|
15768
|
+
message: string
|
|
15743
15769
|
mutation_code: 'deleting'
|
|
15744
15770
|
}
|
|
15745
15771
|
| {
|
|
15746
15772
|
created_at: string
|
|
15773
|
+
message: string
|
|
15747
15774
|
mutation_code: 'updating_user_information'
|
|
15748
15775
|
from: {
|
|
15749
15776
|
email_address?: (string | null) | undefined
|
|
@@ -15758,6 +15785,7 @@ export interface Routes {
|
|
|
15758
15785
|
}
|
|
15759
15786
|
| {
|
|
15760
15787
|
created_at: string
|
|
15788
|
+
message: string
|
|
15761
15789
|
mutation_code: 'updating_access_schedule'
|
|
15762
15790
|
from: {
|
|
15763
15791
|
starts_at: string | null
|
|
@@ -15770,6 +15798,7 @@ export interface Routes {
|
|
|
15770
15798
|
}
|
|
15771
15799
|
| {
|
|
15772
15800
|
created_at: string
|
|
15801
|
+
message: string
|
|
15773
15802
|
mutation_code: 'updating_suspension_state'
|
|
15774
15803
|
from: {
|
|
15775
15804
|
is_suspended: boolean
|
|
@@ -15780,6 +15809,7 @@ export interface Routes {
|
|
|
15780
15809
|
}
|
|
15781
15810
|
| {
|
|
15782
15811
|
created_at: string
|
|
15812
|
+
message: string
|
|
15783
15813
|
mutation_code: 'updating_group_membership'
|
|
15784
15814
|
from: {
|
|
15785
15815
|
acs_access_group_id: string | null
|
|
@@ -15937,14 +15967,17 @@ export interface Routes {
|
|
|
15937
15967
|
| Array<
|
|
15938
15968
|
| {
|
|
15939
15969
|
created_at: string
|
|
15970
|
+
message: string
|
|
15940
15971
|
mutation_code: 'creating'
|
|
15941
15972
|
}
|
|
15942
15973
|
| {
|
|
15943
15974
|
created_at: string
|
|
15975
|
+
message: string
|
|
15944
15976
|
mutation_code: 'deleting'
|
|
15945
15977
|
}
|
|
15946
15978
|
| {
|
|
15947
15979
|
created_at: string
|
|
15980
|
+
message: string
|
|
15948
15981
|
mutation_code: 'updating_user_information'
|
|
15949
15982
|
from: {
|
|
15950
15983
|
email_address?: (string | null) | undefined
|
|
@@ -15959,6 +15992,7 @@ export interface Routes {
|
|
|
15959
15992
|
}
|
|
15960
15993
|
| {
|
|
15961
15994
|
created_at: string
|
|
15995
|
+
message: string
|
|
15962
15996
|
mutation_code: 'updating_access_schedule'
|
|
15963
15997
|
from: {
|
|
15964
15998
|
starts_at: string | null
|
|
@@ -15971,6 +16005,7 @@ export interface Routes {
|
|
|
15971
16005
|
}
|
|
15972
16006
|
| {
|
|
15973
16007
|
created_at: string
|
|
16008
|
+
message: string
|
|
15974
16009
|
mutation_code: 'updating_suspension_state'
|
|
15975
16010
|
from: {
|
|
15976
16011
|
is_suspended: boolean
|
|
@@ -15981,6 +16016,7 @@ export interface Routes {
|
|
|
15981
16016
|
}
|
|
15982
16017
|
| {
|
|
15983
16018
|
created_at: string
|
|
16019
|
+
message: string
|
|
15984
16020
|
mutation_code: 'updating_group_membership'
|
|
15985
16021
|
from: {
|
|
15986
16022
|
acs_access_group_id: string | null
|
|
@@ -50918,14 +50954,17 @@ export interface Routes {
|
|
|
50918
50954
|
| Array<
|
|
50919
50955
|
| {
|
|
50920
50956
|
created_at: string
|
|
50957
|
+
message: string
|
|
50921
50958
|
mutation_code: 'creating'
|
|
50922
50959
|
}
|
|
50923
50960
|
| {
|
|
50924
50961
|
created_at: string
|
|
50962
|
+
message: string
|
|
50925
50963
|
mutation_code: 'deleting'
|
|
50926
50964
|
}
|
|
50927
50965
|
| {
|
|
50928
50966
|
created_at: string
|
|
50967
|
+
message: string
|
|
50929
50968
|
mutation_code: 'updating_user_information'
|
|
50930
50969
|
from: {
|
|
50931
50970
|
email_address?: (string | null) | undefined
|
|
@@ -50940,6 +50979,7 @@ export interface Routes {
|
|
|
50940
50979
|
}
|
|
50941
50980
|
| {
|
|
50942
50981
|
created_at: string
|
|
50982
|
+
message: string
|
|
50943
50983
|
mutation_code: 'updating_access_schedule'
|
|
50944
50984
|
from: {
|
|
50945
50985
|
starts_at: string | null
|
|
@@ -50952,6 +50992,7 @@ export interface Routes {
|
|
|
50952
50992
|
}
|
|
50953
50993
|
| {
|
|
50954
50994
|
created_at: string
|
|
50995
|
+
message: string
|
|
50955
50996
|
mutation_code: 'updating_suspension_state'
|
|
50956
50997
|
from: {
|
|
50957
50998
|
is_suspended: boolean
|
|
@@ -50962,6 +51003,7 @@ export interface Routes {
|
|
|
50962
51003
|
}
|
|
50963
51004
|
| {
|
|
50964
51005
|
created_at: string
|
|
51006
|
+
message: string
|
|
50965
51007
|
mutation_code: 'updating_group_membership'
|
|
50966
51008
|
from: {
|
|
50967
51009
|
acs_access_group_id: string | null
|