@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
package/dist/connect.cjs
CHANGED
|
@@ -41022,6 +41022,11 @@ var openapi_default = {
|
|
|
41022
41022
|
default: false,
|
|
41023
41023
|
description: "Whether to exclude this feature from the portal.",
|
|
41024
41024
|
type: "boolean"
|
|
41025
|
+
},
|
|
41026
|
+
excluded_providers: {
|
|
41027
|
+
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.",
|
|
41028
|
+
items: { type: "string" },
|
|
41029
|
+
type: "array"
|
|
41025
41030
|
}
|
|
41026
41031
|
},
|
|
41027
41032
|
type: "object"
|
|
@@ -41064,59 +41069,96 @@ var openapi_default = {
|
|
|
41064
41069
|
manage: {
|
|
41065
41070
|
oneOf: [
|
|
41066
41071
|
{
|
|
41067
|
-
|
|
41068
|
-
|
|
41069
|
-
|
|
41070
|
-
|
|
41071
|
-
|
|
41072
|
-
|
|
41073
|
-
|
|
41074
|
-
|
|
41075
|
-
|
|
41076
|
-
|
|
41077
|
-
|
|
41078
|
-
|
|
41079
|
-
|
|
41080
|
-
|
|
41081
|
-
|
|
41082
|
-
|
|
41083
|
-
|
|
41084
|
-
|
|
41085
|
-
|
|
41086
|
-
|
|
41087
|
-
|
|
41088
|
-
|
|
41089
|
-
|
|
41090
|
-
|
|
41091
|
-
|
|
41092
|
-
|
|
41093
|
-
|
|
41094
|
-
|
|
41095
|
-
|
|
41096
|
-
|
|
41097
|
-
|
|
41098
|
-
|
|
41099
|
-
|
|
41100
|
-
|
|
41101
|
-
|
|
41102
|
-
|
|
41103
|
-
|
|
41104
|
-
|
|
41105
|
-
|
|
41106
|
-
|
|
41107
|
-
|
|
41108
|
-
|
|
41109
|
-
|
|
41110
|
-
|
|
41111
|
-
|
|
41112
|
-
|
|
41072
|
+
oneOf: [
|
|
41073
|
+
{
|
|
41074
|
+
properties: {
|
|
41075
|
+
space_key: { type: "string" }
|
|
41076
|
+
},
|
|
41077
|
+
required: ["space_key"],
|
|
41078
|
+
type: "object"
|
|
41079
|
+
},
|
|
41080
|
+
{
|
|
41081
|
+
properties: {
|
|
41082
|
+
property_key: { type: "string" }
|
|
41083
|
+
},
|
|
41084
|
+
required: ["property_key"],
|
|
41085
|
+
type: "object"
|
|
41086
|
+
},
|
|
41087
|
+
{
|
|
41088
|
+
properties: {
|
|
41089
|
+
room_key: { type: "string" }
|
|
41090
|
+
},
|
|
41091
|
+
required: ["room_key"],
|
|
41092
|
+
type: "object"
|
|
41093
|
+
},
|
|
41094
|
+
{
|
|
41095
|
+
properties: {
|
|
41096
|
+
common_area_key: { type: "string" }
|
|
41097
|
+
},
|
|
41098
|
+
required: ["common_area_key"],
|
|
41099
|
+
type: "object"
|
|
41100
|
+
},
|
|
41101
|
+
{
|
|
41102
|
+
properties: {
|
|
41103
|
+
unit_key: { type: "string" }
|
|
41104
|
+
},
|
|
41105
|
+
required: ["unit_key"],
|
|
41106
|
+
type: "object"
|
|
41107
|
+
},
|
|
41108
|
+
{
|
|
41109
|
+
properties: {
|
|
41110
|
+
facility_key: { type: "string" }
|
|
41111
|
+
},
|
|
41112
|
+
required: ["facility_key"],
|
|
41113
|
+
type: "object"
|
|
41114
|
+
},
|
|
41115
|
+
{
|
|
41116
|
+
properties: {
|
|
41117
|
+
building_key: { type: "string" }
|
|
41118
|
+
},
|
|
41119
|
+
required: ["building_key"],
|
|
41120
|
+
type: "object"
|
|
41121
|
+
},
|
|
41122
|
+
{
|
|
41123
|
+
properties: {
|
|
41124
|
+
listing_key: { type: "string" }
|
|
41125
|
+
},
|
|
41126
|
+
required: ["listing_key"],
|
|
41127
|
+
type: "object"
|
|
41128
|
+
},
|
|
41129
|
+
{
|
|
41130
|
+
properties: {
|
|
41131
|
+
property_listing_key: { type: "string" }
|
|
41132
|
+
},
|
|
41133
|
+
required: ["property_listing_key"],
|
|
41134
|
+
type: "object"
|
|
41135
|
+
}
|
|
41136
|
+
]
|
|
41113
41137
|
},
|
|
41114
41138
|
{
|
|
41115
|
-
|
|
41116
|
-
|
|
41117
|
-
|
|
41118
|
-
|
|
41119
|
-
|
|
41139
|
+
oneOf: [
|
|
41140
|
+
{
|
|
41141
|
+
properties: {
|
|
41142
|
+
reservation_key: { type: "string" }
|
|
41143
|
+
},
|
|
41144
|
+
required: ["reservation_key"],
|
|
41145
|
+
type: "object"
|
|
41146
|
+
},
|
|
41147
|
+
{
|
|
41148
|
+
properties: {
|
|
41149
|
+
booking_key: { type: "string" }
|
|
41150
|
+
},
|
|
41151
|
+
required: ["booking_key"],
|
|
41152
|
+
type: "object"
|
|
41153
|
+
},
|
|
41154
|
+
{
|
|
41155
|
+
properties: {
|
|
41156
|
+
access_grant_key: { type: "string" }
|
|
41157
|
+
},
|
|
41158
|
+
required: ["access_grant_key"],
|
|
41159
|
+
type: "object"
|
|
41160
|
+
}
|
|
41161
|
+
]
|
|
41120
41162
|
}
|
|
41121
41163
|
]
|
|
41122
41164
|
}
|
|
@@ -51469,7 +51511,13 @@ var openapi_default = {
|
|
|
51469
51511
|
type: "object"
|
|
51470
51512
|
},
|
|
51471
51513
|
connect: {
|
|
51472
|
-
properties: {
|
|
51514
|
+
properties: {
|
|
51515
|
+
exclude: { type: "boolean" },
|
|
51516
|
+
excluded_providers: {
|
|
51517
|
+
items: { type: "string" },
|
|
51518
|
+
type: "array"
|
|
51519
|
+
}
|
|
51520
|
+
},
|
|
51473
51521
|
type: "object"
|
|
51474
51522
|
},
|
|
51475
51523
|
manage_devices: {
|
|
@@ -51489,61 +51537,98 @@ var openapi_default = {
|
|
|
51489
51537
|
manage: {
|
|
51490
51538
|
oneOf: [
|
|
51491
51539
|
{
|
|
51492
|
-
|
|
51493
|
-
|
|
51494
|
-
|
|
51495
|
-
|
|
51496
|
-
|
|
51497
|
-
|
|
51498
|
-
|
|
51499
|
-
|
|
51500
|
-
|
|
51501
|
-
|
|
51502
|
-
|
|
51503
|
-
|
|
51504
|
-
|
|
51505
|
-
|
|
51506
|
-
|
|
51507
|
-
|
|
51508
|
-
|
|
51509
|
-
|
|
51510
|
-
|
|
51511
|
-
|
|
51512
|
-
|
|
51513
|
-
|
|
51514
|
-
|
|
51515
|
-
|
|
51516
|
-
|
|
51517
|
-
|
|
51518
|
-
|
|
51519
|
-
|
|
51520
|
-
|
|
51521
|
-
|
|
51522
|
-
|
|
51523
|
-
|
|
51524
|
-
|
|
51525
|
-
|
|
51526
|
-
|
|
51527
|
-
|
|
51528
|
-
|
|
51529
|
-
|
|
51530
|
-
|
|
51531
|
-
|
|
51532
|
-
|
|
51533
|
-
|
|
51534
|
-
|
|
51535
|
-
|
|
51536
|
-
|
|
51537
|
-
|
|
51538
|
-
|
|
51539
|
-
|
|
51540
|
+
oneOf: [
|
|
51541
|
+
{
|
|
51542
|
+
properties: {
|
|
51543
|
+
space_key: { type: "string" }
|
|
51544
|
+
},
|
|
51545
|
+
required: ["space_key"],
|
|
51546
|
+
type: "object"
|
|
51547
|
+
},
|
|
51548
|
+
{
|
|
51549
|
+
properties: {
|
|
51550
|
+
property_key: { type: "string" }
|
|
51551
|
+
},
|
|
51552
|
+
required: ["property_key"],
|
|
51553
|
+
type: "object"
|
|
51554
|
+
},
|
|
51555
|
+
{
|
|
51556
|
+
properties: {
|
|
51557
|
+
room_key: { type: "string" }
|
|
51558
|
+
},
|
|
51559
|
+
required: ["room_key"],
|
|
51560
|
+
type: "object"
|
|
51561
|
+
},
|
|
51562
|
+
{
|
|
51563
|
+
properties: {
|
|
51564
|
+
common_area_key: { type: "string" }
|
|
51565
|
+
},
|
|
51566
|
+
required: ["common_area_key"],
|
|
51567
|
+
type: "object"
|
|
51568
|
+
},
|
|
51569
|
+
{
|
|
51570
|
+
properties: {
|
|
51571
|
+
unit_key: { type: "string" }
|
|
51572
|
+
},
|
|
51573
|
+
required: ["unit_key"],
|
|
51574
|
+
type: "object"
|
|
51575
|
+
},
|
|
51576
|
+
{
|
|
51577
|
+
properties: {
|
|
51578
|
+
facility_key: { type: "string" }
|
|
51579
|
+
},
|
|
51580
|
+
required: ["facility_key"],
|
|
51581
|
+
type: "object"
|
|
51582
|
+
},
|
|
51583
|
+
{
|
|
51584
|
+
properties: {
|
|
51585
|
+
building_key: { type: "string" }
|
|
51586
|
+
},
|
|
51587
|
+
required: ["building_key"],
|
|
51588
|
+
type: "object"
|
|
51589
|
+
},
|
|
51590
|
+
{
|
|
51591
|
+
properties: {
|
|
51592
|
+
listing_key: { type: "string" }
|
|
51593
|
+
},
|
|
51594
|
+
required: ["listing_key"],
|
|
51595
|
+
type: "object"
|
|
51596
|
+
},
|
|
51597
|
+
{
|
|
51598
|
+
properties: {
|
|
51599
|
+
property_listing_key: {
|
|
51600
|
+
type: "string"
|
|
51601
|
+
}
|
|
51602
|
+
},
|
|
51603
|
+
required: ["property_listing_key"],
|
|
51604
|
+
type: "object"
|
|
51605
|
+
}
|
|
51606
|
+
]
|
|
51540
51607
|
},
|
|
51541
51608
|
{
|
|
51542
|
-
|
|
51543
|
-
|
|
51544
|
-
|
|
51545
|
-
|
|
51546
|
-
|
|
51609
|
+
oneOf: [
|
|
51610
|
+
{
|
|
51611
|
+
properties: {
|
|
51612
|
+
reservation_key: { type: "string" }
|
|
51613
|
+
},
|
|
51614
|
+
required: ["reservation_key"],
|
|
51615
|
+
type: "object"
|
|
51616
|
+
},
|
|
51617
|
+
{
|
|
51618
|
+
properties: {
|
|
51619
|
+
booking_key: { type: "string" }
|
|
51620
|
+
},
|
|
51621
|
+
required: ["booking_key"],
|
|
51622
|
+
type: "object"
|
|
51623
|
+
},
|
|
51624
|
+
{
|
|
51625
|
+
properties: {
|
|
51626
|
+
access_grant_key: { type: "string" }
|
|
51627
|
+
},
|
|
51628
|
+
required: ["access_grant_key"],
|
|
51629
|
+
type: "object"
|
|
51630
|
+
}
|
|
51631
|
+
]
|
|
51547
51632
|
}
|
|
51548
51633
|
]
|
|
51549
51634
|
}
|
|
@@ -51629,7 +51714,13 @@ var openapi_default = {
|
|
|
51629
51714
|
type: "object"
|
|
51630
51715
|
},
|
|
51631
51716
|
connect: {
|
|
51632
|
-
properties: {
|
|
51717
|
+
properties: {
|
|
51718
|
+
exclude: { type: "boolean" },
|
|
51719
|
+
excluded_providers: {
|
|
51720
|
+
items: { type: "string" },
|
|
51721
|
+
type: "array"
|
|
51722
|
+
}
|
|
51723
|
+
},
|
|
51633
51724
|
type: "object"
|
|
51634
51725
|
},
|
|
51635
51726
|
manage_devices: {
|
|
@@ -51649,61 +51740,98 @@ var openapi_default = {
|
|
|
51649
51740
|
manage: {
|
|
51650
51741
|
oneOf: [
|
|
51651
51742
|
{
|
|
51652
|
-
|
|
51653
|
-
|
|
51654
|
-
|
|
51655
|
-
|
|
51656
|
-
|
|
51657
|
-
|
|
51658
|
-
|
|
51659
|
-
|
|
51660
|
-
|
|
51661
|
-
|
|
51662
|
-
|
|
51663
|
-
|
|
51664
|
-
|
|
51665
|
-
|
|
51666
|
-
|
|
51667
|
-
|
|
51668
|
-
|
|
51669
|
-
|
|
51670
|
-
|
|
51671
|
-
|
|
51672
|
-
|
|
51673
|
-
|
|
51674
|
-
|
|
51675
|
-
|
|
51676
|
-
|
|
51677
|
-
|
|
51678
|
-
|
|
51679
|
-
|
|
51680
|
-
|
|
51681
|
-
|
|
51682
|
-
|
|
51683
|
-
|
|
51684
|
-
|
|
51685
|
-
|
|
51686
|
-
|
|
51687
|
-
|
|
51688
|
-
|
|
51689
|
-
|
|
51690
|
-
|
|
51691
|
-
|
|
51692
|
-
|
|
51693
|
-
|
|
51694
|
-
|
|
51695
|
-
|
|
51696
|
-
|
|
51697
|
-
|
|
51698
|
-
|
|
51699
|
-
|
|
51743
|
+
oneOf: [
|
|
51744
|
+
{
|
|
51745
|
+
properties: {
|
|
51746
|
+
space_key: { type: "string" }
|
|
51747
|
+
},
|
|
51748
|
+
required: ["space_key"],
|
|
51749
|
+
type: "object"
|
|
51750
|
+
},
|
|
51751
|
+
{
|
|
51752
|
+
properties: {
|
|
51753
|
+
property_key: { type: "string" }
|
|
51754
|
+
},
|
|
51755
|
+
required: ["property_key"],
|
|
51756
|
+
type: "object"
|
|
51757
|
+
},
|
|
51758
|
+
{
|
|
51759
|
+
properties: {
|
|
51760
|
+
room_key: { type: "string" }
|
|
51761
|
+
},
|
|
51762
|
+
required: ["room_key"],
|
|
51763
|
+
type: "object"
|
|
51764
|
+
},
|
|
51765
|
+
{
|
|
51766
|
+
properties: {
|
|
51767
|
+
common_area_key: { type: "string" }
|
|
51768
|
+
},
|
|
51769
|
+
required: ["common_area_key"],
|
|
51770
|
+
type: "object"
|
|
51771
|
+
},
|
|
51772
|
+
{
|
|
51773
|
+
properties: {
|
|
51774
|
+
unit_key: { type: "string" }
|
|
51775
|
+
},
|
|
51776
|
+
required: ["unit_key"],
|
|
51777
|
+
type: "object"
|
|
51778
|
+
},
|
|
51779
|
+
{
|
|
51780
|
+
properties: {
|
|
51781
|
+
facility_key: { type: "string" }
|
|
51782
|
+
},
|
|
51783
|
+
required: ["facility_key"],
|
|
51784
|
+
type: "object"
|
|
51785
|
+
},
|
|
51786
|
+
{
|
|
51787
|
+
properties: {
|
|
51788
|
+
building_key: { type: "string" }
|
|
51789
|
+
},
|
|
51790
|
+
required: ["building_key"],
|
|
51791
|
+
type: "object"
|
|
51792
|
+
},
|
|
51793
|
+
{
|
|
51794
|
+
properties: {
|
|
51795
|
+
listing_key: { type: "string" }
|
|
51796
|
+
},
|
|
51797
|
+
required: ["listing_key"],
|
|
51798
|
+
type: "object"
|
|
51799
|
+
},
|
|
51800
|
+
{
|
|
51801
|
+
properties: {
|
|
51802
|
+
property_listing_key: {
|
|
51803
|
+
type: "string"
|
|
51804
|
+
}
|
|
51805
|
+
},
|
|
51806
|
+
required: ["property_listing_key"],
|
|
51807
|
+
type: "object"
|
|
51808
|
+
}
|
|
51809
|
+
]
|
|
51700
51810
|
},
|
|
51701
51811
|
{
|
|
51702
|
-
|
|
51703
|
-
|
|
51704
|
-
|
|
51705
|
-
|
|
51706
|
-
|
|
51812
|
+
oneOf: [
|
|
51813
|
+
{
|
|
51814
|
+
properties: {
|
|
51815
|
+
reservation_key: { type: "string" }
|
|
51816
|
+
},
|
|
51817
|
+
required: ["reservation_key"],
|
|
51818
|
+
type: "object"
|
|
51819
|
+
},
|
|
51820
|
+
{
|
|
51821
|
+
properties: {
|
|
51822
|
+
booking_key: { type: "string" }
|
|
51823
|
+
},
|
|
51824
|
+
required: ["booking_key"],
|
|
51825
|
+
type: "object"
|
|
51826
|
+
},
|
|
51827
|
+
{
|
|
51828
|
+
properties: {
|
|
51829
|
+
access_grant_key: { type: "string" }
|
|
51830
|
+
},
|
|
51831
|
+
required: ["access_grant_key"],
|
|
51832
|
+
type: "object"
|
|
51833
|
+
}
|
|
51834
|
+
]
|
|
51707
51835
|
}
|
|
51708
51836
|
]
|
|
51709
51837
|
}
|