@seamapi/types 1.650.0 → 1.652.0
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 +92 -54
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +99 -55
- package/dist/index.cjs +92 -54
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +12 -14
- package/lib/seam/connect/models/customer/customer-portal.js +11 -5
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +83 -45
- package/lib/seam/connect/openapi.js +89 -51
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +16 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +11 -5
- package/src/lib/seam/connect/openapi.ts +92 -54
- package/src/lib/seam/connect/route-types.ts +16 -10
|
@@ -37449,9 +37449,15 @@ export default {
|
|
|
37449
37449
|
organize: { exclude: false },
|
|
37450
37450
|
},
|
|
37451
37451
|
is_embedded: false,
|
|
37452
|
+
locale: 'auto',
|
|
37452
37453
|
},
|
|
37453
37454
|
description: 'Configuration for a customer portal',
|
|
37454
37455
|
properties: {
|
|
37456
|
+
customization_profile_id: {
|
|
37457
|
+
description: 'The ID of the customization profile to use for the portal.',
|
|
37458
|
+
format: 'uuid',
|
|
37459
|
+
type: 'string',
|
|
37460
|
+
},
|
|
37455
37461
|
features: {
|
|
37456
37462
|
default: {},
|
|
37457
37463
|
properties: {
|
|
@@ -37469,11 +37475,6 @@ export default {
|
|
|
37469
37475
|
description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
|
|
37470
37476
|
type: 'boolean',
|
|
37471
37477
|
},
|
|
37472
|
-
customization_profile_id: {
|
|
37473
|
-
description: 'The ID of the customization profile to use for the portal.',
|
|
37474
|
-
format: 'uuid',
|
|
37475
|
-
type: 'string',
|
|
37476
|
-
},
|
|
37477
37478
|
exclude: {
|
|
37478
37479
|
default: false,
|
|
37479
37480
|
description: 'Whether to exclude this feature from the portal.',
|
|
@@ -37667,6 +37668,12 @@ export default {
|
|
|
37667
37668
|
},
|
|
37668
37669
|
type: 'object',
|
|
37669
37670
|
},
|
|
37671
|
+
locale: {
|
|
37672
|
+
default: 'auto',
|
|
37673
|
+
description: 'The locale to use for the portal.',
|
|
37674
|
+
enum: ['en-US', 'pt-PT', 'auto'],
|
|
37675
|
+
type: 'string',
|
|
37676
|
+
},
|
|
37670
37677
|
},
|
|
37671
37678
|
type: 'object',
|
|
37672
37679
|
},
|
|
@@ -48449,7 +48456,7 @@ export default {
|
|
|
48449
48456
|
},
|
|
48450
48457
|
'/seam/customer/v1/connectors/connector_types': {
|
|
48451
48458
|
get: {
|
|
48452
|
-
description: 'Lists all available connector types and their
|
|
48459
|
+
description: 'Lists all available connector types and their editable fields for UI input.',
|
|
48453
48460
|
operationId: 'seamCustomerV1ConnectorsConnectorTypesGet',
|
|
48454
48461
|
responses: {
|
|
48455
48462
|
200: {
|
|
@@ -48463,30 +48470,39 @@ export default {
|
|
|
48463
48470
|
connector_type: { type: 'string' },
|
|
48464
48471
|
description: { type: 'string' },
|
|
48465
48472
|
display_name: { type: 'string' },
|
|
48466
|
-
|
|
48467
|
-
|
|
48468
|
-
|
|
48469
|
-
|
|
48470
|
-
|
|
48471
|
-
|
|
48472
|
-
|
|
48473
|
-
|
|
48474
|
-
|
|
48475
|
-
|
|
48473
|
+
editable_fields: {
|
|
48474
|
+
items: {
|
|
48475
|
+
properties: {
|
|
48476
|
+
description: { type: 'string' },
|
|
48477
|
+
display_name: { type: 'string' },
|
|
48478
|
+
name: { type: 'string' },
|
|
48479
|
+
required: { type: 'boolean' },
|
|
48480
|
+
type: {
|
|
48481
|
+
enum: [
|
|
48482
|
+
'string',
|
|
48483
|
+
'string[]',
|
|
48484
|
+
'number',
|
|
48485
|
+
'boolean',
|
|
48486
|
+
],
|
|
48487
|
+
type: 'string',
|
|
48488
|
+
},
|
|
48476
48489
|
},
|
|
48490
|
+
required: [
|
|
48491
|
+
'name',
|
|
48492
|
+
'display_name',
|
|
48493
|
+
'description',
|
|
48494
|
+
'type',
|
|
48495
|
+
'required',
|
|
48496
|
+
],
|
|
48497
|
+
type: 'object',
|
|
48477
48498
|
},
|
|
48478
|
-
|
|
48479
|
-
'base_api_url',
|
|
48480
|
-
'polling_enabled',
|
|
48481
|
-
'polling_frequency_minutes',
|
|
48482
|
-
],
|
|
48483
|
-
type: 'object',
|
|
48499
|
+
type: 'array',
|
|
48484
48500
|
},
|
|
48485
48501
|
},
|
|
48486
48502
|
required: [
|
|
48487
48503
|
'connector_type',
|
|
48488
48504
|
'display_name',
|
|
48489
|
-
'
|
|
48505
|
+
'editable_fields',
|
|
48490
48506
|
],
|
|
48491
48507
|
type: 'object',
|
|
48492
48508
|
},
|
|
@@ -48519,7 +48535,7 @@ export default {
|
|
|
48519
48535
|
'x-undocumented': 'Internal endpoint for Console.',
|
|
48520
48536
|
},
|
|
48521
48537
|
post: {
|
|
48522
|
-
description: 'Lists all available connector types and their
|
|
48538
|
+
description: 'Lists all available connector types and their editable fields for UI input.',
|
|
48523
48539
|
operationId: 'seamCustomerV1ConnectorsConnectorTypesPost',
|
|
48524
48540
|
responses: {
|
|
48525
48541
|
200: {
|
|
@@ -48533,30 +48549,39 @@ export default {
|
|
|
48533
48549
|
connector_type: { type: 'string' },
|
|
48534
48550
|
description: { type: 'string' },
|
|
48535
48551
|
display_name: { type: 'string' },
|
|
48536
|
-
|
|
48537
|
-
|
|
48538
|
-
|
|
48539
|
-
|
|
48540
|
-
|
|
48541
|
-
|
|
48542
|
-
|
|
48543
|
-
|
|
48544
|
-
|
|
48545
|
-
|
|
48552
|
+
editable_fields: {
|
|
48553
|
+
items: {
|
|
48554
|
+
properties: {
|
|
48555
|
+
description: { type: 'string' },
|
|
48556
|
+
display_name: { type: 'string' },
|
|
48557
|
+
name: { type: 'string' },
|
|
48558
|
+
required: { type: 'boolean' },
|
|
48559
|
+
type: {
|
|
48560
|
+
enum: [
|
|
48561
|
+
'string',
|
|
48562
|
+
'string[]',
|
|
48563
|
+
'number',
|
|
48564
|
+
'boolean',
|
|
48565
|
+
],
|
|
48566
|
+
type: 'string',
|
|
48567
|
+
},
|
|
48546
48568
|
},
|
|
48569
|
+
required: [
|
|
48570
|
+
'name',
|
|
48571
|
+
'display_name',
|
|
48572
|
+
'description',
|
|
48573
|
+
'type',
|
|
48574
|
+
'required',
|
|
48575
|
+
],
|
|
48576
|
+
type: 'object',
|
|
48547
48577
|
},
|
|
48548
|
-
|
|
48549
|
-
'base_api_url',
|
|
48550
|
-
'polling_enabled',
|
|
48551
|
-
'polling_frequency_minutes',
|
|
48552
|
-
],
|
|
48553
|
-
type: 'object',
|
|
48578
|
+
type: 'array',
|
|
48554
48579
|
},
|
|
48555
48580
|
},
|
|
48556
48581
|
required: [
|
|
48557
48582
|
'connector_type',
|
|
48558
48583
|
'display_name',
|
|
48559
|
-
'
|
|
48584
|
+
'editable_fields',
|
|
48560
48585
|
],
|
|
48561
48586
|
type: 'object',
|
|
48562
48587
|
},
|
|
@@ -48973,6 +48998,7 @@ export default {
|
|
|
48973
48998
|
},
|
|
48974
48999
|
{
|
|
48975
49000
|
properties: {
|
|
49001
|
+
auth_token: { type: 'string' },
|
|
48976
49002
|
client_id: {
|
|
48977
49003
|
description: 'RMS client ID for authentication',
|
|
48978
49004
|
minLength: 1,
|
|
@@ -49687,6 +49713,11 @@ export default {
|
|
|
49687
49713
|
],
|
|
49688
49714
|
type: 'string',
|
|
49689
49715
|
},
|
|
49716
|
+
customization_profile_id: {
|
|
49717
|
+
description: 'The ID of the customization profile to use for the portal.',
|
|
49718
|
+
format: 'uuid',
|
|
49719
|
+
type: 'string',
|
|
49720
|
+
},
|
|
49690
49721
|
features: {
|
|
49691
49722
|
default: { $ref: '#/components/schemas/access_code' },
|
|
49692
49723
|
properties: {
|
|
@@ -49706,11 +49737,6 @@ export default {
|
|
|
49706
49737
|
description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
|
|
49707
49738
|
type: 'boolean',
|
|
49708
49739
|
},
|
|
49709
|
-
customization_profile_id: {
|
|
49710
|
-
description: 'The ID of the customization profile to use for the portal.',
|
|
49711
|
-
format: 'uuid',
|
|
49712
|
-
type: 'string',
|
|
49713
|
-
},
|
|
49714
49740
|
exclude: {
|
|
49715
49741
|
default: false,
|
|
49716
49742
|
description: 'Whether to exclude this feature from the portal.',
|
|
@@ -49914,6 +49940,12 @@ export default {
|
|
|
49914
49940
|
},
|
|
49915
49941
|
type: 'object',
|
|
49916
49942
|
},
|
|
49943
|
+
locale: {
|
|
49944
|
+
default: 'auto',
|
|
49945
|
+
description: 'The locale to use for the portal.',
|
|
49946
|
+
enum: ['en-US', 'pt-PT', 'auto'],
|
|
49947
|
+
type: 'string',
|
|
49948
|
+
},
|
|
49917
49949
|
},
|
|
49918
49950
|
type: 'object',
|
|
49919
49951
|
},
|
|
@@ -49978,6 +50010,11 @@ export default {
|
|
|
49978
50010
|
],
|
|
49979
50011
|
type: 'string',
|
|
49980
50012
|
},
|
|
50013
|
+
customization_profile_id: {
|
|
50014
|
+
description: 'The ID of the customization profile to use for the portal.',
|
|
50015
|
+
format: 'uuid',
|
|
50016
|
+
type: 'string',
|
|
50017
|
+
},
|
|
49981
50018
|
features: {
|
|
49982
50019
|
default: { $ref: '#/components/schemas/access_code' },
|
|
49983
50020
|
properties: {
|
|
@@ -49997,11 +50034,6 @@ export default {
|
|
|
49997
50034
|
description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
|
|
49998
50035
|
type: 'boolean',
|
|
49999
50036
|
},
|
|
50000
|
-
customization_profile_id: {
|
|
50001
|
-
description: 'The ID of the customization profile to use for the portal.',
|
|
50002
|
-
format: 'uuid',
|
|
50003
|
-
type: 'string',
|
|
50004
|
-
},
|
|
50005
50037
|
exclude: {
|
|
50006
50038
|
default: false,
|
|
50007
50039
|
description: 'Whether to exclude this feature from the portal.',
|
|
@@ -50205,6 +50237,12 @@ export default {
|
|
|
50205
50237
|
},
|
|
50206
50238
|
type: 'object',
|
|
50207
50239
|
},
|
|
50240
|
+
locale: {
|
|
50241
|
+
default: 'auto',
|
|
50242
|
+
description: 'The locale to use for the portal.',
|
|
50243
|
+
enum: ['en-US', 'pt-PT', 'auto'],
|
|
50244
|
+
type: 'string',
|
|
50245
|
+
},
|
|
50208
50246
|
},
|
|
50209
50247
|
type: 'object',
|
|
50210
50248
|
},
|