@seamapi/types 1.423.1 → 1.423.3
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 +130 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +162 -2
- package/lib/seam/connect/models/customer/customer-data.d.ts +19 -0
- package/lib/seam/connect/models/customer/customer-data.js +5 -1
- package/lib/seam/connect/models/customer/customer-data.js.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +3 -0
- package/lib/seam/connect/models/customer/customer-portal.js +5 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/models/customer/location-resources.d.ts +28 -0
- package/lib/seam/connect/models/customer/location-resources.js +7 -0
- package/lib/seam/connect/models/customer/location-resources.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +143 -0
- package/lib/seam/connect/openapi.js +128 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +19 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-data.ts +5 -0
- package/src/lib/seam/connect/models/customer/customer-portal.ts +5 -0
- package/src/lib/seam/connect/models/customer/location-resources.ts +9 -0
- package/src/lib/seam/connect/openapi.ts +135 -4
- package/src/lib/seam/connect/route-types.ts +23 -2
package/dist/connect.cjs
CHANGED
|
@@ -38193,7 +38193,8 @@ var openapi_default = {
|
|
|
38193
38193
|
connect: { exclude: false },
|
|
38194
38194
|
manage_devices: { exclude: false },
|
|
38195
38195
|
organize: { exclude: false }
|
|
38196
|
-
}
|
|
38196
|
+
},
|
|
38197
|
+
is_embedded: false
|
|
38197
38198
|
},
|
|
38198
38199
|
description: "Configuration for a customer portal",
|
|
38199
38200
|
properties: {
|
|
@@ -38238,6 +38239,11 @@ var openapi_default = {
|
|
|
38238
38239
|
}
|
|
38239
38240
|
},
|
|
38240
38241
|
type: "object"
|
|
38242
|
+
},
|
|
38243
|
+
is_embedded: {
|
|
38244
|
+
default: false,
|
|
38245
|
+
description: "Whether the portal is embedded in another application.",
|
|
38246
|
+
type: "boolean"
|
|
38241
38247
|
}
|
|
38242
38248
|
},
|
|
38243
38249
|
type: "object"
|
|
@@ -38538,6 +38544,24 @@ var openapi_default = {
|
|
|
38538
38544
|
},
|
|
38539
38545
|
type: "array"
|
|
38540
38546
|
},
|
|
38547
|
+
property_listings: {
|
|
38548
|
+
description: "List of property listings.",
|
|
38549
|
+
items: {
|
|
38550
|
+
properties: {
|
|
38551
|
+
name: {
|
|
38552
|
+
description: "Your display name for this location resource.",
|
|
38553
|
+
type: "string"
|
|
38554
|
+
},
|
|
38555
|
+
property_listing_key: {
|
|
38556
|
+
description: "Your unique identifier for the property listing.",
|
|
38557
|
+
type: "string"
|
|
38558
|
+
}
|
|
38559
|
+
},
|
|
38560
|
+
required: ["name", "property_listing_key"],
|
|
38561
|
+
type: "object"
|
|
38562
|
+
},
|
|
38563
|
+
type: "array"
|
|
38564
|
+
},
|
|
38541
38565
|
reservations: {
|
|
38542
38566
|
description: "List of reservations.",
|
|
38543
38567
|
items: {
|
|
@@ -39128,6 +39152,24 @@ var openapi_default = {
|
|
|
39128
39152
|
},
|
|
39129
39153
|
type: "array"
|
|
39130
39154
|
},
|
|
39155
|
+
property_listings: {
|
|
39156
|
+
description: "List of property listings.",
|
|
39157
|
+
items: {
|
|
39158
|
+
properties: {
|
|
39159
|
+
name: {
|
|
39160
|
+
description: "Your display name for this location resource.",
|
|
39161
|
+
type: "string"
|
|
39162
|
+
},
|
|
39163
|
+
property_listing_key: {
|
|
39164
|
+
description: "Your unique identifier for the property listing.",
|
|
39165
|
+
type: "string"
|
|
39166
|
+
}
|
|
39167
|
+
},
|
|
39168
|
+
required: ["name", "property_listing_key"],
|
|
39169
|
+
type: "object"
|
|
39170
|
+
},
|
|
39171
|
+
type: "array"
|
|
39172
|
+
},
|
|
39131
39173
|
reservations: {
|
|
39132
39174
|
description: "List of reservations.",
|
|
39133
39175
|
items: {
|
|
@@ -42124,7 +42166,7 @@ var openapi_default = {
|
|
|
42124
42166
|
in: "query",
|
|
42125
42167
|
name: "connect_webview_id",
|
|
42126
42168
|
schema: {
|
|
42127
|
-
description: "
|
|
42169
|
+
description: "ID of the Connect Webview for which you want to list events.",
|
|
42128
42170
|
format: "uuid",
|
|
42129
42171
|
type: "string"
|
|
42130
42172
|
}
|
|
@@ -42236,7 +42278,7 @@ var openapi_default = {
|
|
|
42236
42278
|
type: "array"
|
|
42237
42279
|
},
|
|
42238
42280
|
connect_webview_id: {
|
|
42239
|
-
description: "
|
|
42281
|
+
description: "ID of the Connect Webview for which you want to list events.",
|
|
42240
42282
|
format: "uuid",
|
|
42241
42283
|
type: "string"
|
|
42242
42284
|
},
|
|
@@ -45732,7 +45774,89 @@ var openapi_default = {
|
|
|
45732
45774
|
}
|
|
45733
45775
|
},
|
|
45734
45776
|
type: "object"
|
|
45735
|
-
}
|
|
45777
|
+
},
|
|
45778
|
+
is_embedded: { type: "boolean" }
|
|
45779
|
+
},
|
|
45780
|
+
type: "object"
|
|
45781
|
+
},
|
|
45782
|
+
ok: { type: "boolean" }
|
|
45783
|
+
},
|
|
45784
|
+
required: ["customer_portal", "ok"],
|
|
45785
|
+
type: "object"
|
|
45786
|
+
}
|
|
45787
|
+
}
|
|
45788
|
+
},
|
|
45789
|
+
description: "OK"
|
|
45790
|
+
},
|
|
45791
|
+
400: { description: "Bad Request" },
|
|
45792
|
+
401: { description: "Unauthorized" }
|
|
45793
|
+
},
|
|
45794
|
+
security: [{ client_session_with_customer: [] }],
|
|
45795
|
+
summary: "/seam/customer/v1/portals/get",
|
|
45796
|
+
tags: [],
|
|
45797
|
+
"x-fern-sdk-group-name": ["seam", "customer", "v1", "portals"],
|
|
45798
|
+
"x-fern-sdk-method-name": "get",
|
|
45799
|
+
"x-fern-sdk-return-value": "customer_portal",
|
|
45800
|
+
"x-response-key": "customer_portal",
|
|
45801
|
+
"x-title": "Get Customer Portal Configuration",
|
|
45802
|
+
"x-undocumented": "Internal endpoint for customer portals."
|
|
45803
|
+
},
|
|
45804
|
+
post: {
|
|
45805
|
+
description: "Retrieves the configuration for a customer portal identified by customer_portal_id.",
|
|
45806
|
+
operationId: "seamCustomerV1PortalsGetPost",
|
|
45807
|
+
requestBody: {
|
|
45808
|
+
content: {
|
|
45809
|
+
"application/json": {
|
|
45810
|
+
schema: {
|
|
45811
|
+
properties: {
|
|
45812
|
+
customer_portal_id: {
|
|
45813
|
+
description: "Customer portal ID.",
|
|
45814
|
+
type: "string"
|
|
45815
|
+
}
|
|
45816
|
+
},
|
|
45817
|
+
required: ["customer_portal_id"],
|
|
45818
|
+
type: "object"
|
|
45819
|
+
}
|
|
45820
|
+
}
|
|
45821
|
+
}
|
|
45822
|
+
},
|
|
45823
|
+
responses: {
|
|
45824
|
+
200: {
|
|
45825
|
+
content: {
|
|
45826
|
+
"application/json": {
|
|
45827
|
+
schema: {
|
|
45828
|
+
properties: {
|
|
45829
|
+
customer_portal: {
|
|
45830
|
+
properties: {
|
|
45831
|
+
business_vertical: {
|
|
45832
|
+
description: "Business vertical of the customer portal.",
|
|
45833
|
+
enum: [
|
|
45834
|
+
"short_term_rental",
|
|
45835
|
+
"hospitality",
|
|
45836
|
+
"multi_family",
|
|
45837
|
+
"gym_management",
|
|
45838
|
+
"property_tours"
|
|
45839
|
+
],
|
|
45840
|
+
type: "string"
|
|
45841
|
+
},
|
|
45842
|
+
features: {
|
|
45843
|
+
properties: {
|
|
45844
|
+
connect: {
|
|
45845
|
+
properties: { exclude: { type: "boolean" } },
|
|
45846
|
+
type: "object"
|
|
45847
|
+
},
|
|
45848
|
+
manage_devices: {
|
|
45849
|
+
properties: { exclude: { type: "boolean" } },
|
|
45850
|
+
type: "object"
|
|
45851
|
+
},
|
|
45852
|
+
organize: {
|
|
45853
|
+
properties: { exclude: { type: "boolean" } },
|
|
45854
|
+
type: "object"
|
|
45855
|
+
}
|
|
45856
|
+
},
|
|
45857
|
+
type: "object"
|
|
45858
|
+
},
|
|
45859
|
+
is_embedded: { type: "boolean" }
|
|
45736
45860
|
},
|
|
45737
45861
|
type: "object"
|
|
45738
45862
|
},
|
|
@@ -45753,8 +45877,8 @@ var openapi_default = {
|
|
|
45753
45877
|
tags: [],
|
|
45754
45878
|
"x-fern-sdk-group-name": ["seam", "customer", "v1", "portals"],
|
|
45755
45879
|
"x-fern-sdk-method-name": "get",
|
|
45756
|
-
"x-fern-sdk-return-value": "
|
|
45757
|
-
"x-response-key": "
|
|
45880
|
+
"x-fern-sdk-return-value": "customer_portal",
|
|
45881
|
+
"x-response-key": "customer_portal",
|
|
45758
45882
|
"x-title": "Get Customer Portal Configuration",
|
|
45759
45883
|
"x-undocumented": "Internal endpoint for customer portals."
|
|
45760
45884
|
}
|