@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.d.cts
CHANGED
|
@@ -56461,6 +56461,100 @@ declare const _default: {
|
|
|
56461
56461
|
'x-title': string;
|
|
56462
56462
|
'x-undocumented': string;
|
|
56463
56463
|
};
|
|
56464
|
+
post: {
|
|
56465
|
+
description: string;
|
|
56466
|
+
operationId: string;
|
|
56467
|
+
requestBody: {
|
|
56468
|
+
content: {
|
|
56469
|
+
'application/json': {
|
|
56470
|
+
schema: {
|
|
56471
|
+
properties: {
|
|
56472
|
+
customer_portal_id: {
|
|
56473
|
+
description: string;
|
|
56474
|
+
type: string;
|
|
56475
|
+
};
|
|
56476
|
+
};
|
|
56477
|
+
required: string[];
|
|
56478
|
+
type: string;
|
|
56479
|
+
};
|
|
56480
|
+
};
|
|
56481
|
+
};
|
|
56482
|
+
};
|
|
56483
|
+
responses: {
|
|
56484
|
+
200: {
|
|
56485
|
+
content: {
|
|
56486
|
+
'application/json': {
|
|
56487
|
+
schema: {
|
|
56488
|
+
properties: {
|
|
56489
|
+
customer_portal: {
|
|
56490
|
+
properties: {
|
|
56491
|
+
business_vertical: {
|
|
56492
|
+
description: string;
|
|
56493
|
+
enum: string[];
|
|
56494
|
+
type: string;
|
|
56495
|
+
};
|
|
56496
|
+
features: {
|
|
56497
|
+
properties: {
|
|
56498
|
+
connect: {
|
|
56499
|
+
properties: {
|
|
56500
|
+
exclude: {
|
|
56501
|
+
type: string;
|
|
56502
|
+
};
|
|
56503
|
+
};
|
|
56504
|
+
type: string;
|
|
56505
|
+
};
|
|
56506
|
+
manage_devices: {
|
|
56507
|
+
properties: {
|
|
56508
|
+
exclude: {
|
|
56509
|
+
type: string;
|
|
56510
|
+
};
|
|
56511
|
+
};
|
|
56512
|
+
type: string;
|
|
56513
|
+
};
|
|
56514
|
+
organize: {
|
|
56515
|
+
properties: {
|
|
56516
|
+
exclude: {
|
|
56517
|
+
type: string;
|
|
56518
|
+
};
|
|
56519
|
+
};
|
|
56520
|
+
type: string;
|
|
56521
|
+
};
|
|
56522
|
+
};
|
|
56523
|
+
type: string;
|
|
56524
|
+
};
|
|
56525
|
+
};
|
|
56526
|
+
type: string;
|
|
56527
|
+
};
|
|
56528
|
+
ok: {
|
|
56529
|
+
type: string;
|
|
56530
|
+
};
|
|
56531
|
+
};
|
|
56532
|
+
required: string[];
|
|
56533
|
+
type: string;
|
|
56534
|
+
};
|
|
56535
|
+
};
|
|
56536
|
+
};
|
|
56537
|
+
description: string;
|
|
56538
|
+
};
|
|
56539
|
+
400: {
|
|
56540
|
+
description: string;
|
|
56541
|
+
};
|
|
56542
|
+
401: {
|
|
56543
|
+
description: string;
|
|
56544
|
+
};
|
|
56545
|
+
};
|
|
56546
|
+
security: {
|
|
56547
|
+
client_session_with_customer: never[];
|
|
56548
|
+
}[];
|
|
56549
|
+
summary: string;
|
|
56550
|
+
tags: never[];
|
|
56551
|
+
'x-fern-sdk-group-name': string[];
|
|
56552
|
+
'x-fern-sdk-method-name': string;
|
|
56553
|
+
'x-fern-sdk-return-value': string;
|
|
56554
|
+
'x-response-key': string;
|
|
56555
|
+
'x-title': string;
|
|
56556
|
+
'x-undocumented': string;
|
|
56557
|
+
};
|
|
56464
56558
|
};
|
|
56465
56559
|
'/seam/customer/v1/settings/update': {
|
|
56466
56560
|
patch: {
|
|
@@ -113965,7 +114059,7 @@ interface Routes {
|
|
|
113965
114059
|
};
|
|
113966
114060
|
'/seam/customer/v1/portals/get': {
|
|
113967
114061
|
route: '/seam/customer/v1/portals/get';
|
|
113968
|
-
method: 'GET';
|
|
114062
|
+
method: 'GET' | 'POST';
|
|
113969
114063
|
queryParams: {};
|
|
113970
114064
|
jsonBody: {};
|
|
113971
114065
|
commonParams: {
|
|
@@ -34684,6 +34684,100 @@ declare const _default: {
|
|
|
34684
34684
|
'x-title': string;
|
|
34685
34685
|
'x-undocumented': string;
|
|
34686
34686
|
};
|
|
34687
|
+
post: {
|
|
34688
|
+
description: string;
|
|
34689
|
+
operationId: string;
|
|
34690
|
+
requestBody: {
|
|
34691
|
+
content: {
|
|
34692
|
+
'application/json': {
|
|
34693
|
+
schema: {
|
|
34694
|
+
properties: {
|
|
34695
|
+
customer_portal_id: {
|
|
34696
|
+
description: string;
|
|
34697
|
+
type: string;
|
|
34698
|
+
};
|
|
34699
|
+
};
|
|
34700
|
+
required: string[];
|
|
34701
|
+
type: string;
|
|
34702
|
+
};
|
|
34703
|
+
};
|
|
34704
|
+
};
|
|
34705
|
+
};
|
|
34706
|
+
responses: {
|
|
34707
|
+
200: {
|
|
34708
|
+
content: {
|
|
34709
|
+
'application/json': {
|
|
34710
|
+
schema: {
|
|
34711
|
+
properties: {
|
|
34712
|
+
customer_portal: {
|
|
34713
|
+
properties: {
|
|
34714
|
+
business_vertical: {
|
|
34715
|
+
description: string;
|
|
34716
|
+
enum: string[];
|
|
34717
|
+
type: string;
|
|
34718
|
+
};
|
|
34719
|
+
features: {
|
|
34720
|
+
properties: {
|
|
34721
|
+
connect: {
|
|
34722
|
+
properties: {
|
|
34723
|
+
exclude: {
|
|
34724
|
+
type: string;
|
|
34725
|
+
};
|
|
34726
|
+
};
|
|
34727
|
+
type: string;
|
|
34728
|
+
};
|
|
34729
|
+
manage_devices: {
|
|
34730
|
+
properties: {
|
|
34731
|
+
exclude: {
|
|
34732
|
+
type: string;
|
|
34733
|
+
};
|
|
34734
|
+
};
|
|
34735
|
+
type: string;
|
|
34736
|
+
};
|
|
34737
|
+
organize: {
|
|
34738
|
+
properties: {
|
|
34739
|
+
exclude: {
|
|
34740
|
+
type: string;
|
|
34741
|
+
};
|
|
34742
|
+
};
|
|
34743
|
+
type: string;
|
|
34744
|
+
};
|
|
34745
|
+
};
|
|
34746
|
+
type: string;
|
|
34747
|
+
};
|
|
34748
|
+
};
|
|
34749
|
+
type: string;
|
|
34750
|
+
};
|
|
34751
|
+
ok: {
|
|
34752
|
+
type: string;
|
|
34753
|
+
};
|
|
34754
|
+
};
|
|
34755
|
+
required: string[];
|
|
34756
|
+
type: string;
|
|
34757
|
+
};
|
|
34758
|
+
};
|
|
34759
|
+
};
|
|
34760
|
+
description: string;
|
|
34761
|
+
};
|
|
34762
|
+
400: {
|
|
34763
|
+
description: string;
|
|
34764
|
+
};
|
|
34765
|
+
401: {
|
|
34766
|
+
description: string;
|
|
34767
|
+
};
|
|
34768
|
+
};
|
|
34769
|
+
security: {
|
|
34770
|
+
client_session_with_customer: never[];
|
|
34771
|
+
}[];
|
|
34772
|
+
summary: string;
|
|
34773
|
+
tags: never[];
|
|
34774
|
+
'x-fern-sdk-group-name': string[];
|
|
34775
|
+
'x-fern-sdk-method-name': string;
|
|
34776
|
+
'x-fern-sdk-return-value': string;
|
|
34777
|
+
'x-response-key': string;
|
|
34778
|
+
'x-title': string;
|
|
34779
|
+
'x-undocumented': string;
|
|
34780
|
+
};
|
|
34687
34781
|
};
|
|
34688
34782
|
'/seam/customer/v1/settings/update': {
|
|
34689
34783
|
patch: {
|
|
@@ -40298,8 +40298,88 @@ export default {
|
|
|
40298
40298
|
tags: [],
|
|
40299
40299
|
'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'portals'],
|
|
40300
40300
|
'x-fern-sdk-method-name': 'get',
|
|
40301
|
-
'x-fern-sdk-return-value': '
|
|
40302
|
-
'x-response-key': '
|
|
40301
|
+
'x-fern-sdk-return-value': 'customer_portal',
|
|
40302
|
+
'x-response-key': 'customer_portal',
|
|
40303
|
+
'x-title': 'Get Customer Portal Configuration',
|
|
40304
|
+
'x-undocumented': 'Internal endpoint for customer portals.',
|
|
40305
|
+
},
|
|
40306
|
+
post: {
|
|
40307
|
+
description: 'Retrieves the configuration for a customer portal identified by customer_portal_id.',
|
|
40308
|
+
operationId: 'seamCustomerV1PortalsGetPost',
|
|
40309
|
+
requestBody: {
|
|
40310
|
+
content: {
|
|
40311
|
+
'application/json': {
|
|
40312
|
+
schema: {
|
|
40313
|
+
properties: {
|
|
40314
|
+
customer_portal_id: {
|
|
40315
|
+
description: 'Customer portal ID.',
|
|
40316
|
+
type: 'string',
|
|
40317
|
+
},
|
|
40318
|
+
},
|
|
40319
|
+
required: ['customer_portal_id'],
|
|
40320
|
+
type: 'object',
|
|
40321
|
+
},
|
|
40322
|
+
},
|
|
40323
|
+
},
|
|
40324
|
+
},
|
|
40325
|
+
responses: {
|
|
40326
|
+
200: {
|
|
40327
|
+
content: {
|
|
40328
|
+
'application/json': {
|
|
40329
|
+
schema: {
|
|
40330
|
+
properties: {
|
|
40331
|
+
customer_portal: {
|
|
40332
|
+
properties: {
|
|
40333
|
+
business_vertical: {
|
|
40334
|
+
description: 'Business vertical of the customer portal.',
|
|
40335
|
+
enum: [
|
|
40336
|
+
'short_term_rental',
|
|
40337
|
+
'hospitality',
|
|
40338
|
+
'multi_family',
|
|
40339
|
+
'gym_management',
|
|
40340
|
+
'property_tours',
|
|
40341
|
+
],
|
|
40342
|
+
type: 'string',
|
|
40343
|
+
},
|
|
40344
|
+
features: {
|
|
40345
|
+
properties: {
|
|
40346
|
+
connect: {
|
|
40347
|
+
properties: { exclude: { type: 'boolean' } },
|
|
40348
|
+
type: 'object',
|
|
40349
|
+
},
|
|
40350
|
+
manage_devices: {
|
|
40351
|
+
properties: { exclude: { type: 'boolean' } },
|
|
40352
|
+
type: 'object',
|
|
40353
|
+
},
|
|
40354
|
+
organize: {
|
|
40355
|
+
properties: { exclude: { type: 'boolean' } },
|
|
40356
|
+
type: 'object',
|
|
40357
|
+
},
|
|
40358
|
+
},
|
|
40359
|
+
type: 'object',
|
|
40360
|
+
},
|
|
40361
|
+
},
|
|
40362
|
+
type: 'object',
|
|
40363
|
+
},
|
|
40364
|
+
ok: { type: 'boolean' },
|
|
40365
|
+
},
|
|
40366
|
+
required: ['customer_portal', 'ok'],
|
|
40367
|
+
type: 'object',
|
|
40368
|
+
},
|
|
40369
|
+
},
|
|
40370
|
+
},
|
|
40371
|
+
description: 'OK',
|
|
40372
|
+
},
|
|
40373
|
+
400: { description: 'Bad Request' },
|
|
40374
|
+
401: { description: 'Unauthorized' },
|
|
40375
|
+
},
|
|
40376
|
+
security: [{ client_session_with_customer: [] }],
|
|
40377
|
+
summary: '/seam/customer/v1/portals/get',
|
|
40378
|
+
tags: [],
|
|
40379
|
+
'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'portals'],
|
|
40380
|
+
'x-fern-sdk-method-name': 'get',
|
|
40381
|
+
'x-fern-sdk-return-value': 'customer_portal',
|
|
40382
|
+
'x-response-key': 'customer_portal',
|
|
40303
40383
|
'x-title': 'Get Customer Portal Configuration',
|
|
40304
40384
|
'x-undocumented': 'Internal endpoint for customer portals.',
|
|
40305
40385
|
},
|