UNPKG

@better-auth-ui/core

Version:

Authentication components and data utilities for [Better Auth](https://better-auth.com), available for React and Solid.

68 lines (55 loc) 2.67 kB
/** * Hierarchical mutation key factory for organization-related mutations. * * Mutation keys are mostly used for `useIsMutating` and global * `MutationCache` observers (e.g. toast handling), so the keys are static * tuples rather than parameterised factories. Each grouping exposes an * `all` prefix so consumers can match a whole feature at once: * * ```ts * useIsMutating({ mutationKey: organizationMutationKeys.all }) * ``` */ export const organizationMutationKeys = { /** Root key for every organization mutation. */ all: ["auth", "organization"] as const, /** Key for `organization.create`. */ create: ["auth", "organization", "create"] as const, /** Key for `organization.delete`. */ delete: ["auth", "organization", "delete"] as const, /** Key for `organization.update`. */ update: ["auth", "organization", "update"] as const, /** Key for `organization.setActive`. */ setActive: ["auth", "organization", "setActive"] as const, /** Key for `organization.inviteMember`. */ inviteMember: ["auth", "organization", "inviteMember"] as const, /** Key for `organization.removeMember`. */ removeMember: ["auth", "organization", "removeMember"] as const, /** Key for `organization.leave`. */ leave: ["auth", "organization", "leave"] as const, /** Key for `organization.updateMemberRole`. */ updateMemberRole: ["auth", "organization", "updateMemberRole"] as const, /** Key for `organization.acceptInvitation`. */ acceptInvitation: ["auth", "organization", "acceptInvitation"] as const, /** Key for `organization.cancelInvitation`. */ cancelInvitation: ["auth", "organization", "cancelInvitation"] as const, /** Key for `organization.rejectInvitation` (invitee declines). */ rejectInvitation: ["auth", "organization", "rejectInvitation"] as const, /** Key for `organization.checkSlug`. */ checkSlug: ["auth", "organization", "checkSlug"] as const, roles: { all: ["auth", "organization", "role"] as const, create: ["auth", "organization", "role", "create"] as const, update: ["auth", "organization", "role", "update"] as const, delete: ["auth", "organization", "role", "delete"] as const }, teams: { all: ["auth", "organization", "team"] as const, create: ["auth", "organization", "team", "create"] as const, update: ["auth", "organization", "team", "update"] as const, setActive: ["auth", "organization", "team", "setActive"] as const, remove: ["auth", "organization", "team", "remove"] as const, addMember: ["auth", "organization", "team", "addMember"] as const, removeMember: ["auth", "organization", "team", "removeMember"] as const } } as const