-
Notifications
You must be signed in to change notification settings - Fork 443
Expand file tree
/
Copy pathinternal.ts
More file actions
41 lines (33 loc) · 1.31 KB
/
internal.ts
File metadata and controls
41 lines (33 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
export { constants } from './constants';
export { createRedirect } from './createRedirect';
export type { RedirectFun } from './createRedirect';
export type { CreateAuthenticateRequestOptions } from './tokens/factory';
export { createAuthenticateRequest } from './tokens/factory';
export { debugRequestState } from './tokens/request';
export type { AuthenticateRequestOptions, OrganizationSyncOptions, EntityTypes } from './tokens/types';
export type {
SignedInAuthObjectOptions,
SignedInAuthObject,
SignedOutAuthObject,
AuthenticatedMachineObject,
UnauthenticatedMachineObject,
} from './tokens/authObjects';
export {
makeAuthObjectSerializable,
signedOutAuthObject,
signedInAuthObject,
unauthenticatedMachineObject,
authenticatedMachineObject,
} from './tokens/authObjects';
export { AuthStatus } from './tokens/authStatus';
export type {
RequestState,
SignedInState,
SignedOutState,
MachineAuthenticatedState,
MachineUnauthenticatedState,
} from './tokens/authStatus';
export { decorateObjectWithResources, stripPrivateDataFromObject } from './util/decorateObjectWithResources';
export { createClerkRequest } from './tokens/clerkRequest';
export type { ClerkRequest } from './tokens/clerkRequest';
export { reverificationError, reverificationErrorResponse } from '@clerk/shared/authorization-errors';