@seamapi/types 1.425.0 → 1.427.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 +67 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +101 -18
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +5 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +2 -2
- package/lib/seam/connect/models/access-grants/access-method.js +1 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +4 -4
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +4 -4
- package/lib/seam/connect/models/action-attempts/encode-access-method.d.ts +4 -4
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.d.ts +6 -0
- package/lib/seam/connect/models/devices/device.js +1 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +4 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +14 -14
- package/lib/seam/connect/openapi.d.ts +40 -0
- package/lib/seam/connect/openapi.js +44 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +40 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +7 -0
- package/src/lib/seam/connect/models/access-grants/access-method.ts +1 -0
- package/src/lib/seam/connect/models/devices/device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +47 -0
- package/src/lib/seam/connect/route-types.ts +40 -0
|
@@ -11500,6 +11500,8 @@ export interface Routes {
|
|
|
11500
11500
|
access_method_ids: string[]
|
|
11501
11501
|
/** Display name of the access grant. */
|
|
11502
11502
|
display_name: string
|
|
11503
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
11504
|
+
instant_key_url?: string | undefined
|
|
11503
11505
|
/** Date and time at which the access grant was created. */
|
|
11504
11506
|
created_at: string
|
|
11505
11507
|
/** Date and time at which the access grant starts. */
|
|
@@ -11560,6 +11562,8 @@ export interface Routes {
|
|
|
11560
11562
|
access_method_ids: string[]
|
|
11561
11563
|
/** Display name of the access grant. */
|
|
11562
11564
|
display_name: string
|
|
11565
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
11566
|
+
instant_key_url?: string | undefined
|
|
11563
11567
|
/** Date and time at which the access grant was created. */
|
|
11564
11568
|
created_at: string
|
|
11565
11569
|
/** Date and time at which the access grant starts. */
|
|
@@ -11616,6 +11620,8 @@ export interface Routes {
|
|
|
11616
11620
|
access_method_ids: string[]
|
|
11617
11621
|
/** Display name of the access grant. */
|
|
11618
11622
|
display_name: string
|
|
11623
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
11624
|
+
instant_key_url?: string | undefined
|
|
11619
11625
|
/** Date and time at which the access grant was created. */
|
|
11620
11626
|
created_at: string
|
|
11621
11627
|
/** Date and time at which the access grant starts. */
|
|
@@ -25414,6 +25420,8 @@ export interface Routes {
|
|
|
25414
25420
|
/** Custom metadata pairs by which you want to filter connected accounts. Returns connected accounts with `custom_metadata` that contains all of the provided key:value pairs. */
|
|
25415
25421
|
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
25416
25422
|
customer_ids?: string[] | undefined
|
|
25423
|
+
/** String for which to search. Filters returned connected accounts to include all records that satisfy a partial match using `connected_account_id`, `account_type`, `customer_key`, `custom_metadata`, `user_identifier.username`, `user_identifier.email` or `user_identifier.phone`. */
|
|
25424
|
+
search?: string | undefined
|
|
25417
25425
|
/** Maximum number of records to return per page. */
|
|
25418
25426
|
limit?: number
|
|
25419
25427
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
@@ -27708,6 +27716,7 @@ export interface Routes {
|
|
|
27708
27716
|
can_simulate_removal?: boolean | undefined
|
|
27709
27717
|
can_simulate_connection?: boolean | undefined
|
|
27710
27718
|
can_simulate_disconnection?: boolean | undefined
|
|
27719
|
+
can_unlock_with_code?: boolean | undefined
|
|
27711
27720
|
}
|
|
27712
27721
|
}
|
|
27713
27722
|
}
|
|
@@ -27882,6 +27891,7 @@ export interface Routes {
|
|
|
27882
27891
|
| 'can_simulate_removal'
|
|
27883
27892
|
| 'can_simulate_connection'
|
|
27884
27893
|
| 'can_simulate_disconnection'
|
|
27894
|
+
| 'can_unlock_with_code'
|
|
27885
27895
|
>
|
|
27886
27896
|
| undefined
|
|
27887
27897
|
/** */
|
|
@@ -27898,6 +27908,7 @@ export interface Routes {
|
|
|
27898
27908
|
| 'can_simulate_removal'
|
|
27899
27909
|
| 'can_simulate_connection'
|
|
27900
27910
|
| 'can_simulate_disconnection'
|
|
27911
|
+
| 'can_unlock_with_code'
|
|
27901
27912
|
>
|
|
27902
27913
|
| undefined
|
|
27903
27914
|
/**
|
|
@@ -29256,6 +29267,7 @@ export interface Routes {
|
|
|
29256
29267
|
can_simulate_removal?: boolean | undefined
|
|
29257
29268
|
can_simulate_connection?: boolean | undefined
|
|
29258
29269
|
can_simulate_disconnection?: boolean | undefined
|
|
29270
|
+
can_unlock_with_code?: boolean | undefined
|
|
29259
29271
|
}>
|
|
29260
29272
|
/** Information about the current page of results. */
|
|
29261
29273
|
pagination: {
|
|
@@ -29356,6 +29368,7 @@ export interface Routes {
|
|
|
29356
29368
|
can_simulate_removal?: boolean | undefined
|
|
29357
29369
|
can_simulate_connection?: boolean | undefined
|
|
29358
29370
|
can_simulate_disconnection?: boolean | undefined
|
|
29371
|
+
can_unlock_with_code?: boolean | undefined
|
|
29359
29372
|
}>
|
|
29360
29373
|
}
|
|
29361
29374
|
}
|
|
@@ -29883,6 +29896,7 @@ export interface Routes {
|
|
|
29883
29896
|
can_simulate_removal?: boolean | undefined
|
|
29884
29897
|
can_simulate_connection?: boolean | undefined
|
|
29885
29898
|
can_simulate_disconnection?: boolean | undefined
|
|
29899
|
+
can_unlock_with_code?: boolean | undefined
|
|
29886
29900
|
}
|
|
29887
29901
|
}
|
|
29888
29902
|
}
|
|
@@ -30057,6 +30071,7 @@ export interface Routes {
|
|
|
30057
30071
|
| 'can_simulate_removal'
|
|
30058
30072
|
| 'can_simulate_connection'
|
|
30059
30073
|
| 'can_simulate_disconnection'
|
|
30074
|
+
| 'can_unlock_with_code'
|
|
30060
30075
|
>
|
|
30061
30076
|
| undefined
|
|
30062
30077
|
/** */
|
|
@@ -30073,6 +30088,7 @@ export interface Routes {
|
|
|
30073
30088
|
| 'can_simulate_removal'
|
|
30074
30089
|
| 'can_simulate_connection'
|
|
30075
30090
|
| 'can_simulate_disconnection'
|
|
30091
|
+
| 'can_unlock_with_code'
|
|
30076
30092
|
>
|
|
30077
30093
|
| undefined
|
|
30078
30094
|
/**
|
|
@@ -30559,6 +30575,7 @@ export interface Routes {
|
|
|
30559
30575
|
can_simulate_removal?: boolean | undefined
|
|
30560
30576
|
can_simulate_connection?: boolean | undefined
|
|
30561
30577
|
can_simulate_disconnection?: boolean | undefined
|
|
30578
|
+
can_unlock_with_code?: boolean | undefined
|
|
30562
30579
|
}>
|
|
30563
30580
|
}
|
|
30564
30581
|
}
|
|
@@ -35204,6 +35221,7 @@ export interface Routes {
|
|
|
35204
35221
|
can_simulate_removal?: boolean | undefined
|
|
35205
35222
|
can_simulate_connection?: boolean | undefined
|
|
35206
35223
|
can_simulate_disconnection?: boolean | undefined
|
|
35224
|
+
can_unlock_with_code?: boolean | undefined
|
|
35207
35225
|
}
|
|
35208
35226
|
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
35209
35227
|
device: {
|
|
@@ -36552,6 +36570,7 @@ export interface Routes {
|
|
|
36552
36570
|
can_simulate_removal?: boolean | undefined
|
|
36553
36571
|
can_simulate_connection?: boolean | undefined
|
|
36554
36572
|
can_simulate_disconnection?: boolean | undefined
|
|
36573
|
+
can_unlock_with_code?: boolean | undefined
|
|
36555
36574
|
}
|
|
36556
36575
|
}
|
|
36557
36576
|
}
|
|
@@ -36691,6 +36710,7 @@ export interface Routes {
|
|
|
36691
36710
|
| 'can_simulate_removal'
|
|
36692
36711
|
| 'can_simulate_connection'
|
|
36693
36712
|
| 'can_simulate_disconnection'
|
|
36713
|
+
| 'can_unlock_with_code'
|
|
36694
36714
|
>
|
|
36695
36715
|
| undefined
|
|
36696
36716
|
/** */
|
|
@@ -36707,6 +36727,7 @@ export interface Routes {
|
|
|
36707
36727
|
| 'can_simulate_removal'
|
|
36708
36728
|
| 'can_simulate_connection'
|
|
36709
36729
|
| 'can_simulate_disconnection'
|
|
36730
|
+
| 'can_unlock_with_code'
|
|
36710
36731
|
>
|
|
36711
36732
|
| undefined
|
|
36712
36733
|
/**
|
|
@@ -38065,6 +38086,7 @@ export interface Routes {
|
|
|
38065
38086
|
can_simulate_removal?: boolean | undefined
|
|
38066
38087
|
can_simulate_connection?: boolean | undefined
|
|
38067
38088
|
can_simulate_disconnection?: boolean | undefined
|
|
38089
|
+
can_unlock_with_code?: boolean | undefined
|
|
38068
38090
|
}>
|
|
38069
38091
|
devices: Array<{
|
|
38070
38092
|
/** ID of the device. */
|
|
@@ -39412,6 +39434,7 @@ export interface Routes {
|
|
|
39412
39434
|
can_simulate_removal?: boolean | undefined
|
|
39413
39435
|
can_simulate_connection?: boolean | undefined
|
|
39414
39436
|
can_simulate_disconnection?: boolean | undefined
|
|
39437
|
+
can_unlock_with_code?: boolean | undefined
|
|
39415
39438
|
}>
|
|
39416
39439
|
}
|
|
39417
39440
|
}
|
|
@@ -45543,6 +45566,7 @@ export interface Routes {
|
|
|
45543
45566
|
| 'can_simulate_removal'
|
|
45544
45567
|
| 'can_simulate_connection'
|
|
45545
45568
|
| 'can_simulate_disconnection'
|
|
45569
|
+
| 'can_unlock_with_code'
|
|
45546
45570
|
>
|
|
45547
45571
|
| undefined
|
|
45548
45572
|
/** */
|
|
@@ -45559,6 +45583,7 @@ export interface Routes {
|
|
|
45559
45583
|
| 'can_simulate_removal'
|
|
45560
45584
|
| 'can_simulate_connection'
|
|
45561
45585
|
| 'can_simulate_disconnection'
|
|
45586
|
+
| 'can_unlock_with_code'
|
|
45562
45587
|
>
|
|
45563
45588
|
| undefined
|
|
45564
45589
|
/**
|
|
@@ -46917,6 +46942,7 @@ export interface Routes {
|
|
|
46917
46942
|
can_simulate_removal?: boolean | undefined
|
|
46918
46943
|
can_simulate_connection?: boolean | undefined
|
|
46919
46944
|
can_simulate_disconnection?: boolean | undefined
|
|
46945
|
+
can_unlock_with_code?: boolean | undefined
|
|
46920
46946
|
}>
|
|
46921
46947
|
devices: Array<{
|
|
46922
46948
|
/** ID of the device. */
|
|
@@ -48264,6 +48290,7 @@ export interface Routes {
|
|
|
48264
48290
|
can_simulate_removal?: boolean | undefined
|
|
48265
48291
|
can_simulate_connection?: boolean | undefined
|
|
48266
48292
|
can_simulate_disconnection?: boolean | undefined
|
|
48293
|
+
can_unlock_with_code?: boolean | undefined
|
|
48267
48294
|
}>
|
|
48268
48295
|
}
|
|
48269
48296
|
}
|
|
@@ -60301,6 +60328,7 @@ export interface Routes {
|
|
|
60301
60328
|
can_simulate_removal?: boolean | undefined
|
|
60302
60329
|
can_simulate_connection?: boolean | undefined
|
|
60303
60330
|
can_simulate_disconnection?: boolean | undefined
|
|
60331
|
+
can_unlock_with_code?: boolean | undefined
|
|
60304
60332
|
}
|
|
60305
60333
|
}
|
|
60306
60334
|
}
|
|
@@ -63412,6 +63440,7 @@ export interface Routes {
|
|
|
63412
63440
|
| 'can_simulate_removal'
|
|
63413
63441
|
| 'can_simulate_connection'
|
|
63414
63442
|
| 'can_simulate_disconnection'
|
|
63443
|
+
| 'can_unlock_with_code'
|
|
63415
63444
|
>
|
|
63416
63445
|
| undefined
|
|
63417
63446
|
/** */
|
|
@@ -63428,6 +63457,7 @@ export interface Routes {
|
|
|
63428
63457
|
| 'can_simulate_removal'
|
|
63429
63458
|
| 'can_simulate_connection'
|
|
63430
63459
|
| 'can_simulate_disconnection'
|
|
63460
|
+
| 'can_unlock_with_code'
|
|
63431
63461
|
>
|
|
63432
63462
|
| undefined
|
|
63433
63463
|
/**
|
|
@@ -64786,6 +64816,7 @@ export interface Routes {
|
|
|
64786
64816
|
can_simulate_removal?: boolean | undefined
|
|
64787
64817
|
can_simulate_connection?: boolean | undefined
|
|
64788
64818
|
can_simulate_disconnection?: boolean | undefined
|
|
64819
|
+
can_unlock_with_code?: boolean | undefined
|
|
64789
64820
|
}>
|
|
64790
64821
|
devices: Array<{
|
|
64791
64822
|
/** ID of the device. */
|
|
@@ -66133,6 +66164,7 @@ export interface Routes {
|
|
|
66133
66164
|
can_simulate_removal?: boolean | undefined
|
|
66134
66165
|
can_simulate_connection?: boolean | undefined
|
|
66135
66166
|
can_simulate_disconnection?: boolean | undefined
|
|
66167
|
+
can_unlock_with_code?: boolean | undefined
|
|
66136
66168
|
}>
|
|
66137
66169
|
}
|
|
66138
66170
|
}
|
|
@@ -72622,6 +72654,8 @@ export interface Routes {
|
|
|
72622
72654
|
access_method_ids: string[]
|
|
72623
72655
|
/** Display name of the access grant. */
|
|
72624
72656
|
display_name: string
|
|
72657
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
72658
|
+
instant_key_url?: string | undefined
|
|
72625
72659
|
/** Date and time at which the access grant was created. */
|
|
72626
72660
|
created_at: string
|
|
72627
72661
|
/** Date and time at which the access grant starts. */
|
|
@@ -72682,6 +72716,8 @@ export interface Routes {
|
|
|
72682
72716
|
access_method_ids: string[]
|
|
72683
72717
|
/** Display name of the access grant. */
|
|
72684
72718
|
display_name: string
|
|
72719
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
72720
|
+
instant_key_url?: string | undefined
|
|
72685
72721
|
/** Date and time at which the access grant was created. */
|
|
72686
72722
|
created_at: string
|
|
72687
72723
|
/** Date and time at which the access grant starts. */
|
|
@@ -72738,6 +72774,8 @@ export interface Routes {
|
|
|
72738
72774
|
access_method_ids: string[]
|
|
72739
72775
|
/** Display name of the access grant. */
|
|
72740
72776
|
display_name: string
|
|
72777
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
72778
|
+
instant_key_url?: string | undefined
|
|
72741
72779
|
/** Date and time at which the access grant was created. */
|
|
72742
72780
|
created_at: string
|
|
72743
72781
|
/** Date and time at which the access grant starts. */
|
|
@@ -74899,6 +74937,7 @@ export interface Routes {
|
|
|
74899
74937
|
can_simulate_removal?: boolean | undefined
|
|
74900
74938
|
can_simulate_connection?: boolean | undefined
|
|
74901
74939
|
can_simulate_disconnection?: boolean | undefined
|
|
74940
|
+
can_unlock_with_code?: boolean | undefined
|
|
74902
74941
|
}>
|
|
74903
74942
|
/**
|
|
74904
74943
|
* @deprecated Use devices. */
|
|
@@ -76248,6 +76287,7 @@ export interface Routes {
|
|
|
76248
76287
|
can_simulate_removal?: boolean | undefined
|
|
76249
76288
|
can_simulate_connection?: boolean | undefined
|
|
76250
76289
|
can_simulate_disconnection?: boolean | undefined
|
|
76290
|
+
can_unlock_with_code?: boolean | undefined
|
|
76251
76291
|
}>
|
|
76252
76292
|
}
|
|
76253
76293
|
}
|