@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
|
@@ -45777,7 +45777,7 @@ export interface Routes {
|
|
|
45777
45777
|
};
|
|
45778
45778
|
'/seam/customer/v1/portals/get': {
|
|
45779
45779
|
route: '/seam/customer/v1/portals/get';
|
|
45780
|
-
method: 'GET';
|
|
45780
|
+
method: 'GET' | 'POST';
|
|
45781
45781
|
queryParams: {};
|
|
45782
45782
|
jsonBody: {};
|
|
45783
45783
|
commonParams: {
|
package/package.json
CHANGED
|
@@ -43910,8 +43910,90 @@ export default {
|
|
|
43910
43910
|
tags: [],
|
|
43911
43911
|
'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'portals'],
|
|
43912
43912
|
'x-fern-sdk-method-name': 'get',
|
|
43913
|
-
'x-fern-sdk-return-value': '
|
|
43914
|
-
'x-response-key': '
|
|
43913
|
+
'x-fern-sdk-return-value': 'customer_portal',
|
|
43914
|
+
'x-response-key': 'customer_portal',
|
|
43915
|
+
'x-title': 'Get Customer Portal Configuration',
|
|
43916
|
+
'x-undocumented': 'Internal endpoint for customer portals.',
|
|
43917
|
+
},
|
|
43918
|
+
post: {
|
|
43919
|
+
description:
|
|
43920
|
+
'Retrieves the configuration for a customer portal identified by customer_portal_id.',
|
|
43921
|
+
operationId: 'seamCustomerV1PortalsGetPost',
|
|
43922
|
+
requestBody: {
|
|
43923
|
+
content: {
|
|
43924
|
+
'application/json': {
|
|
43925
|
+
schema: {
|
|
43926
|
+
properties: {
|
|
43927
|
+
customer_portal_id: {
|
|
43928
|
+
description: 'Customer portal ID.',
|
|
43929
|
+
type: 'string',
|
|
43930
|
+
},
|
|
43931
|
+
},
|
|
43932
|
+
required: ['customer_portal_id'],
|
|
43933
|
+
type: 'object',
|
|
43934
|
+
},
|
|
43935
|
+
},
|
|
43936
|
+
},
|
|
43937
|
+
},
|
|
43938
|
+
responses: {
|
|
43939
|
+
200: {
|
|
43940
|
+
content: {
|
|
43941
|
+
'application/json': {
|
|
43942
|
+
schema: {
|
|
43943
|
+
properties: {
|
|
43944
|
+
customer_portal: {
|
|
43945
|
+
properties: {
|
|
43946
|
+
business_vertical: {
|
|
43947
|
+
description:
|
|
43948
|
+
'Business vertical of the customer portal.',
|
|
43949
|
+
enum: [
|
|
43950
|
+
'short_term_rental',
|
|
43951
|
+
'hospitality',
|
|
43952
|
+
'multi_family',
|
|
43953
|
+
'gym_management',
|
|
43954
|
+
'property_tours',
|
|
43955
|
+
],
|
|
43956
|
+
type: 'string',
|
|
43957
|
+
},
|
|
43958
|
+
features: {
|
|
43959
|
+
properties: {
|
|
43960
|
+
connect: {
|
|
43961
|
+
properties: { exclude: { type: 'boolean' } },
|
|
43962
|
+
type: 'object',
|
|
43963
|
+
},
|
|
43964
|
+
manage_devices: {
|
|
43965
|
+
properties: { exclude: { type: 'boolean' } },
|
|
43966
|
+
type: 'object',
|
|
43967
|
+
},
|
|
43968
|
+
organize: {
|
|
43969
|
+
properties: { exclude: { type: 'boolean' } },
|
|
43970
|
+
type: 'object',
|
|
43971
|
+
},
|
|
43972
|
+
},
|
|
43973
|
+
type: 'object',
|
|
43974
|
+
},
|
|
43975
|
+
},
|
|
43976
|
+
type: 'object',
|
|
43977
|
+
},
|
|
43978
|
+
ok: { type: 'boolean' },
|
|
43979
|
+
},
|
|
43980
|
+
required: ['customer_portal', 'ok'],
|
|
43981
|
+
type: 'object',
|
|
43982
|
+
},
|
|
43983
|
+
},
|
|
43984
|
+
},
|
|
43985
|
+
description: 'OK',
|
|
43986
|
+
},
|
|
43987
|
+
400: { description: 'Bad Request' },
|
|
43988
|
+
401: { description: 'Unauthorized' },
|
|
43989
|
+
},
|
|
43990
|
+
security: [{ client_session_with_customer: [] }],
|
|
43991
|
+
summary: '/seam/customer/v1/portals/get',
|
|
43992
|
+
tags: [],
|
|
43993
|
+
'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'portals'],
|
|
43994
|
+
'x-fern-sdk-method-name': 'get',
|
|
43995
|
+
'x-fern-sdk-return-value': 'customer_portal',
|
|
43996
|
+
'x-response-key': 'customer_portal',
|
|
43915
43997
|
'x-title': 'Get Customer Portal Configuration',
|
|
43916
43998
|
'x-undocumented': 'Internal endpoint for customer portals.',
|
|
43917
43999
|
},
|
|
@@ -53279,7 +53279,7 @@ export interface Routes {
|
|
|
53279
53279
|
}
|
|
53280
53280
|
'/seam/customer/v1/portals/get': {
|
|
53281
53281
|
route: '/seam/customer/v1/portals/get'
|
|
53282
|
-
method: 'GET'
|
|
53282
|
+
method: 'GET' | 'POST'
|
|
53283
53283
|
queryParams: {}
|
|
53284
53284
|
jsonBody: {}
|
|
53285
53285
|
commonParams: {
|