Skip to content

Commit

Permalink
Bugfix/Replace FrameAction with Frame in CastWithInteractions
Browse files Browse the repository at this point in the history
Bugfix/Replace FrameAction with Frame in CastWithInteractions
  • Loading branch information
Shreyaschorge authored Feb 2, 2024
2 parents dae351d + 3bcb155 commit 5b4b758
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.9.3",
"version": "1.9.4",
"description": "SDK to interact with Neynar APIs (https://docs.neynar.com/)",
"main": "./build/index.js",
"types": "./build/index.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { CastWithInteractionsReactions } from './cast-with-interactions-reaction
import { CastWithInteractionsReplies } from './cast-with-interactions-replies';
// May contain unused imports in some cases
// @ts-ignore
import { FrameAction } from './frame-action';
import { Frame } from './frame';
// May contain unused imports in some cases
// @ts-ignore
import { User } from './user';
Expand All @@ -34,10 +34,10 @@ import { User } from './user';
export interface CastWithInteractionsAllOf {
/**
*
* @type {Array<FrameAction>}
* @type {Array<Frame>}
* @memberof CastWithInteractionsAllOf
*/
'frames'?: Array<FrameAction>;
'frames'?: Array<Frame>;
/**
*
* @type {CastWithInteractionsReactions}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import { CastWithInteractionsReplies } from './cast-with-interactions-replies';
import { EmbeddedCast } from './embedded-cast';
// May contain unused imports in some cases
// @ts-ignore
import { FrameAction } from './frame-action';
import { Frame } from './frame';
// May contain unused imports in some cases
// @ts-ignore
import { User } from './user';
Expand Down
2 changes: 1 addition & 1 deletion src/oas
Submodule oas updated 1 files
+1 −1 src/v2/spec.yaml

0 comments on commit 5b4b758

Please sign in to comment.