Skip to content

Commit

Permalink
Merge branch 'master' of github.com:anymaniax/orval
Browse files Browse the repository at this point in the history
  • Loading branch information
anymaniax committed Apr 21, 2023
2 parents be77eb2 + 64c62a1 commit a542d29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/getters/scalar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const getScalar = ({
switch (item.type) {
case 'number':
case 'integer': {
let value = 'number';
let value = item.format === 'int64' ? 'bigint' : 'number';
let isEnum = false;

if (item.enum) {
Expand Down

1 comment on commit a542d29

@vercel
Copy link

@vercel vercel bot commented on a542d29 Apr 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.