@punks/backend-entity-manager 0.0.330 → 0.0.331
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/cjs/index.js +27 -12
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-invitation-send/types.d.ts +1 -0
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-password-reset-request/types.d.ts +1 -0
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-verify-request/types.d.ts +1 -0
- package/dist/esm/index.js +27 -12
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-invitation-send/types.d.ts +1 -0
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-password-reset-request/types.d.ts +1 -0
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-verify-request/types.d.ts +1 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ export type UserPasswordResetRequestInput<TUserContext extends IAuthUserContext>
|
|
|
8
8
|
callback: UserPasswordResetRequestCallbackTemplate;
|
|
9
9
|
languageCode: string;
|
|
10
10
|
context?: TUserContext;
|
|
11
|
+
emailTemplateId?: string;
|
|
11
12
|
};
|
|
12
13
|
export type UserPasswordResetRequestResult = {
|
|
13
14
|
success: boolean;
|
|
@@ -4,6 +4,7 @@ export type UserVerifyRequestInput<TUserContext extends IAuthUserContext> = {
|
|
|
4
4
|
callback: UserVerifyRequestCallbackTemplate;
|
|
5
5
|
languageCode: string;
|
|
6
6
|
context?: TUserContext;
|
|
7
|
+
emailTemplateId?: string;
|
|
7
8
|
};
|
|
8
9
|
export type UserVerifyRequestResult = {
|
|
9
10
|
success: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -1647,6 +1647,7 @@ type UserPasswordResetRequestInput<TUserContext extends IAuthUserContext> = {
|
|
|
1647
1647
|
callback: UserPasswordResetRequestCallbackTemplate;
|
|
1648
1648
|
languageCode: string;
|
|
1649
1649
|
context?: TUserContext;
|
|
1650
|
+
emailTemplateId?: string;
|
|
1650
1651
|
};
|
|
1651
1652
|
type UserPasswordResetRequestResult = {
|
|
1652
1653
|
success: boolean;
|
|
@@ -1688,6 +1689,7 @@ type UserVerifyRequestInput<TUserContext extends IAuthUserContext> = {
|
|
|
1688
1689
|
callback: UserVerifyRequestCallbackTemplate;
|
|
1689
1690
|
languageCode: string;
|
|
1690
1691
|
context?: TUserContext;
|
|
1692
|
+
emailTemplateId?: string;
|
|
1691
1693
|
};
|
|
1692
1694
|
type UserVerifyRequestResult = {
|
|
1693
1695
|
success: boolean;
|
|
@@ -1998,6 +2000,7 @@ type UserInvitationSendInput = {
|
|
|
1998
2000
|
userId: string;
|
|
1999
2001
|
callback: UserRegisterCallbackTemplate;
|
|
2000
2002
|
languageId: string;
|
|
2003
|
+
emailTemplateId?: string;
|
|
2001
2004
|
};
|
|
2002
2005
|
|
|
2003
2006
|
declare class UserInvitationSendHandler {
|