@seamapi/types 1.536.0 → 1.538.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 +200 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +502 -1
- package/dist/index.cjs +200 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +139 -0
- package/lib/seam/connect/models/customer/customer-portal.js +7 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +458 -0
- package/lib/seam/connect/openapi.js +198 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +44 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +8 -0
- package/src/lib/seam/connect/openapi.ts +199 -1
- package/src/lib/seam/connect/route-types.ts +72 -1
|
@@ -28759,7 +28759,7 @@ export default {
|
|
|
28759
28759
|
type: 'string',
|
|
28760
28760
|
},
|
|
28761
28761
|
search: {
|
|
28762
|
-
description: 'String for which to search. Filters returned credentials to include all records that satisfy a partial match using `code`, `card_number`, `acs_user_id` or `acs_credential_id`.',
|
|
28762
|
+
description: 'String for which to search. Filters returned credentials to include all records that satisfy a partial match using `display_name`, `code`, `card_number`, `acs_user_id` or `acs_credential_id`.',
|
|
28763
28763
|
minLength: 1,
|
|
28764
28764
|
type: 'string',
|
|
28765
28765
|
},
|
|
@@ -35061,6 +35061,71 @@ export default {
|
|
|
35061
35061
|
description: 'Whether the portal is embedded in another application.',
|
|
35062
35062
|
type: 'boolean',
|
|
35063
35063
|
},
|
|
35064
|
+
landing_page: {
|
|
35065
|
+
description: 'Configuration for the landing page when the portal loads.',
|
|
35066
|
+
properties: {
|
|
35067
|
+
manage: {
|
|
35068
|
+
oneOf: [
|
|
35069
|
+
{
|
|
35070
|
+
properties: { space_key: { type: 'string' } },
|
|
35071
|
+
required: ['space_key'],
|
|
35072
|
+
type: 'object',
|
|
35073
|
+
},
|
|
35074
|
+
{
|
|
35075
|
+
properties: {
|
|
35076
|
+
property_key: { type: 'string' },
|
|
35077
|
+
},
|
|
35078
|
+
required: ['property_key'],
|
|
35079
|
+
type: 'object',
|
|
35080
|
+
},
|
|
35081
|
+
{
|
|
35082
|
+
properties: { room_key: { type: 'string' } },
|
|
35083
|
+
required: ['room_key'],
|
|
35084
|
+
type: 'object',
|
|
35085
|
+
},
|
|
35086
|
+
{
|
|
35087
|
+
properties: {
|
|
35088
|
+
common_area_key: { type: 'string' },
|
|
35089
|
+
},
|
|
35090
|
+
required: ['common_area_key'],
|
|
35091
|
+
type: 'object',
|
|
35092
|
+
},
|
|
35093
|
+
{
|
|
35094
|
+
properties: { unit_key: { type: 'string' } },
|
|
35095
|
+
required: ['unit_key'],
|
|
35096
|
+
type: 'object',
|
|
35097
|
+
},
|
|
35098
|
+
{
|
|
35099
|
+
properties: {
|
|
35100
|
+
facility_key: { type: 'string' },
|
|
35101
|
+
},
|
|
35102
|
+
required: ['facility_key'],
|
|
35103
|
+
type: 'object',
|
|
35104
|
+
},
|
|
35105
|
+
{
|
|
35106
|
+
properties: {
|
|
35107
|
+
building_key: { type: 'string' },
|
|
35108
|
+
},
|
|
35109
|
+
required: ['building_key'],
|
|
35110
|
+
type: 'object',
|
|
35111
|
+
},
|
|
35112
|
+
{
|
|
35113
|
+
properties: { listing_key: { type: 'string' } },
|
|
35114
|
+
required: ['listing_key'],
|
|
35115
|
+
type: 'object',
|
|
35116
|
+
},
|
|
35117
|
+
{
|
|
35118
|
+
properties: {
|
|
35119
|
+
property_listing_key: { type: 'string' },
|
|
35120
|
+
},
|
|
35121
|
+
required: ['property_listing_key'],
|
|
35122
|
+
type: 'object',
|
|
35123
|
+
},
|
|
35124
|
+
],
|
|
35125
|
+
},
|
|
35126
|
+
},
|
|
35127
|
+
type: 'object',
|
|
35128
|
+
},
|
|
35064
35129
|
},
|
|
35065
35130
|
type: 'object',
|
|
35066
35131
|
},
|
|
@@ -45314,6 +45379,72 @@ export default {
|
|
|
45314
45379
|
type: 'object',
|
|
45315
45380
|
},
|
|
45316
45381
|
is_embedded: { type: 'boolean' },
|
|
45382
|
+
landing_page: {
|
|
45383
|
+
properties: {
|
|
45384
|
+
manage: {
|
|
45385
|
+
oneOf: [
|
|
45386
|
+
{
|
|
45387
|
+
properties: { space_key: { type: 'string' } },
|
|
45388
|
+
required: ['space_key'],
|
|
45389
|
+
type: 'object',
|
|
45390
|
+
},
|
|
45391
|
+
{
|
|
45392
|
+
properties: {
|
|
45393
|
+
property_key: { type: 'string' },
|
|
45394
|
+
},
|
|
45395
|
+
required: ['property_key'],
|
|
45396
|
+
type: 'object',
|
|
45397
|
+
},
|
|
45398
|
+
{
|
|
45399
|
+
properties: { room_key: { type: 'string' } },
|
|
45400
|
+
required: ['room_key'],
|
|
45401
|
+
type: 'object',
|
|
45402
|
+
},
|
|
45403
|
+
{
|
|
45404
|
+
properties: {
|
|
45405
|
+
common_area_key: { type: 'string' },
|
|
45406
|
+
},
|
|
45407
|
+
required: ['common_area_key'],
|
|
45408
|
+
type: 'object',
|
|
45409
|
+
},
|
|
45410
|
+
{
|
|
45411
|
+
properties: { unit_key: { type: 'string' } },
|
|
45412
|
+
required: ['unit_key'],
|
|
45413
|
+
type: 'object',
|
|
45414
|
+
},
|
|
45415
|
+
{
|
|
45416
|
+
properties: {
|
|
45417
|
+
facility_key: { type: 'string' },
|
|
45418
|
+
},
|
|
45419
|
+
required: ['facility_key'],
|
|
45420
|
+
type: 'object',
|
|
45421
|
+
},
|
|
45422
|
+
{
|
|
45423
|
+
properties: {
|
|
45424
|
+
building_key: { type: 'string' },
|
|
45425
|
+
},
|
|
45426
|
+
required: ['building_key'],
|
|
45427
|
+
type: 'object',
|
|
45428
|
+
},
|
|
45429
|
+
{
|
|
45430
|
+
properties: {
|
|
45431
|
+
listing_key: { type: 'string' },
|
|
45432
|
+
},
|
|
45433
|
+
required: ['listing_key'],
|
|
45434
|
+
type: 'object',
|
|
45435
|
+
},
|
|
45436
|
+
{
|
|
45437
|
+
properties: {
|
|
45438
|
+
property_listing_key: { type: 'string' },
|
|
45439
|
+
},
|
|
45440
|
+
required: ['property_listing_key'],
|
|
45441
|
+
type: 'object',
|
|
45442
|
+
},
|
|
45443
|
+
],
|
|
45444
|
+
},
|
|
45445
|
+
},
|
|
45446
|
+
type: 'object',
|
|
45447
|
+
},
|
|
45317
45448
|
},
|
|
45318
45449
|
type: 'object',
|
|
45319
45450
|
},
|
|
@@ -45408,6 +45539,72 @@ export default {
|
|
|
45408
45539
|
type: 'object',
|
|
45409
45540
|
},
|
|
45410
45541
|
is_embedded: { type: 'boolean' },
|
|
45542
|
+
landing_page: {
|
|
45543
|
+
properties: {
|
|
45544
|
+
manage: {
|
|
45545
|
+
oneOf: [
|
|
45546
|
+
{
|
|
45547
|
+
properties: { space_key: { type: 'string' } },
|
|
45548
|
+
required: ['space_key'],
|
|
45549
|
+
type: 'object',
|
|
45550
|
+
},
|
|
45551
|
+
{
|
|
45552
|
+
properties: {
|
|
45553
|
+
property_key: { type: 'string' },
|
|
45554
|
+
},
|
|
45555
|
+
required: ['property_key'],
|
|
45556
|
+
type: 'object',
|
|
45557
|
+
},
|
|
45558
|
+
{
|
|
45559
|
+
properties: { room_key: { type: 'string' } },
|
|
45560
|
+
required: ['room_key'],
|
|
45561
|
+
type: 'object',
|
|
45562
|
+
},
|
|
45563
|
+
{
|
|
45564
|
+
properties: {
|
|
45565
|
+
common_area_key: { type: 'string' },
|
|
45566
|
+
},
|
|
45567
|
+
required: ['common_area_key'],
|
|
45568
|
+
type: 'object',
|
|
45569
|
+
},
|
|
45570
|
+
{
|
|
45571
|
+
properties: { unit_key: { type: 'string' } },
|
|
45572
|
+
required: ['unit_key'],
|
|
45573
|
+
type: 'object',
|
|
45574
|
+
},
|
|
45575
|
+
{
|
|
45576
|
+
properties: {
|
|
45577
|
+
facility_key: { type: 'string' },
|
|
45578
|
+
},
|
|
45579
|
+
required: ['facility_key'],
|
|
45580
|
+
type: 'object',
|
|
45581
|
+
},
|
|
45582
|
+
{
|
|
45583
|
+
properties: {
|
|
45584
|
+
building_key: { type: 'string' },
|
|
45585
|
+
},
|
|
45586
|
+
required: ['building_key'],
|
|
45587
|
+
type: 'object',
|
|
45588
|
+
},
|
|
45589
|
+
{
|
|
45590
|
+
properties: {
|
|
45591
|
+
listing_key: { type: 'string' },
|
|
45592
|
+
},
|
|
45593
|
+
required: ['listing_key'],
|
|
45594
|
+
type: 'object',
|
|
45595
|
+
},
|
|
45596
|
+
{
|
|
45597
|
+
properties: {
|
|
45598
|
+
property_listing_key: { type: 'string' },
|
|
45599
|
+
},
|
|
45600
|
+
required: ['property_listing_key'],
|
|
45601
|
+
type: 'object',
|
|
45602
|
+
},
|
|
45603
|
+
],
|
|
45604
|
+
},
|
|
45605
|
+
},
|
|
45606
|
+
type: 'object',
|
|
45607
|
+
},
|
|
45411
45608
|
},
|
|
45412
45609
|
type: 'object',
|
|
45413
45610
|
},
|