@seamapi/types 1.663.0 → 1.664.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
|
@@ -26519,6 +26519,8 @@ export type Routes = {
|
|
|
26519
26519
|
exclude?: boolean;
|
|
26520
26520
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
26521
26521
|
allow_access_automation_rule_customization?: boolean;
|
|
26522
|
+
/** Indicates whether the customer can customize the climate automation rules for their properties. */
|
|
26523
|
+
allow_climate_automation_rule_customization?: boolean;
|
|
26522
26524
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
26523
26525
|
allow_instant_key_customization?: boolean;
|
|
26524
26526
|
};
|
|
@@ -54321,6 +54323,8 @@ export type Routes = {
|
|
|
54321
54323
|
exclude?: boolean;
|
|
54322
54324
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
54323
54325
|
allow_access_automation_rule_customization?: boolean;
|
|
54326
|
+
/** Indicates whether the customer can customize the climate automation rules for their properties. */
|
|
54327
|
+
allow_climate_automation_rule_customization?: boolean;
|
|
54324
54328
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
54325
54329
|
allow_instant_key_customization?: boolean;
|
|
54326
54330
|
};
|
package/package.json
CHANGED
|
@@ -50,6 +50,12 @@ const base_configure_feature = base_feature.extend({
|
|
|
50
50
|
.describe(
|
|
51
51
|
'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
52
52
|
),
|
|
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
|
+
),
|
|
53
59
|
allow_instant_key_customization: z
|
|
54
60
|
.boolean()
|
|
55
61
|
.default(false)
|
|
@@ -121,6 +127,7 @@ export const portal_configuration = portal_configuration_base
|
|
|
121
127
|
exclude: false,
|
|
122
128
|
allow_instant_key_customization: false, // default
|
|
123
129
|
allow_access_automation_rule_customization: false, // default
|
|
130
|
+
allow_climate_automation_rule_customization: false, // default
|
|
124
131
|
},
|
|
125
132
|
},
|
|
126
133
|
is_embedded: false,
|
|
@@ -41237,6 +41237,7 @@ export default {
|
|
|
41237
41237
|
features: {
|
|
41238
41238
|
configure: {
|
|
41239
41239
|
allow_access_automation_rule_customization: false,
|
|
41240
|
+
allow_climate_automation_rule_customization: false,
|
|
41240
41241
|
allow_instant_key_customization: false,
|
|
41241
41242
|
exclude: false,
|
|
41242
41243
|
},
|
|
@@ -41273,6 +41274,12 @@ export default {
|
|
|
41273
41274
|
'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
41274
41275
|
type: 'boolean',
|
|
41275
41276
|
},
|
|
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
|
+
},
|
|
41276
41283
|
allow_instant_key_customization: {
|
|
41277
41284
|
default: false,
|
|
41278
41285
|
description:
|
|
@@ -54129,6 +54136,12 @@ export default {
|
|
|
54129
54136
|
'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
54130
54137
|
type: 'boolean',
|
|
54131
54138
|
},
|
|
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
|
+
},
|
|
54132
54145
|
allow_instant_key_customization: {
|
|
54133
54146
|
default: false,
|
|
54134
54147
|
description:
|
|
@@ -54446,6 +54459,12 @@ export default {
|
|
|
54446
54459
|
'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
54447
54460
|
type: 'boolean',
|
|
54448
54461
|
},
|
|
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
|
+
},
|
|
54449
54468
|
allow_instant_key_customization: {
|
|
54450
54469
|
default: false,
|
|
54451
54470
|
description:
|
|
@@ -30674,6 +30674,8 @@ export type Routes = {
|
|
|
30674
30674
|
exclude?: boolean
|
|
30675
30675
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
30676
30676
|
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
|
|
30677
30679
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
30678
30680
|
allow_instant_key_customization?: boolean
|
|
30679
30681
|
}
|
|
@@ -64694,6 +64696,8 @@ export type Routes = {
|
|
|
64694
64696
|
exclude?: boolean
|
|
64695
64697
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
64696
64698
|
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
|
|
64697
64701
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
64698
64702
|
allow_instant_key_customization?: boolean
|
|
64699
64703
|
}
|