Skip to content

Commit 341b35c

Browse files
authored
feat: Sync with Seam API via 3312a578e7fab3e9ee626f68b3dfe7f0854dc7d6 (#2733)
1 parent 3ca86ae commit 341b35c

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

src/lib/seam/connect/models/customer/customer-portal.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ const base_manage_feature = base_feature.extend({
3333
.describe(
3434
'Indicates whether the customer can manage reservations for their properties.',
3535
),
36+
exclude_reservation_technical_details: z
37+
.boolean()
38+
.default(false)
39+
.describe(
40+
'Indicates whether to exclude technical details from reservation views.',
41+
),
3642
exclude_staff_management: z
3743
.boolean()
3844
.default(false)
@@ -188,6 +194,7 @@ export const portal_configuration = portal_configuration_base
188194
manage: {
189195
exclude: false,
190196
exclude_reservation_management: false,
197+
exclude_reservation_technical_details: false,
191198
exclude_staff_management: false,
192199
},
193200
manage_devices: {

src/lib/seam/connect/openapi.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49455,6 +49455,7 @@ export default {
4945549455
manage: {
4945649456
exclude: false,
4945749457
exclude_reservation_management: false,
49458+
exclude_reservation_technical_details: false,
4945849459
exclude_staff_management: false,
4945949460
},
4946049461
manage_devices: { exclude: false },
@@ -49620,6 +49621,12 @@ export default {
4962049621
'Indicates whether the customer can manage reservations for their properties.',
4962149622
type: 'boolean',
4962249623
},
49624+
exclude_reservation_technical_details: {
49625+
default: false,
49626+
description:
49627+
'Indicates whether to exclude technical details from reservation views.',
49628+
type: 'boolean',
49629+
},
4962349630
exclude_staff_management: {
4962449631
default: false,
4962549632
description:
@@ -66029,6 +66036,12 @@ export default {
6602966036
'Indicates whether the customer can manage reservations for their properties.',
6603066037
type: 'boolean',
6603166038
},
66039+
exclude_reservation_technical_details: {
66040+
default: false,
66041+
description:
66042+
'Indicates whether to exclude technical details from reservation views.',
66043+
type: 'boolean',
66044+
},
6603266045
exclude_staff_management: {
6603366046
default: false,
6603466047
description:
@@ -66428,6 +66441,12 @@ export default {
6642866441
'Indicates whether the customer can manage reservations for their properties.',
6642966442
type: 'boolean',
6643066443
},
66444+
exclude_reservation_technical_details: {
66445+
default: false,
66446+
description:
66447+
'Indicates whether to exclude technical details from reservation views.',
66448+
type: 'boolean',
66449+
},
6643166450
exclude_staff_management: {
6643266451
default: false,
6643366452
description:

src/lib/seam/connect/route-types.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34925,6 +34925,8 @@ export type Routes = {
3492534925
exclude?: boolean
3492634926
/** Indicates whether the customer can manage reservations for their properties. */
3492734927
exclude_reservation_management?: boolean
34928+
/** Indicates whether to exclude technical details from reservation views. */
34929+
exclude_reservation_technical_details?: boolean
3492834930
/** Indicates whether the customer can manage staff for their properties. */
3492934931
exclude_staff_management?: boolean
3493034932
/** Configuration for event type filtering in the manage feature. */
@@ -75319,6 +75321,8 @@ export type Routes = {
7531975321
exclude?: boolean
7532075322
/** Indicates whether the customer can manage reservations for their properties. */
7532175323
exclude_reservation_management?: boolean
75324+
/** Indicates whether to exclude technical details from reservation views. */
75325+
exclude_reservation_technical_details?: boolean
7532275326
/** Indicates whether the customer can manage staff for their properties. */
7532375327
exclude_staff_management?: boolean
7532475328
/** Configuration for event type filtering in the manage feature. */

0 commit comments

Comments
 (0)