Skip to content

Commit ea2a97f

Browse files
authored
chore(types): update private API type definition (#578)
1 parent 0bcfcf2 commit ea2a97f

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

packages/client/api.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -1967,13 +1967,16 @@ paths:
19671967
type: array
19681968
current:
19691969
properties:
1970+
id:
1971+
type: integer
19701972
raw:
19711973
type: string
19721974
thumbnail:
19731975
type: string
19741976
required:
19751977
- thumbnail
19761978
- raw
1979+
- id
19771980
type: object
19781981
required:
19791982
- covers

packages/client/client.ts

+1
Original file line numberDiff line numberDiff line change
@@ -826,6 +826,7 @@ export async function listSubjectCovers(subjectId: number, opts?: Oazapfts.Reque
826826
voted: boolean;
827827
}>;
828828
current?: {
829+
id: number;
829830
raw: string;
830831
thumbnail: string;
831832
};

packages/client/types/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1072,6 +1072,7 @@ export interface operations {
10721072
voted: boolean;
10731073
}[];
10741074
current?: {
1075+
id: number;
10751076
raw: string;
10761077
thumbnail: string;
10771078
};

0 commit comments

Comments
 (0)