@seamapi/types 1.565.0 → 1.567.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 +308 -779
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +643 -1002
- package/dist/index.cjs +308 -779
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +3 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +552 -118
- package/lib/seam/connect/models/batch.js +5 -6
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +52 -2
- package/lib/seam/connect/models/customer/customer-portal.js +10 -2
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +16 -0
- package/lib/seam/connect/openapi.d.ts +538 -939
- package/lib/seam/connect/openapi.js +301 -775
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +39 -5
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +3 -0
- package/src/lib/seam/connect/models/batch.ts +5 -6
- package/src/lib/seam/connect/models/customer/customer-portal.ts +12 -2
- package/src/lib/seam/connect/openapi.ts +303 -877
- package/src/lib/seam/connect/route-types.ts +103 -55
|
@@ -12971,6 +12971,8 @@ export type Routes = {
|
|
|
12971
12971
|
acs_system_id: string
|
|
12972
12972
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
12973
12973
|
acs_entrance_id: string
|
|
12974
|
+
/** IDs of the spaces that the entrance is in. */
|
|
12975
|
+
space_ids: string[]
|
|
12974
12976
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
12975
12977
|
created_at: string
|
|
12976
12978
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -16813,6 +16815,8 @@ export type Routes = {
|
|
|
16813
16815
|
acs_system_id: string
|
|
16814
16816
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
16815
16817
|
acs_entrance_id: string
|
|
16818
|
+
/** IDs of the spaces that the entrance is in. */
|
|
16819
|
+
space_ids: string[]
|
|
16816
16820
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
16817
16821
|
created_at: string
|
|
16818
16822
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -23852,6 +23856,8 @@ export type Routes = {
|
|
|
23852
23856
|
acs_system_id: string
|
|
23853
23857
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
23854
23858
|
acs_entrance_id: string
|
|
23859
|
+
/** IDs of the spaces that the entrance is in. */
|
|
23860
|
+
space_ids: string[]
|
|
23855
23861
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
23856
23862
|
created_at: string
|
|
23857
23863
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -25462,6 +25468,8 @@ export type Routes = {
|
|
|
25462
25468
|
acs_system_id: string
|
|
25463
25469
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
25464
25470
|
acs_entrance_id: string
|
|
25471
|
+
/** IDs of the spaces that the entrance is in. */
|
|
25472
|
+
space_ids: string[]
|
|
25465
25473
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
25466
25474
|
created_at: string
|
|
25467
25475
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -29442,6 +29450,8 @@ export type Routes = {
|
|
|
29442
29450
|
acs_system_id: string
|
|
29443
29451
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
29444
29452
|
acs_entrance_id: string
|
|
29453
|
+
/** IDs of the spaces that the entrance is in. */
|
|
29454
|
+
space_ids: string[]
|
|
29445
29455
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
29446
29456
|
created_at: string
|
|
29447
29457
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -29636,6 +29646,8 @@ export type Routes = {
|
|
|
29636
29646
|
acs_system_id: string
|
|
29637
29647
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
29638
29648
|
acs_entrance_id: string
|
|
29649
|
+
/** IDs of the spaces that the entrance is in. */
|
|
29650
|
+
space_ids: string[]
|
|
29639
29651
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
29640
29652
|
created_at: string
|
|
29641
29653
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -31380,6 +31392,8 @@ export type Routes = {
|
|
|
31380
31392
|
acs_system_id: string
|
|
31381
31393
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
31382
31394
|
acs_entrance_id: string
|
|
31395
|
+
/** IDs of the spaces that the entrance is in. */
|
|
31396
|
+
space_ids: string[]
|
|
31383
31397
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
31384
31398
|
created_at: string
|
|
31385
31399
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -36258,6 +36272,8 @@ export type Routes = {
|
|
|
36258
36272
|
connect?: {
|
|
36259
36273
|
/** Whether to exclude this feature from the portal. */
|
|
36260
36274
|
exclude?: boolean
|
|
36275
|
+
/** List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account. */
|
|
36276
|
+
excluded_providers?: string[] | undefined
|
|
36261
36277
|
}
|
|
36262
36278
|
/** Configuration for the manage devices feature. */
|
|
36263
36279
|
manage_devices?: {
|
|
@@ -36286,33 +36302,46 @@ export type Routes = {
|
|
|
36286
36302
|
| {
|
|
36287
36303
|
manage?:
|
|
36288
36304
|
| (
|
|
36289
|
-
|
|
|
36290
|
-
|
|
36291
|
-
|
|
36292
|
-
|
|
36293
|
-
|
|
36294
|
-
|
|
36295
|
-
|
|
36296
|
-
|
|
36297
|
-
|
|
36298
|
-
|
|
36299
|
-
|
|
36300
|
-
|
|
36301
|
-
|
|
36302
|
-
|
|
36303
|
-
|
|
36304
|
-
|
|
36305
|
-
|
|
36306
|
-
|
|
36307
|
-
|
|
36308
|
-
|
|
36309
|
-
|
|
36310
|
-
|
|
36311
|
-
|
|
36312
|
-
|
|
36313
|
-
|
|
36314
|
-
|
|
36315
|
-
|
|
36305
|
+
| (
|
|
36306
|
+
| {
|
|
36307
|
+
space_key: string
|
|
36308
|
+
}
|
|
36309
|
+
| {
|
|
36310
|
+
property_key: string
|
|
36311
|
+
}
|
|
36312
|
+
| {
|
|
36313
|
+
room_key: string
|
|
36314
|
+
}
|
|
36315
|
+
| {
|
|
36316
|
+
common_area_key: string
|
|
36317
|
+
}
|
|
36318
|
+
| {
|
|
36319
|
+
unit_key: string
|
|
36320
|
+
}
|
|
36321
|
+
| {
|
|
36322
|
+
facility_key: string
|
|
36323
|
+
}
|
|
36324
|
+
| {
|
|
36325
|
+
building_key: string
|
|
36326
|
+
}
|
|
36327
|
+
| {
|
|
36328
|
+
listing_key: string
|
|
36329
|
+
}
|
|
36330
|
+
| {
|
|
36331
|
+
property_listing_key: string
|
|
36332
|
+
}
|
|
36333
|
+
)
|
|
36334
|
+
| (
|
|
36335
|
+
| {
|
|
36336
|
+
reservation_key: string
|
|
36337
|
+
}
|
|
36338
|
+
| {
|
|
36339
|
+
booking_key: string
|
|
36340
|
+
}
|
|
36341
|
+
| {
|
|
36342
|
+
access_grant_key: string
|
|
36343
|
+
}
|
|
36344
|
+
)
|
|
36316
36345
|
)
|
|
36317
36346
|
| undefined
|
|
36318
36347
|
}
|
|
@@ -69259,6 +69288,7 @@ export type Routes = {
|
|
|
69259
69288
|
connect?:
|
|
69260
69289
|
| {
|
|
69261
69290
|
exclude?: boolean | undefined
|
|
69291
|
+
excluded_providers?: string[] | undefined
|
|
69262
69292
|
}
|
|
69263
69293
|
| undefined
|
|
69264
69294
|
manage_devices?:
|
|
@@ -69287,33 +69317,46 @@ export type Routes = {
|
|
|
69287
69317
|
| {
|
|
69288
69318
|
manage?:
|
|
69289
69319
|
| (
|
|
69290
|
-
|
|
|
69291
|
-
|
|
69292
|
-
|
|
69293
|
-
|
|
69294
|
-
|
|
69295
|
-
|
|
69296
|
-
|
|
69297
|
-
|
|
69298
|
-
|
|
69299
|
-
|
|
69300
|
-
|
|
69301
|
-
|
|
69302
|
-
|
|
69303
|
-
|
|
69304
|
-
|
|
69305
|
-
|
|
69306
|
-
|
|
69307
|
-
|
|
69308
|
-
|
|
69309
|
-
|
|
69310
|
-
|
|
69311
|
-
|
|
69312
|
-
|
|
69313
|
-
|
|
69314
|
-
|
|
69315
|
-
|
|
69316
|
-
|
|
69320
|
+
| (
|
|
69321
|
+
| {
|
|
69322
|
+
space_key: string
|
|
69323
|
+
}
|
|
69324
|
+
| {
|
|
69325
|
+
property_key: string
|
|
69326
|
+
}
|
|
69327
|
+
| {
|
|
69328
|
+
room_key: string
|
|
69329
|
+
}
|
|
69330
|
+
| {
|
|
69331
|
+
common_area_key: string
|
|
69332
|
+
}
|
|
69333
|
+
| {
|
|
69334
|
+
unit_key: string
|
|
69335
|
+
}
|
|
69336
|
+
| {
|
|
69337
|
+
facility_key: string
|
|
69338
|
+
}
|
|
69339
|
+
| {
|
|
69340
|
+
building_key: string
|
|
69341
|
+
}
|
|
69342
|
+
| {
|
|
69343
|
+
listing_key: string
|
|
69344
|
+
}
|
|
69345
|
+
| {
|
|
69346
|
+
property_listing_key: string
|
|
69347
|
+
}
|
|
69348
|
+
)
|
|
69349
|
+
| (
|
|
69350
|
+
| {
|
|
69351
|
+
reservation_key: string
|
|
69352
|
+
}
|
|
69353
|
+
| {
|
|
69354
|
+
booking_key: string
|
|
69355
|
+
}
|
|
69356
|
+
| {
|
|
69357
|
+
access_grant_key: string
|
|
69358
|
+
}
|
|
69359
|
+
)
|
|
69317
69360
|
)
|
|
69318
69361
|
| undefined
|
|
69319
69362
|
}
|
|
@@ -69924,6 +69967,8 @@ export type Routes = {
|
|
|
69924
69967
|
acs_system_id: string
|
|
69925
69968
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
69926
69969
|
acs_entrance_id: string
|
|
69970
|
+
/** IDs of the spaces that the entrance is in. */
|
|
69971
|
+
space_ids: string[]
|
|
69927
69972
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
69928
69973
|
created_at: string
|
|
69929
69974
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -71850,6 +71895,8 @@ export type Routes = {
|
|
|
71850
71895
|
acs_system_id: string
|
|
71851
71896
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
71852
71897
|
acs_entrance_id: string
|
|
71898
|
+
/** IDs of the spaces that the entrance is in. */
|
|
71899
|
+
space_ids: string[]
|
|
71853
71900
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
71854
71901
|
created_at: string
|
|
71855
71902
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -71993,7 +72040,6 @@ export type Routes = {
|
|
|
71993
72040
|
can_unlock_with_card?: boolean | undefined
|
|
71994
72041
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
71995
72042
|
can_unlock_with_code?: boolean | undefined
|
|
71996
|
-
space_ids: string[]
|
|
71997
72043
|
}[]
|
|
71998
72044
|
| undefined
|
|
71999
72045
|
connected_accounts?:
|
|
@@ -96590,6 +96636,8 @@ export type Routes = {
|
|
|
96590
96636
|
acs_system_id: string
|
|
96591
96637
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
96592
96638
|
acs_entrance_id: string
|
|
96639
|
+
/** IDs of the spaces that the entrance is in. */
|
|
96640
|
+
space_ids: string[]
|
|
96593
96641
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
96594
96642
|
created_at: string
|
|
96595
96643
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|