@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/dist/connect.cjs +10 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +2 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/pagination.js +1 -0
- package/lib/seam/connect/models/pagination.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +6 -0
- package/lib/seam/connect/openapi.js +6 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +2 -0
- package/src/lib/seam/connect/models/pagination.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +6 -0
package/package.json
CHANGED
|
@@ -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).',
|
|
@@ -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': {
|