@seamapi/types 1.522.0 → 1.523.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 +60 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +259 -0
- package/dist/index.cjs +60 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +100 -0
- package/lib/seam/connect/models/customer/customer-delete-data.d.ts +2 -2
- package/lib/seam/connect/models/events/access-methods.d.ts +60 -0
- package/lib/seam/connect/models/events/access-methods.js +7 -0
- package/lib/seam/connect/models/events/access-methods.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +30 -0
- package/lib/seam/connect/openapi.d.ts +79 -0
- package/lib/seam/connect/openapi.js +55 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/access-methods.ts +9 -0
- package/src/lib/seam/connect/openapi.ts +65 -0
- package/src/lib/seam/connect/route-types.ts +100 -0
|
@@ -20585,6 +20585,10 @@ export type Routes = {
|
|
|
20585
20585
|
occurred_at: string
|
|
20586
20586
|
/** ID of the affected access method. */
|
|
20587
20587
|
access_method_id: string
|
|
20588
|
+
/** IDs of the access grants associated with this access method. */
|
|
20589
|
+
access_grant_ids: string[]
|
|
20590
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
20591
|
+
access_grant_keys?: string[] | undefined
|
|
20588
20592
|
event_type: 'access_method.issued'
|
|
20589
20593
|
}
|
|
20590
20594
|
| {
|
|
@@ -20598,6 +20602,10 @@ export type Routes = {
|
|
|
20598
20602
|
occurred_at: string
|
|
20599
20603
|
/** ID of the affected access method. */
|
|
20600
20604
|
access_method_id: string
|
|
20605
|
+
/** IDs of the access grants associated with this access method. */
|
|
20606
|
+
access_grant_ids: string[]
|
|
20607
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
20608
|
+
access_grant_keys?: string[] | undefined
|
|
20601
20609
|
event_type: 'access_method.revoked'
|
|
20602
20610
|
}
|
|
20603
20611
|
| {
|
|
@@ -20611,6 +20619,10 @@ export type Routes = {
|
|
|
20611
20619
|
occurred_at: string
|
|
20612
20620
|
/** ID of the affected access method. */
|
|
20613
20621
|
access_method_id: string
|
|
20622
|
+
/** IDs of the access grants associated with this access method. */
|
|
20623
|
+
access_grant_ids: string[]
|
|
20624
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
20625
|
+
access_grant_keys?: string[] | undefined
|
|
20614
20626
|
event_type: 'access_method.card_encoding_required'
|
|
20615
20627
|
}
|
|
20616
20628
|
| {
|
|
@@ -20624,6 +20636,10 @@ export type Routes = {
|
|
|
20624
20636
|
occurred_at: string
|
|
20625
20637
|
/** ID of the affected access method. */
|
|
20626
20638
|
access_method_id: string
|
|
20639
|
+
/** IDs of the access grants associated with this access method. */
|
|
20640
|
+
access_grant_ids: string[]
|
|
20641
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
20642
|
+
access_grant_keys?: string[] | undefined
|
|
20627
20643
|
event_type: 'access_method.deleted'
|
|
20628
20644
|
}
|
|
20629
20645
|
| {
|
|
@@ -20637,6 +20653,10 @@ export type Routes = {
|
|
|
20637
20653
|
occurred_at: string
|
|
20638
20654
|
/** ID of the affected access method. */
|
|
20639
20655
|
access_method_id: string
|
|
20656
|
+
/** IDs of the access grants associated with this access method. */
|
|
20657
|
+
access_grant_ids: string[]
|
|
20658
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
20659
|
+
access_grant_keys?: string[] | undefined
|
|
20640
20660
|
event_type: 'access_method.reissued'
|
|
20641
20661
|
}
|
|
20642
20662
|
| {
|
|
@@ -41748,6 +41768,10 @@ export type Routes = {
|
|
|
41748
41768
|
occurred_at: string
|
|
41749
41769
|
/** ID of the affected access method. */
|
|
41750
41770
|
access_method_id: string
|
|
41771
|
+
/** IDs of the access grants associated with this access method. */
|
|
41772
|
+
access_grant_ids: string[]
|
|
41773
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
41774
|
+
access_grant_keys?: string[] | undefined
|
|
41751
41775
|
event_type: 'access_method.issued'
|
|
41752
41776
|
}
|
|
41753
41777
|
| {
|
|
@@ -41761,6 +41785,10 @@ export type Routes = {
|
|
|
41761
41785
|
occurred_at: string
|
|
41762
41786
|
/** ID of the affected access method. */
|
|
41763
41787
|
access_method_id: string
|
|
41788
|
+
/** IDs of the access grants associated with this access method. */
|
|
41789
|
+
access_grant_ids: string[]
|
|
41790
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
41791
|
+
access_grant_keys?: string[] | undefined
|
|
41764
41792
|
event_type: 'access_method.revoked'
|
|
41765
41793
|
}
|
|
41766
41794
|
| {
|
|
@@ -41774,6 +41802,10 @@ export type Routes = {
|
|
|
41774
41802
|
occurred_at: string
|
|
41775
41803
|
/** ID of the affected access method. */
|
|
41776
41804
|
access_method_id: string
|
|
41805
|
+
/** IDs of the access grants associated with this access method. */
|
|
41806
|
+
access_grant_ids: string[]
|
|
41807
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
41808
|
+
access_grant_keys?: string[] | undefined
|
|
41777
41809
|
event_type: 'access_method.card_encoding_required'
|
|
41778
41810
|
}
|
|
41779
41811
|
| {
|
|
@@ -41787,6 +41819,10 @@ export type Routes = {
|
|
|
41787
41819
|
occurred_at: string
|
|
41788
41820
|
/** ID of the affected access method. */
|
|
41789
41821
|
access_method_id: string
|
|
41822
|
+
/** IDs of the access grants associated with this access method. */
|
|
41823
|
+
access_grant_ids: string[]
|
|
41824
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
41825
|
+
access_grant_keys?: string[] | undefined
|
|
41790
41826
|
event_type: 'access_method.deleted'
|
|
41791
41827
|
}
|
|
41792
41828
|
| {
|
|
@@ -41800,6 +41836,10 @@ export type Routes = {
|
|
|
41800
41836
|
occurred_at: string
|
|
41801
41837
|
/** ID of the affected access method. */
|
|
41802
41838
|
access_method_id: string
|
|
41839
|
+
/** IDs of the access grants associated with this access method. */
|
|
41840
|
+
access_grant_ids: string[]
|
|
41841
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
41842
|
+
access_grant_keys?: string[] | undefined
|
|
41803
41843
|
event_type: 'access_method.reissued'
|
|
41804
41844
|
}
|
|
41805
41845
|
| {
|
|
@@ -44145,6 +44185,10 @@ export type Routes = {
|
|
|
44145
44185
|
occurred_at: string
|
|
44146
44186
|
/** ID of the affected access method. */
|
|
44147
44187
|
access_method_id: string
|
|
44188
|
+
/** IDs of the access grants associated with this access method. */
|
|
44189
|
+
access_grant_ids: string[]
|
|
44190
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
44191
|
+
access_grant_keys?: string[] | undefined
|
|
44148
44192
|
event_type: 'access_method.issued'
|
|
44149
44193
|
}
|
|
44150
44194
|
| {
|
|
@@ -44158,6 +44202,10 @@ export type Routes = {
|
|
|
44158
44202
|
occurred_at: string
|
|
44159
44203
|
/** ID of the affected access method. */
|
|
44160
44204
|
access_method_id: string
|
|
44205
|
+
/** IDs of the access grants associated with this access method. */
|
|
44206
|
+
access_grant_ids: string[]
|
|
44207
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
44208
|
+
access_grant_keys?: string[] | undefined
|
|
44161
44209
|
event_type: 'access_method.revoked'
|
|
44162
44210
|
}
|
|
44163
44211
|
| {
|
|
@@ -44171,6 +44219,10 @@ export type Routes = {
|
|
|
44171
44219
|
occurred_at: string
|
|
44172
44220
|
/** ID of the affected access method. */
|
|
44173
44221
|
access_method_id: string
|
|
44222
|
+
/** IDs of the access grants associated with this access method. */
|
|
44223
|
+
access_grant_ids: string[]
|
|
44224
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
44225
|
+
access_grant_keys?: string[] | undefined
|
|
44174
44226
|
event_type: 'access_method.card_encoding_required'
|
|
44175
44227
|
}
|
|
44176
44228
|
| {
|
|
@@ -44184,6 +44236,10 @@ export type Routes = {
|
|
|
44184
44236
|
occurred_at: string
|
|
44185
44237
|
/** ID of the affected access method. */
|
|
44186
44238
|
access_method_id: string
|
|
44239
|
+
/** IDs of the access grants associated with this access method. */
|
|
44240
|
+
access_grant_ids: string[]
|
|
44241
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
44242
|
+
access_grant_keys?: string[] | undefined
|
|
44187
44243
|
event_type: 'access_method.deleted'
|
|
44188
44244
|
}
|
|
44189
44245
|
| {
|
|
@@ -44197,6 +44253,10 @@ export type Routes = {
|
|
|
44197
44253
|
occurred_at: string
|
|
44198
44254
|
/** ID of the affected access method. */
|
|
44199
44255
|
access_method_id: string
|
|
44256
|
+
/** IDs of the access grants associated with this access method. */
|
|
44257
|
+
access_grant_ids: string[]
|
|
44258
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
44259
|
+
access_grant_keys?: string[] | undefined
|
|
44200
44260
|
event_type: 'access_method.reissued'
|
|
44201
44261
|
}
|
|
44202
44262
|
| {
|
|
@@ -66794,6 +66854,10 @@ export type Routes = {
|
|
|
66794
66854
|
occurred_at: string
|
|
66795
66855
|
/** ID of the affected access method. */
|
|
66796
66856
|
access_method_id: string
|
|
66857
|
+
/** IDs of the access grants associated with this access method. */
|
|
66858
|
+
access_grant_ids: string[]
|
|
66859
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
66860
|
+
access_grant_keys?: string[] | undefined
|
|
66797
66861
|
event_type: 'access_method.issued'
|
|
66798
66862
|
}
|
|
66799
66863
|
| {
|
|
@@ -66807,6 +66871,10 @@ export type Routes = {
|
|
|
66807
66871
|
occurred_at: string
|
|
66808
66872
|
/** ID of the affected access method. */
|
|
66809
66873
|
access_method_id: string
|
|
66874
|
+
/** IDs of the access grants associated with this access method. */
|
|
66875
|
+
access_grant_ids: string[]
|
|
66876
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
66877
|
+
access_grant_keys?: string[] | undefined
|
|
66810
66878
|
event_type: 'access_method.revoked'
|
|
66811
66879
|
}
|
|
66812
66880
|
| {
|
|
@@ -66820,6 +66888,10 @@ export type Routes = {
|
|
|
66820
66888
|
occurred_at: string
|
|
66821
66889
|
/** ID of the affected access method. */
|
|
66822
66890
|
access_method_id: string
|
|
66891
|
+
/** IDs of the access grants associated with this access method. */
|
|
66892
|
+
access_grant_ids: string[]
|
|
66893
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
66894
|
+
access_grant_keys?: string[] | undefined
|
|
66823
66895
|
event_type: 'access_method.card_encoding_required'
|
|
66824
66896
|
}
|
|
66825
66897
|
| {
|
|
@@ -66833,6 +66905,10 @@ export type Routes = {
|
|
|
66833
66905
|
occurred_at: string
|
|
66834
66906
|
/** ID of the affected access method. */
|
|
66835
66907
|
access_method_id: string
|
|
66908
|
+
/** IDs of the access grants associated with this access method. */
|
|
66909
|
+
access_grant_ids: string[]
|
|
66910
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
66911
|
+
access_grant_keys?: string[] | undefined
|
|
66836
66912
|
event_type: 'access_method.deleted'
|
|
66837
66913
|
}
|
|
66838
66914
|
| {
|
|
@@ -66846,6 +66922,10 @@ export type Routes = {
|
|
|
66846
66922
|
occurred_at: string
|
|
66847
66923
|
/** ID of the affected access method. */
|
|
66848
66924
|
access_method_id: string
|
|
66925
|
+
/** IDs of the access grants associated with this access method. */
|
|
66926
|
+
access_grant_ids: string[]
|
|
66927
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
66928
|
+
access_grant_keys?: string[] | undefined
|
|
66849
66929
|
event_type: 'access_method.reissued'
|
|
66850
66930
|
}
|
|
66851
66931
|
| {
|
|
@@ -99167,6 +99247,10 @@ export type Routes = {
|
|
|
99167
99247
|
occurred_at: string
|
|
99168
99248
|
/** ID of the affected access method. */
|
|
99169
99249
|
access_method_id: string
|
|
99250
|
+
/** IDs of the access grants associated with this access method. */
|
|
99251
|
+
access_grant_ids: string[]
|
|
99252
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
99253
|
+
access_grant_keys?: string[] | undefined
|
|
99170
99254
|
event_type: 'access_method.issued'
|
|
99171
99255
|
}
|
|
99172
99256
|
| {
|
|
@@ -99180,6 +99264,10 @@ export type Routes = {
|
|
|
99180
99264
|
occurred_at: string
|
|
99181
99265
|
/** ID of the affected access method. */
|
|
99182
99266
|
access_method_id: string
|
|
99267
|
+
/** IDs of the access grants associated with this access method. */
|
|
99268
|
+
access_grant_ids: string[]
|
|
99269
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
99270
|
+
access_grant_keys?: string[] | undefined
|
|
99183
99271
|
event_type: 'access_method.revoked'
|
|
99184
99272
|
}
|
|
99185
99273
|
| {
|
|
@@ -99193,6 +99281,10 @@ export type Routes = {
|
|
|
99193
99281
|
occurred_at: string
|
|
99194
99282
|
/** ID of the affected access method. */
|
|
99195
99283
|
access_method_id: string
|
|
99284
|
+
/** IDs of the access grants associated with this access method. */
|
|
99285
|
+
access_grant_ids: string[]
|
|
99286
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
99287
|
+
access_grant_keys?: string[] | undefined
|
|
99196
99288
|
event_type: 'access_method.card_encoding_required'
|
|
99197
99289
|
}
|
|
99198
99290
|
| {
|
|
@@ -99206,6 +99298,10 @@ export type Routes = {
|
|
|
99206
99298
|
occurred_at: string
|
|
99207
99299
|
/** ID of the affected access method. */
|
|
99208
99300
|
access_method_id: string
|
|
99301
|
+
/** IDs of the access grants associated with this access method. */
|
|
99302
|
+
access_grant_ids: string[]
|
|
99303
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
99304
|
+
access_grant_keys?: string[] | undefined
|
|
99209
99305
|
event_type: 'access_method.deleted'
|
|
99210
99306
|
}
|
|
99211
99307
|
| {
|
|
@@ -99219,6 +99315,10 @@ export type Routes = {
|
|
|
99219
99315
|
occurred_at: string
|
|
99220
99316
|
/** ID of the affected access method. */
|
|
99221
99317
|
access_method_id: string
|
|
99318
|
+
/** IDs of the access grants associated with this access method. */
|
|
99319
|
+
access_grant_ids: string[]
|
|
99320
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
99321
|
+
access_grant_keys?: string[] | undefined
|
|
99222
99322
|
event_type: 'access_method.reissued'
|
|
99223
99323
|
}
|
|
99224
99324
|
| {
|