Skip to content

Commit

Permalink
fixed typegen
Browse files Browse the repository at this point in the history
  • Loading branch information
plxity committed Nov 20, 2024
1 parent e94e0dd commit 6417fd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/src/sdk/client/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ export type Parameter = {
/**
* The location of the parameter. Can be 'query' or 'header'.
*/
in: 'query' | 'header';
in: ParameterLocation;
/**
* The value of the parameter. For example, '1234567890', 'application/json', etc.,
*/
Expand All @@ -965,7 +965,7 @@ export type Parameter = {
/**
* The location of the parameter. Can be 'query' or 'header'.
*/
export type in = 'query' | 'header';
export type ParameterLocation = 'query' | 'header';

export type Data = {
field1: string;
Expand Down

0 comments on commit 6417fd4

Please sign in to comment.