@seamapi/types 1.303.0 → 1.303.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 +9 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6 -0
- package/lib/seam/connect/models/acs/acs-user.js +8 -8
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +3 -0
- package/lib/seam/connect/openapi.js +3 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +16 -16
- package/src/lib/seam/connect/openapi.ts +6 -0
- package/src/lib/seam/connect/route-types.ts +3 -0
package/dist/connect.cjs
CHANGED
|
@@ -1727,16 +1727,16 @@ var common_acs_user = zod.z.object({
|
|
|
1727
1727
|
var acs_user = common_acs_user.merge(
|
|
1728
1728
|
zod.z.object({
|
|
1729
1729
|
is_managed: zod.z.literal(true)
|
|
1730
|
-
})
|
|
1731
|
-
|
|
1732
|
-
)
|
|
1730
|
+
})
|
|
1731
|
+
).describe(
|
|
1732
|
+
"Represents a [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems)."
|
|
1733
1733
|
);
|
|
1734
1734
|
var unmanaged_acs_user = common_acs_user.merge(
|
|
1735
1735
|
zod.z.object({
|
|
1736
1736
|
is_managed: zod.z.literal(false)
|
|
1737
|
-
})
|
|
1738
|
-
|
|
1739
|
-
)
|
|
1737
|
+
})
|
|
1738
|
+
).describe(
|
|
1739
|
+
"Represents an unmanaged [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems)."
|
|
1740
1740
|
);
|
|
1741
1741
|
var common_action_attempt = zod.z.object({
|
|
1742
1742
|
action_attempt_id: zod.z.string().uuid().describe(`
|
|
@@ -3803,6 +3803,7 @@ var openapi_default = {
|
|
|
3803
3803
|
type: "object"
|
|
3804
3804
|
},
|
|
3805
3805
|
acs_user: {
|
|
3806
|
+
description: "Represents a [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).",
|
|
3806
3807
|
properties: {
|
|
3807
3808
|
access_schedule: {
|
|
3808
3809
|
description: "`starts_at` and `ends_at` timestamps for the `acs_user`'s access.",
|
|
@@ -13980,6 +13981,7 @@ var openapi_default = {
|
|
|
13980
13981
|
schema: {
|
|
13981
13982
|
properties: {
|
|
13982
13983
|
acs_user: {
|
|
13984
|
+
description: "Represents an unmanaged [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).",
|
|
13983
13985
|
properties: {
|
|
13984
13986
|
access_schedule: {
|
|
13985
13987
|
description: "`starts_at` and `ends_at` timestamps for the `acs_user`'s access.",
|
|
@@ -14339,6 +14341,7 @@ var openapi_default = {
|
|
|
14339
14341
|
properties: {
|
|
14340
14342
|
acs_users: {
|
|
14341
14343
|
items: {
|
|
14344
|
+
description: "Represents an unmanaged [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).",
|
|
14342
14345
|
properties: {
|
|
14343
14346
|
access_schedule: {
|
|
14344
14347
|
description: "`starts_at` and `ends_at` timestamps for the `acs_user`'s access.",
|