@seamapi/types 1.244.0 → 1.245.1

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"
@@ -10501,7 +10516,8 @@ var openapi_default = {
10501
10516
  tags: ["/acs"],
10502
10517
  "x-fern-sdk-group-name": ["acs", "users", "unmanaged"],
10503
10518
  "x-fern-sdk-method-name": "get",
10504
- "x-fern-sdk-return-value": "acs_user"
10519
+ "x-fern-sdk-return-value": "acs_user",
10520
+ "x-undocumented": "No unmanaged users are currently implemented."
10505
10521
  }
10506
10522
  },
10507
10523
  "/acs/users/unmanaged/list": {
@@ -10798,7 +10814,8 @@ var openapi_default = {
10798
10814
  tags: ["/acs"],
10799
10815
  "x-fern-sdk-group-name": ["acs", "users", "unmanaged"],
10800
10816
  "x-fern-sdk-method-name": "list",
10801
- "x-fern-sdk-return-value": "acs_users"
10817
+ "x-fern-sdk-return-value": "acs_users",
10818
+ "x-undocumented": "No unmanaged users are currently implemented."
10802
10819
  }
10803
10820
  },
10804
10821
  "/acs/users/unsuspend": {