@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
package/dist/connect.d.cts
CHANGED
|
@@ -85048,6 +85048,7 @@ declare const _default: {
|
|
|
85048
85048
|
features: {
|
|
85049
85049
|
configure: {
|
|
85050
85050
|
allow_access_automation_rule_customization: boolean;
|
|
85051
|
+
allow_climate_automation_rule_customization: boolean;
|
|
85051
85052
|
allow_instant_key_customization: boolean;
|
|
85052
85053
|
exclude: boolean;
|
|
85053
85054
|
};
|
|
@@ -85087,6 +85088,11 @@ declare const _default: {
|
|
|
85087
85088
|
description: string;
|
|
85088
85089
|
type: string;
|
|
85089
85090
|
};
|
|
85091
|
+
allow_climate_automation_rule_customization: {
|
|
85092
|
+
default: boolean;
|
|
85093
|
+
description: string;
|
|
85094
|
+
type: string;
|
|
85095
|
+
};
|
|
85090
85096
|
allow_instant_key_customization: {
|
|
85091
85097
|
default: boolean;
|
|
85092
85098
|
description: string;
|
|
@@ -97621,6 +97627,11 @@ declare const _default: {
|
|
|
97621
97627
|
description: string;
|
|
97622
97628
|
type: string;
|
|
97623
97629
|
};
|
|
97630
|
+
allow_climate_automation_rule_customization: {
|
|
97631
|
+
default: boolean;
|
|
97632
|
+
description: string;
|
|
97633
|
+
type: string;
|
|
97634
|
+
};
|
|
97624
97635
|
allow_instant_key_customization: {
|
|
97625
97636
|
default: boolean;
|
|
97626
97637
|
description: string;
|
|
@@ -98027,6 +98038,11 @@ declare const _default: {
|
|
|
98027
98038
|
description: string;
|
|
98028
98039
|
type: string;
|
|
98029
98040
|
};
|
|
98041
|
+
allow_climate_automation_rule_customization: {
|
|
98042
|
+
default: boolean;
|
|
98043
|
+
description: string;
|
|
98044
|
+
type: string;
|
|
98045
|
+
};
|
|
98030
98046
|
allow_instant_key_customization: {
|
|
98031
98047
|
default: boolean;
|
|
98032
98048
|
description: string;
|
|
@@ -139227,6 +139243,8 @@ type Routes = {
|
|
|
139227
139243
|
exclude?: boolean;
|
|
139228
139244
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
139229
139245
|
allow_access_automation_rule_customization?: boolean;
|
|
139246
|
+
/** Indicates whether the customer can customize the climate automation rules for their properties. */
|
|
139247
|
+
allow_climate_automation_rule_customization?: boolean;
|
|
139230
139248
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
139231
139249
|
allow_instant_key_customization?: boolean;
|
|
139232
139250
|
};
|
|
@@ -167029,6 +167047,8 @@ type Routes = {
|
|
|
167029
167047
|
exclude?: boolean;
|
|
167030
167048
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
167031
167049
|
allow_access_automation_rule_customization?: boolean;
|
|
167050
|
+
/** Indicates whether the customer can customize the climate automation rules for their properties. */
|
|
167051
|
+
allow_climate_automation_rule_customization?: boolean;
|
|
167032
167052
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
167033
167053
|
allow_instant_key_customization?: boolean;
|
|
167034
167054
|
};
|
package/dist/index.cjs
CHANGED
|
@@ -43453,6 +43453,7 @@ var openapi_default = {
|
|
|
43453
43453
|
features: {
|
|
43454
43454
|
configure: {
|
|
43455
43455
|
allow_access_automation_rule_customization: false,
|
|
43456
|
+
allow_climate_automation_rule_customization: false,
|
|
43456
43457
|
allow_instant_key_customization: false,
|
|
43457
43458
|
exclude: false
|
|
43458
43459
|
},
|
|
@@ -43486,6 +43487,11 @@ var openapi_default = {
|
|
|
43486
43487
|
description: "Indicates whether the customer can customize the access automation rules for their properties.",
|
|
43487
43488
|
type: "boolean"
|
|
43488
43489
|
},
|
|
43490
|
+
allow_climate_automation_rule_customization: {
|
|
43491
|
+
default: false,
|
|
43492
|
+
description: "Indicates whether the customer can customize the climate automation rules for their properties.",
|
|
43493
|
+
type: "boolean"
|
|
43494
|
+
},
|
|
43489
43495
|
allow_instant_key_customization: {
|
|
43490
43496
|
default: false,
|
|
43491
43497
|
description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
|
|
@@ -55747,6 +55753,11 @@ var openapi_default = {
|
|
|
55747
55753
|
description: "Indicates whether the customer can customize the access automation rules for their properties.",
|
|
55748
55754
|
type: "boolean"
|
|
55749
55755
|
},
|
|
55756
|
+
allow_climate_automation_rule_customization: {
|
|
55757
|
+
default: false,
|
|
55758
|
+
description: "Indicates whether the customer can customize the climate automation rules for their properties.",
|
|
55759
|
+
type: "boolean"
|
|
55760
|
+
},
|
|
55750
55761
|
allow_instant_key_customization: {
|
|
55751
55762
|
default: false,
|
|
55752
55763
|
description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
|
|
@@ -56043,6 +56054,11 @@ var openapi_default = {
|
|
|
56043
56054
|
description: "Indicates whether the customer can customize the access automation rules for their properties.",
|
|
56044
56055
|
type: "boolean"
|
|
56045
56056
|
},
|
|
56057
|
+
allow_climate_automation_rule_customization: {
|
|
56058
|
+
default: false,
|
|
56059
|
+
description: "Indicates whether the customer can customize the climate automation rules for their properties.",
|
|
56060
|
+
type: "boolean"
|
|
56061
|
+
},
|
|
56046
56062
|
allow_instant_key_customization: {
|
|
56047
56063
|
default: false,
|
|
56048
56064
|
description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
|