Skip to content

Commit

Permalink
Bugfix - change fid type from string to int for CastId and Signer schema
Browse files Browse the repository at this point in the history
Bugfix - change fid type from string to int for CastId and Signer schema
  • Loading branch information
Shreyaschorge authored Dec 11, 2023
2 parents ab5146f + 5c652c2 commit c807e56
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@neynar/nodejs-sdk",
"version": "1.3.0",
"version": "1.3.1",
"description": "SDK to interact with Neynar APIs (https://docs.neynar.com/)",
"main": "./build/index.js",
"types": "./build/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/neynar-api/v2/openapi-farcaster/models/cast-id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
export interface CastId {
/**
*
* User identifier (unsigned integer)
* @type {number}
* @memberof CastId
*/
Expand Down
6 changes: 3 additions & 3 deletions src/neynar-api/v2/openapi-farcaster/models/signer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ export interface Signer {
*/
'signer_approval_url'?: string;
/**
*
* @type {string}
* User identifier (unsigned integer)
* @type {number}
* @memberof Signer
*/
'fid'?: string;
'fid'?: number;
}

export const SignerStatusEnum = {
Expand Down
2 changes: 1 addition & 1 deletion src/oas
Submodule oas updated 1 files
+2 −3 src/v2/spec.yaml

0 comments on commit c807e56

Please sign in to comment.