Skip to content

Commit

Permalink
fix: Parameters for /acs/encoders/list (#1277)
Browse files Browse the repository at this point in the history
Co-authored-by: Evan Sosenko <evan@getseam.com>
  • Loading branch information
seambot and razor-x authored Nov 21, 2024
1 parent eb9a2e1 commit b3180ae
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 17 deletions.
19 changes: 6 additions & 13 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10369,39 +10369,32 @@ export default {
oneOf: [
{
properties: {
acs_encoder_ids: {
items: { format: 'uuid', type: 'string' },
type: 'array',
},
acs_system_ids: {
items: { format: 'uuid', type: 'string' },
type: 'array',
},
acs_system_id: { format: 'uuid', type: 'string' },
limit: { default: 500, format: 'float', type: 'number' },
},
required: ['acs_system_ids', 'acs_encoder_ids'],
required: ['acs_system_id'],
type: 'object',
},
{
properties: {
acs_encoder_ids: {
acs_system_ids: {
items: { format: 'uuid', type: 'string' },
type: 'array',
},
limit: { default: 500, format: 'float', type: 'number' },
},
required: ['acs_encoder_ids'],
required: ['acs_system_ids'],
type: 'object',
},
{
properties: {
acs_system_ids: {
acs_encoder_ids: {
items: { format: 'uuid', type: 'string' },
type: 'array',
},
limit: { default: 500, format: 'float', type: 'number' },
},
required: ['acs_system_ids'],
required: ['acs_encoder_ids'],
type: 'object',
},
],
Expand Down
7 changes: 3 additions & 4 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7156,16 +7156,15 @@ export interface Routes {
jsonBody: {}
commonParams:
| {
acs_system_ids: string[]
acs_encoder_ids: string[]
acs_system_id: string
limit?: number
}
| {
acs_encoder_ids: string[]
acs_system_ids: string[]
limit?: number
}
| {
acs_system_ids: string[]
acs_encoder_ids: string[]
limit?: number
}
formData: {}
Expand Down

0 comments on commit b3180ae

Please sign in to comment.