@seamapi/types 1.536.0 → 1.537.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 +199 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +501 -0
- package/dist/index.cjs +199 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +139 -0
- package/lib/seam/connect/models/customer/customer-portal.js +7 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +458 -0
- package/lib/seam/connect/openapi.js +197 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +43 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +8 -0
- package/src/lib/seam/connect/openapi.ts +198 -0
- package/src/lib/seam/connect/route-types.ts +71 -0
package/dist/connect.cjs
CHANGED
|
@@ -40630,6 +40630,71 @@ var openapi_default = {
|
|
|
40630
40630
|
default: false,
|
|
40631
40631
|
description: "Whether the portal is embedded in another application.",
|
|
40632
40632
|
type: "boolean"
|
|
40633
|
+
},
|
|
40634
|
+
landing_page: {
|
|
40635
|
+
description: "Configuration for the landing page when the portal loads.",
|
|
40636
|
+
properties: {
|
|
40637
|
+
manage: {
|
|
40638
|
+
oneOf: [
|
|
40639
|
+
{
|
|
40640
|
+
properties: { space_key: { type: "string" } },
|
|
40641
|
+
required: ["space_key"],
|
|
40642
|
+
type: "object"
|
|
40643
|
+
},
|
|
40644
|
+
{
|
|
40645
|
+
properties: {
|
|
40646
|
+
property_key: { type: "string" }
|
|
40647
|
+
},
|
|
40648
|
+
required: ["property_key"],
|
|
40649
|
+
type: "object"
|
|
40650
|
+
},
|
|
40651
|
+
{
|
|
40652
|
+
properties: { room_key: { type: "string" } },
|
|
40653
|
+
required: ["room_key"],
|
|
40654
|
+
type: "object"
|
|
40655
|
+
},
|
|
40656
|
+
{
|
|
40657
|
+
properties: {
|
|
40658
|
+
common_area_key: { type: "string" }
|
|
40659
|
+
},
|
|
40660
|
+
required: ["common_area_key"],
|
|
40661
|
+
type: "object"
|
|
40662
|
+
},
|
|
40663
|
+
{
|
|
40664
|
+
properties: { unit_key: { type: "string" } },
|
|
40665
|
+
required: ["unit_key"],
|
|
40666
|
+
type: "object"
|
|
40667
|
+
},
|
|
40668
|
+
{
|
|
40669
|
+
properties: {
|
|
40670
|
+
facility_key: { type: "string" }
|
|
40671
|
+
},
|
|
40672
|
+
required: ["facility_key"],
|
|
40673
|
+
type: "object"
|
|
40674
|
+
},
|
|
40675
|
+
{
|
|
40676
|
+
properties: {
|
|
40677
|
+
building_key: { type: "string" }
|
|
40678
|
+
},
|
|
40679
|
+
required: ["building_key"],
|
|
40680
|
+
type: "object"
|
|
40681
|
+
},
|
|
40682
|
+
{
|
|
40683
|
+
properties: { listing_key: { type: "string" } },
|
|
40684
|
+
required: ["listing_key"],
|
|
40685
|
+
type: "object"
|
|
40686
|
+
},
|
|
40687
|
+
{
|
|
40688
|
+
properties: {
|
|
40689
|
+
property_listing_key: { type: "string" }
|
|
40690
|
+
},
|
|
40691
|
+
required: ["property_listing_key"],
|
|
40692
|
+
type: "object"
|
|
40693
|
+
}
|
|
40694
|
+
]
|
|
40695
|
+
}
|
|
40696
|
+
},
|
|
40697
|
+
type: "object"
|
|
40633
40698
|
}
|
|
40634
40699
|
},
|
|
40635
40700
|
type: "object"
|
|
@@ -50883,7 +50948,73 @@ var openapi_default = {
|
|
|
50883
50948
|
},
|
|
50884
50949
|
type: "object"
|
|
50885
50950
|
},
|
|
50886
|
-
is_embedded: { type: "boolean" }
|
|
50951
|
+
is_embedded: { type: "boolean" },
|
|
50952
|
+
landing_page: {
|
|
50953
|
+
properties: {
|
|
50954
|
+
manage: {
|
|
50955
|
+
oneOf: [
|
|
50956
|
+
{
|
|
50957
|
+
properties: { space_key: { type: "string" } },
|
|
50958
|
+
required: ["space_key"],
|
|
50959
|
+
type: "object"
|
|
50960
|
+
},
|
|
50961
|
+
{
|
|
50962
|
+
properties: {
|
|
50963
|
+
property_key: { type: "string" }
|
|
50964
|
+
},
|
|
50965
|
+
required: ["property_key"],
|
|
50966
|
+
type: "object"
|
|
50967
|
+
},
|
|
50968
|
+
{
|
|
50969
|
+
properties: { room_key: { type: "string" } },
|
|
50970
|
+
required: ["room_key"],
|
|
50971
|
+
type: "object"
|
|
50972
|
+
},
|
|
50973
|
+
{
|
|
50974
|
+
properties: {
|
|
50975
|
+
common_area_key: { type: "string" }
|
|
50976
|
+
},
|
|
50977
|
+
required: ["common_area_key"],
|
|
50978
|
+
type: "object"
|
|
50979
|
+
},
|
|
50980
|
+
{
|
|
50981
|
+
properties: { unit_key: { type: "string" } },
|
|
50982
|
+
required: ["unit_key"],
|
|
50983
|
+
type: "object"
|
|
50984
|
+
},
|
|
50985
|
+
{
|
|
50986
|
+
properties: {
|
|
50987
|
+
facility_key: { type: "string" }
|
|
50988
|
+
},
|
|
50989
|
+
required: ["facility_key"],
|
|
50990
|
+
type: "object"
|
|
50991
|
+
},
|
|
50992
|
+
{
|
|
50993
|
+
properties: {
|
|
50994
|
+
building_key: { type: "string" }
|
|
50995
|
+
},
|
|
50996
|
+
required: ["building_key"],
|
|
50997
|
+
type: "object"
|
|
50998
|
+
},
|
|
50999
|
+
{
|
|
51000
|
+
properties: {
|
|
51001
|
+
listing_key: { type: "string" }
|
|
51002
|
+
},
|
|
51003
|
+
required: ["listing_key"],
|
|
51004
|
+
type: "object"
|
|
51005
|
+
},
|
|
51006
|
+
{
|
|
51007
|
+
properties: {
|
|
51008
|
+
property_listing_key: { type: "string" }
|
|
51009
|
+
},
|
|
51010
|
+
required: ["property_listing_key"],
|
|
51011
|
+
type: "object"
|
|
51012
|
+
}
|
|
51013
|
+
]
|
|
51014
|
+
}
|
|
51015
|
+
},
|
|
51016
|
+
type: "object"
|
|
51017
|
+
}
|
|
50887
51018
|
},
|
|
50888
51019
|
type: "object"
|
|
50889
51020
|
},
|
|
@@ -50977,7 +51108,73 @@ var openapi_default = {
|
|
|
50977
51108
|
},
|
|
50978
51109
|
type: "object"
|
|
50979
51110
|
},
|
|
50980
|
-
is_embedded: { type: "boolean" }
|
|
51111
|
+
is_embedded: { type: "boolean" },
|
|
51112
|
+
landing_page: {
|
|
51113
|
+
properties: {
|
|
51114
|
+
manage: {
|
|
51115
|
+
oneOf: [
|
|
51116
|
+
{
|
|
51117
|
+
properties: { space_key: { type: "string" } },
|
|
51118
|
+
required: ["space_key"],
|
|
51119
|
+
type: "object"
|
|
51120
|
+
},
|
|
51121
|
+
{
|
|
51122
|
+
properties: {
|
|
51123
|
+
property_key: { type: "string" }
|
|
51124
|
+
},
|
|
51125
|
+
required: ["property_key"],
|
|
51126
|
+
type: "object"
|
|
51127
|
+
},
|
|
51128
|
+
{
|
|
51129
|
+
properties: { room_key: { type: "string" } },
|
|
51130
|
+
required: ["room_key"],
|
|
51131
|
+
type: "object"
|
|
51132
|
+
},
|
|
51133
|
+
{
|
|
51134
|
+
properties: {
|
|
51135
|
+
common_area_key: { type: "string" }
|
|
51136
|
+
},
|
|
51137
|
+
required: ["common_area_key"],
|
|
51138
|
+
type: "object"
|
|
51139
|
+
},
|
|
51140
|
+
{
|
|
51141
|
+
properties: { unit_key: { type: "string" } },
|
|
51142
|
+
required: ["unit_key"],
|
|
51143
|
+
type: "object"
|
|
51144
|
+
},
|
|
51145
|
+
{
|
|
51146
|
+
properties: {
|
|
51147
|
+
facility_key: { type: "string" }
|
|
51148
|
+
},
|
|
51149
|
+
required: ["facility_key"],
|
|
51150
|
+
type: "object"
|
|
51151
|
+
},
|
|
51152
|
+
{
|
|
51153
|
+
properties: {
|
|
51154
|
+
building_key: { type: "string" }
|
|
51155
|
+
},
|
|
51156
|
+
required: ["building_key"],
|
|
51157
|
+
type: "object"
|
|
51158
|
+
},
|
|
51159
|
+
{
|
|
51160
|
+
properties: {
|
|
51161
|
+
listing_key: { type: "string" }
|
|
51162
|
+
},
|
|
51163
|
+
required: ["listing_key"],
|
|
51164
|
+
type: "object"
|
|
51165
|
+
},
|
|
51166
|
+
{
|
|
51167
|
+
properties: {
|
|
51168
|
+
property_listing_key: { type: "string" }
|
|
51169
|
+
},
|
|
51170
|
+
required: ["property_listing_key"],
|
|
51171
|
+
type: "object"
|
|
51172
|
+
}
|
|
51173
|
+
]
|
|
51174
|
+
}
|
|
51175
|
+
},
|
|
51176
|
+
type: "object"
|
|
51177
|
+
}
|
|
50981
51178
|
},
|
|
50982
51179
|
type: "object"
|
|
50983
51180
|
},
|