@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
|
@@ -32739,6 +32739,7 @@ export default {
|
|
|
32739
32739
|
manage_devices: { exclude: false },
|
|
32740
32740
|
organize: { exclude: false },
|
|
32741
32741
|
},
|
|
32742
|
+
is_embedded: false,
|
|
32742
32743
|
},
|
|
32743
32744
|
description: 'Configuration for a customer portal',
|
|
32744
32745
|
properties: {
|
|
@@ -32784,6 +32785,11 @@ export default {
|
|
|
32784
32785
|
},
|
|
32785
32786
|
type: 'object',
|
|
32786
32787
|
},
|
|
32788
|
+
is_embedded: {
|
|
32789
|
+
default: false,
|
|
32790
|
+
description: 'Whether the portal is embedded in another application.',
|
|
32791
|
+
type: 'boolean',
|
|
32792
|
+
},
|
|
32787
32793
|
},
|
|
32788
32794
|
type: 'object',
|
|
32789
32795
|
},
|
|
@@ -33083,6 +33089,24 @@ export default {
|
|
|
33083
33089
|
},
|
|
33084
33090
|
type: 'array',
|
|
33085
33091
|
},
|
|
33092
|
+
property_listings: {
|
|
33093
|
+
description: 'List of property listings.',
|
|
33094
|
+
items: {
|
|
33095
|
+
properties: {
|
|
33096
|
+
name: {
|
|
33097
|
+
description: 'Your display name for this location resource.',
|
|
33098
|
+
type: 'string',
|
|
33099
|
+
},
|
|
33100
|
+
property_listing_key: {
|
|
33101
|
+
description: 'Your unique identifier for the property listing.',
|
|
33102
|
+
type: 'string',
|
|
33103
|
+
},
|
|
33104
|
+
},
|
|
33105
|
+
required: ['name', 'property_listing_key'],
|
|
33106
|
+
type: 'object',
|
|
33107
|
+
},
|
|
33108
|
+
type: 'array',
|
|
33109
|
+
},
|
|
33086
33110
|
reservations: {
|
|
33087
33111
|
description: 'List of reservations.',
|
|
33088
33112
|
items: {
|
|
@@ -33673,6 +33697,24 @@ export default {
|
|
|
33673
33697
|
},
|
|
33674
33698
|
type: 'array',
|
|
33675
33699
|
},
|
|
33700
|
+
property_listings: {
|
|
33701
|
+
description: 'List of property listings.',
|
|
33702
|
+
items: {
|
|
33703
|
+
properties: {
|
|
33704
|
+
name: {
|
|
33705
|
+
description: 'Your display name for this location resource.',
|
|
33706
|
+
type: 'string',
|
|
33707
|
+
},
|
|
33708
|
+
property_listing_key: {
|
|
33709
|
+
description: 'Your unique identifier for the property listing.',
|
|
33710
|
+
type: 'string',
|
|
33711
|
+
},
|
|
33712
|
+
},
|
|
33713
|
+
required: ['name', 'property_listing_key'],
|
|
33714
|
+
type: 'object',
|
|
33715
|
+
},
|
|
33716
|
+
type: 'array',
|
|
33717
|
+
},
|
|
33676
33718
|
reservations: {
|
|
33677
33719
|
description: 'List of reservations.',
|
|
33678
33720
|
items: {
|
|
@@ -36669,7 +36711,7 @@ export default {
|
|
|
36669
36711
|
in: 'query',
|
|
36670
36712
|
name: 'connect_webview_id',
|
|
36671
36713
|
schema: {
|
|
36672
|
-
description: '
|
|
36714
|
+
description: 'ID of the Connect Webview for which you want to list events.',
|
|
36673
36715
|
format: 'uuid',
|
|
36674
36716
|
type: 'string',
|
|
36675
36717
|
},
|
|
@@ -36781,7 +36823,7 @@ export default {
|
|
|
36781
36823
|
type: 'array',
|
|
36782
36824
|
},
|
|
36783
36825
|
connect_webview_id: {
|
|
36784
|
-
description: '
|
|
36826
|
+
description: 'ID of the Connect Webview for which you want to list events.',
|
|
36785
36827
|
format: 'uuid',
|
|
36786
36828
|
type: 'string',
|
|
36787
36829
|
},
|
|
@@ -40278,6 +40320,88 @@ export default {
|
|
|
40278
40320
|
},
|
|
40279
40321
|
type: 'object',
|
|
40280
40322
|
},
|
|
40323
|
+
is_embedded: { type: 'boolean' },
|
|
40324
|
+
},
|
|
40325
|
+
type: 'object',
|
|
40326
|
+
},
|
|
40327
|
+
ok: { type: 'boolean' },
|
|
40328
|
+
},
|
|
40329
|
+
required: ['customer_portal', 'ok'],
|
|
40330
|
+
type: 'object',
|
|
40331
|
+
},
|
|
40332
|
+
},
|
|
40333
|
+
},
|
|
40334
|
+
description: 'OK',
|
|
40335
|
+
},
|
|
40336
|
+
400: { description: 'Bad Request' },
|
|
40337
|
+
401: { description: 'Unauthorized' },
|
|
40338
|
+
},
|
|
40339
|
+
security: [{ client_session_with_customer: [] }],
|
|
40340
|
+
summary: '/seam/customer/v1/portals/get',
|
|
40341
|
+
tags: [],
|
|
40342
|
+
'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'portals'],
|
|
40343
|
+
'x-fern-sdk-method-name': 'get',
|
|
40344
|
+
'x-fern-sdk-return-value': 'customer_portal',
|
|
40345
|
+
'x-response-key': 'customer_portal',
|
|
40346
|
+
'x-title': 'Get Customer Portal Configuration',
|
|
40347
|
+
'x-undocumented': 'Internal endpoint for customer portals.',
|
|
40348
|
+
},
|
|
40349
|
+
post: {
|
|
40350
|
+
description: 'Retrieves the configuration for a customer portal identified by customer_portal_id.',
|
|
40351
|
+
operationId: 'seamCustomerV1PortalsGetPost',
|
|
40352
|
+
requestBody: {
|
|
40353
|
+
content: {
|
|
40354
|
+
'application/json': {
|
|
40355
|
+
schema: {
|
|
40356
|
+
properties: {
|
|
40357
|
+
customer_portal_id: {
|
|
40358
|
+
description: 'Customer portal ID.',
|
|
40359
|
+
type: 'string',
|
|
40360
|
+
},
|
|
40361
|
+
},
|
|
40362
|
+
required: ['customer_portal_id'],
|
|
40363
|
+
type: 'object',
|
|
40364
|
+
},
|
|
40365
|
+
},
|
|
40366
|
+
},
|
|
40367
|
+
},
|
|
40368
|
+
responses: {
|
|
40369
|
+
200: {
|
|
40370
|
+
content: {
|
|
40371
|
+
'application/json': {
|
|
40372
|
+
schema: {
|
|
40373
|
+
properties: {
|
|
40374
|
+
customer_portal: {
|
|
40375
|
+
properties: {
|
|
40376
|
+
business_vertical: {
|
|
40377
|
+
description: 'Business vertical of the customer portal.',
|
|
40378
|
+
enum: [
|
|
40379
|
+
'short_term_rental',
|
|
40380
|
+
'hospitality',
|
|
40381
|
+
'multi_family',
|
|
40382
|
+
'gym_management',
|
|
40383
|
+
'property_tours',
|
|
40384
|
+
],
|
|
40385
|
+
type: 'string',
|
|
40386
|
+
},
|
|
40387
|
+
features: {
|
|
40388
|
+
properties: {
|
|
40389
|
+
connect: {
|
|
40390
|
+
properties: { exclude: { type: 'boolean' } },
|
|
40391
|
+
type: 'object',
|
|
40392
|
+
},
|
|
40393
|
+
manage_devices: {
|
|
40394
|
+
properties: { exclude: { type: 'boolean' } },
|
|
40395
|
+
type: 'object',
|
|
40396
|
+
},
|
|
40397
|
+
organize: {
|
|
40398
|
+
properties: { exclude: { type: 'boolean' } },
|
|
40399
|
+
type: 'object',
|
|
40400
|
+
},
|
|
40401
|
+
},
|
|
40402
|
+
type: 'object',
|
|
40403
|
+
},
|
|
40404
|
+
is_embedded: { type: 'boolean' },
|
|
40281
40405
|
},
|
|
40282
40406
|
type: 'object',
|
|
40283
40407
|
},
|
|
@@ -40298,8 +40422,8 @@ export default {
|
|
|
40298
40422
|
tags: [],
|
|
40299
40423
|
'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'portals'],
|
|
40300
40424
|
'x-fern-sdk-method-name': 'get',
|
|
40301
|
-
'x-fern-sdk-return-value': '
|
|
40302
|
-
'x-response-key': '
|
|
40425
|
+
'x-fern-sdk-return-value': 'customer_portal',
|
|
40426
|
+
'x-response-key': 'customer_portal',
|
|
40303
40427
|
'x-title': 'Get Customer Portal Configuration',
|
|
40304
40428
|
'x-undocumented': 'Internal endpoint for customer portals.',
|
|
40305
40429
|
},
|