UNPKG

@neynar/nodejs-sdk

Version:

SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)

64 lines (63 loc) 1.74 kB
/** * Neynar API * The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details. * * The version of the OpenAPI document: 3.115.0 * Contact: team@neynar.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { FarcasterManifest } from './farcaster-manifest'; import type { FetchRelevantFrames200ResponseRelevantFramesInnerFrameMetadata } from './fetch-relevant-frames200-response-relevant-frames-inner-frame-metadata'; import type { UserDehydrated } from './user-dehydrated'; /** * Mini app v2 object * @export * @interface FrameV2 */ export interface FrameV2 { /** * Version of the mini app, \'next\' for v2, \'vNext\' for v1 * @type {string} * @memberof FrameV2 */ 'version': string; /** * URL of the image * @type {string} * @memberof FrameV2 */ 'image': string; /** * Launch URL of the mini app * @type {string} * @memberof FrameV2 */ 'frames_url': string; /** * Button title of a mini app * @type {string} * @memberof FrameV2 */ 'title'?: string; /** * * @type {FarcasterManifest} * @memberof FrameV2 */ 'manifest'?: FarcasterManifest; /** * * @type {UserDehydrated} * @memberof FrameV2 */ 'author'?: UserDehydrated; /** * * @type {FetchRelevantFrames200ResponseRelevantFramesInnerFrameMetadata} * @memberof FrameV2 */ 'metadata'?: FetchRelevantFrames200ResponseRelevantFramesInnerFrameMetadata; }