UNPKG

@neynar/nodejs-sdk

Version:

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

35 lines (34 loc) 1.29 kB
/** * Neynar API * The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details. * * The version of the OpenAPI document: 3.115.0 * Contact: team@neynar.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @enum {string} */ export declare const SharedSignerPermission: { readonly WriteAll: "WRITE_ALL"; readonly ReadOnly: "READ_ONLY"; readonly None: "NONE"; readonly PublishCast: "PUBLISH_CAST"; readonly DeleteCast: "DELETE_CAST"; readonly PublishReaction: "PUBLISH_REACTION"; readonly DeleteReaction: "DELETE_REACTION"; readonly UpdateProfile: "UPDATE_PROFILE"; readonly FollowUser: "FOLLOW_USER"; readonly UnfollowUser: "UNFOLLOW_USER"; readonly FollowChannel: "FOLLOW_CHANNEL"; readonly UnfollowChannel: "UNFOLLOW_CHANNEL"; readonly AddVerification: "ADD_VERIFICATION"; readonly RemoveVerification: "REMOVE_VERIFICATION"; readonly WriteFrameAction: "WRITE_FRAME_ACTION"; }; export type SharedSignerPermission = typeof SharedSignerPermission[keyof typeof SharedSignerPermission];