@punks/backend-entity-manager 0.0.146 → 0.0.147
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 +9 -9
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/abstractions/email.d.ts +1 -1
- package/dist/cjs/types/platforms/nest/__test__/server/app/appAuth/appAuth.dto.d.ts +1 -1
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-password-reset-request/types.d.ts +1 -1
- package/dist/esm/index.js +9 -9
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/abstractions/email.d.ts +1 -1
- package/dist/esm/types/platforms/nest/__test__/server/app/appAuth/appAuth.dto.d.ts +1 -1
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-password-reset-request/types.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -30,7 +30,7 @@ export declare class UserPasswordResetRequest {
|
|
|
30
30
|
userName: string;
|
|
31
31
|
userContext?: AuthUserContext;
|
|
32
32
|
callback: OperationCallbackTemplate;
|
|
33
|
-
|
|
33
|
+
languageCode: string;
|
|
34
34
|
}
|
|
35
35
|
export declare class UserPasswordResetCompleteRequest {
|
|
36
36
|
token: string;
|
|
@@ -6,7 +6,7 @@ export type UserPasswordResetRequestCallbackTemplate = {
|
|
|
6
6
|
export interface UserPasswordResetRequestInput<TUserContext extends IAuthUserContext> {
|
|
7
7
|
email: string;
|
|
8
8
|
callback: UserPasswordResetRequestCallbackTemplate;
|
|
9
|
-
|
|
9
|
+
languageCode: string;
|
|
10
10
|
context?: TUserContext;
|
|
11
11
|
}
|
|
12
12
|
export interface UserPasswordResetRequestResult {
|
package/dist/index.d.ts
CHANGED
|
@@ -1001,7 +1001,7 @@ type TemplatedEmailInput<TPayload> = {
|
|
|
1001
1001
|
bcc?: string[];
|
|
1002
1002
|
subjectTemplate?: string;
|
|
1003
1003
|
templateId: string;
|
|
1004
|
-
|
|
1004
|
+
languageCode: string;
|
|
1005
1005
|
payload: TPayload;
|
|
1006
1006
|
};
|
|
1007
1007
|
interface HtmlEmailInput<TPayload> {
|
|
@@ -1745,7 +1745,7 @@ type UserPasswordResetRequestCallbackTemplate = {
|
|
|
1745
1745
|
interface UserPasswordResetRequestInput<TUserContext extends IAuthUserContext> {
|
|
1746
1746
|
email: string;
|
|
1747
1747
|
callback: UserPasswordResetRequestCallbackTemplate;
|
|
1748
|
-
|
|
1748
|
+
languageCode: string;
|
|
1749
1749
|
context?: TUserContext;
|
|
1750
1750
|
}
|
|
1751
1751
|
interface UserPasswordResetRequestResult {
|