@githat/nextjs 0.2.5 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +177 -1
- package/dist/index.d.ts +177 -1
- package/dist/index.js +581 -53
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +524 -1
- package/dist/index.mjs.map +1 -1
- package/dist/server.d.mts +41 -1
- package/dist/server.d.ts +41 -1
- package/dist/server.js +18 -0
- package/dist/server.js.map +1 -1
- package/dist/server.mjs +17 -0
- package/dist/server.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -7,6 +7,11 @@ interface GitHatUser {
|
|
|
7
7
|
name: string;
|
|
8
8
|
avatarUrl: string | null;
|
|
9
9
|
emailVerified: boolean;
|
|
10
|
+
githubUsername?: string;
|
|
11
|
+
cognitoUsername?: string;
|
|
12
|
+
cognitoSub?: string;
|
|
13
|
+
googleId?: string;
|
|
14
|
+
authProvider?: 'email' | 'github' | 'cognito' | 'google';
|
|
10
15
|
}
|
|
11
16
|
interface GitHatOrg {
|
|
12
17
|
id: string;
|
|
@@ -105,6 +110,33 @@ declare function useGitHat(): {
|
|
|
105
110
|
resendVerificationEmail: (email: string) => Promise<{
|
|
106
111
|
success: boolean;
|
|
107
112
|
}>;
|
|
113
|
+
getGitHubOAuthUrl: (options?: {
|
|
114
|
+
redirectUri?: string;
|
|
115
|
+
state?: string;
|
|
116
|
+
}) => Promise<{
|
|
117
|
+
url: string;
|
|
118
|
+
}>;
|
|
119
|
+
signInWithGitHub: (code: string, options?: {
|
|
120
|
+
redirectUri?: string;
|
|
121
|
+
}) => Promise<{
|
|
122
|
+
user: GitHatUser;
|
|
123
|
+
org: GitHatOrg | null;
|
|
124
|
+
isNewUser: boolean;
|
|
125
|
+
}>;
|
|
126
|
+
getCognitoOAuthUrl: (options?: {
|
|
127
|
+
redirectUri?: string;
|
|
128
|
+
state?: string;
|
|
129
|
+
identityProvider?: string;
|
|
130
|
+
}) => Promise<{
|
|
131
|
+
url: string;
|
|
132
|
+
}>;
|
|
133
|
+
signInWithCognito: (code: string, options?: {
|
|
134
|
+
redirectUri?: string;
|
|
135
|
+
}) => Promise<{
|
|
136
|
+
user: GitHatUser;
|
|
137
|
+
org: GitHatOrg | null;
|
|
138
|
+
isNewUser: boolean;
|
|
139
|
+
}>;
|
|
108
140
|
};
|
|
109
141
|
|
|
110
142
|
interface DataItem {
|
|
@@ -200,6 +232,52 @@ declare function useData(): {
|
|
|
200
232
|
batch: (collection: string, operations: BatchOperation[]) => Promise<BatchResult>;
|
|
201
233
|
};
|
|
202
234
|
|
|
235
|
+
interface SendEmailOptions {
|
|
236
|
+
/** Recipient email address(es). Single string or array of up to 50 addresses. */
|
|
237
|
+
to: string | string[];
|
|
238
|
+
/** Email subject line (max 998 characters). */
|
|
239
|
+
subject: string;
|
|
240
|
+
/** HTML body (optional if text is provided). */
|
|
241
|
+
html?: string;
|
|
242
|
+
/** Plain text body (optional if html is provided). */
|
|
243
|
+
text?: string;
|
|
244
|
+
/** Reply-to email address. Recipients can reply directly to this address. */
|
|
245
|
+
replyTo?: string;
|
|
246
|
+
}
|
|
247
|
+
interface SendEmailResult {
|
|
248
|
+
/** SES message ID for tracking. */
|
|
249
|
+
messageId: string;
|
|
250
|
+
/** Recipient addresses the email was sent to. */
|
|
251
|
+
to: string[];
|
|
252
|
+
/** Subject line as sent. */
|
|
253
|
+
subject: string;
|
|
254
|
+
/** Whether the email was sent successfully. */
|
|
255
|
+
sent: boolean;
|
|
256
|
+
}
|
|
257
|
+
/**
|
|
258
|
+
* Hook for sending transactional emails via GitHat's Email API.
|
|
259
|
+
* Emails are sent from noreply@githat.io. Use replyTo for customer replies.
|
|
260
|
+
*
|
|
261
|
+
* @example
|
|
262
|
+
* ```tsx
|
|
263
|
+
* const { send } = useEmail();
|
|
264
|
+
*
|
|
265
|
+
* await send({
|
|
266
|
+
* to: 'user@example.com',
|
|
267
|
+
* subject: 'Your order is confirmed',
|
|
268
|
+
* html: '<h1>Order Confirmed</h1><p>Thank you!</p>',
|
|
269
|
+
* replyTo: 'support@myapp.com'
|
|
270
|
+
* });
|
|
271
|
+
* ```
|
|
272
|
+
*/
|
|
273
|
+
declare function useEmail(): {
|
|
274
|
+
/**
|
|
275
|
+
* Send a transactional email.
|
|
276
|
+
* @param options - Email options (to, subject, html/text, replyTo)
|
|
277
|
+
*/
|
|
278
|
+
send: (options: SendEmailOptions) => Promise<SendEmailResult>;
|
|
279
|
+
};
|
|
280
|
+
|
|
203
281
|
interface SignInFormProps {
|
|
204
282
|
onSuccess?: () => void;
|
|
205
283
|
signUpUrl?: string;
|
|
@@ -279,6 +357,86 @@ interface ChangePasswordFormProps {
|
|
|
279
357
|
}
|
|
280
358
|
declare function ChangePasswordForm({ onSuccess, onError, minPasswordLength, }: ChangePasswordFormProps): react_jsx_runtime.JSX.Element;
|
|
281
359
|
|
|
360
|
+
interface GitHubButtonProps {
|
|
361
|
+
/** Text to display on the button */
|
|
362
|
+
children?: React.ReactNode;
|
|
363
|
+
/** Custom redirect URI after GitHub auth */
|
|
364
|
+
redirectUri?: string;
|
|
365
|
+
/** Callback on successful auth */
|
|
366
|
+
onSuccess?: (result: {
|
|
367
|
+
user: any;
|
|
368
|
+
org: any;
|
|
369
|
+
isNewUser: boolean;
|
|
370
|
+
}) => void;
|
|
371
|
+
/** Callback on error */
|
|
372
|
+
onError?: (error: Error) => void;
|
|
373
|
+
/** Additional class names */
|
|
374
|
+
className?: string;
|
|
375
|
+
/** Button variant */
|
|
376
|
+
variant?: 'default' | 'outline';
|
|
377
|
+
/** Disable the button */
|
|
378
|
+
disabled?: boolean;
|
|
379
|
+
}
|
|
380
|
+
declare function GitHubButton({ children, redirectUri, onSuccess, onError, className, variant, disabled, }: GitHubButtonProps): react_jsx_runtime.JSX.Element;
|
|
381
|
+
|
|
382
|
+
interface GitHubCallbackProps {
|
|
383
|
+
/** URL to redirect to after successful auth */
|
|
384
|
+
redirectUrl?: string;
|
|
385
|
+
/** URL for new users (onboarding) */
|
|
386
|
+
newUserRedirectUrl?: string;
|
|
387
|
+
/** Callback on successful auth */
|
|
388
|
+
onSuccess?: (result: {
|
|
389
|
+
user: any;
|
|
390
|
+
org: any;
|
|
391
|
+
isNewUser: boolean;
|
|
392
|
+
}) => void;
|
|
393
|
+
/** Callback on error */
|
|
394
|
+
onError?: (error: Error) => void;
|
|
395
|
+
/** Custom loading component */
|
|
396
|
+
loadingComponent?: React.ReactNode;
|
|
397
|
+
/** Custom error component */
|
|
398
|
+
errorComponent?: (error: string) => React.ReactNode;
|
|
399
|
+
}
|
|
400
|
+
declare function GitHubCallback({ redirectUrl, newUserRedirectUrl, onSuccess, onError, loadingComponent, errorComponent, }: GitHubCallbackProps): react_jsx_runtime.JSX.Element;
|
|
401
|
+
|
|
402
|
+
interface CognitoButtonProps {
|
|
403
|
+
/** Text to display on the button */
|
|
404
|
+
children?: React.ReactNode;
|
|
405
|
+
/** Custom redirect URI after Cognito auth */
|
|
406
|
+
redirectUri?: string;
|
|
407
|
+
/** Specific identity provider (e.g., 'Google', 'Facebook') */
|
|
408
|
+
identityProvider?: string;
|
|
409
|
+
/** Callback on error */
|
|
410
|
+
onError?: (error: Error) => void;
|
|
411
|
+
/** Additional class names */
|
|
412
|
+
className?: string;
|
|
413
|
+
/** Button variant */
|
|
414
|
+
variant?: 'default' | 'outline';
|
|
415
|
+
/** Disable the button */
|
|
416
|
+
disabled?: boolean;
|
|
417
|
+
}
|
|
418
|
+
declare function CognitoButton({ children, redirectUri, identityProvider, onError, className, variant, disabled, }: CognitoButtonProps): react_jsx_runtime.JSX.Element;
|
|
419
|
+
|
|
420
|
+
interface CognitoCallbackProps {
|
|
421
|
+
/** URL to redirect to after successful auth */
|
|
422
|
+
redirectUrl?: string;
|
|
423
|
+
/** URL for new users (onboarding) */
|
|
424
|
+
newUserRedirectUrl?: string;
|
|
425
|
+
/** Callback on successful auth */
|
|
426
|
+
onSuccess?: (result: {
|
|
427
|
+
user: any;
|
|
428
|
+
org: any;
|
|
429
|
+
isNewUser: boolean;
|
|
430
|
+
}) => void;
|
|
431
|
+
/** Callback on error */
|
|
432
|
+
onError?: (error: Error) => void;
|
|
433
|
+
/** Custom loading component */
|
|
434
|
+
loadingComponent?: React.ReactNode;
|
|
435
|
+
/** Custom error component */
|
|
436
|
+
errorComponent?: (error: string) => React.ReactNode;
|
|
437
|
+
}
|
|
438
|
+
declare function CognitoCallback({ redirectUrl, newUserRedirectUrl, onSuccess, onError, loadingComponent, errorComponent, }: CognitoCallbackProps): react_jsx_runtime.JSX.Element;
|
|
439
|
+
|
|
282
440
|
/**
|
|
283
441
|
* @githat/nextjs/server
|
|
284
442
|
*
|
|
@@ -327,5 +485,23 @@ interface WithAuthOptions {
|
|
|
327
485
|
*/
|
|
328
486
|
onUnauthorized?: () => Response;
|
|
329
487
|
}
|
|
488
|
+
interface ServerSendEmailOptions {
|
|
489
|
+
/** Recipient email address(es). */
|
|
490
|
+
to: string | string[];
|
|
491
|
+
/** Email subject line. */
|
|
492
|
+
subject: string;
|
|
493
|
+
/** HTML body. */
|
|
494
|
+
html?: string;
|
|
495
|
+
/** Plain text body. */
|
|
496
|
+
text?: string;
|
|
497
|
+
/** Reply-to email address. */
|
|
498
|
+
replyTo?: string;
|
|
499
|
+
}
|
|
500
|
+
interface ServerSendEmailResult {
|
|
501
|
+
messageId: string;
|
|
502
|
+
to: string[];
|
|
503
|
+
subject: string;
|
|
504
|
+
sent: boolean;
|
|
505
|
+
}
|
|
330
506
|
|
|
331
|
-
export { type AuthActions, type AuthPayload, type AuthState, type AuthenticatedHandler, type BatchOperation, type BatchResult, ChangePasswordForm, type DataItem, type DeleteResult, type EmailVerificationResult, ForgotPasswordForm, type GitHatConfig, type GitHatContextValue, type GitHatOrg, GitHatProvider, type GitHatUser, type OrgMetadata, OrgSwitcher, type PasswordResetResult, ProtectedRoute, type PutResult, type QueryOptions, type QueryResult, ResetPasswordForm, SignInButton, SignInForm, SignUpButton, type SignUpData, SignUpForm, type SignUpResult, UserButton, VerifiedBadge, VerifyEmailStatus, type VerifyOptions, type WithAuthOptions, useAuth, useData, useGitHat };
|
|
507
|
+
export { type AuthActions, type AuthPayload, type AuthState, type AuthenticatedHandler, type BatchOperation, type BatchResult, ChangePasswordForm, CognitoButton, CognitoCallback, type DataItem, type DeleteResult, type EmailVerificationResult, ForgotPasswordForm, type GitHatConfig, type GitHatContextValue, type GitHatOrg, GitHatProvider, type GitHatUser, GitHubButton, GitHubCallback, type OrgMetadata, OrgSwitcher, type PasswordResetResult, ProtectedRoute, type PutResult, type QueryOptions, type QueryResult, ResetPasswordForm, type SendEmailOptions, type SendEmailResult, type ServerSendEmailOptions, type ServerSendEmailResult, SignInButton, SignInForm, SignUpButton, type SignUpData, SignUpForm, type SignUpResult, UserButton, VerifiedBadge, VerifyEmailStatus, type VerifyOptions, type WithAuthOptions, useAuth, useData, useEmail, useGitHat };
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,11 @@ interface GitHatUser {
|
|
|
7
7
|
name: string;
|
|
8
8
|
avatarUrl: string | null;
|
|
9
9
|
emailVerified: boolean;
|
|
10
|
+
githubUsername?: string;
|
|
11
|
+
cognitoUsername?: string;
|
|
12
|
+
cognitoSub?: string;
|
|
13
|
+
googleId?: string;
|
|
14
|
+
authProvider?: 'email' | 'github' | 'cognito' | 'google';
|
|
10
15
|
}
|
|
11
16
|
interface GitHatOrg {
|
|
12
17
|
id: string;
|
|
@@ -105,6 +110,33 @@ declare function useGitHat(): {
|
|
|
105
110
|
resendVerificationEmail: (email: string) => Promise<{
|
|
106
111
|
success: boolean;
|
|
107
112
|
}>;
|
|
113
|
+
getGitHubOAuthUrl: (options?: {
|
|
114
|
+
redirectUri?: string;
|
|
115
|
+
state?: string;
|
|
116
|
+
}) => Promise<{
|
|
117
|
+
url: string;
|
|
118
|
+
}>;
|
|
119
|
+
signInWithGitHub: (code: string, options?: {
|
|
120
|
+
redirectUri?: string;
|
|
121
|
+
}) => Promise<{
|
|
122
|
+
user: GitHatUser;
|
|
123
|
+
org: GitHatOrg | null;
|
|
124
|
+
isNewUser: boolean;
|
|
125
|
+
}>;
|
|
126
|
+
getCognitoOAuthUrl: (options?: {
|
|
127
|
+
redirectUri?: string;
|
|
128
|
+
state?: string;
|
|
129
|
+
identityProvider?: string;
|
|
130
|
+
}) => Promise<{
|
|
131
|
+
url: string;
|
|
132
|
+
}>;
|
|
133
|
+
signInWithCognito: (code: string, options?: {
|
|
134
|
+
redirectUri?: string;
|
|
135
|
+
}) => Promise<{
|
|
136
|
+
user: GitHatUser;
|
|
137
|
+
org: GitHatOrg | null;
|
|
138
|
+
isNewUser: boolean;
|
|
139
|
+
}>;
|
|
108
140
|
};
|
|
109
141
|
|
|
110
142
|
interface DataItem {
|
|
@@ -200,6 +232,52 @@ declare function useData(): {
|
|
|
200
232
|
batch: (collection: string, operations: BatchOperation[]) => Promise<BatchResult>;
|
|
201
233
|
};
|
|
202
234
|
|
|
235
|
+
interface SendEmailOptions {
|
|
236
|
+
/** Recipient email address(es). Single string or array of up to 50 addresses. */
|
|
237
|
+
to: string | string[];
|
|
238
|
+
/** Email subject line (max 998 characters). */
|
|
239
|
+
subject: string;
|
|
240
|
+
/** HTML body (optional if text is provided). */
|
|
241
|
+
html?: string;
|
|
242
|
+
/** Plain text body (optional if html is provided). */
|
|
243
|
+
text?: string;
|
|
244
|
+
/** Reply-to email address. Recipients can reply directly to this address. */
|
|
245
|
+
replyTo?: string;
|
|
246
|
+
}
|
|
247
|
+
interface SendEmailResult {
|
|
248
|
+
/** SES message ID for tracking. */
|
|
249
|
+
messageId: string;
|
|
250
|
+
/** Recipient addresses the email was sent to. */
|
|
251
|
+
to: string[];
|
|
252
|
+
/** Subject line as sent. */
|
|
253
|
+
subject: string;
|
|
254
|
+
/** Whether the email was sent successfully. */
|
|
255
|
+
sent: boolean;
|
|
256
|
+
}
|
|
257
|
+
/**
|
|
258
|
+
* Hook for sending transactional emails via GitHat's Email API.
|
|
259
|
+
* Emails are sent from noreply@githat.io. Use replyTo for customer replies.
|
|
260
|
+
*
|
|
261
|
+
* @example
|
|
262
|
+
* ```tsx
|
|
263
|
+
* const { send } = useEmail();
|
|
264
|
+
*
|
|
265
|
+
* await send({
|
|
266
|
+
* to: 'user@example.com',
|
|
267
|
+
* subject: 'Your order is confirmed',
|
|
268
|
+
* html: '<h1>Order Confirmed</h1><p>Thank you!</p>',
|
|
269
|
+
* replyTo: 'support@myapp.com'
|
|
270
|
+
* });
|
|
271
|
+
* ```
|
|
272
|
+
*/
|
|
273
|
+
declare function useEmail(): {
|
|
274
|
+
/**
|
|
275
|
+
* Send a transactional email.
|
|
276
|
+
* @param options - Email options (to, subject, html/text, replyTo)
|
|
277
|
+
*/
|
|
278
|
+
send: (options: SendEmailOptions) => Promise<SendEmailResult>;
|
|
279
|
+
};
|
|
280
|
+
|
|
203
281
|
interface SignInFormProps {
|
|
204
282
|
onSuccess?: () => void;
|
|
205
283
|
signUpUrl?: string;
|
|
@@ -279,6 +357,86 @@ interface ChangePasswordFormProps {
|
|
|
279
357
|
}
|
|
280
358
|
declare function ChangePasswordForm({ onSuccess, onError, minPasswordLength, }: ChangePasswordFormProps): react_jsx_runtime.JSX.Element;
|
|
281
359
|
|
|
360
|
+
interface GitHubButtonProps {
|
|
361
|
+
/** Text to display on the button */
|
|
362
|
+
children?: React.ReactNode;
|
|
363
|
+
/** Custom redirect URI after GitHub auth */
|
|
364
|
+
redirectUri?: string;
|
|
365
|
+
/** Callback on successful auth */
|
|
366
|
+
onSuccess?: (result: {
|
|
367
|
+
user: any;
|
|
368
|
+
org: any;
|
|
369
|
+
isNewUser: boolean;
|
|
370
|
+
}) => void;
|
|
371
|
+
/** Callback on error */
|
|
372
|
+
onError?: (error: Error) => void;
|
|
373
|
+
/** Additional class names */
|
|
374
|
+
className?: string;
|
|
375
|
+
/** Button variant */
|
|
376
|
+
variant?: 'default' | 'outline';
|
|
377
|
+
/** Disable the button */
|
|
378
|
+
disabled?: boolean;
|
|
379
|
+
}
|
|
380
|
+
declare function GitHubButton({ children, redirectUri, onSuccess, onError, className, variant, disabled, }: GitHubButtonProps): react_jsx_runtime.JSX.Element;
|
|
381
|
+
|
|
382
|
+
interface GitHubCallbackProps {
|
|
383
|
+
/** URL to redirect to after successful auth */
|
|
384
|
+
redirectUrl?: string;
|
|
385
|
+
/** URL for new users (onboarding) */
|
|
386
|
+
newUserRedirectUrl?: string;
|
|
387
|
+
/** Callback on successful auth */
|
|
388
|
+
onSuccess?: (result: {
|
|
389
|
+
user: any;
|
|
390
|
+
org: any;
|
|
391
|
+
isNewUser: boolean;
|
|
392
|
+
}) => void;
|
|
393
|
+
/** Callback on error */
|
|
394
|
+
onError?: (error: Error) => void;
|
|
395
|
+
/** Custom loading component */
|
|
396
|
+
loadingComponent?: React.ReactNode;
|
|
397
|
+
/** Custom error component */
|
|
398
|
+
errorComponent?: (error: string) => React.ReactNode;
|
|
399
|
+
}
|
|
400
|
+
declare function GitHubCallback({ redirectUrl, newUserRedirectUrl, onSuccess, onError, loadingComponent, errorComponent, }: GitHubCallbackProps): react_jsx_runtime.JSX.Element;
|
|
401
|
+
|
|
402
|
+
interface CognitoButtonProps {
|
|
403
|
+
/** Text to display on the button */
|
|
404
|
+
children?: React.ReactNode;
|
|
405
|
+
/** Custom redirect URI after Cognito auth */
|
|
406
|
+
redirectUri?: string;
|
|
407
|
+
/** Specific identity provider (e.g., 'Google', 'Facebook') */
|
|
408
|
+
identityProvider?: string;
|
|
409
|
+
/** Callback on error */
|
|
410
|
+
onError?: (error: Error) => void;
|
|
411
|
+
/** Additional class names */
|
|
412
|
+
className?: string;
|
|
413
|
+
/** Button variant */
|
|
414
|
+
variant?: 'default' | 'outline';
|
|
415
|
+
/** Disable the button */
|
|
416
|
+
disabled?: boolean;
|
|
417
|
+
}
|
|
418
|
+
declare function CognitoButton({ children, redirectUri, identityProvider, onError, className, variant, disabled, }: CognitoButtonProps): react_jsx_runtime.JSX.Element;
|
|
419
|
+
|
|
420
|
+
interface CognitoCallbackProps {
|
|
421
|
+
/** URL to redirect to after successful auth */
|
|
422
|
+
redirectUrl?: string;
|
|
423
|
+
/** URL for new users (onboarding) */
|
|
424
|
+
newUserRedirectUrl?: string;
|
|
425
|
+
/** Callback on successful auth */
|
|
426
|
+
onSuccess?: (result: {
|
|
427
|
+
user: any;
|
|
428
|
+
org: any;
|
|
429
|
+
isNewUser: boolean;
|
|
430
|
+
}) => void;
|
|
431
|
+
/** Callback on error */
|
|
432
|
+
onError?: (error: Error) => void;
|
|
433
|
+
/** Custom loading component */
|
|
434
|
+
loadingComponent?: React.ReactNode;
|
|
435
|
+
/** Custom error component */
|
|
436
|
+
errorComponent?: (error: string) => React.ReactNode;
|
|
437
|
+
}
|
|
438
|
+
declare function CognitoCallback({ redirectUrl, newUserRedirectUrl, onSuccess, onError, loadingComponent, errorComponent, }: CognitoCallbackProps): react_jsx_runtime.JSX.Element;
|
|
439
|
+
|
|
282
440
|
/**
|
|
283
441
|
* @githat/nextjs/server
|
|
284
442
|
*
|
|
@@ -327,5 +485,23 @@ interface WithAuthOptions {
|
|
|
327
485
|
*/
|
|
328
486
|
onUnauthorized?: () => Response;
|
|
329
487
|
}
|
|
488
|
+
interface ServerSendEmailOptions {
|
|
489
|
+
/** Recipient email address(es). */
|
|
490
|
+
to: string | string[];
|
|
491
|
+
/** Email subject line. */
|
|
492
|
+
subject: string;
|
|
493
|
+
/** HTML body. */
|
|
494
|
+
html?: string;
|
|
495
|
+
/** Plain text body. */
|
|
496
|
+
text?: string;
|
|
497
|
+
/** Reply-to email address. */
|
|
498
|
+
replyTo?: string;
|
|
499
|
+
}
|
|
500
|
+
interface ServerSendEmailResult {
|
|
501
|
+
messageId: string;
|
|
502
|
+
to: string[];
|
|
503
|
+
subject: string;
|
|
504
|
+
sent: boolean;
|
|
505
|
+
}
|
|
330
506
|
|
|
331
|
-
export { type AuthActions, type AuthPayload, type AuthState, type AuthenticatedHandler, type BatchOperation, type BatchResult, ChangePasswordForm, type DataItem, type DeleteResult, type EmailVerificationResult, ForgotPasswordForm, type GitHatConfig, type GitHatContextValue, type GitHatOrg, GitHatProvider, type GitHatUser, type OrgMetadata, OrgSwitcher, type PasswordResetResult, ProtectedRoute, type PutResult, type QueryOptions, type QueryResult, ResetPasswordForm, SignInButton, SignInForm, SignUpButton, type SignUpData, SignUpForm, type SignUpResult, UserButton, VerifiedBadge, VerifyEmailStatus, type VerifyOptions, type WithAuthOptions, useAuth, useData, useGitHat };
|
|
507
|
+
export { type AuthActions, type AuthPayload, type AuthState, type AuthenticatedHandler, type BatchOperation, type BatchResult, ChangePasswordForm, CognitoButton, CognitoCallback, type DataItem, type DeleteResult, type EmailVerificationResult, ForgotPasswordForm, type GitHatConfig, type GitHatContextValue, type GitHatOrg, GitHatProvider, type GitHatUser, GitHubButton, GitHubCallback, type OrgMetadata, OrgSwitcher, type PasswordResetResult, ProtectedRoute, type PutResult, type QueryOptions, type QueryResult, ResetPasswordForm, type SendEmailOptions, type SendEmailResult, type ServerSendEmailOptions, type ServerSendEmailResult, SignInButton, SignInForm, SignUpButton, type SignUpData, SignUpForm, type SignUpResult, UserButton, VerifiedBadge, VerifyEmailStatus, type VerifyOptions, type WithAuthOptions, useAuth, useData, useEmail, useGitHat };
|