Skip to content

Commit

Permalink
feat: Add acs_access_group.display_name (#880)
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot authored Jun 12, 2024
1 parent 105af6e commit a75f3bd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/seam/connect/models/acs/access_group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const acs_access_group = z.object({
deprecated: use external_type_display_name
---
`),
display_name: z.string(),
external_type: acs_access_group_external_type,
external_type_display_name: z.string(),
created_at: z.string().datetime(),
Expand Down
2 changes: 2 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ export default {
acs_access_group_id: { format: 'uuid', type: 'string' },
acs_system_id: { format: 'uuid', type: 'string' },
created_at: { format: 'date-time', type: 'string' },
display_name: { type: 'string' },
external_type: {
enum: [
'pti_unit',
Expand All @@ -178,6 +179,7 @@ export default {
'name',
'access_group_type',
'access_group_type_display_name',
'display_name',
'external_type',
'external_type_display_name',
'created_at',
Expand Down
2 changes: 2 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3105,6 +3105,7 @@ export interface Routes {
---
*/
access_group_type_display_name: string
display_name: string
external_type:
| 'pti_unit'
| 'pti_access_level'
Expand Down Expand Up @@ -3147,6 +3148,7 @@ export interface Routes {
---
*/
access_group_type_display_name: string
display_name: string
external_type:
| 'pti_unit'
| 'pti_access_level'
Expand Down

0 comments on commit a75f3bd

Please sign in to comment.