@seamapi/types 1.244.0 → 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 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
- system_id: zod.z.string(),
1296
- lan_address: zod.z.string()
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: { type: "string" },
2985
- mobile_access_uuid: { type: "string" },
2986
- system_id: { type: "string" }
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"