Skip to content

Commit

Permalink
fix overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
dsinghvi committed Oct 23, 2024
1 parent 4a5a866 commit 2067f6d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fern/apis/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2470,7 +2470,7 @@
"description": "This is the page number to return. Defaults to 1.",
"schema": {
"minimum": 1,
"type": "number"
"type": "integer"
}
},
{
Expand Down
13 changes: 13 additions & 0 deletions fern/apis/api/patches/2022-10-23-offset-to-integer.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/fern/apis/api/openapi.json b/fern/apis/api/openapi.json
index 0377888..b5c73a4 100644
--- a/fern/apis/api/openapi.json
+++ b/fern/apis/api/openapi.json
@@ -2470,7 +2470,7 @@
"description": "This is the page number to return. Defaults to 1.",
"schema": {
"minimum": 1,
- "type": "number"
+ "type": "integer"
}
},
{

0 comments on commit 2067f6d

Please sign in to comment.