Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot authored Dec 19, 2024
1 parent 1eab7f5 commit 0ced3c9
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 20 deletions.
6 changes: 0 additions & 6 deletions src/lib/seam/connect/models/acs/acs-encoder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,6 @@ const error_code_description =

const acs_encoder_removed = common_acs_encoder_error.extend({
error_code: z.literal('acs_encoder_removed').describe(error_code_description),
_event_id: z
.string()
.uuid()
.describe(
'ID of the event that was created when the `acs_encoder` was removed.',
),
})

const acs_encoder_error =
Expand Down
13 changes: 1 addition & 12 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14611,12 +14611,6 @@ export default {
description:
'Error associated with the `acs_encoder`.',
properties: {
_event_id: {
description:
'ID of the event that was created when the `acs_encoder` was removed.',
format: 'uuid',
type: 'string',
},
created_at: {
description:
'Date and time at which Seam created the error.',
Expand All @@ -14635,12 +14629,7 @@ export default {
type: 'string',
},
},
required: [
'created_at',
'message',
'error_code',
'_event_id',
],
required: ['created_at', 'message', 'error_code'],
type: 'object',
},
type: 'array',
Expand Down
2 changes: 0 additions & 2 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7296,8 +7296,6 @@ export interface Routes {
message: string
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
error_code: 'acs_encoder_removed'
/** ID of the event that was created when the `acs_encoder` was removed. */
_event_id: string
}>
/** Date and time at which the `acs_encoder` was created. */
created_at: string
Expand Down

0 comments on commit 0ced3c9

Please sign in to comment.