Skip to content

Commit

Permalink
Fix CastWithInteractions schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Shreyaschorge committed Feb 2, 2024
1 parent 8c8d226 commit 27d2217
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 27d2217

Please sign in to comment.