File tree Expand file tree Collapse file tree 6 files changed +12
-3
lines changed
Expand file tree Collapse file tree 6 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 11import { REST } from '@rewritetoday/rest' ;
2- import { APIKeyManager } from './resources/apiKeys ' ;
2+ import { APIKeyManager } from './resources/api-key ' ;
33import { LogManager } from './resources/logs' ;
44import { MessageManager } from './resources/message' ;
55import { OTPManager } from './resources/otp' ;
6- import { TemplateManager } from './resources/templates ' ;
7- import { WebhookManager } from './resources/webhooks ' ;
6+ import { TemplateManager } from './resources/template ' ;
7+ import { WebhookManager } from './resources/webhook ' ;
88import type { RewriteOptions } from './types' ;
99
1010/**
Original file line number Diff line number Diff line change 11export { Rewrite } from './client' ;
2+ export { APIKeyManager } from './resources/api-key' ;
3+ export { LogManager } from './resources/logs' ;
4+ export { MessageManager } from './resources/message' ;
5+ export { OTPManager } from './resources/otp' ;
6+ export { TemplateManager } from './resources/template' ;
7+ export { WebhookManager } from './resources/webhook' ;
28
39export * from './types' ;
410
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -10,3 +10,6 @@ export interface RewriteOptions {
1010 /** Extra REST client options, excluding auth. */
1111 rest ?: Omit < RESTOptions , 'auth' > ;
1212}
13+
14+ export * from './message' ;
15+ export * from './otp' ;
You can’t perform that action at this time.
0 commit comments