UNPKG

@neynar/nodejs-sdk

Version:

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

28 lines (27 loc) 1.45 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 { WebhookSubscriptionFiltersCast } from './webhook-subscription-filters-cast'; import type { WebhookSubscriptionFiltersFollow } from './webhook-subscription-filters-follow'; import type { WebhookSubscriptionFiltersReaction } from './webhook-subscription-filters-reaction'; import type { WebhookSubscriptionFiltersTrade } from './webhook-subscription-filters-trade'; import type { WebhookSubscriptionFiltersUserUpdated } from './webhook-subscription-filters-user-updated'; export interface WebhookSubscriptionFilters { 'cast.created'?: WebhookSubscriptionFiltersCast; 'cast.deleted'?: WebhookSubscriptionFiltersCast; 'follow.created'?: WebhookSubscriptionFiltersFollow; 'follow.deleted'?: WebhookSubscriptionFiltersFollow; 'reaction.created'?: WebhookSubscriptionFiltersReaction; 'reaction.deleted'?: WebhookSubscriptionFiltersReaction; 'trade.created'?: WebhookSubscriptionFiltersTrade; 'user.created'?: object; 'user.updated'?: WebhookSubscriptionFiltersUserUpdated; }