UNPKG

@neynar/nodejs-sdk

Version:

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

39 lines (38 loc) 1.23 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.175.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 { 'author'?: UserDehydrated; /** * Launch URL of the mini app */ 'frames_url': string; /** * URL of the image */ 'image': string; 'manifest'?: FarcasterManifest; 'metadata'?: FetchRelevantFrames200ResponseRelevantFramesInnerFrameMetadata; /** * Button title of a mini app */ 'title'?: string; /** * Version of the mini app, \'next\' for v2, \'vNext\' for v1 */ 'version': string; }