You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Group that defines the entrances to which a set of users has access and, in some cases, the access schedule for these entrances and users.
59
-
60
-
The \`acs_access_group\` object represents an [access group](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups) within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).
61
-
`)
57
+
})
58
+
.describe(`Group that defines the entrances to which a set of users has access and, in some cases, the access schedule for these entrances and users.
59
+
The \`acs_access_group\` object represents an [access group](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups) within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).`)
Copy file name to clipboardExpand all lines: src/lib/seam/connect/models/acs/acs-credential.ts
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -144,10 +144,8 @@ function getAcsCredentialDescription(is_managed = true): string {
144
144
: 'unmanaged_acs_credential'
145
145
constmanagement_clause=is_managed ? '' : ', which is not managed by Seam,'
146
146
147
-
return`
148
-
Means by which a user gains access at an entrance.
149
-
150
-
The \`${resource_name}\` object${management_clause} represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code.`.trim()
147
+
return`Means by which a user gains access at an entrance.
148
+
The \`${resource_name}\` object${management_clause} represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code.`.trim()
'Represents an [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).',
Copy file name to clipboardExpand all lines: src/lib/seam/connect/models/acs/acs-user.ts
+14-6Lines changed: 14 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -235,15 +235,23 @@ const common_acs_user = z
235
235
.merge(user_fields)
236
236
237
237
exportconstacs_user=common_acs_user.merge(
238
-
z.object({
239
-
is_managed: z.literal(true),
240
-
}),
238
+
z
239
+
.object({
240
+
is_managed: z.literal(true),
241
+
})
242
+
.describe(
243
+
'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).',
'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).',
0 commit comments