Skip to content

Commit

Permalink
feat: Add acs_system.default_credential_manager_acs_system_id (#1165)
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot authored Oct 17, 2024
1 parent 84a33ec commit c9961b1
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/lib/seam/connect/models/acs/acs-system.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,19 @@ export type AcsSystemWarningMap = z.infer<typeof acs_system_warning_map>

export const acs_system = z
.object({
default_credential_manager_acs_system_id: z
.string()
.uuid()
.nullable()
.optional()
.describe(
`
---
draft: Needs review
---
ID of the default credential manager acs_system for this access control system.
`,
),
acs_system_id: z.string().uuid().describe('ID of the `acs_system`.'),
external_type: acs_system_external_type
.describe('Brand-specific terminology for the `acs_system` type.')
Expand Down
8 changes: 8 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,14 @@ export default {
format: 'date-time',
type: 'string',
},
default_credential_manager_acs_system_id: {
description:
'ID of the default credential manager acs_system for this access control system.',
format: 'uuid',
nullable: true,
type: 'string',
'x-draft': 'Needs review',
},
errors: {
description: 'Errors associated with the `acs_system`.',
items: {
Expand Down
8 changes: 8 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6463,6 +6463,8 @@ export interface Routes {
jsonResponse: {
/** Represents an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
acs_system: {
/** ID of the default credential manager acs_system for this access control system. */
default_credential_manager_acs_system_id?: (string | null) | undefined
/** ID of the `acs_system`. */
acs_system_id: string
/** Brand-specific terminology for the `acs_system` type. */
Expand Down Expand Up @@ -6596,6 +6598,8 @@ export interface Routes {
formData: {}
jsonResponse: {
acs_systems: Array<{
/** ID of the default credential manager acs_system for this access control system. */
default_credential_manager_acs_system_id?: (string | null) | undefined
/** ID of the `acs_system`. */
acs_system_id: string
/** Brand-specific terminology for the `acs_system` type. */
Expand Down Expand Up @@ -6729,6 +6733,8 @@ export interface Routes {
formData: {}
jsonResponse: {
acs_systems: Array<{
/** ID of the default credential manager acs_system for this access control system. */
default_credential_manager_acs_system_id?: (string | null) | undefined
/** ID of the `acs_system`. */
acs_system_id: string
/** Brand-specific terminology for the `acs_system` type. */
Expand Down Expand Up @@ -26858,6 +26864,8 @@ export interface Routes {
formData: {}
jsonResponse: {
acs_systems: Array<{
/** ID of the default credential manager acs_system for this access control system. */
default_credential_manager_acs_system_id?: (string | null) | undefined
/** ID of the `acs_system`. */
acs_system_id: string
/** Brand-specific terminology for the `acs_system` type. */
Expand Down

0 comments on commit c9961b1

Please sign in to comment.