├── .github └── workflows │ └── publish-to-npm.yaml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── openapi-generator-config.json ├── openapitools.json ├── package.json ├── scripts └── generate-wrapper.ts ├── src ├── api │ ├── .gitignore │ ├── .npmignore │ ├── .openapi-generator-ignore │ ├── .openapi-generator │ │ ├── FILES │ │ └── VERSION │ ├── api.ts │ ├── apis │ │ ├── action-api.ts │ │ ├── agents-api.ts │ │ ├── app-host-api.ts │ │ ├── auth-address-api.ts │ │ ├── ban-api.ts │ │ ├── block-api.ts │ │ ├── cast-api.ts │ │ ├── channel-api.ts │ │ ├── feed-api.ts │ │ ├── fname-api.ts │ │ ├── follows-api.ts │ │ ├── frame-api.ts │ │ ├── login-api.ts │ │ ├── metrics-api.ts │ │ ├── mute-api.ts │ │ ├── notifications-api.ts │ │ ├── onchain-api.ts │ │ ├── reaction-api.ts │ │ ├── signer-api.ts │ │ ├── storage-api.ts │ │ ├── studio-api.ts │ │ ├── subscribers-api.ts │ │ ├── topic-api.ts │ │ ├── user-api.ts │ │ └── webhook-api.ts │ ├── base.ts │ ├── common.ts │ ├── configuration.ts │ ├── git_push.sh │ ├── index.ts │ └── models │ │ ├── add-verification-req-body.ts │ │ ├── address-balance-verified-address.ts │ │ ├── address-balance.ts │ │ ├── app-host-event-type.ts │ │ ├── app-host-get-event-response-notification-details.ts │ │ ├── app-host-get-event-response.ts │ │ ├── app-host-post-event-req-body.ts │ │ ├── app-host-post-event-response.ts │ │ ├── app-host-user-state-response-notifications-enabled-inner.ts │ │ ├── app-host-user-state-response.ts │ │ ├── associate-deployment-request-account-association.ts │ │ ├── associate-deployment-request.ts │ │ ├── associate-deployment200-response.ts │ │ ├── authorization-url-response.ts │ │ ├── balance-response-user-balance.ts │ │ ├── balance-response.ts │ │ ├── ban-list-response.ts │ │ ├── ban-record.ts │ │ ├── ban-req-body.ts │ │ ├── ban-response.ts │ │ ├── best-friends-response-users-inner.ts │ │ ├── best-friends-response.ts │ │ ├── block-list-response.ts │ │ ├── block-record.ts │ │ ├── block-req-body.ts │ │ ├── bulk-casts-response.ts │ │ ├── bulk-follow-response.ts │ │ ├── bulk-users-by-address-response.ts │ │ ├── bulk-users-response.ts │ │ ├── buy-storage-req-body.ts │ │ ├── cast-and-conversations-ref.ts │ │ ├── cast-and-conversations.ts │ │ ├── cast-dehydrated.ts │ │ ├── cast-embed-crawl-response.ts │ │ ├── cast-embedded-parent-author.ts │ │ ├── cast-embedded.ts │ │ ├── cast-notification-type.ts │ │ ├── cast-reactions.ts │ │ ├── cast-replies.ts │ │ ├── cast-response.ts │ │ ├── cast-viewer-context.ts │ │ ├── cast.ts │ │ ├── casts-metrics-response.ts │ │ ├── casts-metrics.ts │ │ ├── casts-response-result.ts │ │ ├── casts-response.ts │ │ ├── casts-search-response.ts │ │ ├── channel-activity.ts │ │ ├── channel-dehydrated.ts │ │ ├── channel-external-link.ts │ │ ├── channel-follow-req-body.ts │ │ ├── channel-list-response.ts │ │ ├── channel-member-channel.ts │ │ ├── channel-member-invite-list-response.ts │ │ ├── channel-member-invite.ts │ │ ├── channel-member-list-response.ts │ │ ├── channel-member-role.ts │ │ ├── channel-member-user.ts │ │ ├── channel-member.ts │ │ ├── channel-or-channel-dehydrated.ts │ │ ├── channel-response-bulk.ts │ │ ├── channel-response.ts │ │ ├── channel-search-response.ts │ │ ├── channel-user-context.ts │ │ ├── channel.ts │ │ ├── conflict-error-res.ts │ │ ├── conversation-conversation.ts │ │ ├── conversation-summary-summary.ts │ │ ├── conversation-summary.ts │ │ ├── conversation.ts │ │ ├── create-deployment-request.ts │ │ ├── delete-cast-req-body.ts │ │ ├── delete-deployment-request.ts │ │ ├── delete-deployment200-response.ts │ │ ├── deploy-fungible-response-contract-fungible.ts │ │ ├── deploy-fungible-response-contract.ts │ │ ├── deploy-fungible-response.ts │ │ ├── deploy-to-vercel-request.ts │ │ ├── deploy-to-vercel200-response.ts │ │ ├── deploy-to-vercel400-response.ts │ │ ├── developer-managed-signer.ts │ │ ├── embed-cast-deep-cast-id.ts │ │ ├── embed-cast-deep.ts │ │ ├── embed-cast.ts │ │ ├── embed-deep.ts │ │ ├── embed-url-metadata-image.ts │ │ ├── embed-url-metadata-video-stream-inner.ts │ │ ├── embed-url-metadata-video.ts │ │ ├── embed-url-metadata.ts │ │ ├── embed-url.ts │ │ ├── embed.ts │ │ ├── encoded-json-farcaster-signature.ts │ │ ├── error-res.ts │ │ ├── farcaster-action-req-body-action.ts │ │ ├── farcaster-action-req-body.ts │ │ ├── farcaster-fungible.ts │ │ ├── farcaster-manifest-frame.ts │ │ ├── farcaster-manifest.ts │ │ ├── feed-response.ts │ │ ├── fetch-cast-quotes200-response.ts │ │ ├── fetch-feed-for-you400-response.ts │ │ ├── fetch-fungible-trades200-response-trades-inner-pool.ts │ │ ├── fetch-fungible-trades200-response-trades-inner-transaction-net-transfer.ts │ │ ├── fetch-fungible-trades200-response-trades-inner-transaction-network.ts │ │ ├── fetch-fungible-trades200-response-trades-inner-transaction.ts │ │ ├── fetch-fungible-trades200-response-trades-inner.ts │ │ ├── fetch-fungible-trades200-response.ts │ │ ├── fetch-relevant-frames200-response-relevant-frames-inner-frame-metadata.ts │ │ ├── fetch-relevant-frames200-response-relevant-frames-inner-frame.ts │ │ ├── fetch-relevant-frames200-response-relevant-frames-inner.ts │ │ ├── fetch-relevant-frames200-response.ts │ │ ├── fetch-trending-fungibles200-response-trending-inner-fungible-price.ts │ │ ├── fetch-trending-fungibles200-response-trending-inner-fungible.ts │ │ ├── fetch-trending-fungibles200-response-trending-inner.ts │ │ ├── fetch-trending-fungibles200-response.ts │ │ ├── fetch-user-interactions200-response.ts │ │ ├── fetch-user-reciprocal-followers200-response.ts │ │ ├── fetch-verifications200-response.ts │ │ ├── fname-availability-response.ts │ │ ├── follow-req-body.ts │ │ ├── follow-response.ts │ │ ├── follower-dehydrated.ts │ │ ├── follower.ts │ │ ├── followers-response.ts │ │ ├── frame-action-button.ts │ │ ├── frame-button-action-type.ts │ │ ├── frame-catalog-response.ts │ │ ├── frame-notification-tokens-notification-tokens-inner.ts │ │ ├── frame-notification-tokens.ts │ │ ├── frame-pay-transaction-req-body-transaction.ts │ │ ├── frame-pay-transaction-req-body.ts │ │ ├── frame-v1-input.ts │ │ ├── frame-v1-state.ts │ │ ├── frame-v1.ts │ │ ├── frame-v2-with-full-author.ts │ │ ├── frame-v2.ts │ │ ├── frame.ts │ │ ├── fungible-balance-balance.ts │ │ ├── fungible-balance.ts │ │ ├── fungible.ts │ │ ├── fungibles-response-schema.ts │ │ ├── get-conversation-messages200-response-messages-inner.ts │ │ ├── get-conversation-messages200-response.ts │ │ ├── get-deployment-file200-response.ts │ │ ├── get-deployment-logs200-response.ts │ │ ├── get-notification-campaign-stats200-response.ts │ │ ├── html-metadata-oembed.ts │ │ ├── html-metadata.ts │ │ ├── image-object.ts │ │ ├── index.ts │ │ ├── invite-channel-member-req-body.ts │ │ ├── list-conversations200-response-conversations-inner.ts │ │ ├── list-conversations200-response.ts │ │ ├── list-deployment-files200-response-files-inner.ts │ │ ├── list-deployment-files200-response.ts │ │ ├── list-deployments200-response-inner-production-app-status.ts │ │ ├── list-deployments200-response-inner.ts │ │ ├── list-deployments400-response.ts │ │ ├── location-address.ts │ │ ├── location.ts │ │ ├── mark-notifications-as-seen-req-body.ts │ │ ├── mint-nft-request-recipients-inner.ts │ │ ├── mint-nft-request.ts │ │ ├── mint-nft200-response-transactions-inner-receipt.ts │ │ ├── mint-nft200-response-transactions-inner-recipient.ts │ │ ├── mint-nft200-response-transactions-inner.ts │ │ ├── mint-nft200-response.ts │ │ ├── mute-list-response.ts │ │ ├── mute-record.ts │ │ ├── mute-req-body.ts │ │ ├── mute-response.ts │ │ ├── network.ts │ │ ├── next-cursor.ts │ │ ├── nonce-response.ts │ │ ├── notification-campaign-stats-error-breakdown.ts │ │ ├── notification-campaign-stats.ts │ │ ├── notification-campaign.ts │ │ ├── notification-delivery.ts │ │ ├── notification-type.ts │ │ ├── notification.ts │ │ ├── notifications-response.ts │ │ ├── oembed-link-data.ts │ │ ├── oembed-photo-data.ts │ │ ├── oembed-rich-data.ts │ │ ├── oembed-video-data.ts │ │ ├── operation-response.ts │ │ ├── post-cast-req-body-embeds-cast-id-properties.ts │ │ ├── post-cast-req-body-embeds-one-of.ts │ │ ├── post-cast-req-body-embeds-one-of1.ts │ │ ├── post-cast-req-body-embeds-one-of2.ts │ │ ├── post-cast-req-body-embeds.ts │ │ ├── post-cast-req-body.ts │ │ ├── post-cast-response-cast-author.ts │ │ ├── post-cast-response-cast.ts │ │ ├── post-cast-response.ts │ │ ├── prompt-deployment-stream-request.ts │ │ ├── protocol.ts │ │ ├── reaction-for-cast.ts │ │ ├── reaction-like.ts │ │ ├── reaction-recast.ts │ │ ├── reaction-req-body.ts │ │ ├── reaction-type.ts │ │ ├── reaction-with-cast-info.ts │ │ ├── reaction-with-user-info.ts │ │ ├── reactions-cast-response.ts │ │ ├── reactions-response.ts │ │ ├── reciprocal-follower.ts │ │ ├── register-auth-address-developer-managed-signed-key-req-body.ts │ │ ├── register-developer-managed-signed-key-req-body.ts │ │ ├── register-signed-key-for-developer-managed-auth-address200-response.ts │ │ ├── register-signer-key-req-body.ts │ │ ├── register-user-on-chain-req-body-pre-registration-calls-inner.ts │ │ ├── register-user-on-chain-req-body-registration.ts │ │ ├── register-user-on-chain-req-body-signers-inner.ts │ │ ├── register-user-on-chain-req-body.ts │ │ ├── register-user-on-chain-response.ts │ │ ├── register-user-req-body-metadata.ts │ │ ├── register-user-req-body-signer.ts │ │ ├── register-user-req-body.ts │ │ ├── register-user-response-signers-inner.ts │ │ ├── register-user-response.ts │ │ ├── relevant-followers-response.ts │ │ ├── relevant-fungible-owners-response.ts │ │ ├── remove-channel-member-req-body.ts │ │ ├── remove-verification-req-body.ts │ │ ├── respond-channel-invite-req-body.ts │ │ ├── send-frame-notifications-req-body-filters-near-location.ts │ │ ├── send-frame-notifications-req-body-filters.ts │ │ ├── send-frame-notifications-req-body-notification.ts │ │ ├── send-frame-notifications-req-body.ts │ │ ├── send-frame-notifications-response.ts │ │ ├── shared-signer-permission.ts │ │ ├── signed-key-request-sponsor.ts │ │ ├── signed-message-body-signed-message.ts │ │ ├── signed-message-body.ts │ │ ├── signer-list-response.ts │ │ ├── signer-uuid-body.ts │ │ ├── signer.ts │ │ ├── simulate-nft-mint-response-inner.ts │ │ ├── simulate-nft-mint-response.ts │ │ ├── start-app-request.ts │ │ ├── start-app200-response.ts │ │ ├── storage-allocation.ts │ │ ├── storage-allocations-response.ts │ │ ├── storage-object.ts │ │ ├── storage-usage-response.ts │ │ ├── subscribed-to-object.ts │ │ ├── subscribed-to-response.ts │ │ ├── subscribed-to.ts │ │ ├── subscriber.ts │ │ ├── subscribers-response.ts │ │ ├── subscription-check-response-value.ts │ │ ├── subscription-check-response.ts │ │ ├── subscription-metadata.ts │ │ ├── subscription-price.ts │ │ ├── subscription-tier-price.ts │ │ ├── subscription-tier.ts │ │ ├── subscription-token.ts │ │ ├── subscription.ts │ │ ├── subscriptions-response.ts │ │ ├── subscriptions.ts │ │ ├── text-range.ts │ │ ├── token-balance-balance.ts │ │ ├── token-balance-token.ts │ │ ├── token-balance.ts │ │ ├── transaction-frame-action.ts │ │ ├── transaction-frame-config.ts │ │ ├── transaction-frame-destination.ts │ │ ├── transaction-frame-line-item.ts │ │ ├── transaction-frame-pay.ts │ │ ├── transaction-frame-response.ts │ │ ├── transaction-frame-status.ts │ │ ├── transaction-frame-type.ts │ │ ├── transaction-frame.ts │ │ ├── transaction-send-fungibles-receipt.ts │ │ ├── transaction-send-fungibles-recipient.ts │ │ ├── transaction-send-fungibles-req-body.ts │ │ ├── transaction-send-fungibles-response.ts │ │ ├── transaction-send-tx-info.ts │ │ ├── trending-channel-response.ts │ │ ├── trending-topic.ts │ │ ├── trending-topics-response.ts │ │ ├── update-user-req-body-location.ts │ │ ├── update-user-req-body-verified-accounts.ts │ │ ├── update-user-req-body.ts │ │ ├── update-user207-response-errors-inner.ts │ │ ├── update-user207-response.ts │ │ ├── upload-image-url-request.ts │ │ ├── upload-image200-response.ts │ │ ├── user-auth-addresses-inner.ts │ │ ├── user-dehydrated.ts │ │ ├── user-experimental.ts │ │ ├── user-fidresponse.ts │ │ ├── user-power-lite-response-result.ts │ │ ├── user-power-lite-response.ts │ │ ├── user-pro.ts │ │ ├── user-profile-banner.ts │ │ ├── user-profile-bio.ts │ │ ├── user-profile.ts │ │ ├── user-response.ts │ │ ├── user-search-response-result.ts │ │ ├── user-search-response.ts │ │ ├── user-verified-accounts-inner.ts │ │ ├── user-verified-addresses-primary.ts │ │ ├── user-verified-addresses.ts │ │ ├── user-viewer-context.ts │ │ ├── user.ts │ │ ├── users-active-channels-response.ts │ │ ├── users-response.ts │ │ ├── vercel-deployment-logs200-response-logs-inner.ts │ │ ├── vercel-deployment-logs200-response.ts │ │ ├── vercel-deployment-status200-response.ts │ │ ├── verification-chain-id.ts │ │ ├── verification-type.ts │ │ ├── verification.ts │ │ ├── video-object.ts │ │ ├── webhook-delete-req-body.ts │ │ ├── webhook-list-response.ts │ │ ├── webhook-patch-req-body.ts │ │ ├── webhook-post-req-body.ts │ │ ├── webhook-put-req-body.ts │ │ ├── webhook-response.ts │ │ ├── webhook-secret.ts │ │ ├── webhook-subscription-filters-cast.ts │ │ ├── webhook-subscription-filters-follow.ts │ │ ├── webhook-subscription-filters-reaction.ts │ │ ├── webhook-subscription-filters-trade.ts │ │ ├── webhook-subscription-filters-user-updated.ts │ │ ├── webhook-subscription-filters.ts │ │ ├── webhook-subscription.ts │ │ ├── webhook.ts │ │ ├── zod-error-errors-inner.ts │ │ └── zod-error.ts ├── clients │ ├── NeynarAPIClient.ts │ ├── NeynarHubClient.ts │ ├── configuration.ts │ └── index.ts ├── common │ ├── constants.ts │ └── logger.ts ├── hub-api │ ├── .gitignore │ ├── .npmignore │ ├── .openapi-generator-ignore │ ├── .openapi-generator │ │ ├── FILES │ │ └── VERSION │ ├── api.ts │ ├── apis │ │ ├── casts-api.ts │ │ ├── fids-api.ts │ │ ├── hub-events-api.ts │ │ ├── info-api.ts │ │ ├── links-api.ts │ │ ├── message-api.ts │ │ ├── on-chain-events-api.ts │ │ ├── reactions-api.ts │ │ ├── storage-api.ts │ │ ├── user-data-api.ts │ │ ├── usernames-api.ts │ │ └── verifications-api.ts │ ├── base.ts │ ├── common.ts │ ├── configuration.ts │ ├── git_push.sh │ ├── index.ts │ └── models │ │ ├── cast-add-all-of-data-all-of.ts │ │ ├── cast-add-all-of-data.ts │ │ ├── cast-add-all-of.ts │ │ ├── cast-add-body.ts │ │ ├── cast-add.ts │ │ ├── cast-embed.ts │ │ ├── cast-id.ts │ │ ├── db-stats.ts │ │ ├── embed.ts │ │ ├── error-response-metadata.ts │ │ ├── error-response.ts │ │ ├── farcaster-network.ts │ │ ├── fetch-cast-reactions200-response-all-of.ts │ │ ├── fetch-cast-reactions200-response.ts │ │ ├── fetch-casts-by-parent200-response-all-of.ts │ │ ├── fetch-casts-by-parent200-response.ts │ │ ├── fetch-events200-response.ts │ │ ├── fetch-user-data200-response-one-of-all-of.ts │ │ ├── fetch-user-data200-response-one-of.ts │ │ ├── fetch-user-data200-response.ts │ │ ├── fetch-user-following200-response-all-of.ts │ │ ├── fetch-user-following200-response.ts │ │ ├── fetch-user-on-chain-events200-response.ts │ │ ├── fetch-user-on-chain-signers-events200-response-one-of.ts │ │ ├── fetch-user-on-chain-signers-events200-response.ts │ │ ├── fetch-users-casts200-response-all-of.ts │ │ ├── fetch-users-casts200-response.ts │ │ ├── fetch-verifications-by-fid200-response.ts │ │ ├── fids-response-all-of.ts │ │ ├── fids-response.ts │ │ ├── frame-action-body.ts │ │ ├── hash-scheme.ts │ │ ├── hub-event-merge-message.ts │ │ ├── hub-event-merge-on-chain-event.ts │ │ ├── hub-event-merge-username-proof.ts │ │ ├── hub-event-prune-message.ts │ │ ├── hub-event-revoke-message.ts │ │ ├── hub-event.ts │ │ ├── hub-info-response.ts │ │ ├── id-register-event-body.ts │ │ ├── id-register-event-type.ts │ │ ├── index.ts │ │ ├── link-add-all-of-data.ts │ │ ├── link-add-all-of.ts │ │ ├── link-add.ts │ │ ├── link-body.ts │ │ ├── link-type.ts │ │ ├── merge-message-body.ts │ │ ├── merge-on-chain-event-body.ts │ │ ├── merge-user-name-proof-body.ts │ │ ├── message-all-of-data.ts │ │ ├── message-all-of.ts │ │ ├── message-common.ts │ │ ├── message-data-cast-add-all-of.ts │ │ ├── message-data-cast-add.ts │ │ ├── message-data-cast-remove-all-of.ts │ │ ├── message-data-cast-remove.ts │ │ ├── message-data-common.ts │ │ ├── message-data-frame-action-all-of.ts │ │ ├── message-data-frame-action.ts │ │ ├── message-data-link-all-of.ts │ │ ├── message-data-link.ts │ │ ├── message-data-reaction-all-of.ts │ │ ├── message-data-reaction.ts │ │ ├── message-data-user-data-add-all-of.ts │ │ ├── message-data-user-data-add.ts │ │ ├── message-data-username-proof-all-of.ts │ │ ├── message-data-username-proof.ts │ │ ├── message-data-verification-add-all-of.ts │ │ ├── message-data-verification-add.ts │ │ ├── message-data-verification-remove-all-of.ts │ │ ├── message-data-verification-remove.ts │ │ ├── message-type.ts │ │ ├── message.ts │ │ ├── on-chain-event-common.ts │ │ ├── on-chain-event-id-register-all-of.ts │ │ ├── on-chain-event-id-register.ts │ │ ├── on-chain-event-signer-all-of.ts │ │ ├── on-chain-event-signer-migrated-all-of.ts │ │ ├── on-chain-event-signer-migrated.ts │ │ ├── on-chain-event-signer.ts │ │ ├── on-chain-event-storage-rent-all-of.ts │ │ ├── on-chain-event-storage-rent.ts │ │ ├── on-chain-event-type.ts │ │ ├── on-chain-event.ts │ │ ├── pagination-response.ts │ │ ├── prune-message-body.ts │ │ ├── reaction-all-of-data.ts │ │ ├── reaction-all-of.ts │ │ ├── reaction-body.ts │ │ ├── reaction-type.ts │ │ ├── reaction.ts │ │ ├── revoke-message-body.ts │ │ ├── signature-scheme.ts │ │ ├── signer-event-body.ts │ │ ├── signer-event-type.ts │ │ ├── signer-migrated-event-body.ts │ │ ├── storage-limit.ts │ │ ├── storage-limits-response-tier-subscriptions-inner.ts │ │ ├── storage-limits-response-unit-details.ts │ │ ├── storage-limits-response.ts │ │ ├── storage-rent-event-body.ts │ │ ├── store-type.ts │ │ ├── url-embed.ts │ │ ├── user-data-add-all-of-data.ts │ │ ├── user-data-add-all-of.ts │ │ ├── user-data-add.ts │ │ ├── user-data-body.ts │ │ ├── user-data-type.ts │ │ ├── user-name-proof.ts │ │ ├── user-name-type.ts │ │ ├── username-proofs-response.ts │ │ ├── validate-message-response.ts │ │ ├── verification-add-eth-address-body.ts │ │ ├── verification-all-of-data.ts │ │ ├── verification-all-of.ts │ │ ├── verification-remove-body.ts │ │ └── verification.ts ├── index.ts ├── types │ ├── index.ts │ └── webhooks.ts └── utils │ ├── index.ts │ └── is-api-error-response.ts ├── templates ├── apiInner.mustache └── configuration.mustache ├── tsconfig.json ├── tsconfig.scripts.json ├── v1-to-v2-migration.md └── yarn.lock /.github/workflows/publish-to-npm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/.github/workflows/publish-to-npm.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/README.md -------------------------------------------------------------------------------- /openapi-generator-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/openapi-generator-config.json -------------------------------------------------------------------------------- /openapitools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/openapitools.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/package.json -------------------------------------------------------------------------------- /scripts/generate-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/scripts/generate-wrapper.ts -------------------------------------------------------------------------------- /src/api/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /src/api/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/.npmignore -------------------------------------------------------------------------------- /src/api/.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/.openapi-generator-ignore -------------------------------------------------------------------------------- /src/api/.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/.openapi-generator/FILES -------------------------------------------------------------------------------- /src/api/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.9.0 2 | -------------------------------------------------------------------------------- /src/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/api.ts -------------------------------------------------------------------------------- /src/api/apis/action-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/action-api.ts -------------------------------------------------------------------------------- /src/api/apis/agents-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/agents-api.ts -------------------------------------------------------------------------------- /src/api/apis/app-host-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/app-host-api.ts -------------------------------------------------------------------------------- /src/api/apis/auth-address-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/auth-address-api.ts -------------------------------------------------------------------------------- /src/api/apis/ban-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/ban-api.ts -------------------------------------------------------------------------------- /src/api/apis/block-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/block-api.ts -------------------------------------------------------------------------------- /src/api/apis/cast-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/cast-api.ts -------------------------------------------------------------------------------- /src/api/apis/channel-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/channel-api.ts -------------------------------------------------------------------------------- /src/api/apis/feed-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/feed-api.ts -------------------------------------------------------------------------------- /src/api/apis/fname-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/fname-api.ts -------------------------------------------------------------------------------- /src/api/apis/follows-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/follows-api.ts -------------------------------------------------------------------------------- /src/api/apis/frame-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/frame-api.ts -------------------------------------------------------------------------------- /src/api/apis/login-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/login-api.ts -------------------------------------------------------------------------------- /src/api/apis/metrics-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/metrics-api.ts -------------------------------------------------------------------------------- /src/api/apis/mute-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/mute-api.ts -------------------------------------------------------------------------------- /src/api/apis/notifications-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/notifications-api.ts -------------------------------------------------------------------------------- /src/api/apis/onchain-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/onchain-api.ts -------------------------------------------------------------------------------- /src/api/apis/reaction-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/reaction-api.ts -------------------------------------------------------------------------------- /src/api/apis/signer-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/signer-api.ts -------------------------------------------------------------------------------- /src/api/apis/storage-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/storage-api.ts -------------------------------------------------------------------------------- /src/api/apis/studio-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/studio-api.ts -------------------------------------------------------------------------------- /src/api/apis/subscribers-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/subscribers-api.ts -------------------------------------------------------------------------------- /src/api/apis/topic-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/topic-api.ts -------------------------------------------------------------------------------- /src/api/apis/user-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/user-api.ts -------------------------------------------------------------------------------- /src/api/apis/webhook-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/apis/webhook-api.ts -------------------------------------------------------------------------------- /src/api/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/base.ts -------------------------------------------------------------------------------- /src/api/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/common.ts -------------------------------------------------------------------------------- /src/api/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/configuration.ts -------------------------------------------------------------------------------- /src/api/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/git_push.sh -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/models/add-verification-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/add-verification-req-body.ts -------------------------------------------------------------------------------- /src/api/models/address-balance-verified-address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/address-balance-verified-address.ts -------------------------------------------------------------------------------- /src/api/models/address-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/address-balance.ts -------------------------------------------------------------------------------- /src/api/models/app-host-event-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/app-host-event-type.ts -------------------------------------------------------------------------------- /src/api/models/app-host-get-event-response-notification-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/app-host-get-event-response-notification-details.ts -------------------------------------------------------------------------------- /src/api/models/app-host-get-event-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/app-host-get-event-response.ts -------------------------------------------------------------------------------- /src/api/models/app-host-post-event-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/app-host-post-event-req-body.ts -------------------------------------------------------------------------------- /src/api/models/app-host-post-event-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/app-host-post-event-response.ts -------------------------------------------------------------------------------- /src/api/models/app-host-user-state-response-notifications-enabled-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/app-host-user-state-response-notifications-enabled-inner.ts -------------------------------------------------------------------------------- /src/api/models/app-host-user-state-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/app-host-user-state-response.ts -------------------------------------------------------------------------------- /src/api/models/associate-deployment-request-account-association.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/associate-deployment-request-account-association.ts -------------------------------------------------------------------------------- /src/api/models/associate-deployment-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/associate-deployment-request.ts -------------------------------------------------------------------------------- /src/api/models/associate-deployment200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/associate-deployment200-response.ts -------------------------------------------------------------------------------- /src/api/models/authorization-url-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/authorization-url-response.ts -------------------------------------------------------------------------------- /src/api/models/balance-response-user-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/balance-response-user-balance.ts -------------------------------------------------------------------------------- /src/api/models/balance-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/balance-response.ts -------------------------------------------------------------------------------- /src/api/models/ban-list-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/ban-list-response.ts -------------------------------------------------------------------------------- /src/api/models/ban-record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/ban-record.ts -------------------------------------------------------------------------------- /src/api/models/ban-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/ban-req-body.ts -------------------------------------------------------------------------------- /src/api/models/ban-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/ban-response.ts -------------------------------------------------------------------------------- /src/api/models/best-friends-response-users-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/best-friends-response-users-inner.ts -------------------------------------------------------------------------------- /src/api/models/best-friends-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/best-friends-response.ts -------------------------------------------------------------------------------- /src/api/models/block-list-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/block-list-response.ts -------------------------------------------------------------------------------- /src/api/models/block-record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/block-record.ts -------------------------------------------------------------------------------- /src/api/models/block-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/block-req-body.ts -------------------------------------------------------------------------------- /src/api/models/bulk-casts-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/bulk-casts-response.ts -------------------------------------------------------------------------------- /src/api/models/bulk-follow-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/bulk-follow-response.ts -------------------------------------------------------------------------------- /src/api/models/bulk-users-by-address-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/bulk-users-by-address-response.ts -------------------------------------------------------------------------------- /src/api/models/bulk-users-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/bulk-users-response.ts -------------------------------------------------------------------------------- /src/api/models/buy-storage-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/buy-storage-req-body.ts -------------------------------------------------------------------------------- /src/api/models/cast-and-conversations-ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/cast-and-conversations-ref.ts -------------------------------------------------------------------------------- /src/api/models/cast-and-conversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/cast-and-conversations.ts -------------------------------------------------------------------------------- /src/api/models/cast-dehydrated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/cast-dehydrated.ts -------------------------------------------------------------------------------- /src/api/models/cast-embed-crawl-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/cast-embed-crawl-response.ts -------------------------------------------------------------------------------- /src/api/models/cast-embedded-parent-author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/cast-embedded-parent-author.ts -------------------------------------------------------------------------------- /src/api/models/cast-embedded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/cast-embedded.ts -------------------------------------------------------------------------------- /src/api/models/cast-notification-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/cast-notification-type.ts -------------------------------------------------------------------------------- /src/api/models/cast-reactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/cast-reactions.ts -------------------------------------------------------------------------------- /src/api/models/cast-replies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/cast-replies.ts -------------------------------------------------------------------------------- /src/api/models/cast-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/cast-response.ts -------------------------------------------------------------------------------- /src/api/models/cast-viewer-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/cast-viewer-context.ts -------------------------------------------------------------------------------- /src/api/models/cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/cast.ts -------------------------------------------------------------------------------- /src/api/models/casts-metrics-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/casts-metrics-response.ts -------------------------------------------------------------------------------- /src/api/models/casts-metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/casts-metrics.ts -------------------------------------------------------------------------------- /src/api/models/casts-response-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/casts-response-result.ts -------------------------------------------------------------------------------- /src/api/models/casts-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/casts-response.ts -------------------------------------------------------------------------------- /src/api/models/casts-search-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/casts-search-response.ts -------------------------------------------------------------------------------- /src/api/models/channel-activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-activity.ts -------------------------------------------------------------------------------- /src/api/models/channel-dehydrated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-dehydrated.ts -------------------------------------------------------------------------------- /src/api/models/channel-external-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-external-link.ts -------------------------------------------------------------------------------- /src/api/models/channel-follow-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-follow-req-body.ts -------------------------------------------------------------------------------- /src/api/models/channel-list-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-list-response.ts -------------------------------------------------------------------------------- /src/api/models/channel-member-channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-member-channel.ts -------------------------------------------------------------------------------- /src/api/models/channel-member-invite-list-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-member-invite-list-response.ts -------------------------------------------------------------------------------- /src/api/models/channel-member-invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-member-invite.ts -------------------------------------------------------------------------------- /src/api/models/channel-member-list-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-member-list-response.ts -------------------------------------------------------------------------------- /src/api/models/channel-member-role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-member-role.ts -------------------------------------------------------------------------------- /src/api/models/channel-member-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-member-user.ts -------------------------------------------------------------------------------- /src/api/models/channel-member.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-member.ts -------------------------------------------------------------------------------- /src/api/models/channel-or-channel-dehydrated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-or-channel-dehydrated.ts -------------------------------------------------------------------------------- /src/api/models/channel-response-bulk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-response-bulk.ts -------------------------------------------------------------------------------- /src/api/models/channel-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-response.ts -------------------------------------------------------------------------------- /src/api/models/channel-search-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-search-response.ts -------------------------------------------------------------------------------- /src/api/models/channel-user-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel-user-context.ts -------------------------------------------------------------------------------- /src/api/models/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/channel.ts -------------------------------------------------------------------------------- /src/api/models/conflict-error-res.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/conflict-error-res.ts -------------------------------------------------------------------------------- /src/api/models/conversation-conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/conversation-conversation.ts -------------------------------------------------------------------------------- /src/api/models/conversation-summary-summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/conversation-summary-summary.ts -------------------------------------------------------------------------------- /src/api/models/conversation-summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/conversation-summary.ts -------------------------------------------------------------------------------- /src/api/models/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/conversation.ts -------------------------------------------------------------------------------- /src/api/models/create-deployment-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/create-deployment-request.ts -------------------------------------------------------------------------------- /src/api/models/delete-cast-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/delete-cast-req-body.ts -------------------------------------------------------------------------------- /src/api/models/delete-deployment-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/delete-deployment-request.ts -------------------------------------------------------------------------------- /src/api/models/delete-deployment200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/delete-deployment200-response.ts -------------------------------------------------------------------------------- /src/api/models/deploy-fungible-response-contract-fungible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/deploy-fungible-response-contract-fungible.ts -------------------------------------------------------------------------------- /src/api/models/deploy-fungible-response-contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/deploy-fungible-response-contract.ts -------------------------------------------------------------------------------- /src/api/models/deploy-fungible-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/deploy-fungible-response.ts -------------------------------------------------------------------------------- /src/api/models/deploy-to-vercel-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/deploy-to-vercel-request.ts -------------------------------------------------------------------------------- /src/api/models/deploy-to-vercel200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/deploy-to-vercel200-response.ts -------------------------------------------------------------------------------- /src/api/models/deploy-to-vercel400-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/deploy-to-vercel400-response.ts -------------------------------------------------------------------------------- /src/api/models/developer-managed-signer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/developer-managed-signer.ts -------------------------------------------------------------------------------- /src/api/models/embed-cast-deep-cast-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/embed-cast-deep-cast-id.ts -------------------------------------------------------------------------------- /src/api/models/embed-cast-deep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/embed-cast-deep.ts -------------------------------------------------------------------------------- /src/api/models/embed-cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/embed-cast.ts -------------------------------------------------------------------------------- /src/api/models/embed-deep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/embed-deep.ts -------------------------------------------------------------------------------- /src/api/models/embed-url-metadata-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/embed-url-metadata-image.ts -------------------------------------------------------------------------------- /src/api/models/embed-url-metadata-video-stream-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/embed-url-metadata-video-stream-inner.ts -------------------------------------------------------------------------------- /src/api/models/embed-url-metadata-video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/embed-url-metadata-video.ts -------------------------------------------------------------------------------- /src/api/models/embed-url-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/embed-url-metadata.ts -------------------------------------------------------------------------------- /src/api/models/embed-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/embed-url.ts -------------------------------------------------------------------------------- /src/api/models/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/embed.ts -------------------------------------------------------------------------------- /src/api/models/encoded-json-farcaster-signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/encoded-json-farcaster-signature.ts -------------------------------------------------------------------------------- /src/api/models/error-res.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/error-res.ts -------------------------------------------------------------------------------- /src/api/models/farcaster-action-req-body-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/farcaster-action-req-body-action.ts -------------------------------------------------------------------------------- /src/api/models/farcaster-action-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/farcaster-action-req-body.ts -------------------------------------------------------------------------------- /src/api/models/farcaster-fungible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/farcaster-fungible.ts -------------------------------------------------------------------------------- /src/api/models/farcaster-manifest-frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/farcaster-manifest-frame.ts -------------------------------------------------------------------------------- /src/api/models/farcaster-manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/farcaster-manifest.ts -------------------------------------------------------------------------------- /src/api/models/feed-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/feed-response.ts -------------------------------------------------------------------------------- /src/api/models/fetch-cast-quotes200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-cast-quotes200-response.ts -------------------------------------------------------------------------------- /src/api/models/fetch-feed-for-you400-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-feed-for-you400-response.ts -------------------------------------------------------------------------------- /src/api/models/fetch-fungible-trades200-response-trades-inner-pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-fungible-trades200-response-trades-inner-pool.ts -------------------------------------------------------------------------------- /src/api/models/fetch-fungible-trades200-response-trades-inner-transaction-net-transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-fungible-trades200-response-trades-inner-transaction-net-transfer.ts -------------------------------------------------------------------------------- /src/api/models/fetch-fungible-trades200-response-trades-inner-transaction-network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-fungible-trades200-response-trades-inner-transaction-network.ts -------------------------------------------------------------------------------- /src/api/models/fetch-fungible-trades200-response-trades-inner-transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-fungible-trades200-response-trades-inner-transaction.ts -------------------------------------------------------------------------------- /src/api/models/fetch-fungible-trades200-response-trades-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-fungible-trades200-response-trades-inner.ts -------------------------------------------------------------------------------- /src/api/models/fetch-fungible-trades200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-fungible-trades200-response.ts -------------------------------------------------------------------------------- /src/api/models/fetch-relevant-frames200-response-relevant-frames-inner-frame-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-relevant-frames200-response-relevant-frames-inner-frame-metadata.ts -------------------------------------------------------------------------------- /src/api/models/fetch-relevant-frames200-response-relevant-frames-inner-frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-relevant-frames200-response-relevant-frames-inner-frame.ts -------------------------------------------------------------------------------- /src/api/models/fetch-relevant-frames200-response-relevant-frames-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-relevant-frames200-response-relevant-frames-inner.ts -------------------------------------------------------------------------------- /src/api/models/fetch-relevant-frames200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-relevant-frames200-response.ts -------------------------------------------------------------------------------- /src/api/models/fetch-trending-fungibles200-response-trending-inner-fungible-price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-trending-fungibles200-response-trending-inner-fungible-price.ts -------------------------------------------------------------------------------- /src/api/models/fetch-trending-fungibles200-response-trending-inner-fungible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-trending-fungibles200-response-trending-inner-fungible.ts -------------------------------------------------------------------------------- /src/api/models/fetch-trending-fungibles200-response-trending-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-trending-fungibles200-response-trending-inner.ts -------------------------------------------------------------------------------- /src/api/models/fetch-trending-fungibles200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-trending-fungibles200-response.ts -------------------------------------------------------------------------------- /src/api/models/fetch-user-interactions200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-user-interactions200-response.ts -------------------------------------------------------------------------------- /src/api/models/fetch-user-reciprocal-followers200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-user-reciprocal-followers200-response.ts -------------------------------------------------------------------------------- /src/api/models/fetch-verifications200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fetch-verifications200-response.ts -------------------------------------------------------------------------------- /src/api/models/fname-availability-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fname-availability-response.ts -------------------------------------------------------------------------------- /src/api/models/follow-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/follow-req-body.ts -------------------------------------------------------------------------------- /src/api/models/follow-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/follow-response.ts -------------------------------------------------------------------------------- /src/api/models/follower-dehydrated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/follower-dehydrated.ts -------------------------------------------------------------------------------- /src/api/models/follower.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/follower.ts -------------------------------------------------------------------------------- /src/api/models/followers-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/followers-response.ts -------------------------------------------------------------------------------- /src/api/models/frame-action-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/frame-action-button.ts -------------------------------------------------------------------------------- /src/api/models/frame-button-action-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/frame-button-action-type.ts -------------------------------------------------------------------------------- /src/api/models/frame-catalog-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/frame-catalog-response.ts -------------------------------------------------------------------------------- /src/api/models/frame-notification-tokens-notification-tokens-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/frame-notification-tokens-notification-tokens-inner.ts -------------------------------------------------------------------------------- /src/api/models/frame-notification-tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/frame-notification-tokens.ts -------------------------------------------------------------------------------- /src/api/models/frame-pay-transaction-req-body-transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/frame-pay-transaction-req-body-transaction.ts -------------------------------------------------------------------------------- /src/api/models/frame-pay-transaction-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/frame-pay-transaction-req-body.ts -------------------------------------------------------------------------------- /src/api/models/frame-v1-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/frame-v1-input.ts -------------------------------------------------------------------------------- /src/api/models/frame-v1-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/frame-v1-state.ts -------------------------------------------------------------------------------- /src/api/models/frame-v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/frame-v1.ts -------------------------------------------------------------------------------- /src/api/models/frame-v2-with-full-author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/frame-v2-with-full-author.ts -------------------------------------------------------------------------------- /src/api/models/frame-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/frame-v2.ts -------------------------------------------------------------------------------- /src/api/models/frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/frame.ts -------------------------------------------------------------------------------- /src/api/models/fungible-balance-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fungible-balance-balance.ts -------------------------------------------------------------------------------- /src/api/models/fungible-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fungible-balance.ts -------------------------------------------------------------------------------- /src/api/models/fungible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fungible.ts -------------------------------------------------------------------------------- /src/api/models/fungibles-response-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/fungibles-response-schema.ts -------------------------------------------------------------------------------- /src/api/models/get-conversation-messages200-response-messages-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/get-conversation-messages200-response-messages-inner.ts -------------------------------------------------------------------------------- /src/api/models/get-conversation-messages200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/get-conversation-messages200-response.ts -------------------------------------------------------------------------------- /src/api/models/get-deployment-file200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/get-deployment-file200-response.ts -------------------------------------------------------------------------------- /src/api/models/get-deployment-logs200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/get-deployment-logs200-response.ts -------------------------------------------------------------------------------- /src/api/models/get-notification-campaign-stats200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/get-notification-campaign-stats200-response.ts -------------------------------------------------------------------------------- /src/api/models/html-metadata-oembed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/html-metadata-oembed.ts -------------------------------------------------------------------------------- /src/api/models/html-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/html-metadata.ts -------------------------------------------------------------------------------- /src/api/models/image-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/image-object.ts -------------------------------------------------------------------------------- /src/api/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/index.ts -------------------------------------------------------------------------------- /src/api/models/invite-channel-member-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/invite-channel-member-req-body.ts -------------------------------------------------------------------------------- /src/api/models/list-conversations200-response-conversations-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/list-conversations200-response-conversations-inner.ts -------------------------------------------------------------------------------- /src/api/models/list-conversations200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/list-conversations200-response.ts -------------------------------------------------------------------------------- /src/api/models/list-deployment-files200-response-files-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/list-deployment-files200-response-files-inner.ts -------------------------------------------------------------------------------- /src/api/models/list-deployment-files200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/list-deployment-files200-response.ts -------------------------------------------------------------------------------- /src/api/models/list-deployments200-response-inner-production-app-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/list-deployments200-response-inner-production-app-status.ts -------------------------------------------------------------------------------- /src/api/models/list-deployments200-response-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/list-deployments200-response-inner.ts -------------------------------------------------------------------------------- /src/api/models/list-deployments400-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/list-deployments400-response.ts -------------------------------------------------------------------------------- /src/api/models/location-address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/location-address.ts -------------------------------------------------------------------------------- /src/api/models/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/location.ts -------------------------------------------------------------------------------- /src/api/models/mark-notifications-as-seen-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/mark-notifications-as-seen-req-body.ts -------------------------------------------------------------------------------- /src/api/models/mint-nft-request-recipients-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/mint-nft-request-recipients-inner.ts -------------------------------------------------------------------------------- /src/api/models/mint-nft-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/mint-nft-request.ts -------------------------------------------------------------------------------- /src/api/models/mint-nft200-response-transactions-inner-receipt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/mint-nft200-response-transactions-inner-receipt.ts -------------------------------------------------------------------------------- /src/api/models/mint-nft200-response-transactions-inner-recipient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/mint-nft200-response-transactions-inner-recipient.ts -------------------------------------------------------------------------------- /src/api/models/mint-nft200-response-transactions-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/mint-nft200-response-transactions-inner.ts -------------------------------------------------------------------------------- /src/api/models/mint-nft200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/mint-nft200-response.ts -------------------------------------------------------------------------------- /src/api/models/mute-list-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/mute-list-response.ts -------------------------------------------------------------------------------- /src/api/models/mute-record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/mute-record.ts -------------------------------------------------------------------------------- /src/api/models/mute-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/mute-req-body.ts -------------------------------------------------------------------------------- /src/api/models/mute-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/mute-response.ts -------------------------------------------------------------------------------- /src/api/models/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/network.ts -------------------------------------------------------------------------------- /src/api/models/next-cursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/next-cursor.ts -------------------------------------------------------------------------------- /src/api/models/nonce-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/nonce-response.ts -------------------------------------------------------------------------------- /src/api/models/notification-campaign-stats-error-breakdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/notification-campaign-stats-error-breakdown.ts -------------------------------------------------------------------------------- /src/api/models/notification-campaign-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/notification-campaign-stats.ts -------------------------------------------------------------------------------- /src/api/models/notification-campaign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/notification-campaign.ts -------------------------------------------------------------------------------- /src/api/models/notification-delivery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/notification-delivery.ts -------------------------------------------------------------------------------- /src/api/models/notification-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/notification-type.ts -------------------------------------------------------------------------------- /src/api/models/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/notification.ts -------------------------------------------------------------------------------- /src/api/models/notifications-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/notifications-response.ts -------------------------------------------------------------------------------- /src/api/models/oembed-link-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/oembed-link-data.ts -------------------------------------------------------------------------------- /src/api/models/oembed-photo-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/oembed-photo-data.ts -------------------------------------------------------------------------------- /src/api/models/oembed-rich-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/oembed-rich-data.ts -------------------------------------------------------------------------------- /src/api/models/oembed-video-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/oembed-video-data.ts -------------------------------------------------------------------------------- /src/api/models/operation-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/operation-response.ts -------------------------------------------------------------------------------- /src/api/models/post-cast-req-body-embeds-cast-id-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/post-cast-req-body-embeds-cast-id-properties.ts -------------------------------------------------------------------------------- /src/api/models/post-cast-req-body-embeds-one-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/post-cast-req-body-embeds-one-of.ts -------------------------------------------------------------------------------- /src/api/models/post-cast-req-body-embeds-one-of1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/post-cast-req-body-embeds-one-of1.ts -------------------------------------------------------------------------------- /src/api/models/post-cast-req-body-embeds-one-of2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/post-cast-req-body-embeds-one-of2.ts -------------------------------------------------------------------------------- /src/api/models/post-cast-req-body-embeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/post-cast-req-body-embeds.ts -------------------------------------------------------------------------------- /src/api/models/post-cast-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/post-cast-req-body.ts -------------------------------------------------------------------------------- /src/api/models/post-cast-response-cast-author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/post-cast-response-cast-author.ts -------------------------------------------------------------------------------- /src/api/models/post-cast-response-cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/post-cast-response-cast.ts -------------------------------------------------------------------------------- /src/api/models/post-cast-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/post-cast-response.ts -------------------------------------------------------------------------------- /src/api/models/prompt-deployment-stream-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/prompt-deployment-stream-request.ts -------------------------------------------------------------------------------- /src/api/models/protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/protocol.ts -------------------------------------------------------------------------------- /src/api/models/reaction-for-cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/reaction-for-cast.ts -------------------------------------------------------------------------------- /src/api/models/reaction-like.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/reaction-like.ts -------------------------------------------------------------------------------- /src/api/models/reaction-recast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/reaction-recast.ts -------------------------------------------------------------------------------- /src/api/models/reaction-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/reaction-req-body.ts -------------------------------------------------------------------------------- /src/api/models/reaction-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/reaction-type.ts -------------------------------------------------------------------------------- /src/api/models/reaction-with-cast-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/reaction-with-cast-info.ts -------------------------------------------------------------------------------- /src/api/models/reaction-with-user-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/reaction-with-user-info.ts -------------------------------------------------------------------------------- /src/api/models/reactions-cast-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/reactions-cast-response.ts -------------------------------------------------------------------------------- /src/api/models/reactions-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/reactions-response.ts -------------------------------------------------------------------------------- /src/api/models/reciprocal-follower.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/reciprocal-follower.ts -------------------------------------------------------------------------------- /src/api/models/register-auth-address-developer-managed-signed-key-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/register-auth-address-developer-managed-signed-key-req-body.ts -------------------------------------------------------------------------------- /src/api/models/register-developer-managed-signed-key-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/register-developer-managed-signed-key-req-body.ts -------------------------------------------------------------------------------- /src/api/models/register-signed-key-for-developer-managed-auth-address200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/register-signed-key-for-developer-managed-auth-address200-response.ts -------------------------------------------------------------------------------- /src/api/models/register-signer-key-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/register-signer-key-req-body.ts -------------------------------------------------------------------------------- /src/api/models/register-user-on-chain-req-body-pre-registration-calls-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/register-user-on-chain-req-body-pre-registration-calls-inner.ts -------------------------------------------------------------------------------- /src/api/models/register-user-on-chain-req-body-registration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/register-user-on-chain-req-body-registration.ts -------------------------------------------------------------------------------- /src/api/models/register-user-on-chain-req-body-signers-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/register-user-on-chain-req-body-signers-inner.ts -------------------------------------------------------------------------------- /src/api/models/register-user-on-chain-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/register-user-on-chain-req-body.ts -------------------------------------------------------------------------------- /src/api/models/register-user-on-chain-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/register-user-on-chain-response.ts -------------------------------------------------------------------------------- /src/api/models/register-user-req-body-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/register-user-req-body-metadata.ts -------------------------------------------------------------------------------- /src/api/models/register-user-req-body-signer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/register-user-req-body-signer.ts -------------------------------------------------------------------------------- /src/api/models/register-user-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/register-user-req-body.ts -------------------------------------------------------------------------------- /src/api/models/register-user-response-signers-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/register-user-response-signers-inner.ts -------------------------------------------------------------------------------- /src/api/models/register-user-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/register-user-response.ts -------------------------------------------------------------------------------- /src/api/models/relevant-followers-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/relevant-followers-response.ts -------------------------------------------------------------------------------- /src/api/models/relevant-fungible-owners-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/relevant-fungible-owners-response.ts -------------------------------------------------------------------------------- /src/api/models/remove-channel-member-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/remove-channel-member-req-body.ts -------------------------------------------------------------------------------- /src/api/models/remove-verification-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/remove-verification-req-body.ts -------------------------------------------------------------------------------- /src/api/models/respond-channel-invite-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/respond-channel-invite-req-body.ts -------------------------------------------------------------------------------- /src/api/models/send-frame-notifications-req-body-filters-near-location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/send-frame-notifications-req-body-filters-near-location.ts -------------------------------------------------------------------------------- /src/api/models/send-frame-notifications-req-body-filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/send-frame-notifications-req-body-filters.ts -------------------------------------------------------------------------------- /src/api/models/send-frame-notifications-req-body-notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/send-frame-notifications-req-body-notification.ts -------------------------------------------------------------------------------- /src/api/models/send-frame-notifications-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/send-frame-notifications-req-body.ts -------------------------------------------------------------------------------- /src/api/models/send-frame-notifications-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/send-frame-notifications-response.ts -------------------------------------------------------------------------------- /src/api/models/shared-signer-permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/shared-signer-permission.ts -------------------------------------------------------------------------------- /src/api/models/signed-key-request-sponsor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/signed-key-request-sponsor.ts -------------------------------------------------------------------------------- /src/api/models/signed-message-body-signed-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/signed-message-body-signed-message.ts -------------------------------------------------------------------------------- /src/api/models/signed-message-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/signed-message-body.ts -------------------------------------------------------------------------------- /src/api/models/signer-list-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/signer-list-response.ts -------------------------------------------------------------------------------- /src/api/models/signer-uuid-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/signer-uuid-body.ts -------------------------------------------------------------------------------- /src/api/models/signer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/signer.ts -------------------------------------------------------------------------------- /src/api/models/simulate-nft-mint-response-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/simulate-nft-mint-response-inner.ts -------------------------------------------------------------------------------- /src/api/models/simulate-nft-mint-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/simulate-nft-mint-response.ts -------------------------------------------------------------------------------- /src/api/models/start-app-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/start-app-request.ts -------------------------------------------------------------------------------- /src/api/models/start-app200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/start-app200-response.ts -------------------------------------------------------------------------------- /src/api/models/storage-allocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/storage-allocation.ts -------------------------------------------------------------------------------- /src/api/models/storage-allocations-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/storage-allocations-response.ts -------------------------------------------------------------------------------- /src/api/models/storage-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/storage-object.ts -------------------------------------------------------------------------------- /src/api/models/storage-usage-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/storage-usage-response.ts -------------------------------------------------------------------------------- /src/api/models/subscribed-to-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscribed-to-object.ts -------------------------------------------------------------------------------- /src/api/models/subscribed-to-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscribed-to-response.ts -------------------------------------------------------------------------------- /src/api/models/subscribed-to.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscribed-to.ts -------------------------------------------------------------------------------- /src/api/models/subscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscriber.ts -------------------------------------------------------------------------------- /src/api/models/subscribers-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscribers-response.ts -------------------------------------------------------------------------------- /src/api/models/subscription-check-response-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscription-check-response-value.ts -------------------------------------------------------------------------------- /src/api/models/subscription-check-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscription-check-response.ts -------------------------------------------------------------------------------- /src/api/models/subscription-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscription-metadata.ts -------------------------------------------------------------------------------- /src/api/models/subscription-price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscription-price.ts -------------------------------------------------------------------------------- /src/api/models/subscription-tier-price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscription-tier-price.ts -------------------------------------------------------------------------------- /src/api/models/subscription-tier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscription-tier.ts -------------------------------------------------------------------------------- /src/api/models/subscription-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscription-token.ts -------------------------------------------------------------------------------- /src/api/models/subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscription.ts -------------------------------------------------------------------------------- /src/api/models/subscriptions-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscriptions-response.ts -------------------------------------------------------------------------------- /src/api/models/subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/subscriptions.ts -------------------------------------------------------------------------------- /src/api/models/text-range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/text-range.ts -------------------------------------------------------------------------------- /src/api/models/token-balance-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/token-balance-balance.ts -------------------------------------------------------------------------------- /src/api/models/token-balance-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/token-balance-token.ts -------------------------------------------------------------------------------- /src/api/models/token-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/token-balance.ts -------------------------------------------------------------------------------- /src/api/models/transaction-frame-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/transaction-frame-action.ts -------------------------------------------------------------------------------- /src/api/models/transaction-frame-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/transaction-frame-config.ts -------------------------------------------------------------------------------- /src/api/models/transaction-frame-destination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/transaction-frame-destination.ts -------------------------------------------------------------------------------- /src/api/models/transaction-frame-line-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/transaction-frame-line-item.ts -------------------------------------------------------------------------------- /src/api/models/transaction-frame-pay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/transaction-frame-pay.ts -------------------------------------------------------------------------------- /src/api/models/transaction-frame-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/transaction-frame-response.ts -------------------------------------------------------------------------------- /src/api/models/transaction-frame-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/transaction-frame-status.ts -------------------------------------------------------------------------------- /src/api/models/transaction-frame-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/transaction-frame-type.ts -------------------------------------------------------------------------------- /src/api/models/transaction-frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/transaction-frame.ts -------------------------------------------------------------------------------- /src/api/models/transaction-send-fungibles-receipt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/transaction-send-fungibles-receipt.ts -------------------------------------------------------------------------------- /src/api/models/transaction-send-fungibles-recipient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/transaction-send-fungibles-recipient.ts -------------------------------------------------------------------------------- /src/api/models/transaction-send-fungibles-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/transaction-send-fungibles-req-body.ts -------------------------------------------------------------------------------- /src/api/models/transaction-send-fungibles-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/transaction-send-fungibles-response.ts -------------------------------------------------------------------------------- /src/api/models/transaction-send-tx-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/transaction-send-tx-info.ts -------------------------------------------------------------------------------- /src/api/models/trending-channel-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/trending-channel-response.ts -------------------------------------------------------------------------------- /src/api/models/trending-topic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/trending-topic.ts -------------------------------------------------------------------------------- /src/api/models/trending-topics-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/trending-topics-response.ts -------------------------------------------------------------------------------- /src/api/models/update-user-req-body-location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/update-user-req-body-location.ts -------------------------------------------------------------------------------- /src/api/models/update-user-req-body-verified-accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/update-user-req-body-verified-accounts.ts -------------------------------------------------------------------------------- /src/api/models/update-user-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/update-user-req-body.ts -------------------------------------------------------------------------------- /src/api/models/update-user207-response-errors-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/update-user207-response-errors-inner.ts -------------------------------------------------------------------------------- /src/api/models/update-user207-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/update-user207-response.ts -------------------------------------------------------------------------------- /src/api/models/upload-image-url-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/upload-image-url-request.ts -------------------------------------------------------------------------------- /src/api/models/upload-image200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/upload-image200-response.ts -------------------------------------------------------------------------------- /src/api/models/user-auth-addresses-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-auth-addresses-inner.ts -------------------------------------------------------------------------------- /src/api/models/user-dehydrated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-dehydrated.ts -------------------------------------------------------------------------------- /src/api/models/user-experimental.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-experimental.ts -------------------------------------------------------------------------------- /src/api/models/user-fidresponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-fidresponse.ts -------------------------------------------------------------------------------- /src/api/models/user-power-lite-response-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-power-lite-response-result.ts -------------------------------------------------------------------------------- /src/api/models/user-power-lite-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-power-lite-response.ts -------------------------------------------------------------------------------- /src/api/models/user-pro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-pro.ts -------------------------------------------------------------------------------- /src/api/models/user-profile-banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-profile-banner.ts -------------------------------------------------------------------------------- /src/api/models/user-profile-bio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-profile-bio.ts -------------------------------------------------------------------------------- /src/api/models/user-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-profile.ts -------------------------------------------------------------------------------- /src/api/models/user-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-response.ts -------------------------------------------------------------------------------- /src/api/models/user-search-response-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-search-response-result.ts -------------------------------------------------------------------------------- /src/api/models/user-search-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-search-response.ts -------------------------------------------------------------------------------- /src/api/models/user-verified-accounts-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-verified-accounts-inner.ts -------------------------------------------------------------------------------- /src/api/models/user-verified-addresses-primary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-verified-addresses-primary.ts -------------------------------------------------------------------------------- /src/api/models/user-verified-addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-verified-addresses.ts -------------------------------------------------------------------------------- /src/api/models/user-viewer-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user-viewer-context.ts -------------------------------------------------------------------------------- /src/api/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/user.ts -------------------------------------------------------------------------------- /src/api/models/users-active-channels-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/users-active-channels-response.ts -------------------------------------------------------------------------------- /src/api/models/users-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/users-response.ts -------------------------------------------------------------------------------- /src/api/models/vercel-deployment-logs200-response-logs-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/vercel-deployment-logs200-response-logs-inner.ts -------------------------------------------------------------------------------- /src/api/models/vercel-deployment-logs200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/vercel-deployment-logs200-response.ts -------------------------------------------------------------------------------- /src/api/models/vercel-deployment-status200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/vercel-deployment-status200-response.ts -------------------------------------------------------------------------------- /src/api/models/verification-chain-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/verification-chain-id.ts -------------------------------------------------------------------------------- /src/api/models/verification-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/verification-type.ts -------------------------------------------------------------------------------- /src/api/models/verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/verification.ts -------------------------------------------------------------------------------- /src/api/models/video-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/video-object.ts -------------------------------------------------------------------------------- /src/api/models/webhook-delete-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook-delete-req-body.ts -------------------------------------------------------------------------------- /src/api/models/webhook-list-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook-list-response.ts -------------------------------------------------------------------------------- /src/api/models/webhook-patch-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook-patch-req-body.ts -------------------------------------------------------------------------------- /src/api/models/webhook-post-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook-post-req-body.ts -------------------------------------------------------------------------------- /src/api/models/webhook-put-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook-put-req-body.ts -------------------------------------------------------------------------------- /src/api/models/webhook-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook-response.ts -------------------------------------------------------------------------------- /src/api/models/webhook-secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook-secret.ts -------------------------------------------------------------------------------- /src/api/models/webhook-subscription-filters-cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook-subscription-filters-cast.ts -------------------------------------------------------------------------------- /src/api/models/webhook-subscription-filters-follow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook-subscription-filters-follow.ts -------------------------------------------------------------------------------- /src/api/models/webhook-subscription-filters-reaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook-subscription-filters-reaction.ts -------------------------------------------------------------------------------- /src/api/models/webhook-subscription-filters-trade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook-subscription-filters-trade.ts -------------------------------------------------------------------------------- /src/api/models/webhook-subscription-filters-user-updated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook-subscription-filters-user-updated.ts -------------------------------------------------------------------------------- /src/api/models/webhook-subscription-filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook-subscription-filters.ts -------------------------------------------------------------------------------- /src/api/models/webhook-subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook-subscription.ts -------------------------------------------------------------------------------- /src/api/models/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/webhook.ts -------------------------------------------------------------------------------- /src/api/models/zod-error-errors-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/zod-error-errors-inner.ts -------------------------------------------------------------------------------- /src/api/models/zod-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/api/models/zod-error.ts -------------------------------------------------------------------------------- /src/clients/NeynarAPIClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/clients/NeynarAPIClient.ts -------------------------------------------------------------------------------- /src/clients/NeynarHubClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/clients/NeynarHubClient.ts -------------------------------------------------------------------------------- /src/clients/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/clients/configuration.ts -------------------------------------------------------------------------------- /src/clients/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/clients/index.ts -------------------------------------------------------------------------------- /src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/common/constants.ts -------------------------------------------------------------------------------- /src/common/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/common/logger.ts -------------------------------------------------------------------------------- /src/hub-api/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /src/hub-api/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/.npmignore -------------------------------------------------------------------------------- /src/hub-api/.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/.openapi-generator-ignore -------------------------------------------------------------------------------- /src/hub-api/.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/.openapi-generator/FILES -------------------------------------------------------------------------------- /src/hub-api/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.9.0 2 | -------------------------------------------------------------------------------- /src/hub-api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/api.ts -------------------------------------------------------------------------------- /src/hub-api/apis/casts-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/apis/casts-api.ts -------------------------------------------------------------------------------- /src/hub-api/apis/fids-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/apis/fids-api.ts -------------------------------------------------------------------------------- /src/hub-api/apis/hub-events-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/apis/hub-events-api.ts -------------------------------------------------------------------------------- /src/hub-api/apis/info-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/apis/info-api.ts -------------------------------------------------------------------------------- /src/hub-api/apis/links-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/apis/links-api.ts -------------------------------------------------------------------------------- /src/hub-api/apis/message-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/apis/message-api.ts -------------------------------------------------------------------------------- /src/hub-api/apis/on-chain-events-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/apis/on-chain-events-api.ts -------------------------------------------------------------------------------- /src/hub-api/apis/reactions-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/apis/reactions-api.ts -------------------------------------------------------------------------------- /src/hub-api/apis/storage-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/apis/storage-api.ts -------------------------------------------------------------------------------- /src/hub-api/apis/user-data-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/apis/user-data-api.ts -------------------------------------------------------------------------------- /src/hub-api/apis/usernames-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/apis/usernames-api.ts -------------------------------------------------------------------------------- /src/hub-api/apis/verifications-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/apis/verifications-api.ts -------------------------------------------------------------------------------- /src/hub-api/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/base.ts -------------------------------------------------------------------------------- /src/hub-api/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/common.ts -------------------------------------------------------------------------------- /src/hub-api/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/configuration.ts -------------------------------------------------------------------------------- /src/hub-api/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/git_push.sh -------------------------------------------------------------------------------- /src/hub-api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/index.ts -------------------------------------------------------------------------------- /src/hub-api/models/cast-add-all-of-data-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/cast-add-all-of-data-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/cast-add-all-of-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/cast-add-all-of-data.ts -------------------------------------------------------------------------------- /src/hub-api/models/cast-add-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/cast-add-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/cast-add-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/cast-add-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/cast-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/cast-add.ts -------------------------------------------------------------------------------- /src/hub-api/models/cast-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/cast-embed.ts -------------------------------------------------------------------------------- /src/hub-api/models/cast-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/cast-id.ts -------------------------------------------------------------------------------- /src/hub-api/models/db-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/db-stats.ts -------------------------------------------------------------------------------- /src/hub-api/models/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/embed.ts -------------------------------------------------------------------------------- /src/hub-api/models/error-response-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/error-response-metadata.ts -------------------------------------------------------------------------------- /src/hub-api/models/error-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/error-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/farcaster-network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/farcaster-network.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-cast-reactions200-response-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-cast-reactions200-response-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-cast-reactions200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-cast-reactions200-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-casts-by-parent200-response-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-casts-by-parent200-response-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-casts-by-parent200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-casts-by-parent200-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-events200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-events200-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-user-data200-response-one-of-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-user-data200-response-one-of-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-user-data200-response-one-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-user-data200-response-one-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-user-data200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-user-data200-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-user-following200-response-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-user-following200-response-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-user-following200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-user-following200-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-user-on-chain-events200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-user-on-chain-events200-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-user-on-chain-signers-events200-response-one-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-user-on-chain-signers-events200-response-one-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-user-on-chain-signers-events200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-user-on-chain-signers-events200-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-users-casts200-response-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-users-casts200-response-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-users-casts200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-users-casts200-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/fetch-verifications-by-fid200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fetch-verifications-by-fid200-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/fids-response-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fids-response-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/fids-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/fids-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/frame-action-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/frame-action-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/hash-scheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/hash-scheme.ts -------------------------------------------------------------------------------- /src/hub-api/models/hub-event-merge-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/hub-event-merge-message.ts -------------------------------------------------------------------------------- /src/hub-api/models/hub-event-merge-on-chain-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/hub-event-merge-on-chain-event.ts -------------------------------------------------------------------------------- /src/hub-api/models/hub-event-merge-username-proof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/hub-event-merge-username-proof.ts -------------------------------------------------------------------------------- /src/hub-api/models/hub-event-prune-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/hub-event-prune-message.ts -------------------------------------------------------------------------------- /src/hub-api/models/hub-event-revoke-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/hub-event-revoke-message.ts -------------------------------------------------------------------------------- /src/hub-api/models/hub-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/hub-event.ts -------------------------------------------------------------------------------- /src/hub-api/models/hub-info-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/hub-info-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/id-register-event-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/id-register-event-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/id-register-event-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/id-register-event-type.ts -------------------------------------------------------------------------------- /src/hub-api/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/index.ts -------------------------------------------------------------------------------- /src/hub-api/models/link-add-all-of-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/link-add-all-of-data.ts -------------------------------------------------------------------------------- /src/hub-api/models/link-add-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/link-add-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/link-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/link-add.ts -------------------------------------------------------------------------------- /src/hub-api/models/link-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/link-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/link-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/link-type.ts -------------------------------------------------------------------------------- /src/hub-api/models/merge-message-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/merge-message-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/merge-on-chain-event-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/merge-on-chain-event-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/merge-user-name-proof-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/merge-user-name-proof-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-all-of-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-all-of-data.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-common.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-cast-add-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-cast-add-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-cast-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-cast-add.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-cast-remove-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-cast-remove-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-cast-remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-cast-remove.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-common.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-frame-action-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-frame-action-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-frame-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-frame-action.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-link-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-link-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-link.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-reaction-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-reaction-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-reaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-reaction.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-user-data-add-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-user-data-add-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-user-data-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-user-data-add.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-username-proof-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-username-proof-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-username-proof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-username-proof.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-verification-add-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-verification-add-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-verification-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-verification-add.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-verification-remove-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-verification-remove-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-data-verification-remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-data-verification-remove.ts -------------------------------------------------------------------------------- /src/hub-api/models/message-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message-type.ts -------------------------------------------------------------------------------- /src/hub-api/models/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/message.ts -------------------------------------------------------------------------------- /src/hub-api/models/on-chain-event-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/on-chain-event-common.ts -------------------------------------------------------------------------------- /src/hub-api/models/on-chain-event-id-register-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/on-chain-event-id-register-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/on-chain-event-id-register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/on-chain-event-id-register.ts -------------------------------------------------------------------------------- /src/hub-api/models/on-chain-event-signer-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/on-chain-event-signer-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/on-chain-event-signer-migrated-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/on-chain-event-signer-migrated-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/on-chain-event-signer-migrated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/on-chain-event-signer-migrated.ts -------------------------------------------------------------------------------- /src/hub-api/models/on-chain-event-signer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/on-chain-event-signer.ts -------------------------------------------------------------------------------- /src/hub-api/models/on-chain-event-storage-rent-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/on-chain-event-storage-rent-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/on-chain-event-storage-rent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/on-chain-event-storage-rent.ts -------------------------------------------------------------------------------- /src/hub-api/models/on-chain-event-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/on-chain-event-type.ts -------------------------------------------------------------------------------- /src/hub-api/models/on-chain-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/on-chain-event.ts -------------------------------------------------------------------------------- /src/hub-api/models/pagination-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/pagination-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/prune-message-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/prune-message-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/reaction-all-of-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/reaction-all-of-data.ts -------------------------------------------------------------------------------- /src/hub-api/models/reaction-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/reaction-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/reaction-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/reaction-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/reaction-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/reaction-type.ts -------------------------------------------------------------------------------- /src/hub-api/models/reaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/reaction.ts -------------------------------------------------------------------------------- /src/hub-api/models/revoke-message-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/revoke-message-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/signature-scheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/signature-scheme.ts -------------------------------------------------------------------------------- /src/hub-api/models/signer-event-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/signer-event-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/signer-event-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/signer-event-type.ts -------------------------------------------------------------------------------- /src/hub-api/models/signer-migrated-event-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/signer-migrated-event-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/storage-limit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/storage-limit.ts -------------------------------------------------------------------------------- /src/hub-api/models/storage-limits-response-tier-subscriptions-inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/storage-limits-response-tier-subscriptions-inner.ts -------------------------------------------------------------------------------- /src/hub-api/models/storage-limits-response-unit-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/storage-limits-response-unit-details.ts -------------------------------------------------------------------------------- /src/hub-api/models/storage-limits-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/storage-limits-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/storage-rent-event-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/storage-rent-event-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/store-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/store-type.ts -------------------------------------------------------------------------------- /src/hub-api/models/url-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/url-embed.ts -------------------------------------------------------------------------------- /src/hub-api/models/user-data-add-all-of-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/user-data-add-all-of-data.ts -------------------------------------------------------------------------------- /src/hub-api/models/user-data-add-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/user-data-add-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/user-data-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/user-data-add.ts -------------------------------------------------------------------------------- /src/hub-api/models/user-data-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/user-data-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/user-data-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/user-data-type.ts -------------------------------------------------------------------------------- /src/hub-api/models/user-name-proof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/user-name-proof.ts -------------------------------------------------------------------------------- /src/hub-api/models/user-name-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/user-name-type.ts -------------------------------------------------------------------------------- /src/hub-api/models/username-proofs-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/username-proofs-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/validate-message-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/validate-message-response.ts -------------------------------------------------------------------------------- /src/hub-api/models/verification-add-eth-address-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/verification-add-eth-address-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/verification-all-of-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/verification-all-of-data.ts -------------------------------------------------------------------------------- /src/hub-api/models/verification-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/verification-all-of.ts -------------------------------------------------------------------------------- /src/hub-api/models/verification-remove-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/verification-remove-body.ts -------------------------------------------------------------------------------- /src/hub-api/models/verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/hub-api/models/verification.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./webhooks" -------------------------------------------------------------------------------- /src/types/webhooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/types/webhooks.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./is-api-error-response"; -------------------------------------------------------------------------------- /src/utils/is-api-error-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/src/utils/is-api-error-response.ts -------------------------------------------------------------------------------- /templates/apiInner.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/templates/apiInner.mustache -------------------------------------------------------------------------------- /templates/configuration.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/templates/configuration.mustache -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/tsconfig.scripts.json -------------------------------------------------------------------------------- /v1-to-v2-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/v1-to-v2-migration.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neynarxyz/nodejs-sdk/HEAD/yarn.lock --------------------------------------------------------------------------------