aaspai-authx 0.1.4 → 0.1.6
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/express/index.cjs +492 -41
- package/dist/express/index.cjs.map +1 -1
- package/dist/express/index.js +495 -44
- package/dist/express/index.js.map +1 -1
- package/dist/index.cjs +492 -41
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +495 -44
- package/dist/index.js.map +1 -1
- package/dist/nest/index.cjs +492 -41
- package/dist/nest/index.cjs.map +1 -1
- package/dist/nest/index.js +495 -44
- package/dist/nest/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1142,7 +1142,7 @@ declare class EmailService {
|
|
|
1142
1142
|
constructor();
|
|
1143
1143
|
sign(payload: any, ttlSec?: number): string;
|
|
1144
1144
|
verify<T = any>(token: string): T;
|
|
1145
|
-
send(to: string, subject: string, html: string): Promise<nodemailer_lib_smtp_transport.SentMessageInfo>;
|
|
1145
|
+
send(to: string, subject: string, html: string, from?: string): Promise<nodemailer_lib_smtp_transport.SentMessageInfo>;
|
|
1146
1146
|
canSend(lastEmailSent: Date[]): {
|
|
1147
1147
|
ok: boolean;
|
|
1148
1148
|
reason: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1142,7 +1142,7 @@ declare class EmailService {
|
|
|
1142
1142
|
constructor();
|
|
1143
1143
|
sign(payload: any, ttlSec?: number): string;
|
|
1144
1144
|
verify<T = any>(token: string): T;
|
|
1145
|
-
send(to: string, subject: string, html: string): Promise<nodemailer_lib_smtp_transport.SentMessageInfo>;
|
|
1145
|
+
send(to: string, subject: string, html: string, from?: string): Promise<nodemailer_lib_smtp_transport.SentMessageInfo>;
|
|
1146
1146
|
canSend(lastEmailSent: Date[]): {
|
|
1147
1147
|
ok: boolean;
|
|
1148
1148
|
reason: string;
|