@seamapi/types 1.565.0 → 1.566.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 +287 -159
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +539 -403
- package/dist/index.cjs +287 -159
- package/dist/index.cjs.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/openapi.d.ts +520 -399
- package/lib/seam/connect/openapi.js +287 -159
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +19 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +12 -2
- package/src/lib/seam/connect/openapi.ts +288 -159
- package/src/lib/seam/connect/route-types.ts +83 -54
|
@@ -35331,6 +35331,11 @@ export default {
|
|
|
35331
35331
|
description: 'Whether to exclude this feature from the portal.',
|
|
35332
35332
|
type: 'boolean',
|
|
35333
35333
|
},
|
|
35334
|
+
excluded_providers: {
|
|
35335
|
+
description: 'List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.',
|
|
35336
|
+
items: { type: 'string' },
|
|
35337
|
+
type: 'array',
|
|
35338
|
+
},
|
|
35334
35339
|
},
|
|
35335
35340
|
type: 'object',
|
|
35336
35341
|
},
|
|
@@ -35372,59 +35377,96 @@ export default {
|
|
|
35372
35377
|
manage: {
|
|
35373
35378
|
oneOf: [
|
|
35374
35379
|
{
|
|
35375
|
-
|
|
35376
|
-
|
|
35377
|
-
|
|
35378
|
-
|
|
35379
|
-
|
|
35380
|
-
|
|
35381
|
-
|
|
35382
|
-
|
|
35383
|
-
|
|
35384
|
-
|
|
35385
|
-
|
|
35386
|
-
|
|
35387
|
-
|
|
35388
|
-
|
|
35389
|
-
|
|
35390
|
-
|
|
35391
|
-
|
|
35392
|
-
|
|
35393
|
-
|
|
35394
|
-
|
|
35395
|
-
|
|
35396
|
-
|
|
35397
|
-
|
|
35398
|
-
|
|
35399
|
-
|
|
35400
|
-
|
|
35401
|
-
|
|
35402
|
-
|
|
35403
|
-
|
|
35404
|
-
|
|
35405
|
-
|
|
35406
|
-
|
|
35407
|
-
|
|
35408
|
-
|
|
35409
|
-
|
|
35410
|
-
|
|
35411
|
-
|
|
35412
|
-
|
|
35413
|
-
|
|
35414
|
-
|
|
35415
|
-
|
|
35416
|
-
|
|
35417
|
-
|
|
35418
|
-
|
|
35419
|
-
|
|
35420
|
-
|
|
35380
|
+
oneOf: [
|
|
35381
|
+
{
|
|
35382
|
+
properties: {
|
|
35383
|
+
space_key: { type: 'string' },
|
|
35384
|
+
},
|
|
35385
|
+
required: ['space_key'],
|
|
35386
|
+
type: 'object',
|
|
35387
|
+
},
|
|
35388
|
+
{
|
|
35389
|
+
properties: {
|
|
35390
|
+
property_key: { type: 'string' },
|
|
35391
|
+
},
|
|
35392
|
+
required: ['property_key'],
|
|
35393
|
+
type: 'object',
|
|
35394
|
+
},
|
|
35395
|
+
{
|
|
35396
|
+
properties: {
|
|
35397
|
+
room_key: { type: 'string' },
|
|
35398
|
+
},
|
|
35399
|
+
required: ['room_key'],
|
|
35400
|
+
type: 'object',
|
|
35401
|
+
},
|
|
35402
|
+
{
|
|
35403
|
+
properties: {
|
|
35404
|
+
common_area_key: { type: 'string' },
|
|
35405
|
+
},
|
|
35406
|
+
required: ['common_area_key'],
|
|
35407
|
+
type: 'object',
|
|
35408
|
+
},
|
|
35409
|
+
{
|
|
35410
|
+
properties: {
|
|
35411
|
+
unit_key: { type: 'string' },
|
|
35412
|
+
},
|
|
35413
|
+
required: ['unit_key'],
|
|
35414
|
+
type: 'object',
|
|
35415
|
+
},
|
|
35416
|
+
{
|
|
35417
|
+
properties: {
|
|
35418
|
+
facility_key: { type: 'string' },
|
|
35419
|
+
},
|
|
35420
|
+
required: ['facility_key'],
|
|
35421
|
+
type: 'object',
|
|
35422
|
+
},
|
|
35423
|
+
{
|
|
35424
|
+
properties: {
|
|
35425
|
+
building_key: { type: 'string' },
|
|
35426
|
+
},
|
|
35427
|
+
required: ['building_key'],
|
|
35428
|
+
type: 'object',
|
|
35429
|
+
},
|
|
35430
|
+
{
|
|
35431
|
+
properties: {
|
|
35432
|
+
listing_key: { type: 'string' },
|
|
35433
|
+
},
|
|
35434
|
+
required: ['listing_key'],
|
|
35435
|
+
type: 'object',
|
|
35436
|
+
},
|
|
35437
|
+
{
|
|
35438
|
+
properties: {
|
|
35439
|
+
property_listing_key: { type: 'string' },
|
|
35440
|
+
},
|
|
35441
|
+
required: ['property_listing_key'],
|
|
35442
|
+
type: 'object',
|
|
35443
|
+
},
|
|
35444
|
+
],
|
|
35421
35445
|
},
|
|
35422
35446
|
{
|
|
35423
|
-
|
|
35424
|
-
|
|
35425
|
-
|
|
35426
|
-
|
|
35427
|
-
|
|
35447
|
+
oneOf: [
|
|
35448
|
+
{
|
|
35449
|
+
properties: {
|
|
35450
|
+
reservation_key: { type: 'string' },
|
|
35451
|
+
},
|
|
35452
|
+
required: ['reservation_key'],
|
|
35453
|
+
type: 'object',
|
|
35454
|
+
},
|
|
35455
|
+
{
|
|
35456
|
+
properties: {
|
|
35457
|
+
booking_key: { type: 'string' },
|
|
35458
|
+
},
|
|
35459
|
+
required: ['booking_key'],
|
|
35460
|
+
type: 'object',
|
|
35461
|
+
},
|
|
35462
|
+
{
|
|
35463
|
+
properties: {
|
|
35464
|
+
access_grant_key: { type: 'string' },
|
|
35465
|
+
},
|
|
35466
|
+
required: ['access_grant_key'],
|
|
35467
|
+
type: 'object',
|
|
35468
|
+
},
|
|
35469
|
+
],
|
|
35428
35470
|
},
|
|
35429
35471
|
],
|
|
35430
35472
|
},
|
|
@@ -45777,7 +45819,13 @@ export default {
|
|
|
45777
45819
|
type: 'object',
|
|
45778
45820
|
},
|
|
45779
45821
|
connect: {
|
|
45780
|
-
properties: {
|
|
45822
|
+
properties: {
|
|
45823
|
+
exclude: { type: 'boolean' },
|
|
45824
|
+
excluded_providers: {
|
|
45825
|
+
items: { type: 'string' },
|
|
45826
|
+
type: 'array',
|
|
45827
|
+
},
|
|
45828
|
+
},
|
|
45781
45829
|
type: 'object',
|
|
45782
45830
|
},
|
|
45783
45831
|
manage_devices: {
|
|
@@ -45797,61 +45845,98 @@ export default {
|
|
|
45797
45845
|
manage: {
|
|
45798
45846
|
oneOf: [
|
|
45799
45847
|
{
|
|
45800
|
-
|
|
45801
|
-
|
|
45802
|
-
|
|
45803
|
-
|
|
45804
|
-
|
|
45805
|
-
|
|
45806
|
-
|
|
45807
|
-
|
|
45808
|
-
|
|
45809
|
-
|
|
45810
|
-
|
|
45811
|
-
|
|
45812
|
-
|
|
45813
|
-
|
|
45814
|
-
|
|
45815
|
-
|
|
45816
|
-
|
|
45817
|
-
|
|
45818
|
-
|
|
45819
|
-
|
|
45820
|
-
|
|
45821
|
-
|
|
45822
|
-
|
|
45823
|
-
|
|
45824
|
-
|
|
45825
|
-
|
|
45826
|
-
|
|
45827
|
-
|
|
45828
|
-
|
|
45829
|
-
|
|
45830
|
-
|
|
45831
|
-
|
|
45832
|
-
|
|
45833
|
-
|
|
45834
|
-
|
|
45835
|
-
|
|
45836
|
-
|
|
45837
|
-
|
|
45838
|
-
|
|
45839
|
-
|
|
45840
|
-
|
|
45841
|
-
|
|
45842
|
-
|
|
45843
|
-
|
|
45844
|
-
|
|
45845
|
-
|
|
45846
|
-
|
|
45847
|
-
|
|
45848
|
+
oneOf: [
|
|
45849
|
+
{
|
|
45850
|
+
properties: {
|
|
45851
|
+
space_key: { type: 'string' },
|
|
45852
|
+
},
|
|
45853
|
+
required: ['space_key'],
|
|
45854
|
+
type: 'object',
|
|
45855
|
+
},
|
|
45856
|
+
{
|
|
45857
|
+
properties: {
|
|
45858
|
+
property_key: { type: 'string' },
|
|
45859
|
+
},
|
|
45860
|
+
required: ['property_key'],
|
|
45861
|
+
type: 'object',
|
|
45862
|
+
},
|
|
45863
|
+
{
|
|
45864
|
+
properties: {
|
|
45865
|
+
room_key: { type: 'string' },
|
|
45866
|
+
},
|
|
45867
|
+
required: ['room_key'],
|
|
45868
|
+
type: 'object',
|
|
45869
|
+
},
|
|
45870
|
+
{
|
|
45871
|
+
properties: {
|
|
45872
|
+
common_area_key: { type: 'string' },
|
|
45873
|
+
},
|
|
45874
|
+
required: ['common_area_key'],
|
|
45875
|
+
type: 'object',
|
|
45876
|
+
},
|
|
45877
|
+
{
|
|
45878
|
+
properties: {
|
|
45879
|
+
unit_key: { type: 'string' },
|
|
45880
|
+
},
|
|
45881
|
+
required: ['unit_key'],
|
|
45882
|
+
type: 'object',
|
|
45883
|
+
},
|
|
45884
|
+
{
|
|
45885
|
+
properties: {
|
|
45886
|
+
facility_key: { type: 'string' },
|
|
45887
|
+
},
|
|
45888
|
+
required: ['facility_key'],
|
|
45889
|
+
type: 'object',
|
|
45890
|
+
},
|
|
45891
|
+
{
|
|
45892
|
+
properties: {
|
|
45893
|
+
building_key: { type: 'string' },
|
|
45894
|
+
},
|
|
45895
|
+
required: ['building_key'],
|
|
45896
|
+
type: 'object',
|
|
45897
|
+
},
|
|
45898
|
+
{
|
|
45899
|
+
properties: {
|
|
45900
|
+
listing_key: { type: 'string' },
|
|
45901
|
+
},
|
|
45902
|
+
required: ['listing_key'],
|
|
45903
|
+
type: 'object',
|
|
45904
|
+
},
|
|
45905
|
+
{
|
|
45906
|
+
properties: {
|
|
45907
|
+
property_listing_key: {
|
|
45908
|
+
type: 'string',
|
|
45909
|
+
},
|
|
45910
|
+
},
|
|
45911
|
+
required: ['property_listing_key'],
|
|
45912
|
+
type: 'object',
|
|
45913
|
+
},
|
|
45914
|
+
],
|
|
45848
45915
|
},
|
|
45849
45916
|
{
|
|
45850
|
-
|
|
45851
|
-
|
|
45852
|
-
|
|
45853
|
-
|
|
45854
|
-
|
|
45917
|
+
oneOf: [
|
|
45918
|
+
{
|
|
45919
|
+
properties: {
|
|
45920
|
+
reservation_key: { type: 'string' },
|
|
45921
|
+
},
|
|
45922
|
+
required: ['reservation_key'],
|
|
45923
|
+
type: 'object',
|
|
45924
|
+
},
|
|
45925
|
+
{
|
|
45926
|
+
properties: {
|
|
45927
|
+
booking_key: { type: 'string' },
|
|
45928
|
+
},
|
|
45929
|
+
required: ['booking_key'],
|
|
45930
|
+
type: 'object',
|
|
45931
|
+
},
|
|
45932
|
+
{
|
|
45933
|
+
properties: {
|
|
45934
|
+
access_grant_key: { type: 'string' },
|
|
45935
|
+
},
|
|
45936
|
+
required: ['access_grant_key'],
|
|
45937
|
+
type: 'object',
|
|
45938
|
+
},
|
|
45939
|
+
],
|
|
45855
45940
|
},
|
|
45856
45941
|
],
|
|
45857
45942
|
},
|
|
@@ -45937,7 +46022,13 @@ export default {
|
|
|
45937
46022
|
type: 'object',
|
|
45938
46023
|
},
|
|
45939
46024
|
connect: {
|
|
45940
|
-
properties: {
|
|
46025
|
+
properties: {
|
|
46026
|
+
exclude: { type: 'boolean' },
|
|
46027
|
+
excluded_providers: {
|
|
46028
|
+
items: { type: 'string' },
|
|
46029
|
+
type: 'array',
|
|
46030
|
+
},
|
|
46031
|
+
},
|
|
45941
46032
|
type: 'object',
|
|
45942
46033
|
},
|
|
45943
46034
|
manage_devices: {
|
|
@@ -45957,61 +46048,98 @@ export default {
|
|
|
45957
46048
|
manage: {
|
|
45958
46049
|
oneOf: [
|
|
45959
46050
|
{
|
|
45960
|
-
|
|
45961
|
-
|
|
45962
|
-
|
|
45963
|
-
|
|
45964
|
-
|
|
45965
|
-
|
|
45966
|
-
|
|
45967
|
-
|
|
45968
|
-
|
|
45969
|
-
|
|
45970
|
-
|
|
45971
|
-
|
|
45972
|
-
|
|
45973
|
-
|
|
45974
|
-
|
|
45975
|
-
|
|
45976
|
-
|
|
45977
|
-
|
|
45978
|
-
|
|
45979
|
-
|
|
45980
|
-
|
|
45981
|
-
|
|
45982
|
-
|
|
45983
|
-
|
|
45984
|
-
|
|
45985
|
-
|
|
45986
|
-
|
|
45987
|
-
|
|
45988
|
-
|
|
45989
|
-
|
|
45990
|
-
|
|
45991
|
-
|
|
45992
|
-
|
|
45993
|
-
|
|
45994
|
-
|
|
45995
|
-
|
|
45996
|
-
|
|
45997
|
-
|
|
45998
|
-
|
|
45999
|
-
|
|
46000
|
-
|
|
46001
|
-
|
|
46002
|
-
|
|
46003
|
-
|
|
46004
|
-
|
|
46005
|
-
|
|
46006
|
-
|
|
46007
|
-
|
|
46051
|
+
oneOf: [
|
|
46052
|
+
{
|
|
46053
|
+
properties: {
|
|
46054
|
+
space_key: { type: 'string' },
|
|
46055
|
+
},
|
|
46056
|
+
required: ['space_key'],
|
|
46057
|
+
type: 'object',
|
|
46058
|
+
},
|
|
46059
|
+
{
|
|
46060
|
+
properties: {
|
|
46061
|
+
property_key: { type: 'string' },
|
|
46062
|
+
},
|
|
46063
|
+
required: ['property_key'],
|
|
46064
|
+
type: 'object',
|
|
46065
|
+
},
|
|
46066
|
+
{
|
|
46067
|
+
properties: {
|
|
46068
|
+
room_key: { type: 'string' },
|
|
46069
|
+
},
|
|
46070
|
+
required: ['room_key'],
|
|
46071
|
+
type: 'object',
|
|
46072
|
+
},
|
|
46073
|
+
{
|
|
46074
|
+
properties: {
|
|
46075
|
+
common_area_key: { type: 'string' },
|
|
46076
|
+
},
|
|
46077
|
+
required: ['common_area_key'],
|
|
46078
|
+
type: 'object',
|
|
46079
|
+
},
|
|
46080
|
+
{
|
|
46081
|
+
properties: {
|
|
46082
|
+
unit_key: { type: 'string' },
|
|
46083
|
+
},
|
|
46084
|
+
required: ['unit_key'],
|
|
46085
|
+
type: 'object',
|
|
46086
|
+
},
|
|
46087
|
+
{
|
|
46088
|
+
properties: {
|
|
46089
|
+
facility_key: { type: 'string' },
|
|
46090
|
+
},
|
|
46091
|
+
required: ['facility_key'],
|
|
46092
|
+
type: 'object',
|
|
46093
|
+
},
|
|
46094
|
+
{
|
|
46095
|
+
properties: {
|
|
46096
|
+
building_key: { type: 'string' },
|
|
46097
|
+
},
|
|
46098
|
+
required: ['building_key'],
|
|
46099
|
+
type: 'object',
|
|
46100
|
+
},
|
|
46101
|
+
{
|
|
46102
|
+
properties: {
|
|
46103
|
+
listing_key: { type: 'string' },
|
|
46104
|
+
},
|
|
46105
|
+
required: ['listing_key'],
|
|
46106
|
+
type: 'object',
|
|
46107
|
+
},
|
|
46108
|
+
{
|
|
46109
|
+
properties: {
|
|
46110
|
+
property_listing_key: {
|
|
46111
|
+
type: 'string',
|
|
46112
|
+
},
|
|
46113
|
+
},
|
|
46114
|
+
required: ['property_listing_key'],
|
|
46115
|
+
type: 'object',
|
|
46116
|
+
},
|
|
46117
|
+
],
|
|
46008
46118
|
},
|
|
46009
46119
|
{
|
|
46010
|
-
|
|
46011
|
-
|
|
46012
|
-
|
|
46013
|
-
|
|
46014
|
-
|
|
46120
|
+
oneOf: [
|
|
46121
|
+
{
|
|
46122
|
+
properties: {
|
|
46123
|
+
reservation_key: { type: 'string' },
|
|
46124
|
+
},
|
|
46125
|
+
required: ['reservation_key'],
|
|
46126
|
+
type: 'object',
|
|
46127
|
+
},
|
|
46128
|
+
{
|
|
46129
|
+
properties: {
|
|
46130
|
+
booking_key: { type: 'string' },
|
|
46131
|
+
},
|
|
46132
|
+
required: ['booking_key'],
|
|
46133
|
+
type: 'object',
|
|
46134
|
+
},
|
|
46135
|
+
{
|
|
46136
|
+
properties: {
|
|
46137
|
+
access_grant_key: { type: 'string' },
|
|
46138
|
+
},
|
|
46139
|
+
required: ['access_grant_key'],
|
|
46140
|
+
type: 'object',
|
|
46141
|
+
},
|
|
46142
|
+
],
|
|
46015
46143
|
},
|
|
46016
46144
|
],
|
|
46017
46145
|
},
|