Skip to content

Commit

Permalink
feat: Add ends_at to /acs/credentials/update (#804)
Browse files Browse the repository at this point in the history
Co-authored-by: Evan Sosenko <[email protected]>
  • Loading branch information
seambot and razor-x authored Apr 23, 2024
1 parent c863249 commit c53d137
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4728,8 +4728,9 @@ export default {
properties: {
acs_credential_id: { type: 'string' },
code: { pattern: '^\\d+$', type: 'string' },
ends_at: { format: 'date-time', type: 'string' },
},
required: ['acs_credential_id', 'code'],
required: ['acs_credential_id'],
type: 'object',
},
},
Expand Down Expand Up @@ -4774,8 +4775,9 @@ export default {
properties: {
acs_credential_id: { type: 'string' },
code: { pattern: '^\\d+$', type: 'string' },
ends_at: { format: 'date-time', type: 'string' },
},
required: ['acs_credential_id', 'code'],
required: ['acs_credential_id'],
type: 'object',
},
},
Expand Down
3 changes: 2 additions & 1 deletion src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,8 @@ export interface Routes {
queryParams: {}
jsonBody: {
acs_credential_id: string
code: string
code?: string | undefined
ends_at?: string | undefined
}
commonParams: {}
formData: {}
Expand Down

0 comments on commit c53d137

Please sign in to comment.