@seamapi/types 1.369.1 → 1.369.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.369.1",
3
+ "version": "1.369.2",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -193,6 +193,8 @@ export type AcsUserUnappliedModificationMap = z.infer<
193
193
  const user_fields = z.object({
194
194
  full_name: z
195
195
  .string()
196
+ .trim()
197
+ .min(1)
196
198
  .optional()
197
199
  .describe(
198
200
  'Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).',
@@ -4,6 +4,7 @@ export const pagination = z
4
4
  .object({
5
5
  next_page_cursor: z
6
6
  .string()
7
+ .base64()
7
8
  .nullable()
8
9
  .describe(
9
10
  'Opaque value that can be used to select the next page of results via the `page_cursor` parameter.',
@@ -2421,6 +2421,7 @@ export default {
2421
2421
  full_name: {
2422
2422
  description:
2423
2423
  'Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).',
2424
+ minLength: 1,
2424
2425
  type: 'string',
2425
2426
  },
2426
2427
  hid_acs_system_id: { format: 'uuid', type: 'string' },
@@ -14948,6 +14949,7 @@ export default {
14948
14949
  full_name: {
14949
14950
  description:
14950
14951
  'Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).',
14952
+ minLength: 1,
14951
14953
  type: 'string',
14952
14954
  },
14953
14955
  hid_acs_system_id: { format: 'uuid', type: 'string' },
@@ -21028,6 +21030,7 @@ export default {
21028
21030
  full_name: {
21029
21031
  description:
21030
21032
  'Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).',
21033
+ minLength: 1,
21031
21034
  type: 'string',
21032
21035
  },
21033
21036
  hid_acs_system_id: { format: 'uuid', type: 'string' },
@@ -21111,6 +21114,7 @@ export default {
21111
21114
  full_name: {
21112
21115
  description:
21113
21116
  'Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).',
21117
+ minLength: 1,
21114
21118
  type: 'string',
21115
21119
  },
21116
21120
  hid_acs_system_id: { format: 'uuid', type: 'string' },
@@ -22892,6 +22896,7 @@ export default {
22892
22896
  'x-fern-sdk-group-name': ['devices', 'simulate'],
22893
22897
  'x-fern-sdk-method-name': 'access_code_lock',
22894
22898
  'x-response-key': null,
22899
+ 'x-undocumented': 'Unreleased.',
22895
22900
  },
22896
22901
  },
22897
22902
  '/devices/simulate/access_code_unlock': {
@@ -22937,6 +22942,7 @@ export default {
22937
22942
  'x-fern-sdk-group-name': ['devices', 'simulate'],
22938
22943
  'x-fern-sdk-method-name': 'access_code_unlock',
22939
22944
  'x-response-key': null,
22945
+ 'x-undocumented': 'Unreleased.',
22940
22946
  },
22941
22947
  },
22942
22948
  '/devices/simulate/connect': {