@seamapi/types 1.1000.1 → 1.1002.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/lib/seam/connect/models/devices/device-provider.d.ts +3 -3
- package/lib/seam/connect/models/devices/device-provider.js +3 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.js +255 -240
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +15 -34
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/device-provider.ts +3 -1
- package/src/lib/seam/connect/openapi.ts +284 -263
- package/src/lib/seam/connect/route-types.ts +24 -58
|
@@ -29873,27 +29873,13 @@ export type Routes = {
|
|
|
29873
29873
|
method: 'GET' | 'POST'
|
|
29874
29874
|
queryParams: {}
|
|
29875
29875
|
jsonBody: {}
|
|
29876
|
-
commonParams:
|
|
29877
|
-
|
|
29878
|
-
|
|
29879
|
-
|
|
29880
|
-
|
|
29881
|
-
|
|
29882
|
-
|
|
29883
|
-
acs_system_id: string
|
|
29884
|
-
}
|
|
29885
|
-
| {
|
|
29886
|
-
/** ID of the access system user for which you want to retrieve all credentials. */
|
|
29887
|
-
acs_user_id: string
|
|
29888
|
-
/** ID of the access system for which you want to retrieve all credentials. */
|
|
29889
|
-
acs_system_id: string
|
|
29890
|
-
}
|
|
29891
|
-
| {
|
|
29892
|
-
/** ID of the user identity for which you want to retrieve all credentials. */
|
|
29893
|
-
user_identity_id: string
|
|
29894
|
-
}
|
|
29895
|
-
| {}
|
|
29896
|
-
) & {
|
|
29876
|
+
commonParams: {
|
|
29877
|
+
/** ID of the access system user for which you want to retrieve all credentials. */
|
|
29878
|
+
acs_user_id?: string | undefined
|
|
29879
|
+
/** ID of the access system for which you want to retrieve all credentials. */
|
|
29880
|
+
acs_system_id?: string | undefined
|
|
29881
|
+
/** ID of the user identity for which you want to retrieve all credentials. */
|
|
29882
|
+
user_identity_id?: string | undefined
|
|
29897
29883
|
/** Number of credentials to return. */
|
|
29898
29884
|
limit?: number
|
|
29899
29885
|
/** Date and time, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format, before which events to return were created. */
|
|
@@ -30794,26 +30780,13 @@ export type Routes = {
|
|
|
30794
30780
|
method: 'GET' | 'POST'
|
|
30795
30781
|
queryParams: {}
|
|
30796
30782
|
jsonBody: {}
|
|
30797
|
-
commonParams:
|
|
30798
|
-
|
|
30799
|
-
|
|
30800
|
-
|
|
30801
|
-
|
|
30802
|
-
|
|
30803
|
-
|
|
30804
|
-
acs_system_id: string
|
|
30805
|
-
}
|
|
30806
|
-
| {
|
|
30807
|
-
/** ID of the access system user for which you want to retrieve all credentials. */
|
|
30808
|
-
acs_user_id: string
|
|
30809
|
-
/** ID of the access system for which you want to retrieve all credentials. */
|
|
30810
|
-
acs_system_id: string
|
|
30811
|
-
}
|
|
30812
|
-
| {
|
|
30813
|
-
/** ID of the user identity for which you want to retrieve all credentials. */
|
|
30814
|
-
user_identity_id: string
|
|
30815
|
-
}
|
|
30816
|
-
) & {
|
|
30783
|
+
commonParams: {
|
|
30784
|
+
/** ID of the access system user for which you want to retrieve all credentials. */
|
|
30785
|
+
acs_user_id?: string | undefined
|
|
30786
|
+
/** ID of the access system for which you want to retrieve all credentials. */
|
|
30787
|
+
acs_system_id?: string | undefined
|
|
30788
|
+
/** ID of the user identity for which you want to retrieve all credentials. */
|
|
30789
|
+
user_identity_id?: string | undefined
|
|
30817
30790
|
/** String for which to search. Filters returned credentials to include all records that satisfy a partial match using `display_name`, `code`, `card_number`, `acs_user_id` or `acs_credential_id`. */
|
|
30818
30791
|
search?: string | undefined
|
|
30819
30792
|
}
|
|
@@ -33374,20 +33347,13 @@ export type Routes = {
|
|
|
33374
33347
|
method: 'GET' | 'POST'
|
|
33375
33348
|
queryParams: {}
|
|
33376
33349
|
jsonBody: {}
|
|
33377
|
-
commonParams:
|
|
33378
|
-
|
|
33379
|
-
|
|
33380
|
-
|
|
33381
|
-
|
|
33382
|
-
|
|
33383
|
-
|
|
33384
|
-
acs_system_ids: string[]
|
|
33385
|
-
}
|
|
33386
|
-
| {
|
|
33387
|
-
/** IDs of the encoders that you want to retrieve. */
|
|
33388
|
-
acs_encoder_ids: string[]
|
|
33389
|
-
}
|
|
33390
|
-
) & {
|
|
33350
|
+
commonParams: {
|
|
33351
|
+
/** ID of the access system for which you want to retrieve all encoders. */
|
|
33352
|
+
acs_system_id?: string | undefined
|
|
33353
|
+
/** IDs of the access systems for which you want to retrieve all encoders. */
|
|
33354
|
+
acs_system_ids?: string[] | undefined
|
|
33355
|
+
/** IDs of the encoders that you want to retrieve. */
|
|
33356
|
+
acs_encoder_ids?: string[] | undefined
|
|
33391
33357
|
/** Number of encoders to return. */
|
|
33392
33358
|
limit?: number
|
|
33393
33359
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
@@ -60861,7 +60827,7 @@ export type Routes = {
|
|
|
60861
60827
|
/** Timestamp to indicate the beginning generation time for the events that you want to list. You must include `since` or `between`. */
|
|
60862
60828
|
since?: string | undefined
|
|
60863
60829
|
/** Lower and upper timestamps to define an exclusive interval containing the events that you want to list. You must include `since` or `between`. */
|
|
60864
|
-
between?:
|
|
60830
|
+
between?: string[] | undefined
|
|
60865
60831
|
/** ID of the device for which you want to list events. */
|
|
60866
60832
|
device_id?: string | undefined
|
|
60867
60833
|
/** IDs of the devices for which you want to list events. */
|
|
@@ -98188,7 +98154,7 @@ export type Routes = {
|
|
|
98188
98154
|
/** Timestamp to indicate the beginning generation time for the events that you want to list. You must include `since` or `between`. */
|
|
98189
98155
|
since?: string | undefined
|
|
98190
98156
|
/** Lower and upper timestamps to define an exclusive interval containing the events that you want to list. You must include `since` or `between`. */
|
|
98191
|
-
between?:
|
|
98157
|
+
between?: string[] | undefined
|
|
98192
98158
|
/** Type of the events that you want to list. */
|
|
98193
98159
|
event_type?:
|
|
98194
98160
|
| (
|
|
@@ -102527,7 +102493,7 @@ export type Routes = {
|
|
|
102527
102493
|
/** Timestamp by which to limit returned reservations. Returns reservations created after this timestamp. */
|
|
102528
102494
|
created_after?: Date | undefined
|
|
102529
102495
|
/** Lower and upper timestamps to filter reservations whose time range overlaps with the given interval. */
|
|
102530
|
-
between?:
|
|
102496
|
+
between?: string[] | undefined
|
|
102531
102497
|
/** String for which to search. Filters returned reservations to include all records that satisfy a partial match using `reservation_id`, `reservation_key`, `name`, `guest_name`, or space names. */
|
|
102532
102498
|
search?: string | undefined
|
|
102533
102499
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|