@punks/backend-entity-manager 0.0.329 → 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.
@@ -8,6 +8,7 @@ export type UserCreationInput<TUserRegistrationInfo, TUserContext extends IAuthU
8
8
  password: string;
9
9
  registrationInfo: TUserRegistrationInfo;
10
10
  context?: TUserContext;
11
+ verified?: boolean;
11
12
  };
12
13
  export type UserCreationResult = {
13
14
  success: boolean;
@@ -3,4 +3,5 @@ export type UserInvitationSendInput = {
3
3
  userId: string;
4
4
  callback: UserRegisterCallbackTemplate;
5
5
  languageId: string;
6
+ emailTemplateId?: string;
6
7
  };
@@ -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
@@ -1596,6 +1596,7 @@ type UserCreationInput<TUserRegistrationInfo, TUserContext extends IAuthUserCont
1596
1596
  password: string;
1597
1597
  registrationInfo: TUserRegistrationInfo;
1598
1598
  context?: TUserContext;
1599
+ verified?: boolean;
1599
1600
  };
1600
1601
  type UserCreationResult = {
1601
1602
  success: boolean;
@@ -1646,6 +1647,7 @@ type UserPasswordResetRequestInput<TUserContext extends IAuthUserContext> = {
1646
1647
  callback: UserPasswordResetRequestCallbackTemplate;
1647
1648
  languageCode: string;
1648
1649
  context?: TUserContext;
1650
+ emailTemplateId?: string;
1649
1651
  };
1650
1652
  type UserPasswordResetRequestResult = {
1651
1653
  success: boolean;
@@ -1687,6 +1689,7 @@ type UserVerifyRequestInput<TUserContext extends IAuthUserContext> = {
1687
1689
  callback: UserVerifyRequestCallbackTemplate;
1688
1690
  languageCode: string;
1689
1691
  context?: TUserContext;
1692
+ emailTemplateId?: string;
1690
1693
  };
1691
1694
  type UserVerifyRequestResult = {
1692
1695
  success: boolean;
@@ -1997,6 +2000,7 @@ type UserInvitationSendInput = {
1997
2000
  userId: string;
1998
2001
  callback: UserRegisterCallbackTemplate;
1999
2002
  languageId: string;
2003
+ emailTemplateId?: string;
2000
2004
  };
2001
2005
 
2002
2006
  declare class UserInvitationSendHandler {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@punks/backend-entity-manager",
3
- "version": "0.0.329",
3
+ "version": "0.0.331",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",