@seamapi/types 1.765.0 → 1.766.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 +16 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -0
- package/dist/index.cjs +16 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +14 -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/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +16 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +19 -0
- package/src/lib/seam/connect/route-types.ts +4 -0
|
@@ -30134,6 +30134,8 @@ export type Routes = {
|
|
|
30134
30134
|
exclude?: boolean;
|
|
30135
30135
|
/** Indicates whether the customer can manage reservations for their properties. */
|
|
30136
30136
|
exclude_reservation_management?: boolean;
|
|
30137
|
+
/** Indicates whether to exclude technical details from reservation views. */
|
|
30138
|
+
exclude_reservation_technical_details?: boolean;
|
|
30137
30139
|
/** Indicates whether the customer can manage staff for their properties. */
|
|
30138
30140
|
exclude_staff_management?: boolean;
|
|
30139
30141
|
/** Configuration for event type filtering in the manage feature. */
|
|
@@ -63261,6 +63263,8 @@ export type Routes = {
|
|
|
63261
63263
|
exclude?: boolean;
|
|
63262
63264
|
/** Indicates whether the customer can manage reservations for their properties. */
|
|
63263
63265
|
exclude_reservation_management?: boolean;
|
|
63266
|
+
/** Indicates whether to exclude technical details from reservation views. */
|
|
63267
|
+
exclude_reservation_technical_details?: boolean;
|
|
63264
63268
|
/** Indicates whether the customer can manage staff for their properties. */
|
|
63265
63269
|
exclude_staff_management?: boolean;
|
|
63266
63270
|
/** Configuration for event type filtering in the manage feature. */
|
package/package.json
CHANGED
|
@@ -33,6 +33,12 @@ const base_manage_feature = base_feature.extend({
|
|
|
33
33
|
.describe(
|
|
34
34
|
'Indicates whether the customer can manage reservations for their properties.',
|
|
35
35
|
),
|
|
36
|
+
exclude_reservation_technical_details: z
|
|
37
|
+
.boolean()
|
|
38
|
+
.default(false)
|
|
39
|
+
.describe(
|
|
40
|
+
'Indicates whether to exclude technical details from reservation views.',
|
|
41
|
+
),
|
|
36
42
|
exclude_staff_management: z
|
|
37
43
|
.boolean()
|
|
38
44
|
.default(false)
|
|
@@ -188,6 +194,7 @@ export const portal_configuration = portal_configuration_base
|
|
|
188
194
|
manage: {
|
|
189
195
|
exclude: false,
|
|
190
196
|
exclude_reservation_management: false,
|
|
197
|
+
exclude_reservation_technical_details: false,
|
|
191
198
|
exclude_staff_management: false,
|
|
192
199
|
},
|
|
193
200
|
manage_devices: {
|
|
@@ -49455,6 +49455,7 @@ export default {
|
|
|
49455
49455
|
manage: {
|
|
49456
49456
|
exclude: false,
|
|
49457
49457
|
exclude_reservation_management: false,
|
|
49458
|
+
exclude_reservation_technical_details: false,
|
|
49458
49459
|
exclude_staff_management: false,
|
|
49459
49460
|
},
|
|
49460
49461
|
manage_devices: { exclude: false },
|
|
@@ -49620,6 +49621,12 @@ export default {
|
|
|
49620
49621
|
'Indicates whether the customer can manage reservations for their properties.',
|
|
49621
49622
|
type: 'boolean',
|
|
49622
49623
|
},
|
|
49624
|
+
exclude_reservation_technical_details: {
|
|
49625
|
+
default: false,
|
|
49626
|
+
description:
|
|
49627
|
+
'Indicates whether to exclude technical details from reservation views.',
|
|
49628
|
+
type: 'boolean',
|
|
49629
|
+
},
|
|
49623
49630
|
exclude_staff_management: {
|
|
49624
49631
|
default: false,
|
|
49625
49632
|
description:
|
|
@@ -66029,6 +66036,12 @@ export default {
|
|
|
66029
66036
|
'Indicates whether the customer can manage reservations for their properties.',
|
|
66030
66037
|
type: 'boolean',
|
|
66031
66038
|
},
|
|
66039
|
+
exclude_reservation_technical_details: {
|
|
66040
|
+
default: false,
|
|
66041
|
+
description:
|
|
66042
|
+
'Indicates whether to exclude technical details from reservation views.',
|
|
66043
|
+
type: 'boolean',
|
|
66044
|
+
},
|
|
66032
66045
|
exclude_staff_management: {
|
|
66033
66046
|
default: false,
|
|
66034
66047
|
description:
|
|
@@ -66428,6 +66441,12 @@ export default {
|
|
|
66428
66441
|
'Indicates whether the customer can manage reservations for their properties.',
|
|
66429
66442
|
type: 'boolean',
|
|
66430
66443
|
},
|
|
66444
|
+
exclude_reservation_technical_details: {
|
|
66445
|
+
default: false,
|
|
66446
|
+
description:
|
|
66447
|
+
'Indicates whether to exclude technical details from reservation views.',
|
|
66448
|
+
type: 'boolean',
|
|
66449
|
+
},
|
|
66431
66450
|
exclude_staff_management: {
|
|
66432
66451
|
default: false,
|
|
66433
66452
|
description:
|
|
@@ -34925,6 +34925,8 @@ export type Routes = {
|
|
|
34925
34925
|
exclude?: boolean
|
|
34926
34926
|
/** Indicates whether the customer can manage reservations for their properties. */
|
|
34927
34927
|
exclude_reservation_management?: boolean
|
|
34928
|
+
/** Indicates whether to exclude technical details from reservation views. */
|
|
34929
|
+
exclude_reservation_technical_details?: boolean
|
|
34928
34930
|
/** Indicates whether the customer can manage staff for their properties. */
|
|
34929
34931
|
exclude_staff_management?: boolean
|
|
34930
34932
|
/** Configuration for event type filtering in the manage feature. */
|
|
@@ -75319,6 +75321,8 @@ export type Routes = {
|
|
|
75319
75321
|
exclude?: boolean
|
|
75320
75322
|
/** Indicates whether the customer can manage reservations for their properties. */
|
|
75321
75323
|
exclude_reservation_management?: boolean
|
|
75324
|
+
/** Indicates whether to exclude technical details from reservation views. */
|
|
75325
|
+
exclude_reservation_technical_details?: boolean
|
|
75322
75326
|
/** Indicates whether the customer can manage staff for their properties. */
|
|
75323
75327
|
exclude_staff_management?: boolean
|
|
75324
75328
|
/** Configuration for event type filtering in the manage feature. */
|