Skip to content
Snippets Groups Projects
Commit dbb6f3e1 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

fix: override broken steering type definitions for Note

parent 9e6402a2
No related branches found
No related tags found
No related merge requests found
...@@ -48,5 +48,12 @@ export type Type = Required<steeringComponents['schemas']['Type']> ...@@ -48,5 +48,12 @@ export type Type = Required<steeringComponents['schemas']['Type']>
export type Topic = Required<steeringComponents['schemas']['Topic']> export type Topic = Required<steeringComponents['schemas']['Topic']>
export type License = Required<steeringComponents['schemas']['License']> export type License = Required<steeringComponents['schemas']['License']>
export type Note = Required< export type Note = Required<
Omit<steeringComponents['schemas']['Note'], 'tags' | 'playlistId'> & { tags: string[] } Omit<
steeringComponents['schemas']['Note'],
'tags' | 'playlistId' | 'topicIds' | 'languageIds'
> & {
tags: string[]
topicIds: number[]
languageIds: number[]
}
> >
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment