Skip to content

Commit 608dcb0

Browse files
committed
feat: Sync with Seam API via 24d1ce20bb745c9d9a864c2c4dace4438da6fd96
1 parent bd6c658 commit 608dcb0

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
@@ -50,6 +50,12 @@ const base_configure_feature = base_feature.extend({
5050
.describe(
5151
'Indicates whether the customer can customize the access automation rules for their properties.',
5252
),
53+
allow_climate_automation_rule_customization: z
54+
.boolean()
55+
.default(false)
56+
.describe(
57+
'Indicates whether the customer can customize the climate automation rules for their properties.',
58+
),
5359
allow_instant_key_customization: z
5460
.boolean()
5561
.default(false)
@@ -121,6 +127,7 @@ export const portal_configuration = portal_configuration_base
121127
exclude: false,
122128
allow_instant_key_customization: false, // default
123129
allow_access_automation_rule_customization: false, // default
130+
allow_climate_automation_rule_customization: false, // default
124131
},
125132
},
126133
is_embedded: false,

src/lib/seam/connect/openapi.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41237,6 +41237,7 @@ export default {
4123741237
features: {
4123841238
configure: {
4123941239
allow_access_automation_rule_customization: false,
41240+
allow_climate_automation_rule_customization: false,
4124041241
allow_instant_key_customization: false,
4124141242
exclude: false,
4124241243
},
@@ -41273,6 +41274,12 @@ export default {
4127341274
'Indicates whether the customer can customize the access automation rules for their properties.',
4127441275
type: 'boolean',
4127541276
},
41277+
allow_climate_automation_rule_customization: {
41278+
default: false,
41279+
description:
41280+
'Indicates whether the customer can customize the climate automation rules for their properties.',
41281+
type: 'boolean',
41282+
},
4127641283
allow_instant_key_customization: {
4127741284
default: false,
4127841285
description:
@@ -54129,6 +54136,12 @@ export default {
5412954136
'Indicates whether the customer can customize the access automation rules for their properties.',
5413054137
type: 'boolean',
5413154138
},
54139+
allow_climate_automation_rule_customization: {
54140+
default: false,
54141+
description:
54142+
'Indicates whether the customer can customize the climate automation rules for their properties.',
54143+
type: 'boolean',
54144+
},
5413254145
allow_instant_key_customization: {
5413354146
default: false,
5413454147
description:
@@ -54446,6 +54459,12 @@ export default {
5444654459
'Indicates whether the customer can customize the access automation rules for their properties.',
5444754460
type: 'boolean',
5444854461
},
54462+
allow_climate_automation_rule_customization: {
54463+
default: false,
54464+
description:
54465+
'Indicates whether the customer can customize the climate automation rules for their properties.',
54466+
type: 'boolean',
54467+
},
5444954468
allow_instant_key_customization: {
5445054469
default: false,
5445154470
description:

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30674,6 +30674,8 @@ export type Routes = {
3067430674
exclude?: boolean
3067530675
/** Indicates whether the customer can customize the access automation rules for their properties. */
3067630676
allow_access_automation_rule_customization?: boolean
30677+
/** Indicates whether the customer can customize the climate automation rules for their properties. */
30678+
allow_climate_automation_rule_customization?: boolean
3067730679
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
3067830680
allow_instant_key_customization?: boolean
3067930681
}
@@ -64694,6 +64696,8 @@ export type Routes = {
6469464696
exclude?: boolean
6469564697
/** Indicates whether the customer can customize the access automation rules for their properties. */
6469664698
allow_access_automation_rule_customization?: boolean
64699+
/** Indicates whether the customer can customize the climate automation rules for their properties. */
64700+
allow_climate_automation_rule_customization?: boolean
6469764701
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
6469864702
allow_instant_key_customization?: boolean
6469964703
}

0 commit comments

Comments
 (0)