@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/dist/connect.cjs
CHANGED
|
@@ -2536,7 +2536,7 @@ zod.z.object({
|
|
|
2536
2536
|
profile: acs_user_profile_modification.optional().nullable()
|
|
2537
2537
|
});
|
|
2538
2538
|
var user_fields = zod.z.object({
|
|
2539
|
-
full_name: zod.z.string().optional().describe(
|
|
2539
|
+
full_name: zod.z.string().trim().min(1).optional().describe(
|
|
2540
2540
|
"Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management)."
|
|
2541
2541
|
),
|
|
2542
2542
|
email: zod.z.string().email().optional().describe(`
|
|
@@ -4099,7 +4099,7 @@ var noise_threshold = zod.z.object({
|
|
|
4099
4099
|
---
|
|
4100
4100
|
`);
|
|
4101
4101
|
var pagination = zod.z.object({
|
|
4102
|
-
next_page_cursor: zod.z.string().nullable().describe(
|
|
4102
|
+
next_page_cursor: zod.z.string().base64().nullable().describe(
|
|
4103
4103
|
"Opaque value that can be used to select the next page of results via the `page_cursor` parameter."
|
|
4104
4104
|
),
|
|
4105
4105
|
has_next_page: zod.z.boolean().describe(
|
|
@@ -6330,6 +6330,7 @@ var openapi_default = {
|
|
|
6330
6330
|
},
|
|
6331
6331
|
full_name: {
|
|
6332
6332
|
description: "Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).",
|
|
6333
|
+
minLength: 1,
|
|
6333
6334
|
type: "string"
|
|
6334
6335
|
},
|
|
6335
6336
|
hid_acs_system_id: { format: "uuid", type: "string" },
|
|
@@ -17882,6 +17883,7 @@ var openapi_default = {
|
|
|
17882
17883
|
},
|
|
17883
17884
|
full_name: {
|
|
17884
17885
|
description: "Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).",
|
|
17886
|
+
minLength: 1,
|
|
17885
17887
|
type: "string"
|
|
17886
17888
|
},
|
|
17887
17889
|
hid_acs_system_id: { format: "uuid", type: "string" },
|
|
@@ -23753,6 +23755,7 @@ var openapi_default = {
|
|
|
23753
23755
|
},
|
|
23754
23756
|
full_name: {
|
|
23755
23757
|
description: "Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).",
|
|
23758
|
+
minLength: 1,
|
|
23756
23759
|
type: "string"
|
|
23757
23760
|
},
|
|
23758
23761
|
hid_acs_system_id: { format: "uuid", type: "string" },
|
|
@@ -23830,6 +23833,7 @@ var openapi_default = {
|
|
|
23830
23833
|
},
|
|
23831
23834
|
full_name: {
|
|
23832
23835
|
description: "Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).",
|
|
23836
|
+
minLength: 1,
|
|
23833
23837
|
type: "string"
|
|
23834
23838
|
},
|
|
23835
23839
|
hid_acs_system_id: { format: "uuid", type: "string" },
|
|
@@ -25593,7 +25597,8 @@ var openapi_default = {
|
|
|
25593
25597
|
tags: ["/devices"],
|
|
25594
25598
|
"x-fern-sdk-group-name": ["devices", "simulate"],
|
|
25595
25599
|
"x-fern-sdk-method-name": "access_code_lock",
|
|
25596
|
-
"x-response-key": null
|
|
25600
|
+
"x-response-key": null,
|
|
25601
|
+
"x-undocumented": "Unreleased."
|
|
25597
25602
|
}
|
|
25598
25603
|
},
|
|
25599
25604
|
"/devices/simulate/access_code_unlock": {
|
|
@@ -25638,7 +25643,8 @@ var openapi_default = {
|
|
|
25638
25643
|
tags: ["/devices"],
|
|
25639
25644
|
"x-fern-sdk-group-name": ["devices", "simulate"],
|
|
25640
25645
|
"x-fern-sdk-method-name": "access_code_unlock",
|
|
25641
|
-
"x-response-key": null
|
|
25646
|
+
"x-response-key": null,
|
|
25647
|
+
"x-undocumented": "Unreleased."
|
|
25642
25648
|
}
|
|
25643
25649
|
},
|
|
25644
25650
|
"/devices/simulate/connect": {
|