@seamapi/types 1.423.1 → 1.423.2
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 +82 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +95 -1
- package/lib/seam/connect/openapi.d.ts +94 -0
- package/lib/seam/connect/openapi.js +82 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +84 -2
- package/src/lib/seam/connect/route-types.ts +1 -1
package/dist/connect.cjs
CHANGED
|
@@ -45753,8 +45753,88 @@ var openapi_default = {
|
|
|
45753
45753
|
tags: [],
|
|
45754
45754
|
"x-fern-sdk-group-name": ["seam", "customer", "v1", "portals"],
|
|
45755
45755
|
"x-fern-sdk-method-name": "get",
|
|
45756
|
-
"x-fern-sdk-return-value": "
|
|
45757
|
-
"x-response-key": "
|
|
45756
|
+
"x-fern-sdk-return-value": "customer_portal",
|
|
45757
|
+
"x-response-key": "customer_portal",
|
|
45758
|
+
"x-title": "Get Customer Portal Configuration",
|
|
45759
|
+
"x-undocumented": "Internal endpoint for customer portals."
|
|
45760
|
+
},
|
|
45761
|
+
post: {
|
|
45762
|
+
description: "Retrieves the configuration for a customer portal identified by customer_portal_id.",
|
|
45763
|
+
operationId: "seamCustomerV1PortalsGetPost",
|
|
45764
|
+
requestBody: {
|
|
45765
|
+
content: {
|
|
45766
|
+
"application/json": {
|
|
45767
|
+
schema: {
|
|
45768
|
+
properties: {
|
|
45769
|
+
customer_portal_id: {
|
|
45770
|
+
description: "Customer portal ID.",
|
|
45771
|
+
type: "string"
|
|
45772
|
+
}
|
|
45773
|
+
},
|
|
45774
|
+
required: ["customer_portal_id"],
|
|
45775
|
+
type: "object"
|
|
45776
|
+
}
|
|
45777
|
+
}
|
|
45778
|
+
}
|
|
45779
|
+
},
|
|
45780
|
+
responses: {
|
|
45781
|
+
200: {
|
|
45782
|
+
content: {
|
|
45783
|
+
"application/json": {
|
|
45784
|
+
schema: {
|
|
45785
|
+
properties: {
|
|
45786
|
+
customer_portal: {
|
|
45787
|
+
properties: {
|
|
45788
|
+
business_vertical: {
|
|
45789
|
+
description: "Business vertical of the customer portal.",
|
|
45790
|
+
enum: [
|
|
45791
|
+
"short_term_rental",
|
|
45792
|
+
"hospitality",
|
|
45793
|
+
"multi_family",
|
|
45794
|
+
"gym_management",
|
|
45795
|
+
"property_tours"
|
|
45796
|
+
],
|
|
45797
|
+
type: "string"
|
|
45798
|
+
},
|
|
45799
|
+
features: {
|
|
45800
|
+
properties: {
|
|
45801
|
+
connect: {
|
|
45802
|
+
properties: { exclude: { type: "boolean" } },
|
|
45803
|
+
type: "object"
|
|
45804
|
+
},
|
|
45805
|
+
manage_devices: {
|
|
45806
|
+
properties: { exclude: { type: "boolean" } },
|
|
45807
|
+
type: "object"
|
|
45808
|
+
},
|
|
45809
|
+
organize: {
|
|
45810
|
+
properties: { exclude: { type: "boolean" } },
|
|
45811
|
+
type: "object"
|
|
45812
|
+
}
|
|
45813
|
+
},
|
|
45814
|
+
type: "object"
|
|
45815
|
+
}
|
|
45816
|
+
},
|
|
45817
|
+
type: "object"
|
|
45818
|
+
},
|
|
45819
|
+
ok: { type: "boolean" }
|
|
45820
|
+
},
|
|
45821
|
+
required: ["customer_portal", "ok"],
|
|
45822
|
+
type: "object"
|
|
45823
|
+
}
|
|
45824
|
+
}
|
|
45825
|
+
},
|
|
45826
|
+
description: "OK"
|
|
45827
|
+
},
|
|
45828
|
+
400: { description: "Bad Request" },
|
|
45829
|
+
401: { description: "Unauthorized" }
|
|
45830
|
+
},
|
|
45831
|
+
security: [{ client_session_with_customer: [] }],
|
|
45832
|
+
summary: "/seam/customer/v1/portals/get",
|
|
45833
|
+
tags: [],
|
|
45834
|
+
"x-fern-sdk-group-name": ["seam", "customer", "v1", "portals"],
|
|
45835
|
+
"x-fern-sdk-method-name": "get",
|
|
45836
|
+
"x-fern-sdk-return-value": "customer_portal",
|
|
45837
|
+
"x-response-key": "customer_portal",
|
|
45758
45838
|
"x-title": "Get Customer Portal Configuration",
|
|
45759
45839
|
"x-undocumented": "Internal endpoint for customer portals."
|
|
45760
45840
|
}
|