@seamapi/types 1.370.2 → 1.371.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
@@ -724,7 +724,8 @@ var device_metadata = zod.z.object({
724
724
  passcode_management: zod.z.boolean(),
725
725
  unlock_via_gateway: zod.z.boolean(),
726
726
  lock_command: zod.z.boolean(),
727
- incomplete_keyboard_passcode: zod.z.boolean()
727
+ incomplete_keyboard_passcode: zod.z.boolean(),
728
+ wifi: zod.z.boolean()
728
729
  }),
729
730
  has_gateway: zod.z.boolean().optional(),
730
731
  wireless_keypads: zod.z.array(
@@ -11014,14 +11015,16 @@ var openapi_default = {
11014
11015
  lock_command: { type: "boolean" },
11015
11016
  passcode: { type: "boolean" },
11016
11017
  passcode_management: { type: "boolean" },
11017
- unlock_via_gateway: { type: "boolean" }
11018
+ unlock_via_gateway: { type: "boolean" },
11019
+ wifi: { type: "boolean" }
11018
11020
  },
11019
11021
  required: [
11020
11022
  "passcode",
11021
11023
  "passcode_management",
11022
11024
  "unlock_via_gateway",
11023
11025
  "lock_command",
11024
- "incomplete_keyboard_passcode"
11026
+ "incomplete_keyboard_passcode",
11027
+ "wifi"
11025
11028
  ],
11026
11029
  type: "object"
11027
11030
  },
@@ -25023,6 +25026,18 @@ var openapi_default = {
25023
25026
  description: "Returns accounts whose custom_metadata contains all of the provided key/value pairs.",
25024
25027
  type: "object"
25025
25028
  },
25029
+ limit: {
25030
+ default: 11e3,
25031
+ description: "Maximum number of records to return per page.",
25032
+ exclusiveMinimum: true,
25033
+ minimum: 0,
25034
+ type: "integer"
25035
+ },
25036
+ page_cursor: {
25037
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
25038
+ nullable: true,
25039
+ type: "string"
25040
+ },
25026
25041
  user_identifier_key: {
25027
25042
  description: "Returns accounts that can be accessed by the provided user_identifier_key.",
25028
25043
  type: "string"
@@ -25043,9 +25058,10 @@ var openapi_default = {
25043
25058
  items: { $ref: "#/components/schemas/connected_account" },
25044
25059
  type: "array"
25045
25060
  },
25046
- ok: { type: "boolean" }
25061
+ ok: { type: "boolean" },
25062
+ pagination: { $ref: "#/components/schemas/pagination" }
25047
25063
  },
25048
- required: ["connected_accounts", "ok"],
25064
+ required: ["connected_accounts", "pagination", "ok"],
25049
25065
  type: "object"
25050
25066
  }
25051
25067
  }