@punks/backend-entity-manager 0.0.64 → 0.0.67
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 +21 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/abstractions/queries.d.ts +1 -0
- package/dist/cjs/types/platforms/nest/__test__/server/app/auth/user.service.d.ts +2 -2
- package/dist/cjs/types/platforms/nest/dto/facets.d.ts +3 -0
- package/dist/cjs/types/platforms/nest/extensions/authentication/abstractions/index.d.ts +9 -9
- package/dist/cjs/types/platforms/nest/extensions/authentication/converters/index.d.ts +2 -2
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-login/index.d.ts +2 -2
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-login/types.d.ts +2 -2
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-password-reset-request/index.d.ts +2 -2
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-password-reset-request/types.d.ts +2 -2
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-register/index.d.ts +2 -2
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-register/types.d.ts +2 -2
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-token-verify/index.d.ts +2 -2
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-token-verify/types.d.ts +3 -3
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-verify-request/index.d.ts +2 -2
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-verify-request/types.d.ts +2 -2
- package/dist/cjs/types/platforms/nest/extensions/authentication/resolver/index.d.ts +3 -3
- package/dist/cjs/types/platforms/nest/extensions/authentication/services/authentication/index.d.ts +7 -7
- package/dist/cjs/types/platforms/nest/extensions/multi-tenancy/abstractions/index.d.ts +1 -39
- package/dist/cjs/types/platforms/nest/extensions/multi-tenancy/abstractions/models.d.ts +49 -0
- package/dist/cjs/types/platforms/nest/extensions/multi-tenancy/index.d.ts +1 -0
- package/dist/esm/index.js +21 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/abstractions/queries.d.ts +1 -0
- package/dist/esm/types/platforms/nest/__test__/server/app/auth/user.service.d.ts +2 -2
- package/dist/esm/types/platforms/nest/dto/facets.d.ts +3 -0
- package/dist/esm/types/platforms/nest/extensions/authentication/abstractions/index.d.ts +9 -9
- package/dist/esm/types/platforms/nest/extensions/authentication/converters/index.d.ts +2 -2
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-login/index.d.ts +2 -2
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-login/types.d.ts +2 -2
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-password-reset-request/index.d.ts +2 -2
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-password-reset-request/types.d.ts +2 -2
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-register/index.d.ts +2 -2
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-register/types.d.ts +2 -2
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-token-verify/index.d.ts +2 -2
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-token-verify/types.d.ts +3 -3
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-verify-request/index.d.ts +2 -2
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-verify-request/types.d.ts +2 -2
- package/dist/esm/types/platforms/nest/extensions/authentication/resolver/index.d.ts +3 -3
- package/dist/esm/types/platforms/nest/extensions/authentication/services/authentication/index.d.ts +7 -7
- package/dist/esm/types/platforms/nest/extensions/multi-tenancy/abstractions/index.d.ts +1 -39
- package/dist/esm/types/platforms/nest/extensions/multi-tenancy/abstractions/models.d.ts +49 -0
- package/dist/esm/types/platforms/nest/extensions/multi-tenancy/index.d.ts +1 -0
- package/dist/index.d.ts +83 -29
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -83,6 +83,7 @@ interface IAuthenticationContextProvider<TUserContext> {
|
|
|
83
83
|
interface IEntityFacetItem<T> {
|
|
84
84
|
value: T;
|
|
85
85
|
name?: string;
|
|
86
|
+
count?: number;
|
|
86
87
|
}
|
|
87
88
|
interface IEntityFacet<T> {
|
|
88
89
|
items: IEntityFacetItem<T>[];
|
|
@@ -777,6 +778,7 @@ declare abstract class NestEntityManager<TEntity, TEntityId, TEntityCreateData,
|
|
|
777
778
|
declare class NumericFacetItem implements IEntityFacetItem<number> {
|
|
778
779
|
value: number;
|
|
779
780
|
name?: string;
|
|
781
|
+
count?: number;
|
|
780
782
|
}
|
|
781
783
|
declare class NumericFacet implements IEntityFacet<number> {
|
|
782
784
|
items: NumericFacetItem[];
|
|
@@ -784,6 +786,7 @@ declare class NumericFacet implements IEntityFacet<number> {
|
|
|
784
786
|
declare class BooleanFacetItem implements IEntityFacetItem<boolean> {
|
|
785
787
|
value: boolean;
|
|
786
788
|
name?: string;
|
|
789
|
+
count?: number;
|
|
787
790
|
}
|
|
788
791
|
declare class BooleanFacet implements IEntityFacet<boolean> {
|
|
789
792
|
items: BooleanFacetItem[];
|
|
@@ -791,23 +794,24 @@ declare class BooleanFacet implements IEntityFacet<boolean> {
|
|
|
791
794
|
declare class StringFacetItem implements IEntityFacetItem<string> {
|
|
792
795
|
value: string;
|
|
793
796
|
name?: string;
|
|
797
|
+
count?: number;
|
|
794
798
|
}
|
|
795
799
|
declare class StringFacet implements IEntityFacet<string> {
|
|
796
800
|
items: StringFacetItem[];
|
|
797
801
|
}
|
|
798
802
|
|
|
799
|
-
interface
|
|
803
|
+
interface IAuthService {
|
|
800
804
|
}
|
|
801
|
-
interface
|
|
805
|
+
interface IAuthUserProfile {
|
|
802
806
|
firstName: string;
|
|
803
807
|
lastName: string;
|
|
804
808
|
}
|
|
805
|
-
interface
|
|
809
|
+
interface IAuthUserOrganization {
|
|
806
810
|
id: string;
|
|
807
811
|
uid: string;
|
|
808
812
|
name: string;
|
|
809
813
|
}
|
|
810
|
-
interface
|
|
814
|
+
interface IAuthUser {
|
|
811
815
|
id: string;
|
|
812
816
|
passwordHash: string;
|
|
813
817
|
passwordUpdateTimestamp?: Date;
|
|
@@ -817,13 +821,13 @@ interface IUser {
|
|
|
817
821
|
verified: boolean;
|
|
818
822
|
verifiedTimestamp?: Date;
|
|
819
823
|
disabled: boolean;
|
|
820
|
-
profile:
|
|
821
|
-
organization?:
|
|
824
|
+
profile: IAuthUserProfile;
|
|
825
|
+
organization?: IAuthUserOrganization;
|
|
822
826
|
}
|
|
823
|
-
interface
|
|
827
|
+
interface IAuthUserContext {
|
|
824
828
|
organizationUid?: string;
|
|
825
829
|
}
|
|
826
|
-
interface
|
|
830
|
+
interface IAuthUserService<TUser extends IAuthUser, TUserContext extends IAuthUserContext, TUserRegistrationInfo> {
|
|
827
831
|
getById(id: string): Promise<TUser>;
|
|
828
832
|
getByEmail(email: string, context?: TUserContext): Promise<TUser>;
|
|
829
833
|
getByUserName(userName: string, context?: TUserContext): Promise<TUser>;
|
|
@@ -831,7 +835,7 @@ interface IUserService<TUser extends IUser, TUserContext extends IUserContext, T
|
|
|
831
835
|
delete(id: string): Promise<void>;
|
|
832
836
|
create(email: string, data: TUserRegistrationInfo, context?: TUserContext): Promise<TUser>;
|
|
833
837
|
}
|
|
834
|
-
interface
|
|
838
|
+
interface IAuthUserTokenData<TContext extends IAuthUserContext> {
|
|
835
839
|
userId: string;
|
|
836
840
|
email: string;
|
|
837
841
|
context?: TContext;
|
|
@@ -918,7 +922,7 @@ interface UserEnableInput {
|
|
|
918
922
|
userId: string;
|
|
919
923
|
}
|
|
920
924
|
|
|
921
|
-
interface UserLoginInput<TUserContext extends
|
|
925
|
+
interface UserLoginInput<TUserContext extends IAuthUserContext> {
|
|
922
926
|
userName: string;
|
|
923
927
|
password: string;
|
|
924
928
|
context?: TUserContext;
|
|
@@ -944,7 +948,7 @@ type UserPasswordResetRequestCallbackTemplate = {
|
|
|
944
948
|
urlTemplate: string;
|
|
945
949
|
tokenPlaceholder: string;
|
|
946
950
|
};
|
|
947
|
-
interface UserPasswordResetRequestInput<TUserContext extends
|
|
951
|
+
interface UserPasswordResetRequestInput<TUserContext extends IAuthUserContext> {
|
|
948
952
|
email: string;
|
|
949
953
|
callback: UserPasswordResetRequestCallbackTemplate;
|
|
950
954
|
languageId: string;
|
|
@@ -976,7 +980,7 @@ type UserRegisterCallbackTemplate = {
|
|
|
976
980
|
urlTemplate: string;
|
|
977
981
|
tokenPlaceholder: string;
|
|
978
982
|
};
|
|
979
|
-
interface UserRegistrationInput<TUserRegistrationInfo, TUserContext extends
|
|
983
|
+
interface UserRegistrationInput<TUserRegistrationInfo, TUserContext extends IAuthUserContext> {
|
|
980
984
|
email: string;
|
|
981
985
|
userName: string;
|
|
982
986
|
password: string;
|
|
@@ -990,9 +994,9 @@ interface UserRegistrationResult {
|
|
|
990
994
|
error?: UserRegistrationError;
|
|
991
995
|
}
|
|
992
996
|
|
|
993
|
-
interface UserTokenVerifyResult<TUserContext extends
|
|
997
|
+
interface UserTokenVerifyResult<TUserContext extends IAuthUserContext> {
|
|
994
998
|
isValid: boolean;
|
|
995
|
-
data:
|
|
999
|
+
data: IAuthUserTokenData<TUserContext>;
|
|
996
1000
|
}
|
|
997
1001
|
interface UserTokenVerifyInput {
|
|
998
1002
|
token: string;
|
|
@@ -1002,7 +1006,7 @@ interface UserVerifyCompleteInput {
|
|
|
1002
1006
|
token: string;
|
|
1003
1007
|
}
|
|
1004
1008
|
|
|
1005
|
-
interface UserVerifyRequestInput<TUserContext extends
|
|
1009
|
+
interface UserVerifyRequestInput<TUserContext extends IAuthUserContext> {
|
|
1006
1010
|
email: string;
|
|
1007
1011
|
callback: UserVerifyRequestCallbackTemplate;
|
|
1008
1012
|
languageId: string;
|
|
@@ -1070,8 +1074,8 @@ declare class TrackingService {
|
|
|
1070
1074
|
|
|
1071
1075
|
declare class AuthenticationServicesResolver {
|
|
1072
1076
|
private usersService;
|
|
1073
|
-
registerUsersService(usersService:
|
|
1074
|
-
getUsersService<TUser extends
|
|
1077
|
+
registerUsersService(usersService: IAuthUserService<any, any, any>): void;
|
|
1078
|
+
getUsersService<TUser extends IAuthUser, TUserRegistrationInfo>(): IAuthUserService<TUser, any, TUserRegistrationInfo>;
|
|
1075
1079
|
}
|
|
1076
1080
|
|
|
1077
1081
|
declare class JwtProvider {
|
|
@@ -1106,7 +1110,7 @@ declare class UserRegistrationHandler {
|
|
|
1106
1110
|
private readonly jwtProvider;
|
|
1107
1111
|
private readonly logger;
|
|
1108
1112
|
constructor(services: AuthenticationServicesResolver, passwordHashingProvider: PasswordHashingProvider, emailService: EmailService, jwtProvider: JwtProvider);
|
|
1109
|
-
execute<TUserRegistrationInfo, TContext extends
|
|
1113
|
+
execute<TUserRegistrationInfo, TContext extends IAuthUserContext>(input: UserRegistrationInput<TUserRegistrationInfo, TContext>): Promise<UserRegistrationResult>;
|
|
1110
1114
|
private createPasswordHash;
|
|
1111
1115
|
private sendRegistrationEmail;
|
|
1112
1116
|
private generateEmailVerifyToken;
|
|
@@ -1131,7 +1135,7 @@ declare class UserLoginHandler {
|
|
|
1131
1135
|
private readonly passwordHashingProvider;
|
|
1132
1136
|
private readonly jwtProvider;
|
|
1133
1137
|
constructor(services: AuthenticationServicesResolver, passwordHashingProvider: PasswordHashingProvider, jwtProvider: JwtProvider);
|
|
1134
|
-
execute<TUserContext extends
|
|
1138
|
+
execute<TUserContext extends IAuthUserContext>(input: UserLoginInput<TUserContext>): Promise<UserLoginResult>;
|
|
1135
1139
|
private generateUserJwtToken;
|
|
1136
1140
|
private resolveUser;
|
|
1137
1141
|
}
|
|
@@ -1159,7 +1163,7 @@ declare class UserPasswordResetRequestHandler {
|
|
|
1159
1163
|
private readonly emailService;
|
|
1160
1164
|
private readonly jwtProvider;
|
|
1161
1165
|
constructor(services: AuthenticationServicesResolver, emailService: EmailService, jwtProvider: JwtProvider);
|
|
1162
|
-
execute<TUserContext extends
|
|
1166
|
+
execute<TUserContext extends IAuthUserContext>(input: UserPasswordResetRequestInput<TUserContext>): Promise<UserPasswordResetRequestResult>;
|
|
1163
1167
|
private sendPasswordResetEmail;
|
|
1164
1168
|
private generatePasswordResetToken;
|
|
1165
1169
|
private resolveUser;
|
|
@@ -1178,7 +1182,7 @@ declare class UserVerifyCompleteHandler {
|
|
|
1178
1182
|
declare class UserTokenVerifyHandler {
|
|
1179
1183
|
private readonly jwtProvider;
|
|
1180
1184
|
constructor(jwtProvider: JwtProvider);
|
|
1181
|
-
execute<TUserContext extends
|
|
1185
|
+
execute<TUserContext extends IAuthUserContext>(input: UserTokenVerifyInput): Promise<UserTokenVerifyResult<TUserContext>>;
|
|
1182
1186
|
private decodeUserJwtToken;
|
|
1183
1187
|
}
|
|
1184
1188
|
|
|
@@ -1187,13 +1191,13 @@ declare class UserVerifyRequestHandler {
|
|
|
1187
1191
|
private readonly emailService;
|
|
1188
1192
|
private readonly jwtProvider;
|
|
1189
1193
|
constructor(services: AuthenticationServicesResolver, emailService: EmailService, jwtProvider: JwtProvider);
|
|
1190
|
-
execute<TUserContext extends
|
|
1194
|
+
execute<TUserContext extends IAuthUserContext>(input: UserVerifyRequestInput<TUserContext>): Promise<UserVerifyRequestResult>;
|
|
1191
1195
|
private sendEmailVerifyEmail;
|
|
1192
1196
|
private generateEmailVerifyToken;
|
|
1193
1197
|
private resolveUser;
|
|
1194
1198
|
}
|
|
1195
1199
|
|
|
1196
|
-
declare class AuthenticationService implements
|
|
1200
|
+
declare class AuthenticationService implements IAuthService {
|
|
1197
1201
|
private readonly userDisableHandler;
|
|
1198
1202
|
private readonly userEnableHandler;
|
|
1199
1203
|
private readonly userLoginHandler;
|
|
@@ -1207,20 +1211,70 @@ declare class AuthenticationService implements IAuthenticationService {
|
|
|
1207
1211
|
constructor(userDisableHandler: UserDisableHandler, userEnableHandler: UserEnableHandler, userLoginHandler: UserLoginHandler, userPasswordChangeHandler: UserPasswordChangeHandler, userPasswordResetFinalizeHandler: UserPasswordResetCompleteHandler, userPasswordResetRequestHandler: UserPasswordResetRequestHandler, userRegistrationHandler: UserRegistrationHandler, userTokenVerifyHandler: UserTokenVerifyHandler, userVerifyRequestHandler: UserVerifyRequestHandler, userVerifyCompleteHandler: UserVerifyCompleteHandler);
|
|
1208
1212
|
userDisable(input: UserDisableInput): Promise<void>;
|
|
1209
1213
|
userEnable(input: UserEnableInput): Promise<void>;
|
|
1210
|
-
userLogin<TUserContext extends
|
|
1214
|
+
userLogin<TUserContext extends IAuthUserContext>(input: UserLoginInput<TUserContext>): Promise<UserLoginResult>;
|
|
1211
1215
|
userPasswordChange(input: UserPasswordChangeInput): Promise<void>;
|
|
1212
1216
|
userPasswordResetFinalize(input: UserPasswordResetCompleteInput): Promise<void>;
|
|
1213
|
-
userPasswordResetRequest<TUserContext extends
|
|
1214
|
-
userRegister<TUserRegistrationInfo, TUserContext extends
|
|
1215
|
-
userVerifyRequest<TUserContext extends
|
|
1217
|
+
userPasswordResetRequest<TUserContext extends IAuthUserContext>(input: UserPasswordResetRequestInput<TUserContext>): Promise<UserPasswordResetRequestResult>;
|
|
1218
|
+
userRegister<TUserRegistrationInfo, TUserContext extends IAuthUserContext>(input: UserRegistrationInput<TUserRegistrationInfo, TUserContext>): Promise<UserRegistrationResult>;
|
|
1219
|
+
userVerifyRequest<TUserContext extends IAuthUserContext>(input: UserVerifyRequestInput<TUserContext>): Promise<UserVerifyRequestResult>;
|
|
1216
1220
|
userVerifyComplete(input: UserVerifyCompleteInput): Promise<void>;
|
|
1217
|
-
userTokenVerify<TUserContext extends
|
|
1221
|
+
userTokenVerify<TUserContext extends IAuthUserContext>(input: UserTokenVerifyInput): Promise<UserTokenVerifyResult<TUserContext>>;
|
|
1218
1222
|
}
|
|
1219
1223
|
|
|
1220
1224
|
declare class AuthenticationModule {
|
|
1221
1225
|
static forRoot(input: AuthenticationModuleSettings): DynamicModule;
|
|
1222
1226
|
}
|
|
1223
1227
|
|
|
1228
|
+
interface IAppTenant {
|
|
1229
|
+
id: string;
|
|
1230
|
+
uid: string;
|
|
1231
|
+
name: string;
|
|
1232
|
+
}
|
|
1233
|
+
interface IAppOrganization {
|
|
1234
|
+
id: string;
|
|
1235
|
+
uid: string;
|
|
1236
|
+
name: string;
|
|
1237
|
+
tenant: IAppTenant;
|
|
1238
|
+
}
|
|
1239
|
+
interface IAppCompany {
|
|
1240
|
+
id: string;
|
|
1241
|
+
uid: string;
|
|
1242
|
+
name: string;
|
|
1243
|
+
organization: IAppOrganization;
|
|
1244
|
+
}
|
|
1245
|
+
interface IAppDivision {
|
|
1246
|
+
id: string;
|
|
1247
|
+
uid: string;
|
|
1248
|
+
name: string;
|
|
1249
|
+
company: IAppCompany;
|
|
1250
|
+
}
|
|
1251
|
+
interface IAppUserProfile {
|
|
1252
|
+
firstName: string;
|
|
1253
|
+
lastName: string;
|
|
1254
|
+
}
|
|
1255
|
+
interface IAppUser {
|
|
1256
|
+
id: string;
|
|
1257
|
+
uid?: string;
|
|
1258
|
+
userName: string;
|
|
1259
|
+
email: string;
|
|
1260
|
+
verified: boolean;
|
|
1261
|
+
disabled: boolean;
|
|
1262
|
+
profile: IAppUserProfile;
|
|
1263
|
+
}
|
|
1264
|
+
interface IAppUserGroup {
|
|
1265
|
+
id: string;
|
|
1266
|
+
uid: string;
|
|
1267
|
+
name: string;
|
|
1268
|
+
disabled: boolean;
|
|
1269
|
+
isBuiltIn: boolean;
|
|
1270
|
+
organization?: IAppOrganization;
|
|
1271
|
+
}
|
|
1272
|
+
interface IAppRole {
|
|
1273
|
+
id: string;
|
|
1274
|
+
uid: string;
|
|
1275
|
+
name: string;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1224
1278
|
declare class MultiTenancyModule {
|
|
1225
1279
|
}
|
|
1226
1280
|
|
|
@@ -1434,4 +1488,4 @@ declare const renderHandlebarsTemplate: <TContext extends object>(input: {
|
|
|
1434
1488
|
|
|
1435
1489
|
declare const newUuid: () => string;
|
|
1436
1490
|
|
|
1437
|
-
export { AUTHENTICATION_EVENTS_NAMESPACE, AppExceptionsFilterBase, AppHashingService, AppInMemorySettings, AppSessionMiddleware, AppSessionService, AuthenticationEmailTemplates, AuthenticationError, AuthenticationEvents, AuthenticationExtensionSymbols, AuthenticationModule, AuthenticationModuleSettings, AuthenticationService, AwsEmailModule, AwsSesEmailTemplate, AwsSesEmailTemplateData, AwsSesSettings, BooleanFacet, BooleanFacetItem, EmailService, EmailTemplateProps, EmailVerifyEmailPayload, EmailVerifyTokenPayload, EntityActionsProps, EntityAdapterProps, EntityAuthMiddlewareProps, EntityConnectorProps, EntityConverterProps, EntityManagerConfigurationError, EntityManagerException, EntityManagerInitializer, EntityManagerModule, EntityManagerProps, EntityManagerRegistry, EntityManagerService, EntityManagerSymbols, EntityManagerUnauthorizedException, EntityNotFoundException, EntityOperationType, EntityOperationUnauthorizedException, EntityProps, EntityQueryBuilderProps, EntityRepositoryProps, EntitySeeder, EntitySeederProps, EventsService, EventsTrackerProps, FilterExpression, HtmlEmailInput, IAuthenticationContext, IAuthenticationContextProvider,
|
|
1491
|
+
export { AUTHENTICATION_EVENTS_NAMESPACE, AppExceptionsFilterBase, AppHashingService, AppInMemorySettings, AppSessionMiddleware, AppSessionService, AuthenticationEmailTemplates, AuthenticationError, AuthenticationEvents, AuthenticationExtensionSymbols, AuthenticationModule, AuthenticationModuleSettings, AuthenticationService, AwsEmailModule, AwsSesEmailTemplate, AwsSesEmailTemplateData, AwsSesSettings, BooleanFacet, BooleanFacetItem, EmailService, EmailTemplateProps, EmailVerifyEmailPayload, EmailVerifyTokenPayload, EntityActionsProps, EntityAdapterProps, EntityAuthMiddlewareProps, EntityConnectorProps, EntityConverterProps, EntityManagerConfigurationError, EntityManagerException, EntityManagerInitializer, EntityManagerModule, EntityManagerProps, EntityManagerRegistry, EntityManagerService, EntityManagerSymbols, EntityManagerUnauthorizedException, EntityNotFoundException, EntityOperationType, EntityOperationUnauthorizedException, EntityProps, EntityQueryBuilderProps, EntityRepositoryProps, EntitySeeder, EntitySeederProps, EventsService, EventsTrackerProps, FilterExpression, HtmlEmailInput, IAppCompany, IAppDivision, IAppOrganization, IAppRole, IAppTenant, IAppUser, IAppUserGroup, IAppUserProfile, IAuthService, IAuthUser, IAuthUserContext, IAuthUserOrganization, IAuthUserProfile, IAuthUserService, IAuthUserTokenData, IAuthenticationContext, IAuthenticationContextProvider, IAuthorizationResult, IEmailProvider, IEmailTemplate, IEmailTemplatesCollection, IEntitiesQueryBuilder, IEntitiesSearchAction, IEntitiesSearchQuery, IEntitiesSearchResults, IEntitiesSearchResultsPaging, IEntityActions, IEntityAdapter, IEntityAuthorizationMiddleware, IEntityConverter, IEntityCreateAction, IEntityCreateCommand, IEntityDeleteAction, IEntityDeleteCommand, IEntityEventsManager, IEntityFacet, IEntityFacetItem, IEntityFacets, IEntityGetAction, IEntityGetQuery, IEntityManager, IEntityManagerServiceCollection, IEntityManagerServiceRoot, IEntityMapper, IEntityReplicaDeleteManager, IEntityReplicaSyncManager, IEntityRepository, IEntitySearchParameters, IEntitySearchResults, IEntityUpdateAction, IEntityUpdateCommand, IEntityUpsertAction, IEntityUpsertCommand, IEventLog, IEventsTracker, IReplicasConfiguration, ISearchFilters, ISearchOptions, ISearchRequestPaging, ISearchResultsPaging, ISearchSorting, ISearchSortingField, InvalidCredentialsError, LocalizedMap, LocalizedTexts, MessagingEmailSentPayload, ModulesContainerProvider, MultiTenancyModule, MultipleEntitiesFoundException, NestEntityActions, NestEntityAuthorizationMiddleware, NestEntityManager, NestTypeOrmEntitySeeder, NestTypeOrmQueryBuilder, NestTypeOrmRepository, NumericFacet, NumericFacetItem, OperationTokenMismatchError, PLATFORM_EVENT_NAMESPACE, PasswordResetEmailPayload, PlatformEvents, QueryBuilderBase, RegistrationEmailPayload, ReplicaConfiguration, ReplicaOptions, ReplicationMode, RuntimeErrorInformation, SendgridEmailModule, SendgridEmailTemplate, SendgridEmailTemplateData, SendgridSettings, SendgridTemplateBaseData, SendgridTemplateType, SortDirection, SortingType, StringFacet, StringFacetItem, TemplatedEmailInput, TrackingService, UserDisableInput, UserEnableInput, UserLoginEventPayload, UserLoginInput, UserLoginResult, UserPasswordChangeInput, UserPasswordResetCompleteInput, UserPasswordResetCompletedEventPayload, UserPasswordResetRequestCallbackTemplate, UserPasswordResetRequestInput, UserPasswordResetRequestResult, UserPasswordResetStartedEventPayload, UserPasswordResetTokenPayload, UserProfile, UserRegisterCallbackTemplate, UserRegistrationCompletedEventPayload, UserRegistrationError, UserRegistrationInput, UserRegistrationResult, UserRegistrationStartedEventPayload, UserTokenVerifyInput, UserTokenVerifyResult, UserVerifyCompleteInput, UserVerifyRequestCallbackTemplate, UserVerifyRequestInput, UserVerifyRequestResult as UserVerifyResetRequestResult, WpAppInitializer, WpAwsSesEmailTemplate, WpEmailTemplate, WpEntity, WpEntityActions, WpEntityAdapter, WpEntityAuthMiddleware, WpEntityConnector, WpEntityConverter, WpEntityManager, WpEntityQueryBuilder, WpEntityRepository, WpEntitySeeder, WpEventsTracker, WpSendgridEmailTemplate, WpUserService, getLocalizedText, newUuid, renderHandlebarsTemplate };
|