@seamapi/types 1.521.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 +65 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +266 -0
- package/dist/index.cjs +65 -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 +84 -0
- package/lib/seam/connect/openapi.js +60 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +102 -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 +71 -0
- package/src/lib/seam/connect/route-types.ts +102 -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
|
| {
|
|
@@ -25003,6 +25023,8 @@ export type Routes = {
|
|
|
25003
25023
|
created_before?: Date | undefined
|
|
25004
25024
|
/** Indicates whether you want to retrieve only multi-phone sync credentials or non-multi-phone sync credentials. */
|
|
25005
25025
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
25026
|
+
/** String for which to search. Filters returned credentials to include all records that satisfy a partial match using `code`, `card_number`, `acs_user_id` or `acs_credential_id`. */
|
|
25027
|
+
search?: string | undefined
|
|
25006
25028
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
25007
25029
|
page_cursor?: (string | undefined) | null
|
|
25008
25030
|
}
|
|
@@ -41746,6 +41768,10 @@ export type Routes = {
|
|
|
41746
41768
|
occurred_at: string
|
|
41747
41769
|
/** ID of the affected access method. */
|
|
41748
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
|
|
41749
41775
|
event_type: 'access_method.issued'
|
|
41750
41776
|
}
|
|
41751
41777
|
| {
|
|
@@ -41759,6 +41785,10 @@ export type Routes = {
|
|
|
41759
41785
|
occurred_at: string
|
|
41760
41786
|
/** ID of the affected access method. */
|
|
41761
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
|
|
41762
41792
|
event_type: 'access_method.revoked'
|
|
41763
41793
|
}
|
|
41764
41794
|
| {
|
|
@@ -41772,6 +41802,10 @@ export type Routes = {
|
|
|
41772
41802
|
occurred_at: string
|
|
41773
41803
|
/** ID of the affected access method. */
|
|
41774
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
|
|
41775
41809
|
event_type: 'access_method.card_encoding_required'
|
|
41776
41810
|
}
|
|
41777
41811
|
| {
|
|
@@ -41785,6 +41819,10 @@ export type Routes = {
|
|
|
41785
41819
|
occurred_at: string
|
|
41786
41820
|
/** ID of the affected access method. */
|
|
41787
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
|
|
41788
41826
|
event_type: 'access_method.deleted'
|
|
41789
41827
|
}
|
|
41790
41828
|
| {
|
|
@@ -41798,6 +41836,10 @@ export type Routes = {
|
|
|
41798
41836
|
occurred_at: string
|
|
41799
41837
|
/** ID of the affected access method. */
|
|
41800
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
|
|
41801
41843
|
event_type: 'access_method.reissued'
|
|
41802
41844
|
}
|
|
41803
41845
|
| {
|
|
@@ -44143,6 +44185,10 @@ export type Routes = {
|
|
|
44143
44185
|
occurred_at: string
|
|
44144
44186
|
/** ID of the affected access method. */
|
|
44145
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
|
|
44146
44192
|
event_type: 'access_method.issued'
|
|
44147
44193
|
}
|
|
44148
44194
|
| {
|
|
@@ -44156,6 +44202,10 @@ export type Routes = {
|
|
|
44156
44202
|
occurred_at: string
|
|
44157
44203
|
/** ID of the affected access method. */
|
|
44158
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
|
|
44159
44209
|
event_type: 'access_method.revoked'
|
|
44160
44210
|
}
|
|
44161
44211
|
| {
|
|
@@ -44169,6 +44219,10 @@ export type Routes = {
|
|
|
44169
44219
|
occurred_at: string
|
|
44170
44220
|
/** ID of the affected access method. */
|
|
44171
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
|
|
44172
44226
|
event_type: 'access_method.card_encoding_required'
|
|
44173
44227
|
}
|
|
44174
44228
|
| {
|
|
@@ -44182,6 +44236,10 @@ export type Routes = {
|
|
|
44182
44236
|
occurred_at: string
|
|
44183
44237
|
/** ID of the affected access method. */
|
|
44184
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
|
|
44185
44243
|
event_type: 'access_method.deleted'
|
|
44186
44244
|
}
|
|
44187
44245
|
| {
|
|
@@ -44195,6 +44253,10 @@ export type Routes = {
|
|
|
44195
44253
|
occurred_at: string
|
|
44196
44254
|
/** ID of the affected access method. */
|
|
44197
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
|
|
44198
44260
|
event_type: 'access_method.reissued'
|
|
44199
44261
|
}
|
|
44200
44262
|
| {
|
|
@@ -66792,6 +66854,10 @@ export type Routes = {
|
|
|
66792
66854
|
occurred_at: string
|
|
66793
66855
|
/** ID of the affected access method. */
|
|
66794
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
|
|
66795
66861
|
event_type: 'access_method.issued'
|
|
66796
66862
|
}
|
|
66797
66863
|
| {
|
|
@@ -66805,6 +66871,10 @@ export type Routes = {
|
|
|
66805
66871
|
occurred_at: string
|
|
66806
66872
|
/** ID of the affected access method. */
|
|
66807
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
|
|
66808
66878
|
event_type: 'access_method.revoked'
|
|
66809
66879
|
}
|
|
66810
66880
|
| {
|
|
@@ -66818,6 +66888,10 @@ export type Routes = {
|
|
|
66818
66888
|
occurred_at: string
|
|
66819
66889
|
/** ID of the affected access method. */
|
|
66820
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
|
|
66821
66895
|
event_type: 'access_method.card_encoding_required'
|
|
66822
66896
|
}
|
|
66823
66897
|
| {
|
|
@@ -66831,6 +66905,10 @@ export type Routes = {
|
|
|
66831
66905
|
occurred_at: string
|
|
66832
66906
|
/** ID of the affected access method. */
|
|
66833
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
|
|
66834
66912
|
event_type: 'access_method.deleted'
|
|
66835
66913
|
}
|
|
66836
66914
|
| {
|
|
@@ -66844,6 +66922,10 @@ export type Routes = {
|
|
|
66844
66922
|
occurred_at: string
|
|
66845
66923
|
/** ID of the affected access method. */
|
|
66846
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
|
|
66847
66929
|
event_type: 'access_method.reissued'
|
|
66848
66930
|
}
|
|
66849
66931
|
| {
|
|
@@ -99165,6 +99247,10 @@ export type Routes = {
|
|
|
99165
99247
|
occurred_at: string
|
|
99166
99248
|
/** ID of the affected access method. */
|
|
99167
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
|
|
99168
99254
|
event_type: 'access_method.issued'
|
|
99169
99255
|
}
|
|
99170
99256
|
| {
|
|
@@ -99178,6 +99264,10 @@ export type Routes = {
|
|
|
99178
99264
|
occurred_at: string
|
|
99179
99265
|
/** ID of the affected access method. */
|
|
99180
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
|
|
99181
99271
|
event_type: 'access_method.revoked'
|
|
99182
99272
|
}
|
|
99183
99273
|
| {
|
|
@@ -99191,6 +99281,10 @@ export type Routes = {
|
|
|
99191
99281
|
occurred_at: string
|
|
99192
99282
|
/** ID of the affected access method. */
|
|
99193
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
|
|
99194
99288
|
event_type: 'access_method.card_encoding_required'
|
|
99195
99289
|
}
|
|
99196
99290
|
| {
|
|
@@ -99204,6 +99298,10 @@ export type Routes = {
|
|
|
99204
99298
|
occurred_at: string
|
|
99205
99299
|
/** ID of the affected access method. */
|
|
99206
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
|
|
99207
99305
|
event_type: 'access_method.deleted'
|
|
99208
99306
|
}
|
|
99209
99307
|
| {
|
|
@@ -99217,6 +99315,10 @@ export type Routes = {
|
|
|
99217
99315
|
occurred_at: string
|
|
99218
99316
|
/** ID of the affected access method. */
|
|
99219
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
|
|
99220
99322
|
event_type: 'access_method.reissued'
|
|
99221
99323
|
}
|
|
99222
99324
|
| {
|