├── .cspell.json ├── .czrc ├── .eslintrc.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto-merge.yml ├── dependabot.yml └── workflows │ └── farcaster-js.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .releaserc.json ├── .vscode ├── extensions.json ├── project.code-workspace └── settings.json ├── .yarn └── releases │ └── yarn-sources.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── commitlint.config.cjs ├── examples ├── hubRest.ts └── neynar.ts ├── package.json ├── packages ├── farcaster-js-cli │ ├── README.md │ ├── package.json │ ├── src │ │ ├── abi │ │ │ ├── IdRegistryABI.ts │ │ │ ├── KeyGatewayABI.ts │ │ │ └── SignedKeyRequestMetadataABI.ts │ │ ├── bin.ts │ │ ├── cli.ts │ │ ├── index.ts │ │ └── keyGateWayClient.ts │ └── tsconfig.json ├── farcaster-js-hub-rest │ ├── .env.example │ ├── .mocharc.yaml │ ├── CONTRIBUTING.md │ ├── README.md │ ├── docs │ │ ├── .nojekyll │ │ ├── README.md │ │ ├── classes │ │ │ ├── hubRestApiClient.HubRestAPIClient.md │ │ │ ├── openapi.CastsApi.md │ │ │ ├── openapi.Configuration.md │ │ │ ├── openapi.FIDsApi.md │ │ │ ├── openapi.HubEventsApi.md │ │ │ ├── openapi.InfoApi.md │ │ │ ├── openapi.LinksApi.md │ │ │ ├── openapi.OnChainEventsApi.md │ │ │ ├── openapi.ReactionsApi.md │ │ │ ├── openapi.StorageApi.md │ │ │ ├── openapi.SubmitMessageApi.md │ │ │ ├── openapi.UserDataApi.md │ │ │ ├── openapi.UsernamesApi.md │ │ │ ├── openapi.ValidateMessageApi.md │ │ │ └── openapi.VerificationsApi.md │ │ ├── enums │ │ │ ├── openapi.FarcasterNetwork.md │ │ │ ├── openapi.HashScheme.md │ │ │ ├── openapi.IdRegisterEventType.md │ │ │ ├── openapi.LinkType.md │ │ │ ├── openapi.MessageType.md │ │ │ ├── openapi.OnChainEventType.md │ │ │ ├── openapi.ReactionType.md │ │ │ ├── openapi.SignatureScheme.md │ │ │ ├── openapi.SignerEventType.md │ │ │ ├── openapi.StoreType.md │ │ │ ├── openapi.UserDataType.md │ │ │ └── openapi.UserNameType.md │ │ ├── interfaces │ │ │ ├── hubRestApiClient.HubRestAPIClientConfig.md │ │ │ ├── hubRestApiClient.PaginationOptions.md │ │ │ ├── logger.Logger.md │ │ │ ├── openapi.CastAddAllOf.md │ │ │ ├── openapi.CastAddAllOfDataAllOf.md │ │ │ ├── openapi.CastAddBody.md │ │ │ ├── openapi.CastEmbed.md │ │ │ ├── openapi.CastId.md │ │ │ ├── openapi.CastRemoveAllOf.md │ │ │ ├── openapi.CastRemoveBody.md │ │ │ ├── openapi.CastsApiGetCastByIdRequest.md │ │ │ ├── openapi.CastsApiListCastsByFidRequest.md │ │ │ ├── openapi.CastsApiListCastsByMentionRequest.md │ │ │ ├── openapi.CastsApiListCastsByParentRequest.md │ │ │ ├── openapi.ConfigurationParameters.md │ │ │ ├── openapi.DbStats.md │ │ │ ├── openapi.ErrorResponse.md │ │ │ ├── openapi.ErrorResponseMetadata.md │ │ │ ├── openapi.FIDsApiListFidsRequest.md │ │ │ ├── openapi.FidsResponse.md │ │ │ ├── openapi.FrameActionBody.md │ │ │ ├── openapi.GetUserDataByFid200ResponseOneOf.md │ │ │ ├── openapi.HubEventMergeMessage.md │ │ │ ├── openapi.HubEventMergeOnChainEvent.md │ │ │ ├── openapi.HubEventMergeUsernameProof.md │ │ │ ├── openapi.HubEventPruneMessage.md │ │ │ ├── openapi.HubEventRevokeMessage.md │ │ │ ├── openapi.HubEventsApiGetEventByIdRequest.md │ │ │ ├── openapi.HubEventsApiListEventsRequest.md │ │ │ ├── openapi.HubInfoResponse.md │ │ │ ├── openapi.IdRegisterEventBody.md │ │ │ ├── openapi.InfoApiGetInfoRequest.md │ │ │ ├── openapi.LinkAddAllOf.md │ │ │ ├── openapi.LinkBody.md │ │ │ ├── openapi.LinksApiGetLinkByIdRequest.md │ │ │ ├── openapi.LinksApiListLinksByFidRequest.md │ │ │ ├── openapi.LinksApiListLinksByTargetFidRequest.md │ │ │ ├── openapi.ListCastsByFid200Response.md │ │ │ ├── openapi.ListEvents200Response.md │ │ │ ├── openapi.ListLinksByFid200Response.md │ │ │ ├── openapi.ListOnChainEventsByFid200Response.md │ │ │ ├── openapi.ListOnChainSignersByFid200ResponseOneOf.md │ │ │ ├── openapi.ListReactionsByCast200Response.md │ │ │ ├── openapi.ListVerificationsByFid200Response.md │ │ │ ├── openapi.MergeMessageBody.md │ │ │ ├── openapi.MergeOnChainEventBody.md │ │ │ ├── openapi.MergeUserNameProofBody.md │ │ │ ├── openapi.MessageAllOf.md │ │ │ ├── openapi.MessageCommon.md │ │ │ ├── openapi.MessageDataCastAddAllOf.md │ │ │ ├── openapi.MessageDataCastRemoveAllOf.md │ │ │ ├── openapi.MessageDataCommon.md │ │ │ ├── openapi.MessageDataFrameActionAllOf.md │ │ │ ├── openapi.MessageDataLinkAllOf.md │ │ │ ├── openapi.MessageDataReactionAllOf.md │ │ │ ├── openapi.MessageDataUserDataAddAllOf.md │ │ │ ├── openapi.MessageDataUsernameProofAllOf.md │ │ │ ├── openapi.MessageDataVerificationAddAllOf.md │ │ │ ├── openapi.MessageDataVerificationRemoveAllOf.md │ │ │ ├── openapi.OnChainEventCommon.md │ │ │ ├── openapi.OnChainEventIdRegisterAllOf.md │ │ │ ├── openapi.OnChainEventSignerAllOf.md │ │ │ ├── openapi.OnChainEventSignerMigratedAllOf.md │ │ │ ├── openapi.OnChainEventStorageRentAllOf.md │ │ │ ├── openapi.OnChainEventsApiGetOnChainIdRegistrationByAddressRequest.md │ │ │ ├── openapi.OnChainEventsApiListOnChainEventsByFidRequest.md │ │ │ ├── openapi.OnChainEventsApiListOnChainSignersByFidRequest.md │ │ │ ├── openapi.PruneMessageBody.md │ │ │ ├── openapi.ReactionAllOf.md │ │ │ ├── openapi.ReactionBody.md │ │ │ ├── openapi.ReactionRemoveAllOf.md │ │ │ ├── openapi.ReactionsApiGetReactionByIdRequest.md │ │ │ ├── openapi.ReactionsApiListReactionsByCastRequest.md │ │ │ ├── openapi.ReactionsApiListReactionsByFidRequest.md │ │ │ ├── openapi.ReactionsApiListReactionsByTargetRequest.md │ │ │ ├── openapi.RevokeMessageBody.md │ │ │ ├── openapi.SignerEventBody.md │ │ │ ├── openapi.SignerMigratedEventBody.md │ │ │ ├── openapi.StorageApiGetStorageLimitsByFidRequest.md │ │ │ ├── openapi.StorageLimit.md │ │ │ ├── openapi.StorageLimitsResponse.md │ │ │ ├── openapi.StorageRentEventBody.md │ │ │ ├── openapi.SubmitMessageApiSubmitMessageRequest.md │ │ │ ├── openapi.UrlEmbed.md │ │ │ ├── openapi.UserDataAddAllOf.md │ │ │ ├── openapi.UserDataApiGetUserDataByFidRequest.md │ │ │ ├── openapi.UserDataBody.md │ │ │ ├── openapi.UserNameProof.md │ │ │ ├── openapi.UsernameProofsResponse.md │ │ │ ├── openapi.UsernamesApiGetUsernameProofRequest.md │ │ │ ├── openapi.UsernamesApiListUsernameProofsByFidRequest.md │ │ │ ├── openapi.ValidateMessageApiValidateMessageRequest.md │ │ │ ├── openapi.ValidateMessageResponse.md │ │ │ ├── openapi.VerificationAddEthAddressBody.md │ │ │ ├── openapi.VerificationAllOf.md │ │ │ ├── openapi.VerificationRemoveAllOf.md │ │ │ ├── openapi.VerificationRemoveBody.md │ │ │ └── openapi.VerificationsApiListVerificationsByFidRequest.md │ │ ├── modules.md │ │ └── modules │ │ │ ├── farcasterEpochTimestamp.md │ │ │ ├── hubRestApiClient.md │ │ │ ├── logger.md │ │ │ └── openapi.md │ ├── examples │ │ ├── changeTargetHub.ts │ │ ├── followUser.ts │ │ ├── getCastById.ts │ │ ├── hubInfo.ts │ │ ├── listCastsByFid.ts │ │ ├── publishCast.ts │ │ ├── reactToCast.ts │ │ ├── validateMessage.ts │ │ └── verifyAddress.ts │ ├── openapi-generator-config.json │ ├── openapitools.json │ ├── package.json │ ├── src │ │ ├── farcasterEpochTimestamp.ts │ │ ├── hubRestApiClient.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ ├── openapi │ │ │ ├── generated │ │ │ │ ├── .openapi-generator │ │ │ │ │ ├── FILES │ │ │ │ │ └── VERSION │ │ │ │ ├── api.ts │ │ │ │ ├── apis │ │ │ │ │ ├── casts-api.ts │ │ │ │ │ ├── fids-api.ts │ │ │ │ │ ├── hub-events-api.ts │ │ │ │ │ ├── info-api.ts │ │ │ │ │ ├── links-api.ts │ │ │ │ │ ├── on-chain-events-api.ts │ │ │ │ │ ├── reactions-api.ts │ │ │ │ │ ├── storage-api.ts │ │ │ │ │ ├── submit-message-api.ts │ │ │ │ │ ├── user-data-api.ts │ │ │ │ │ ├── usernames-api.ts │ │ │ │ │ ├── validate-message-api.ts │ │ │ │ │ └── verifications-api.ts │ │ │ │ ├── base.ts │ │ │ │ ├── common.ts │ │ │ │ ├── configuration.ts │ │ │ │ ├── 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 │ │ │ │ │ ├── cast-remove-all-of-data.ts │ │ │ │ │ ├── cast-remove-all-of.ts │ │ │ │ │ ├── cast-remove-body.ts │ │ │ │ │ ├── cast-remove.ts │ │ │ │ │ ├── db-stats.ts │ │ │ │ │ ├── embed.ts │ │ │ │ │ ├── error-response-metadata.ts │ │ │ │ │ ├── error-response.ts │ │ │ │ │ ├── farcaster-network.ts │ │ │ │ │ ├── fids-response.ts │ │ │ │ │ ├── frame-action-body.ts │ │ │ │ │ ├── get-user-data-by-fid200-response-one-of.ts │ │ │ │ │ ├── get-user-data-by-fid200-response.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-remove.ts │ │ │ │ │ ├── link-type.ts │ │ │ │ │ ├── list-casts-by-fid200-response.ts │ │ │ │ │ ├── list-events200-response.ts │ │ │ │ │ ├── list-links-by-fid200-response.ts │ │ │ │ │ ├── list-on-chain-events-by-fid200-response.ts │ │ │ │ │ ├── list-on-chain-signers-by-fid200-response-one-of.ts │ │ │ │ │ ├── list-on-chain-signers-by-fid200-response.ts │ │ │ │ │ ├── list-reactions-by-cast200-response.ts │ │ │ │ │ ├── list-verifications-by-fid200-response.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 │ │ │ │ │ ├── prune-message-body.ts │ │ │ │ │ ├── reaction-all-of-data.ts │ │ │ │ │ ├── reaction-all-of.ts │ │ │ │ │ ├── reaction-body.ts │ │ │ │ │ ├── reaction-remove-all-of.ts │ │ │ │ │ ├── reaction-remove.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.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-all-of-data.ts │ │ │ │ │ ├── verification-remove-all-of.ts │ │ │ │ │ ├── verification-remove-body.ts │ │ │ │ │ ├── verification-remove.ts │ │ │ │ │ └── verification.ts │ │ │ │ └── schema.d.ts │ │ │ ├── index.ts │ │ │ ├── post-process.sh │ │ │ └── spec.yaml │ │ ├── signers.ts │ │ └── utils.ts │ ├── tests │ │ ├── integration │ │ │ └── hubRestAPIClient.ts │ │ └── utils.ts │ ├── tsconfig.json │ └── typedoc.json ├── farcaster-js-neynar │ ├── .env.example │ ├── .mocharc.yaml │ ├── CONTRIBUTING.md │ ├── README.md │ ├── docs │ │ ├── .nojekyll │ │ ├── README.md │ │ ├── classes │ │ │ ├── NeynarAPIClient.NeynarAPIClient.md │ │ │ ├── v1.CastApi.md │ │ │ ├── v1.Configuration.md │ │ │ ├── v1.FollowsApi.md │ │ │ ├── v1.NeynarV1APIClient.md │ │ │ ├── v1.NotificationsApi.md │ │ │ ├── v1.ReactionsApi.md │ │ │ ├── v1.UserApi.md │ │ │ ├── v1.VerificationApi.md │ │ │ ├── v2.CastApi.md │ │ │ ├── v2.Configuration.md │ │ │ ├── v2.FeedApi.md │ │ │ ├── v2.FollowsApi.md │ │ │ ├── v2.NeynarV2APIClient.md │ │ │ ├── v2.NotificationsApi.md │ │ │ ├── v2.ReactionApi.md │ │ │ ├── v2.SignerApi.md │ │ │ └── v2.UserApi.md │ │ ├── enums │ │ │ ├── v1.ActiveStatus.md │ │ │ ├── v1.CastType.md │ │ │ ├── v1.ReactionType.md │ │ │ ├── v2.ActiveStatus.md │ │ │ ├── v2.CastNotificationType.md │ │ │ ├── v2.CastParamType.md │ │ │ ├── v2.DehydratedFollowerObjectEnum.md │ │ │ ├── v2.HydratedFollowerObjectEnum.md │ │ │ ├── v2.NotificationFollowObjectEnum.md │ │ │ ├── v2.NotificationReactionsCastObjectEnum.md │ │ │ ├── v2.NotificationReactionsObjectEnum.md │ │ │ ├── v2.NotificationTypeEnum.md │ │ │ ├── v2.ReactionType.md │ │ │ ├── v2.SignerStatusEnum.md │ │ │ ├── v2.UserDehydratedObjectEnum.md │ │ │ └── v2.UserObjectEnum.md │ │ ├── interfaces │ │ │ ├── logger.Logger.md │ │ │ ├── v1.AllCastsInThreadResponse.md │ │ │ ├── v1.AllCastsInThreadResponseResult.md │ │ │ ├── v1.Cast.md │ │ │ ├── v1.CastApiAllCastsInThreadRequest.md │ │ │ ├── v1.CastApiCastRequest.md │ │ │ ├── v1.CastApiCastsRequest.md │ │ │ ├── v1.CastApiRecentCastsRequest.md │ │ │ ├── v1.CastAuthorOneOf.md │ │ │ ├── v1.CastLikesResponse.md │ │ │ ├── v1.CastLikesResponseResult.md │ │ │ ├── v1.CastParentAuthorAllOf.md │ │ │ ├── v1.CastReactionsResponse.md │ │ │ ├── v1.CastReactionsResponseResult.md │ │ │ ├── v1.CastRecasterResponse.md │ │ │ ├── v1.CastRecasterResponseResult.md │ │ │ ├── v1.CastResponse.md │ │ │ ├── v1.CastResponseResult.md │ │ │ ├── v1.CastWithInteractionsAllOf.md │ │ │ ├── v1.CastWithInteractionsReactionsOrRecasts.md │ │ │ ├── v1.CastWithInteractionsReplies.md │ │ │ ├── v1.CastsResponse.md │ │ │ ├── v1.CastsResponseResult.md │ │ │ ├── v1.ConfigurationParameters.md │ │ │ ├── v1.CustodyAddressResponse.md │ │ │ ├── v1.CustodyAddressResponseResult.md │ │ │ ├── v1.EmbedUrl.md │ │ │ ├── v1.ErrorRes.md │ │ │ ├── v1.FollowResponse.md │ │ │ ├── v1.FollowResponseResult.md │ │ │ ├── v1.FollowsApiFollowersRequest.md │ │ │ ├── v1.FollowsApiFollowingRequest.md │ │ │ ├── v1.MentionsAndRepliesResponse.md │ │ │ ├── v1.MentionsAndRepliesResponseResult.md │ │ │ ├── v1.NextCursor.md │ │ │ ├── v1.NotificationsApiMentionsAndRepliesRequest.md │ │ │ ├── v1.NotificationsApiReactionsAndRecastsRequest.md │ │ │ ├── v1.Reaction.md │ │ │ ├── v1.ReactionWithCastMeta.md │ │ │ ├── v1.ReactionWithCastMetaCast.md │ │ │ ├── v1.ReactionWithCastMetaReaction.md │ │ │ ├── v1.ReactionsAndRecastsNotificationAllOf.md │ │ │ ├── v1.ReactionsAndRecastsResponse.md │ │ │ ├── v1.ReactionsAndRecastsResponseResult.md │ │ │ ├── v1.ReactionsApiCastLikesRequest.md │ │ │ ├── v1.ReactionsApiCastReactionsRequest.md │ │ │ ├── v1.ReactionsApiCastRecastersRequest.md │ │ │ ├── v1.Reactor.md │ │ │ ├── v1.ReactorPfp.md │ │ │ ├── v1.ReactorViewerContext.md │ │ │ ├── v1.Recaster.md │ │ │ ├── v1.RecasterPfp.md │ │ │ ├── v1.RecasterProfile.md │ │ │ ├── v1.RecasterProfileBio.md │ │ │ ├── v1.RecasterViewerContext.md │ │ │ ├── v1.RecentCastsResponse.md │ │ │ ├── v1.RecentUsersResponse.md │ │ │ ├── v1.RecentUsersResponseResult.md │ │ │ ├── v1.User.md │ │ │ ├── v1.User200Response.md │ │ │ ├── v1.User200ResponseResult.md │ │ │ ├── v1.UserApiCustodyAddressRequest.md │ │ │ ├── v1.UserApiRecentUsersRequest.md │ │ │ ├── v1.UserApiUserByUsernameRequest.md │ │ │ ├── v1.UserApiUserCastLikesRequest.md │ │ │ ├── v1.UserApiUserRequest.md │ │ │ ├── v1.UserCastLikeResponse.md │ │ │ ├── v1.UserCastLikeResponseResult.md │ │ │ ├── v1.UserPfp.md │ │ │ ├── v1.UserProfile.md │ │ │ ├── v1.UserProfileBio.md │ │ │ ├── v1.VerificationApiUserByVerificationRequest.md │ │ │ ├── v1.VerificationApiVerificationsRequest.md │ │ │ ├── v1.VerificationResponse.md │ │ │ ├── v1.VerificationResponseResult.md │ │ │ ├── v1.ViewerContext.md │ │ │ ├── v2.AddVerificationReqBody.md │ │ │ ├── v2.BulkFollowResponse.md │ │ │ ├── v2.Cast.md │ │ │ ├── v2.CastApiCastRequest.md │ │ │ ├── v2.CastApiCastsRequest.md │ │ │ ├── v2.CastApiDeleteCastRequest.md │ │ │ ├── v2.CastApiPostCastRequest.md │ │ │ ├── v2.CastId.md │ │ │ ├── v2.CastParentAuthorAllOf.md │ │ │ ├── v2.CastResponse.md │ │ │ ├── v2.CastWithInteractionsAllOf.md │ │ │ ├── v2.CastWithInteractionsReactions.md │ │ │ ├── v2.CastWithInteractionsReplies.md │ │ │ ├── v2.CastsResponse.md │ │ │ ├── v2.CastsResponseResult.md │ │ │ ├── v2.ConfigurationParameters.md │ │ │ ├── v2.DehydratedFollower.md │ │ │ ├── v2.DeleteCastReqBody.md │ │ │ ├── v2.EmbedCastId.md │ │ │ ├── v2.EmbedUrl.md │ │ │ ├── v2.ErrorRes.md │ │ │ ├── v2.FeedApiFeedRequest.md │ │ │ ├── v2.FeedResponse.md │ │ │ ├── v2.FollowReqBody.md │ │ │ ├── v2.FollowResponse.md │ │ │ ├── v2.FollowsApiRelevantFollowersRequest.md │ │ │ ├── v2.GetCastsReqBody.md │ │ │ ├── v2.HydratedFollower.md │ │ │ ├── v2.IndividualHashObj.md │ │ │ ├── v2.NextCursor.md │ │ │ ├── v2.Notification.md │ │ │ ├── v2.NotificationFollow.md │ │ │ ├── v2.NotificationReactions.md │ │ │ ├── v2.NotificationReactionsCast.md │ │ │ ├── v2.NotificationsApiNotificationsRequest.md │ │ │ ├── v2.NotificationsResponse.md │ │ │ ├── v2.OperationResponse.md │ │ │ ├── v2.PostCastReqBody.md │ │ │ ├── v2.PostCastResponse.md │ │ │ ├── v2.PostCastResponseCast.md │ │ │ ├── v2.PostCastResponseCastAuthor.md │ │ │ ├── v2.ProfileUrl.md │ │ │ ├── v2.ProfileUrlPfp.md │ │ │ ├── v2.ReactionApiDeleteReactionRequest.md │ │ │ ├── v2.ReactionApiPostReactionRequest.md │ │ │ ├── v2.ReactionLike.md │ │ │ ├── v2.ReactionRecast.md │ │ │ ├── v2.ReactionReqBody.md │ │ │ ├── v2.RegisterSignerKeyReqBody.md │ │ │ ├── v2.RelevantFollowersResponse.md │ │ │ ├── v2.RemoveVerificationReqBody.md │ │ │ ├── v2.Signer.md │ │ │ ├── v2.SignerApiRegisterSignedKeyRequest.md │ │ │ ├── v2.SignerApiSignerRequest.md │ │ │ ├── v2.UpdateUserReqBody.md │ │ │ ├── v2.User.md │ │ │ ├── v2.UserApiFarcasterUserVerificationDeleteRequest.md │ │ │ ├── v2.UserApiFarcasterUserVerificationPostRequest.md │ │ │ ├── v2.UserApiFollowUserRequest.md │ │ │ ├── v2.UserApiLookupUserByCustodyAddressRequest.md │ │ │ ├── v2.UserApiUnfollowUserRequest.md │ │ │ ├── v2.UserApiUpdateUserRequest.md │ │ │ ├── v2.UserApiUserBulkRequest.md │ │ │ ├── v2.UserApiUserSearchRequest.md │ │ │ ├── v2.UserBulk200Response.md │ │ │ ├── v2.UserDehydrated.md │ │ │ ├── v2.UserProfile.md │ │ │ ├── v2.UserProfileBio.md │ │ │ ├── v2.UserResponse.md │ │ │ ├── v2.UserSearchResponse.md │ │ │ ├── v2.UserSearchResponseResult.md │ │ │ └── v2.UserViewerContext.md │ │ ├── modules.md │ │ └── modules │ │ │ ├── NeynarAPIClient.md │ │ │ ├── logger.md │ │ │ ├── utils.md │ │ │ ├── v1.md │ │ │ └── v2.md │ ├── examples │ │ ├── createSigner.ts │ │ ├── followUser.ts │ │ ├── getUserActivity.ts │ │ ├── likeAndRecast.ts │ │ ├── publishCast.ts │ │ └── replyToCast.ts │ ├── openapi-generator-config.json │ ├── openapitools.json │ ├── package.json │ ├── src │ │ ├── NeynarAPIClient.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ ├── utils.ts │ │ ├── v1 │ │ │ ├── NeynarV1APIClient.ts │ │ │ ├── index.ts │ │ │ └── openapi │ │ │ │ ├── generated │ │ │ │ ├── .openapi-generator │ │ │ │ │ ├── FILES │ │ │ │ │ └── VERSION │ │ │ │ ├── api.ts │ │ │ │ ├── apis │ │ │ │ │ ├── cast-api.ts │ │ │ │ │ ├── follows-api.ts │ │ │ │ │ ├── notifications-api.ts │ │ │ │ │ ├── reactions-api.ts │ │ │ │ │ ├── user-api.ts │ │ │ │ │ └── verification-api.ts │ │ │ │ ├── base.ts │ │ │ │ ├── common.ts │ │ │ │ ├── configuration.ts │ │ │ │ ├── index.ts │ │ │ │ ├── models │ │ │ │ │ ├── active-status.ts │ │ │ │ │ ├── all-casts-in-thread-response-result.ts │ │ │ │ │ ├── all-casts-in-thread-response.ts │ │ │ │ │ ├── cast-author-one-of.ts │ │ │ │ │ ├── cast-author.ts │ │ │ │ │ ├── cast-likes-response-result.ts │ │ │ │ │ ├── cast-likes-response.ts │ │ │ │ │ ├── cast-parent-author-all-of.ts │ │ │ │ │ ├── cast-parent-author.ts │ │ │ │ │ ├── cast-reactions-response-result.ts │ │ │ │ │ ├── cast-reactions-response.ts │ │ │ │ │ ├── cast-recaster-response-result.ts │ │ │ │ │ ├── cast-recaster-response.ts │ │ │ │ │ ├── cast-response-result.ts │ │ │ │ │ ├── cast-response.ts │ │ │ │ │ ├── cast-type.ts │ │ │ │ │ ├── cast-with-interactions-all-of.ts │ │ │ │ │ ├── cast-with-interactions-reactions-or-recasts.ts │ │ │ │ │ ├── cast-with-interactions-replies.ts │ │ │ │ │ ├── cast-with-interactions.ts │ │ │ │ │ ├── cast.ts │ │ │ │ │ ├── casts-response-result.ts │ │ │ │ │ ├── casts-response.ts │ │ │ │ │ ├── custody-address-response-result.ts │ │ │ │ │ ├── custody-address-response.ts │ │ │ │ │ ├── embed-url.ts │ │ │ │ │ ├── error-res.ts │ │ │ │ │ ├── follow-response-result.ts │ │ │ │ │ ├── follow-response.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── mentions-and-replies-response-result.ts │ │ │ │ │ ├── mentions-and-replies-response.ts │ │ │ │ │ ├── next-cursor.ts │ │ │ │ │ ├── reaction-type.ts │ │ │ │ │ ├── reaction-with-cast-meta-cast.ts │ │ │ │ │ ├── reaction-with-cast-meta-reaction.ts │ │ │ │ │ ├── reaction-with-cast-meta.ts │ │ │ │ │ ├── reaction.ts │ │ │ │ │ ├── reactions-and-recasts-notification-all-of.ts │ │ │ │ │ ├── reactions-and-recasts-notification.ts │ │ │ │ │ ├── reactions-and-recasts-response-result.ts │ │ │ │ │ ├── reactions-and-recasts-response.ts │ │ │ │ │ ├── reactor-pfp.ts │ │ │ │ │ ├── reactor-viewer-context.ts │ │ │ │ │ ├── reactor.ts │ │ │ │ │ ├── recaster-pfp.ts │ │ │ │ │ ├── recaster-profile-bio.ts │ │ │ │ │ ├── recaster-profile.ts │ │ │ │ │ ├── recaster-viewer-context.ts │ │ │ │ │ ├── recaster.ts │ │ │ │ │ ├── recent-casts-response.ts │ │ │ │ │ ├── recent-users-response-result.ts │ │ │ │ │ ├── recent-users-response.ts │ │ │ │ │ ├── user-cast-like-response-result.ts │ │ │ │ │ ├── user-cast-like-response.ts │ │ │ │ │ ├── user-pfp.ts │ │ │ │ │ ├── user-profile-bio.ts │ │ │ │ │ ├── user-profile.ts │ │ │ │ │ ├── user.ts │ │ │ │ │ ├── user200-response-result.ts │ │ │ │ │ ├── user200-response.ts │ │ │ │ │ ├── verification-response-result.ts │ │ │ │ │ ├── verification-response.ts │ │ │ │ │ └── viewer-context.ts │ │ │ │ └── schema.d.ts │ │ │ │ ├── index.ts │ │ │ │ └── spec.yaml │ │ └── v2 │ │ │ ├── NeynarV2APIClient.ts │ │ │ ├── index.ts │ │ │ └── openapi │ │ │ ├── generated │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── apis │ │ │ │ ├── cast-api.ts │ │ │ │ ├── feed-api.ts │ │ │ │ ├── follows-api.ts │ │ │ │ ├── notifications-api.ts │ │ │ │ ├── reaction-api.ts │ │ │ │ ├── signer-api.ts │ │ │ │ └── user-api.ts │ │ │ ├── base.ts │ │ │ ├── common.ts │ │ │ ├── configuration.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ │ ├── active-status.ts │ │ │ │ ├── add-verification-req-body.ts │ │ │ │ ├── bulk-follow-response.ts │ │ │ │ ├── cast-id.ts │ │ │ │ ├── cast-notification-type.ts │ │ │ │ ├── cast-param-type.ts │ │ │ │ ├── cast-parent-author-all-of.ts │ │ │ │ ├── cast-parent-author.ts │ │ │ │ ├── cast-response.ts │ │ │ │ ├── cast-with-interactions-all-of.ts │ │ │ │ ├── cast-with-interactions-reactions.ts │ │ │ │ ├── cast-with-interactions-replies.ts │ │ │ │ ├── cast-with-interactions.ts │ │ │ │ ├── cast.ts │ │ │ │ ├── casts-response-result.ts │ │ │ │ ├── casts-response.ts │ │ │ │ ├── dehydrated-follower.ts │ │ │ │ ├── delete-cast-req-body.ts │ │ │ │ ├── embed-cast-id.ts │ │ │ │ ├── embed-url.ts │ │ │ │ ├── embedded-cast.ts │ │ │ │ ├── error-res.ts │ │ │ │ ├── feed-response.ts │ │ │ │ ├── follow-req-body.ts │ │ │ │ ├── follow-response.ts │ │ │ │ ├── get-casts-req-body.ts │ │ │ │ ├── hydrated-follower.ts │ │ │ │ ├── index.ts │ │ │ │ ├── individual-hash-obj.ts │ │ │ │ ├── next-cursor.ts │ │ │ │ ├── notification-follow.ts │ │ │ │ ├── notification-reactions-cast.ts │ │ │ │ ├── notification-reactions.ts │ │ │ │ ├── notification.ts │ │ │ │ ├── notifications-response.ts │ │ │ │ ├── operation-response.ts │ │ │ │ ├── post-cast-req-body.ts │ │ │ │ ├── post-cast-response-cast-author.ts │ │ │ │ ├── post-cast-response-cast.ts │ │ │ │ ├── post-cast-response.ts │ │ │ │ ├── profile-url-pfp.ts │ │ │ │ ├── profile-url.ts │ │ │ │ ├── reaction-like.ts │ │ │ │ ├── reaction-recast.ts │ │ │ │ ├── reaction-req-body.ts │ │ │ │ ├── reaction-type.ts │ │ │ │ ├── register-signer-key-req-body.ts │ │ │ │ ├── relevant-followers-response.ts │ │ │ │ ├── remove-verification-req-body.ts │ │ │ │ ├── searched-user.ts │ │ │ │ ├── signer.ts │ │ │ │ ├── update-user-req-body.ts │ │ │ │ ├── user-bulk200-response.ts │ │ │ │ ├── user-dehydrated.ts │ │ │ │ ├── user-profile-bio.ts │ │ │ │ ├── user-profile.ts │ │ │ │ ├── user-response.ts │ │ │ │ ├── user-search-response-result.ts │ │ │ │ ├── user-search-response.ts │ │ │ │ ├── user-viewer-context.ts │ │ │ │ └── user.ts │ │ │ └── schema.d.ts │ │ │ ├── index.ts │ │ │ └── spec.yaml │ ├── tests │ │ ├── integration │ │ │ └── neynarAPI.ts │ │ └── utils.ts │ ├── tsconfig.json │ └── typedoc.json └── farcaster-js │ ├── package.json │ ├── src │ ├── cli.ts │ └── index.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── tsconfig.json └── yarn.lock /.cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.cspell.json -------------------------------------------------------------------------------- /.czrc: -------------------------------------------------------------------------------- 1 | { 2 | "path": "./node_modules/cz-lerna-changelog" 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @gsgalloway 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.github/auto-merge.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/farcaster-js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.github/workflows/farcaster-js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.releaserc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/project.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.vscode/project.code-workspace -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-sources.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.yarn/releases/yarn-sources.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/commitlint.config.cjs -------------------------------------------------------------------------------- /examples/hubRest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/examples/hubRest.ts -------------------------------------------------------------------------------- /examples/neynar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/examples/neynar.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/package.json -------------------------------------------------------------------------------- /packages/farcaster-js-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-cli/README.md -------------------------------------------------------------------------------- /packages/farcaster-js-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-cli/package.json -------------------------------------------------------------------------------- /packages/farcaster-js-cli/src/abi/IdRegistryABI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-cli/src/abi/IdRegistryABI.ts -------------------------------------------------------------------------------- /packages/farcaster-js-cli/src/abi/KeyGatewayABI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-cli/src/abi/KeyGatewayABI.ts -------------------------------------------------------------------------------- /packages/farcaster-js-cli/src/abi/SignedKeyRequestMetadataABI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-cli/src/abi/SignedKeyRequestMetadataABI.ts -------------------------------------------------------------------------------- /packages/farcaster-js-cli/src/bin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-cli/src/bin.ts -------------------------------------------------------------------------------- /packages/farcaster-js-cli/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-cli/src/cli.ts -------------------------------------------------------------------------------- /packages/farcaster-js-cli/src/index.ts: -------------------------------------------------------------------------------- 1 | export { runCli } from './cli.js'; 2 | -------------------------------------------------------------------------------- /packages/farcaster-js-cli/src/keyGateWayClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-cli/src/keyGateWayClient.ts -------------------------------------------------------------------------------- /packages/farcaster-js-cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-cli/tsconfig.json -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/.env.example -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/.mocharc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/.mocharc.yaml -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/CONTRIBUTING.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/README.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/.nojekyll -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/README.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/hubRestApiClient.HubRestAPIClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/hubRestApiClient.HubRestAPIClient.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/openapi.CastsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/openapi.CastsApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/openapi.Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/openapi.Configuration.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/openapi.FIDsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/openapi.FIDsApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/openapi.HubEventsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/openapi.HubEventsApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/openapi.InfoApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/openapi.InfoApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/openapi.LinksApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/openapi.LinksApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/openapi.OnChainEventsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/openapi.OnChainEventsApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/openapi.ReactionsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/openapi.ReactionsApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/openapi.StorageApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/openapi.StorageApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/openapi.SubmitMessageApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/openapi.SubmitMessageApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/openapi.UserDataApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/openapi.UserDataApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/openapi.UsernamesApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/openapi.UsernamesApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/openapi.ValidateMessageApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/openapi.ValidateMessageApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/classes/openapi.VerificationsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/classes/openapi.VerificationsApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/enums/openapi.FarcasterNetwork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/enums/openapi.FarcasterNetwork.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/enums/openapi.HashScheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/enums/openapi.HashScheme.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/enums/openapi.IdRegisterEventType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/enums/openapi.IdRegisterEventType.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/enums/openapi.LinkType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/enums/openapi.LinkType.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/enums/openapi.MessageType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/enums/openapi.MessageType.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/enums/openapi.OnChainEventType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/enums/openapi.OnChainEventType.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/enums/openapi.ReactionType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/enums/openapi.ReactionType.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/enums/openapi.SignatureScheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/enums/openapi.SignatureScheme.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/enums/openapi.SignerEventType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/enums/openapi.SignerEventType.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/enums/openapi.StoreType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/enums/openapi.StoreType.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/enums/openapi.UserDataType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/enums/openapi.UserDataType.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/enums/openapi.UserNameType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/enums/openapi.UserNameType.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/hubRestApiClient.HubRestAPIClientConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/hubRestApiClient.HubRestAPIClientConfig.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/hubRestApiClient.PaginationOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/hubRestApiClient.PaginationOptions.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/logger.Logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/logger.Logger.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastAddAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastAddAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastAddAllOfDataAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastAddAllOfDataAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastAddBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastAddBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastEmbed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastEmbed.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastId.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastRemoveAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastRemoveAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastRemoveBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastRemoveBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastsApiGetCastByIdRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastsApiGetCastByIdRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastsApiListCastsByFidRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastsApiListCastsByFidRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastsApiListCastsByMentionRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastsApiListCastsByMentionRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastsApiListCastsByParentRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.CastsApiListCastsByParentRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.ConfigurationParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.ConfigurationParameters.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.DbStats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.DbStats.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.ErrorResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.ErrorResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.ErrorResponseMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.ErrorResponseMetadata.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.FIDsApiListFidsRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.FIDsApiListFidsRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.FidsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.FidsResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.FrameActionBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.FrameActionBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.GetUserDataByFid200ResponseOneOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.GetUserDataByFid200ResponseOneOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubEventMergeMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubEventMergeMessage.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubEventMergeOnChainEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubEventMergeOnChainEvent.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubEventMergeUsernameProof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubEventMergeUsernameProof.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubEventPruneMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubEventPruneMessage.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubEventRevokeMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubEventRevokeMessage.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubEventsApiGetEventByIdRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubEventsApiGetEventByIdRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubEventsApiListEventsRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubEventsApiListEventsRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubInfoResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.HubInfoResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.IdRegisterEventBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.IdRegisterEventBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.InfoApiGetInfoRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.InfoApiGetInfoRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.LinkAddAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.LinkAddAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.LinkBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.LinkBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.LinksApiGetLinkByIdRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.LinksApiGetLinkByIdRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.LinksApiListLinksByFidRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.LinksApiListLinksByFidRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.LinksApiListLinksByTargetFidRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.LinksApiListLinksByTargetFidRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.ListCastsByFid200Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.ListCastsByFid200Response.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.ListEvents200Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.ListEvents200Response.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.ListLinksByFid200Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.ListLinksByFid200Response.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.ListOnChainEventsByFid200Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.ListOnChainEventsByFid200Response.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.ListReactionsByCast200Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.ListReactionsByCast200Response.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.ListVerificationsByFid200Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.ListVerificationsByFid200Response.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MergeMessageBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MergeMessageBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MergeOnChainEventBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MergeOnChainEventBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MergeUserNameProofBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MergeUserNameProofBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageCommon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageCommon.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataCastAddAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataCastAddAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataCastRemoveAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataCastRemoveAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataCommon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataCommon.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataFrameActionAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataFrameActionAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataLinkAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataLinkAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataReactionAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataReactionAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataUserDataAddAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataUserDataAddAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataUsernameProofAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataUsernameProofAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataVerificationAddAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataVerificationAddAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataVerificationRemoveAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.MessageDataVerificationRemoveAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.OnChainEventCommon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.OnChainEventCommon.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.OnChainEventIdRegisterAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.OnChainEventIdRegisterAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.OnChainEventSignerAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.OnChainEventSignerAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.OnChainEventSignerMigratedAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.OnChainEventSignerMigratedAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.OnChainEventStorageRentAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.OnChainEventStorageRentAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.PruneMessageBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.PruneMessageBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.ReactionAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.ReactionAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.ReactionBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.ReactionBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.ReactionRemoveAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.ReactionRemoveAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.ReactionsApiGetReactionByIdRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.ReactionsApiGetReactionByIdRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.RevokeMessageBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.RevokeMessageBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.SignerEventBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.SignerEventBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.SignerMigratedEventBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.SignerMigratedEventBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.StorageLimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.StorageLimit.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.StorageLimitsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.StorageLimitsResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.StorageRentEventBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.StorageRentEventBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.UrlEmbed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.UrlEmbed.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.UserDataAddAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.UserDataAddAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.UserDataApiGetUserDataByFidRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.UserDataApiGetUserDataByFidRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.UserDataBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.UserDataBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.UserNameProof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.UserNameProof.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.UsernameProofsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.UsernameProofsResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.UsernamesApiGetUsernameProofRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.UsernamesApiGetUsernameProofRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.ValidateMessageResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.ValidateMessageResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.VerificationAddEthAddressBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.VerificationAddEthAddressBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.VerificationAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.VerificationAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.VerificationRemoveAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.VerificationRemoveAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/interfaces/openapi.VerificationRemoveBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/interfaces/openapi.VerificationRemoveBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/modules.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/modules/farcasterEpochTimestamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/modules/farcasterEpochTimestamp.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/modules/hubRestApiClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/modules/hubRestApiClient.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/modules/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/modules/logger.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/docs/modules/openapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/docs/modules/openapi.md -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/examples/changeTargetHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/examples/changeTargetHub.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/examples/followUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/examples/followUser.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/examples/getCastById.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/examples/getCastById.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/examples/hubInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/examples/hubInfo.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/examples/listCastsByFid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/examples/listCastsByFid.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/examples/publishCast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/examples/publishCast.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/examples/reactToCast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/examples/reactToCast.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/examples/validateMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/examples/validateMessage.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/examples/verifyAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/examples/verifyAddress.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/openapi-generator-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/openapi-generator-config.json -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/openapitools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/openapitools.json -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/package.json -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/farcasterEpochTimestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/farcasterEpochTimestamp.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/hubRestApiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/hubRestApiClient.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/index.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/logger.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/.openapi-generator/FILES -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/apis/casts-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/apis/casts-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/apis/fids-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/apis/fids-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/apis/hub-events-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/apis/hub-events-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/apis/info-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/apis/info-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/apis/links-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/apis/links-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/apis/on-chain-events-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/apis/on-chain-events-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/apis/reactions-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/apis/reactions-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/apis/storage-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/apis/storage-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/apis/submit-message-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/apis/submit-message-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/apis/user-data-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/apis/user-data-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/apis/usernames-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/apis/usernames-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/apis/validate-message-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/apis/validate-message-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/apis/verifications-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/apis/verifications-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/base.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/common.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/configuration.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/index.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-add-all-of-data-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-add-all-of-data-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-add-all-of-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-add-all-of-data.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-add-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-add-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-add-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-add-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-add.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-embed.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-id.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-remove-all-of-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-remove-all-of-data.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-remove-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-remove-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-remove-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-remove-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/cast-remove.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/db-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/db-stats.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/embed.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/error-response-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/error-response-metadata.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/error-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/error-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/farcaster-network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/farcaster-network.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/fids-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/fids-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/frame-action-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/frame-action-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/hash-scheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/hash-scheme.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/hub-event-merge-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/hub-event-merge-message.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/hub-event-merge-on-chain-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/hub-event-merge-on-chain-event.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/hub-event-merge-username-proof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/hub-event-merge-username-proof.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/hub-event-prune-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/hub-event-prune-message.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/hub-event-revoke-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/hub-event-revoke-message.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/hub-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/hub-event.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/hub-info-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/hub-info-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/id-register-event-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/id-register-event-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/id-register-event-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/id-register-event-type.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/index.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/link-add-all-of-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/link-add-all-of-data.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/link-add-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/link-add-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/link-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/link-add.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/link-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/link-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/link-remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/link-remove.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/link-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/link-type.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/list-casts-by-fid200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/list-casts-by-fid200-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/list-events200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/list-events200-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/list-links-by-fid200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/list-links-by-fid200-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/merge-message-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/merge-message-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/merge-on-chain-event-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/merge-on-chain-event-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/merge-user-name-proof-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/merge-user-name-proof-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-all-of-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-all-of-data.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-common.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-cast-add-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-cast-add-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-cast-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-cast-add.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-cast-remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-cast-remove.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-common.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-frame-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-frame-action.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-link-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-link-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-link.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-reaction-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-reaction-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-reaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-reaction.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-user-data-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-user-data-add.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-username-proof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-username-proof.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-verification-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-data-verification-add.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message-type.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/message.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event-common.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event-id-register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event-id-register.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event-signer-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event-signer-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event-signer-migrated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event-signer-migrated.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event-signer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event-signer.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event-storage-rent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event-storage-rent.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event-type.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/on-chain-event.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/prune-message-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/prune-message-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/reaction-all-of-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/reaction-all-of-data.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/reaction-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/reaction-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/reaction-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/reaction-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/reaction-remove-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/reaction-remove-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/reaction-remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/reaction-remove.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/reaction-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/reaction-type.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/reaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/reaction.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/revoke-message-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/revoke-message-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/signature-scheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/signature-scheme.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/signer-event-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/signer-event-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/signer-event-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/signer-event-type.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/signer-migrated-event-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/signer-migrated-event-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/storage-limit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/storage-limit.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/storage-limits-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/storage-limits-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/storage-rent-event-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/storage-rent-event-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/store-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/store-type.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/url-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/url-embed.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/user-data-add-all-of-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/user-data-add-all-of-data.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/user-data-add-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/user-data-add-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/user-data-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/user-data-add.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/user-data-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/user-data-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/user-data-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/user-data-type.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/user-name-proof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/user-name-proof.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/user-name-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/user-name-type.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/username-proofs-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/username-proofs-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/validate-message-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/validate-message-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/verification-all-of-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/verification-all-of-data.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/verification-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/verification-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/verification-remove-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/verification-remove-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/verification-remove-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/verification-remove-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/verification-remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/verification-remove.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/models/verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/models/verification.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/generated/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/generated/schema.d.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/index.ts: -------------------------------------------------------------------------------- 1 | export * from './generated/index.js'; 2 | -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/post-process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/post-process.sh -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/openapi/spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/openapi/spec.yaml -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/signers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/signers.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/src/utils.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/tests/integration/hubRestAPIClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/tests/integration/hubRestAPIClient.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/tests/utils.ts -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/tsconfig.json -------------------------------------------------------------------------------- /packages/farcaster-js-hub-rest/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-hub-rest/typedoc.json -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/.env.example -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/.mocharc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/.mocharc.yaml -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/CONTRIBUTING.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/README.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/.nojekyll -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/README.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/NeynarAPIClient.NeynarAPIClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/NeynarAPIClient.NeynarAPIClient.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v1.CastApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v1.CastApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v1.Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v1.Configuration.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v1.FollowsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v1.FollowsApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v1.NeynarV1APIClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v1.NeynarV1APIClient.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v1.NotificationsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v1.NotificationsApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v1.ReactionsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v1.ReactionsApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v1.UserApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v1.UserApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v1.VerificationApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v1.VerificationApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v2.CastApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v2.CastApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v2.Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v2.Configuration.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v2.FeedApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v2.FeedApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v2.FollowsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v2.FollowsApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v2.NeynarV2APIClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v2.NeynarV2APIClient.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v2.NotificationsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v2.NotificationsApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v2.ReactionApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v2.ReactionApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v2.SignerApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v2.SignerApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/classes/v2.UserApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/classes/v2.UserApi.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v1.ActiveStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v1.ActiveStatus.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v1.CastType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v1.CastType.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v1.ReactionType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v1.ReactionType.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v2.ActiveStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v2.ActiveStatus.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v2.CastNotificationType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v2.CastNotificationType.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v2.CastParamType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v2.CastParamType.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v2.DehydratedFollowerObjectEnum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v2.DehydratedFollowerObjectEnum.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v2.HydratedFollowerObjectEnum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v2.HydratedFollowerObjectEnum.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v2.NotificationFollowObjectEnum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v2.NotificationFollowObjectEnum.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v2.NotificationReactionsCastObjectEnum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v2.NotificationReactionsCastObjectEnum.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v2.NotificationReactionsObjectEnum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v2.NotificationReactionsObjectEnum.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v2.NotificationTypeEnum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v2.NotificationTypeEnum.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v2.ReactionType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v2.ReactionType.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v2.SignerStatusEnum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v2.SignerStatusEnum.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v2.UserDehydratedObjectEnum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v2.UserDehydratedObjectEnum.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/enums/v2.UserObjectEnum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/enums/v2.UserObjectEnum.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/logger.Logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/logger.Logger.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.AllCastsInThreadResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.AllCastsInThreadResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.AllCastsInThreadResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.AllCastsInThreadResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.Cast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.Cast.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastApiAllCastsInThreadRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastApiAllCastsInThreadRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastApiCastRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastApiCastRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastApiCastsRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastApiCastsRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastApiRecentCastsRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastApiRecentCastsRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastAuthorOneOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastAuthorOneOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastLikesResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastLikesResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastLikesResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastLikesResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastParentAuthorAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastParentAuthorAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastReactionsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastReactionsResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastReactionsResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastReactionsResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastRecasterResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastRecasterResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastRecasterResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastRecasterResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastWithInteractionsAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastWithInteractionsAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastWithInteractionsReactionsOrRecasts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastWithInteractionsReactionsOrRecasts.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastWithInteractionsReplies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastWithInteractionsReplies.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastsResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CastsResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CastsResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.ConfigurationParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.ConfigurationParameters.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CustodyAddressResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CustodyAddressResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.CustodyAddressResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.CustodyAddressResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.EmbedUrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.EmbedUrl.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.ErrorRes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.ErrorRes.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.FollowResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.FollowResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.FollowResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.FollowResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.FollowsApiFollowersRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.FollowsApiFollowersRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.FollowsApiFollowingRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.FollowsApiFollowingRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.MentionsAndRepliesResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.MentionsAndRepliesResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.MentionsAndRepliesResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.MentionsAndRepliesResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.NextCursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.NextCursor.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.NotificationsApiMentionsAndRepliesRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.NotificationsApiMentionsAndRepliesRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.NotificationsApiReactionsAndRecastsRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.NotificationsApiReactionsAndRecastsRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.Reaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.Reaction.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.ReactionWithCastMeta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.ReactionWithCastMeta.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.ReactionWithCastMetaCast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.ReactionWithCastMetaCast.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.ReactionWithCastMetaReaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.ReactionWithCastMetaReaction.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.ReactionsAndRecastsNotificationAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.ReactionsAndRecastsNotificationAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.ReactionsAndRecastsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.ReactionsAndRecastsResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.ReactionsAndRecastsResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.ReactionsAndRecastsResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.ReactionsApiCastLikesRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.ReactionsApiCastLikesRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.ReactionsApiCastReactionsRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.ReactionsApiCastReactionsRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.ReactionsApiCastRecastersRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.ReactionsApiCastRecastersRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.Reactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.Reactor.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.ReactorPfp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.ReactorPfp.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.ReactorViewerContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.ReactorViewerContext.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.Recaster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.Recaster.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.RecasterPfp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.RecasterPfp.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.RecasterProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.RecasterProfile.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.RecasterProfileBio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.RecasterProfileBio.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.RecasterViewerContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.RecasterViewerContext.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.RecentCastsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.RecentCastsResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.RecentUsersResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.RecentUsersResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.RecentUsersResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.RecentUsersResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.User.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.User200Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.User200Response.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.User200ResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.User200ResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.UserApiCustodyAddressRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.UserApiCustodyAddressRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.UserApiRecentUsersRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.UserApiRecentUsersRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.UserApiUserByUsernameRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.UserApiUserByUsernameRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.UserApiUserCastLikesRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.UserApiUserCastLikesRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.UserApiUserRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.UserApiUserRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.UserCastLikeResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.UserCastLikeResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.UserCastLikeResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.UserCastLikeResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.UserPfp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.UserPfp.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.UserProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.UserProfile.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.UserProfileBio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.UserProfileBio.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.VerificationApiUserByVerificationRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.VerificationApiUserByVerificationRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.VerificationApiVerificationsRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.VerificationApiVerificationsRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.VerificationResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.VerificationResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.VerificationResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.VerificationResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v1.ViewerContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v1.ViewerContext.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.AddVerificationReqBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.AddVerificationReqBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.BulkFollowResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.BulkFollowResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.Cast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.Cast.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.CastApiCastRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.CastApiCastRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.CastApiCastsRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.CastApiCastsRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.CastApiDeleteCastRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.CastApiDeleteCastRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.CastApiPostCastRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.CastApiPostCastRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.CastId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.CastId.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.CastParentAuthorAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.CastParentAuthorAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.CastResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.CastResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.CastWithInteractionsAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.CastWithInteractionsAllOf.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.CastWithInteractionsReactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.CastWithInteractionsReactions.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.CastWithInteractionsReplies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.CastWithInteractionsReplies.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.CastsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.CastsResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.CastsResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.CastsResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.ConfigurationParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.ConfigurationParameters.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.DehydratedFollower.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.DehydratedFollower.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.DeleteCastReqBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.DeleteCastReqBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.EmbedCastId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.EmbedCastId.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.EmbedUrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.EmbedUrl.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.ErrorRes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.ErrorRes.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.FeedApiFeedRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.FeedApiFeedRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.FeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.FeedResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.FollowReqBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.FollowReqBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.FollowResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.FollowResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.FollowsApiRelevantFollowersRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.FollowsApiRelevantFollowersRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.GetCastsReqBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.GetCastsReqBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.HydratedFollower.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.HydratedFollower.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.IndividualHashObj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.IndividualHashObj.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.NextCursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.NextCursor.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.Notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.Notification.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.NotificationFollow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.NotificationFollow.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.NotificationReactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.NotificationReactions.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.NotificationReactionsCast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.NotificationReactionsCast.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.NotificationsApiNotificationsRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.NotificationsApiNotificationsRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.NotificationsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.NotificationsResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.OperationResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.OperationResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.PostCastReqBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.PostCastReqBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.PostCastResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.PostCastResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.PostCastResponseCast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.PostCastResponseCast.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.PostCastResponseCastAuthor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.PostCastResponseCastAuthor.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.ProfileUrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.ProfileUrl.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.ProfileUrlPfp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.ProfileUrlPfp.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.ReactionApiDeleteReactionRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.ReactionApiDeleteReactionRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.ReactionApiPostReactionRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.ReactionApiPostReactionRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.ReactionLike.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.ReactionLike.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.ReactionRecast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.ReactionRecast.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.ReactionReqBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.ReactionReqBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.RegisterSignerKeyReqBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.RegisterSignerKeyReqBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.RelevantFollowersResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.RelevantFollowersResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.RemoveVerificationReqBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.RemoveVerificationReqBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.Signer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.Signer.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.SignerApiRegisterSignedKeyRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.SignerApiRegisterSignedKeyRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.SignerApiSignerRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.SignerApiSignerRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UpdateUserReqBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UpdateUserReqBody.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.User.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UserApiFollowUserRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UserApiFollowUserRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UserApiLookupUserByCustodyAddressRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UserApiLookupUserByCustodyAddressRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UserApiUnfollowUserRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UserApiUnfollowUserRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UserApiUpdateUserRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UserApiUpdateUserRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UserApiUserBulkRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UserApiUserBulkRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UserApiUserSearchRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UserApiUserSearchRequest.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UserBulk200Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UserBulk200Response.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UserDehydrated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UserDehydrated.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UserProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UserProfile.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UserProfileBio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UserProfileBio.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UserResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UserResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UserSearchResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UserSearchResponse.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UserSearchResponseResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UserSearchResponseResult.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/interfaces/v2.UserViewerContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/interfaces/v2.UserViewerContext.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/modules.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/modules/NeynarAPIClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/modules/NeynarAPIClient.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/modules/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/modules/logger.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/modules/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/modules/utils.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/modules/v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/modules/v1.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/docs/modules/v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/docs/modules/v2.md -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/examples/createSigner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/examples/createSigner.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/examples/followUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/examples/followUser.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/examples/getUserActivity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/examples/getUserActivity.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/examples/likeAndRecast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/examples/likeAndRecast.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/examples/publishCast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/examples/publishCast.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/examples/replyToCast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/examples/replyToCast.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/openapi-generator-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/openapi-generator-config.json -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/openapitools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/openapitools.json -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/package.json -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/NeynarAPIClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/NeynarAPIClient.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/index.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/logger.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/utils.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/NeynarV1APIClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/NeynarV1APIClient.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/index.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/.openapi-generator/FILES -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/apis/cast-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/apis/cast-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/apis/follows-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/apis/follows-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/apis/notifications-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/apis/notifications-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/apis/reactions-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/apis/reactions-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/apis/user-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/apis/user-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/apis/verification-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/apis/verification-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/base.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/common.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/configuration.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/index.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/active-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/active-status.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/all-casts-in-thread-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/all-casts-in-thread-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-author-one-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-author-one-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-author.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-likes-response-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-likes-response-result.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-likes-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-likes-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-parent-author-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-parent-author-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-parent-author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-parent-author.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-reactions-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-reactions-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-recaster-response-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-recaster-response-result.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-recaster-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-recaster-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-response-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-response-result.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-type.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-with-interactions-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-with-interactions-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-with-interactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast-with-interactions.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/cast.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/casts-response-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/casts-response-result.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/casts-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/casts-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/custody-address-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/custody-address-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/embed-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/embed-url.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/error-res.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/error-res.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/follow-response-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/follow-response-result.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/follow-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/follow-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/index.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/mentions-and-replies-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/mentions-and-replies-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/next-cursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/next-cursor.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/reaction-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/reaction-type.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/reaction-with-cast-meta-cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/reaction-with-cast-meta-cast.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/reaction-with-cast-meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/reaction-with-cast-meta.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/reaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/reaction.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/reactor-pfp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/reactor-pfp.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/reactor-viewer-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/reactor-viewer-context.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/reactor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/reactor.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/recaster-pfp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/recaster-pfp.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/recaster-profile-bio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/recaster-profile-bio.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/recaster-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/recaster-profile.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/recaster-viewer-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/recaster-viewer-context.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/recaster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/recaster.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/recent-casts-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/recent-casts-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/recent-users-response-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/recent-users-response-result.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/recent-users-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/recent-users-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/user-cast-like-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/user-cast-like-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/user-pfp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/user-pfp.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/user-profile-bio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/user-profile-bio.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/user-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/user-profile.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/user.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/user200-response-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/user200-response-result.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/user200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/user200-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/verification-response-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/verification-response-result.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/verification-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/verification-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/models/viewer-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/models/viewer-context.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/generated/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/generated/schema.d.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/index.ts: -------------------------------------------------------------------------------- 1 | export * from './generated/index.js'; 2 | -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v1/openapi/spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v1/openapi/spec.yaml -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/NeynarV2APIClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/NeynarV2APIClient.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/index.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/.openapi-generator/FILES -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/apis/cast-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/apis/cast-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/apis/feed-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/apis/feed-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/apis/follows-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/apis/follows-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/apis/notifications-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/apis/notifications-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/apis/reaction-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/apis/reaction-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/apis/signer-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/apis/signer-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/apis/user-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/apis/user-api.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/base.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/common.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/configuration.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/index.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/active-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/active-status.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/add-verification-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/add-verification-req-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/bulk-follow-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/bulk-follow-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-id.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-notification-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-notification-type.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-param-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-param-type.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-parent-author-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-parent-author-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-parent-author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-parent-author.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-with-interactions-all-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-with-interactions-all-of.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-with-interactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast-with-interactions.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/cast.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/casts-response-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/casts-response-result.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/casts-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/casts-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/dehydrated-follower.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/dehydrated-follower.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/delete-cast-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/delete-cast-req-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/embed-cast-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/embed-cast-id.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/embed-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/embed-url.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/embedded-cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/embedded-cast.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/error-res.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/error-res.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/feed-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/feed-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/follow-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/follow-req-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/follow-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/follow-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/get-casts-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/get-casts-req-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/hydrated-follower.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/hydrated-follower.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/index.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/individual-hash-obj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/individual-hash-obj.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/next-cursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/next-cursor.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/notification-follow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/notification-follow.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/notification-reactions-cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/notification-reactions-cast.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/notification-reactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/notification-reactions.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/notification.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/notifications-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/notifications-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/operation-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/operation-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/post-cast-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/post-cast-req-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/post-cast-response-cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/post-cast-response-cast.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/post-cast-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/post-cast-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/profile-url-pfp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/profile-url-pfp.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/profile-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/profile-url.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/reaction-like.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/reaction-like.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/reaction-recast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/reaction-recast.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/reaction-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/reaction-req-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/reaction-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/reaction-type.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/register-signer-key-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/register-signer-key-req-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/relevant-followers-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/relevant-followers-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/remove-verification-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/remove-verification-req-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/searched-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/searched-user.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/signer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/signer.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/update-user-req-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/update-user-req-body.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/user-bulk200-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/user-bulk200-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/user-dehydrated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/user-dehydrated.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/user-profile-bio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/user-profile-bio.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/user-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/user-profile.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/user-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/user-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/user-search-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/user-search-response.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/user-viewer-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/user-viewer-context.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/models/user.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/generated/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/generated/schema.d.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/index.ts: -------------------------------------------------------------------------------- 1 | export * from './generated/index.js'; 2 | -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/src/v2/openapi/spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/src/v2/openapi/spec.yaml -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/tests/integration/neynarAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/tests/integration/neynarAPI.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/tests/utils.ts -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/tsconfig.json -------------------------------------------------------------------------------- /packages/farcaster-js-neynar/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js-neynar/typedoc.json -------------------------------------------------------------------------------- /packages/farcaster-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js/package.json -------------------------------------------------------------------------------- /packages/farcaster-js/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js/src/cli.ts -------------------------------------------------------------------------------- /packages/farcaster-js/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js/src/index.ts -------------------------------------------------------------------------------- /packages/farcaster-js/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js/tsconfig.build.json -------------------------------------------------------------------------------- /packages/farcaster-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/packages/farcaster-js/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarenAuhcy4ka/farcaster-js/HEAD/yarn.lock --------------------------------------------------------------------------------