@seamapi/types 1.662.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 +27 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +70 -0
- package/dist/index.cjs +27 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +10 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js +2 -1
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -0
- 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 +24 -0
- package/lib/seam/connect/openapi.js +24 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +22 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +2 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +27 -0
- package/src/lib/seam/connect/route-types.ts +22 -0
package/dist/connect.cjs
CHANGED
|
@@ -2635,10 +2635,11 @@ var acs_entrance_salto_space_metadata = zod.z.object({
|
|
|
2635
2635
|
room_description: zod.z.string().describe("Description of the room in the Salto Space access system.")
|
|
2636
2636
|
}).partial().describe("Salto Space-specific metadata associated with the entrance.");
|
|
2637
2637
|
var acs_user_salto_space_metadata = zod.z.object({
|
|
2638
|
-
|
|
2638
|
+
user_id: zod.z.string().describe("User ID in the Salto Space access system."),
|
|
2639
|
+
audit_openings: zod.z.boolean().describe(
|
|
2639
2640
|
"Indicates whether AuditOpenings is enabled for the user in the Salto Space access system."
|
|
2640
2641
|
)
|
|
2641
|
-
}).describe(
|
|
2642
|
+
}).partial().describe(
|
|
2642
2643
|
"Salto Space-specific metadata associated with the access system user."
|
|
2643
2644
|
);
|
|
2644
2645
|
var acs_entrance_visionline_metadata = zod.z.object({
|
|
@@ -9493,6 +9494,10 @@ var openapi_default = {
|
|
|
9493
9494
|
audit_openings: {
|
|
9494
9495
|
description: "Indicates whether AuditOpenings is enabled for the user in the Salto Space access system.",
|
|
9495
9496
|
type: "boolean"
|
|
9497
|
+
},
|
|
9498
|
+
user_id: {
|
|
9499
|
+
description: "User ID in the Salto Space access system.",
|
|
9500
|
+
type: "string"
|
|
9496
9501
|
}
|
|
9497
9502
|
},
|
|
9498
9503
|
type: "object"
|
|
@@ -27656,6 +27661,10 @@ var openapi_default = {
|
|
|
27656
27661
|
audit_openings: {
|
|
27657
27662
|
description: "Indicates whether AuditOpenings is enabled for the user in the Salto Space access system.",
|
|
27658
27663
|
type: "boolean"
|
|
27664
|
+
},
|
|
27665
|
+
user_id: {
|
|
27666
|
+
description: "User ID in the Salto Space access system.",
|
|
27667
|
+
type: "string"
|
|
27659
27668
|
}
|
|
27660
27669
|
},
|
|
27661
27670
|
type: "object"
|
|
@@ -43444,6 +43453,7 @@ var openapi_default = {
|
|
|
43444
43453
|
features: {
|
|
43445
43454
|
configure: {
|
|
43446
43455
|
allow_access_automation_rule_customization: false,
|
|
43456
|
+
allow_climate_automation_rule_customization: false,
|
|
43447
43457
|
allow_instant_key_customization: false,
|
|
43448
43458
|
exclude: false
|
|
43449
43459
|
},
|
|
@@ -43477,6 +43487,11 @@ var openapi_default = {
|
|
|
43477
43487
|
description: "Indicates whether the customer can customize the access automation rules for their properties.",
|
|
43478
43488
|
type: "boolean"
|
|
43479
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
|
+
},
|
|
43480
43495
|
allow_instant_key_customization: {
|
|
43481
43496
|
default: false,
|
|
43482
43497
|
description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
|
|
@@ -55738,6 +55753,11 @@ var openapi_default = {
|
|
|
55738
55753
|
description: "Indicates whether the customer can customize the access automation rules for their properties.",
|
|
55739
55754
|
type: "boolean"
|
|
55740
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
|
+
},
|
|
55741
55761
|
allow_instant_key_customization: {
|
|
55742
55762
|
default: false,
|
|
55743
55763
|
description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
|
|
@@ -56034,6 +56054,11 @@ var openapi_default = {
|
|
|
56034
56054
|
description: "Indicates whether the customer can customize the access automation rules for their properties.",
|
|
56035
56055
|
type: "boolean"
|
|
56036
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
|
+
},
|
|
56037
56062
|
allow_instant_key_customization: {
|
|
56038
56063
|
default: false,
|
|
56039
56064
|
description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
|