@seamapi/types 1.243.1 → 1.245.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 +51 -126
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +68 -144
- package/lib/seam/connect/models/acs/acs-system.js +9 -3
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +56 -144
- package/lib/seam/connect/openapi.js +42 -123
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +15 -3
- package/src/lib/seam/connect/openapi.ts +45 -123
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.cjs
CHANGED
|
@@ -1291,9 +1291,15 @@ var acs_system = zod.z.object({
|
|
|
1291
1291
|
"Display name that corresponds to the brand-specific terminology for the `acs_system` type."
|
|
1292
1292
|
).optional(),
|
|
1293
1293
|
visionline_metadata: zod.z.object({
|
|
1294
|
-
mobile_access_uuid: zod.z.string()
|
|
1295
|
-
|
|
1296
|
-
|
|
1294
|
+
mobile_access_uuid: zod.z.string().describe(
|
|
1295
|
+
"Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset."
|
|
1296
|
+
),
|
|
1297
|
+
system_id: zod.z.string().describe(
|
|
1298
|
+
"Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager."
|
|
1299
|
+
),
|
|
1300
|
+
lan_address: zod.z.string().describe(
|
|
1301
|
+
"IP address or hostname of the main Visionline server relative to the Seam Bridge on the local network."
|
|
1302
|
+
)
|
|
1297
1303
|
}).optional(),
|
|
1298
1304
|
system_type: acs_system_external_type.describe(
|
|
1299
1305
|
`
|
|
@@ -2981,9 +2987,18 @@ var openapi_default = {
|
|
|
2981
2987
|
},
|
|
2982
2988
|
visionline_metadata: {
|
|
2983
2989
|
properties: {
|
|
2984
|
-
lan_address: {
|
|
2985
|
-
|
|
2986
|
-
|
|
2990
|
+
lan_address: {
|
|
2991
|
+
description: "IP address or hostname of the main Visionline server relative to the Seam Bridge on the local network.",
|
|
2992
|
+
type: "string"
|
|
2993
|
+
},
|
|
2994
|
+
mobile_access_uuid: {
|
|
2995
|
+
description: "Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset.",
|
|
2996
|
+
type: "string"
|
|
2997
|
+
},
|
|
2998
|
+
system_id: {
|
|
2999
|
+
description: "Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager.",
|
|
3000
|
+
type: "string"
|
|
3001
|
+
}
|
|
2987
3002
|
},
|
|
2988
3003
|
required: ["mobile_access_uuid", "system_id", "lan_address"],
|
|
2989
3004
|
type: "object"
|
|
@@ -4441,6 +4456,33 @@ var openapi_default = {
|
|
|
4441
4456
|
],
|
|
4442
4457
|
type: "object"
|
|
4443
4458
|
},
|
|
4459
|
+
climate_preset: {
|
|
4460
|
+
properties: {
|
|
4461
|
+
can_delete: { type: "boolean" },
|
|
4462
|
+
can_edit: { type: "boolean" },
|
|
4463
|
+
climate_preset_key: { type: "string" },
|
|
4464
|
+
cooling_set_point_celsius: { format: "float", type: "number" },
|
|
4465
|
+
cooling_set_point_fahrenheit: { format: "float", type: "number" },
|
|
4466
|
+
display_name: { type: "string" },
|
|
4467
|
+
fan_mode_setting: { enum: ["auto", "on"], type: "string" },
|
|
4468
|
+
heating_set_point_celsius: { format: "float", type: "number" },
|
|
4469
|
+
heating_set_point_fahrenheit: { format: "float", type: "number" },
|
|
4470
|
+
hvac_mode_setting: {
|
|
4471
|
+
enum: ["off", "heat", "cool", "heat_cool"],
|
|
4472
|
+
type: "string"
|
|
4473
|
+
},
|
|
4474
|
+
manual_override_allowed: { type: "boolean" },
|
|
4475
|
+
name: { default: null, nullable: true, type: "string" }
|
|
4476
|
+
},
|
|
4477
|
+
required: [
|
|
4478
|
+
"climate_preset_key",
|
|
4479
|
+
"can_edit",
|
|
4480
|
+
"can_delete",
|
|
4481
|
+
"display_name",
|
|
4482
|
+
"manual_override_allowed"
|
|
4483
|
+
],
|
|
4484
|
+
type: "object"
|
|
4485
|
+
},
|
|
4444
4486
|
connect_webview: {
|
|
4445
4487
|
properties: {
|
|
4446
4488
|
accepted_devices: {
|
|
@@ -14839,46 +14881,7 @@ var openapi_default = {
|
|
|
14839
14881
|
schema: {
|
|
14840
14882
|
properties: {
|
|
14841
14883
|
climate_preset: {
|
|
14842
|
-
|
|
14843
|
-
can_delete: { type: "boolean" },
|
|
14844
|
-
can_edit: { type: "boolean" },
|
|
14845
|
-
climate_preset_key: { type: "string" },
|
|
14846
|
-
cooling_set_point_celsius: {
|
|
14847
|
-
format: "float",
|
|
14848
|
-
type: "number"
|
|
14849
|
-
},
|
|
14850
|
-
cooling_set_point_fahrenheit: {
|
|
14851
|
-
format: "float",
|
|
14852
|
-
type: "number"
|
|
14853
|
-
},
|
|
14854
|
-
display_name: { type: "string" },
|
|
14855
|
-
fan_mode_setting: {
|
|
14856
|
-
enum: ["auto", "on"],
|
|
14857
|
-
type: "string"
|
|
14858
|
-
},
|
|
14859
|
-
heating_set_point_celsius: {
|
|
14860
|
-
format: "float",
|
|
14861
|
-
type: "number"
|
|
14862
|
-
},
|
|
14863
|
-
heating_set_point_fahrenheit: {
|
|
14864
|
-
format: "float",
|
|
14865
|
-
type: "number"
|
|
14866
|
-
},
|
|
14867
|
-
hvac_mode_setting: {
|
|
14868
|
-
enum: ["off", "heat", "cool", "heat_cool"],
|
|
14869
|
-
type: "string"
|
|
14870
|
-
},
|
|
14871
|
-
manual_override_allowed: { type: "boolean" },
|
|
14872
|
-
name: { default: null, nullable: true, type: "string" }
|
|
14873
|
-
},
|
|
14874
|
-
required: [
|
|
14875
|
-
"climate_preset_key",
|
|
14876
|
-
"can_edit",
|
|
14877
|
-
"can_delete",
|
|
14878
|
-
"display_name",
|
|
14879
|
-
"manual_override_allowed"
|
|
14880
|
-
],
|
|
14881
|
-
type: "object"
|
|
14884
|
+
$ref: "#/components/schemas/climate_preset"
|
|
14882
14885
|
},
|
|
14883
14886
|
ok: { type: "boolean" }
|
|
14884
14887
|
},
|
|
@@ -15894,46 +15897,7 @@ var openapi_default = {
|
|
|
15894
15897
|
schema: {
|
|
15895
15898
|
properties: {
|
|
15896
15899
|
climate_preset: {
|
|
15897
|
-
|
|
15898
|
-
can_delete: { type: "boolean" },
|
|
15899
|
-
can_edit: { type: "boolean" },
|
|
15900
|
-
climate_preset_key: { type: "string" },
|
|
15901
|
-
cooling_set_point_celsius: {
|
|
15902
|
-
format: "float",
|
|
15903
|
-
type: "number"
|
|
15904
|
-
},
|
|
15905
|
-
cooling_set_point_fahrenheit: {
|
|
15906
|
-
format: "float",
|
|
15907
|
-
type: "number"
|
|
15908
|
-
},
|
|
15909
|
-
display_name: { type: "string" },
|
|
15910
|
-
fan_mode_setting: {
|
|
15911
|
-
enum: ["auto", "on"],
|
|
15912
|
-
type: "string"
|
|
15913
|
-
},
|
|
15914
|
-
heating_set_point_celsius: {
|
|
15915
|
-
format: "float",
|
|
15916
|
-
type: "number"
|
|
15917
|
-
},
|
|
15918
|
-
heating_set_point_fahrenheit: {
|
|
15919
|
-
format: "float",
|
|
15920
|
-
type: "number"
|
|
15921
|
-
},
|
|
15922
|
-
hvac_mode_setting: {
|
|
15923
|
-
enum: ["off", "heat", "cool", "heat_cool"],
|
|
15924
|
-
type: "string"
|
|
15925
|
-
},
|
|
15926
|
-
manual_override_allowed: { type: "boolean" },
|
|
15927
|
-
name: { default: null, nullable: true, type: "string" }
|
|
15928
|
-
},
|
|
15929
|
-
required: [
|
|
15930
|
-
"climate_preset_key",
|
|
15931
|
-
"can_edit",
|
|
15932
|
-
"can_delete",
|
|
15933
|
-
"display_name",
|
|
15934
|
-
"manual_override_allowed"
|
|
15935
|
-
],
|
|
15936
|
-
type: "object"
|
|
15900
|
+
$ref: "#/components/schemas/climate_preset"
|
|
15937
15901
|
},
|
|
15938
15902
|
ok: { type: "boolean" }
|
|
15939
15903
|
},
|
|
@@ -16006,46 +15970,7 @@ var openapi_default = {
|
|
|
16006
15970
|
schema: {
|
|
16007
15971
|
properties: {
|
|
16008
15972
|
climate_preset: {
|
|
16009
|
-
|
|
16010
|
-
can_delete: { type: "boolean" },
|
|
16011
|
-
can_edit: { type: "boolean" },
|
|
16012
|
-
climate_preset_key: { type: "string" },
|
|
16013
|
-
cooling_set_point_celsius: {
|
|
16014
|
-
format: "float",
|
|
16015
|
-
type: "number"
|
|
16016
|
-
},
|
|
16017
|
-
cooling_set_point_fahrenheit: {
|
|
16018
|
-
format: "float",
|
|
16019
|
-
type: "number"
|
|
16020
|
-
},
|
|
16021
|
-
display_name: { type: "string" },
|
|
16022
|
-
fan_mode_setting: {
|
|
16023
|
-
enum: ["auto", "on"],
|
|
16024
|
-
type: "string"
|
|
16025
|
-
},
|
|
16026
|
-
heating_set_point_celsius: {
|
|
16027
|
-
format: "float",
|
|
16028
|
-
type: "number"
|
|
16029
|
-
},
|
|
16030
|
-
heating_set_point_fahrenheit: {
|
|
16031
|
-
format: "float",
|
|
16032
|
-
type: "number"
|
|
16033
|
-
},
|
|
16034
|
-
hvac_mode_setting: {
|
|
16035
|
-
enum: ["off", "heat", "cool", "heat_cool"],
|
|
16036
|
-
type: "string"
|
|
16037
|
-
},
|
|
16038
|
-
manual_override_allowed: { type: "boolean" },
|
|
16039
|
-
name: { default: null, nullable: true, type: "string" }
|
|
16040
|
-
},
|
|
16041
|
-
required: [
|
|
16042
|
-
"climate_preset_key",
|
|
16043
|
-
"can_edit",
|
|
16044
|
-
"can_delete",
|
|
16045
|
-
"display_name",
|
|
16046
|
-
"manual_override_allowed"
|
|
16047
|
-
],
|
|
16048
|
-
type: "object"
|
|
15973
|
+
$ref: "#/components/schemas/climate_preset"
|
|
16049
15974
|
},
|
|
16050
15975
|
ok: { type: "boolean" }
|
|
16051
15976
|
},
|