UNPKG

@neynar/nodejs-sdk

Version:

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

83 lines (82 loc) 1.88 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.34.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 { FrameActionButton } from './frame-action-button'; import type { FrameInput } from './frame-input'; import type { FrameState } from './frame-state'; import type { FrameTransaction } from './frame-transaction'; /** * * @export * @interface FrameAction */ export interface FrameAction { /** * * @type {string} * @memberof FrameAction */ 'version'?: string; /** * * @type {string} * @memberof FrameAction */ 'title'?: string; /** * * @type {string} * @memberof FrameAction */ 'image'?: string; /** * * @type {FrameActionButton} * @memberof FrameAction */ 'button': FrameActionButton; /** * * @type {FrameInput} * @memberof FrameAction */ 'input'?: FrameInput; /** * * @type {FrameState} * @memberof FrameAction */ 'state'?: FrameState; /** * * @type {FrameTransaction} * @memberof FrameAction */ 'transaction'?: FrameTransaction; /** * The connected wallet address of the interacting user. * @type {string} * @memberof FrameAction */ 'address'?: string; /** * URL of the mini apps * @type {string} * @memberof FrameAction */ 'frames_url': string; /** * URL of the post to get the next mini app * @type {string} * @memberof FrameAction */ 'post_url': string; }