@abp/ng.account.core 5.0.0-rc.1 → 5.0.2

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.
Files changed (47) hide show
  1. package/abp-ng.account.core.d.ts +5 -5
  2. package/bundles/abp-ng.account.core-proxy.umd.js +98 -98
  3. package/bundles/abp-ng.account.core.umd.js +417 -417
  4. package/esm2015/abp-ng.account.core.js +4 -4
  5. package/esm2015/lib/auth-wrapper.service.js +42 -42
  6. package/esm2015/lib/tenant-box.service.js +56 -56
  7. package/esm2015/proxy/abp-ng.account.core-proxy.js +4 -4
  8. package/esm2015/proxy/lib/index.js +2 -2
  9. package/esm2015/proxy/lib/proxy/account/account.service.js +33 -33
  10. package/esm2015/proxy/lib/proxy/account/index.js +5 -5
  11. package/esm2015/proxy/lib/proxy/account/models.js +1 -1
  12. package/esm2015/proxy/lib/proxy/account/profile.service.js +32 -32
  13. package/esm2015/proxy/lib/proxy/account/web/areas/account/controllers/account.service.js +32 -32
  14. package/esm2015/proxy/lib/proxy/account/web/areas/account/controllers/index.js +3 -3
  15. package/esm2015/proxy/lib/proxy/account/web/areas/account/controllers/models/index.js +2 -2
  16. package/esm2015/proxy/lib/proxy/account/web/areas/account/controllers/models/login-result-type.enum.js +10 -10
  17. package/esm2015/proxy/lib/proxy/account/web/areas/account/controllers/models/models.js +1 -1
  18. package/esm2015/proxy/lib/proxy/account/web/areas/account/index.js +2 -2
  19. package/esm2015/proxy/lib/proxy/account/web/areas/index.js +2 -2
  20. package/esm2015/proxy/lib/proxy/account/web/index.js +2 -2
  21. package/esm2015/proxy/lib/proxy/identity/index.js +1 -1
  22. package/esm2015/proxy/lib/proxy/identity/models.js +1 -1
  23. package/esm2015/proxy/public-api.js +1 -1
  24. package/esm2015/public-api.js +5 -5
  25. package/fesm2015/abp-ng.account.core-proxy.js +92 -92
  26. package/fesm2015/abp-ng.account.core.js +86 -86
  27. package/lib/auth-wrapper.service.d.ts +19 -19
  28. package/lib/tenant-box.service.d.ts +20 -20
  29. package/package.json +3 -3
  30. package/proxy/abp-ng.account.core-proxy.d.ts +5 -5
  31. package/proxy/lib/index.d.ts +2 -2
  32. package/proxy/lib/proxy/account/account.service.d.ts +14 -14
  33. package/proxy/lib/proxy/account/index.d.ts +5 -5
  34. package/proxy/lib/proxy/account/models.d.ts +40 -40
  35. package/proxy/lib/proxy/account/profile.service.d.ts +13 -13
  36. package/proxy/lib/proxy/account/web/areas/account/controllers/account.service.d.ts +13 -13
  37. package/proxy/lib/proxy/account/web/areas/account/controllers/index.d.ts +3 -3
  38. package/proxy/lib/proxy/account/web/areas/account/controllers/models/index.d.ts +2 -2
  39. package/proxy/lib/proxy/account/web/areas/account/controllers/models/login-result-type.enum.d.ts +8 -8
  40. package/proxy/lib/proxy/account/web/areas/account/controllers/models/models.d.ts +10 -10
  41. package/proxy/lib/proxy/account/web/areas/account/index.d.ts +2 -2
  42. package/proxy/lib/proxy/account/web/areas/index.d.ts +2 -2
  43. package/proxy/lib/proxy/account/web/index.d.ts +2 -2
  44. package/proxy/lib/proxy/identity/index.d.ts +1 -1
  45. package/proxy/lib/proxy/identity/models.d.ts +15 -15
  46. package/proxy/public-api.d.ts +1 -1
  47. package/public-api.d.ts +2 -2
@@ -1,13 +1,13 @@
1
- import type { ChangePasswordInput, ProfileDto, UpdateProfileDto } from './models';
2
- import { RestService } from '@abp/ng.core';
3
- import * as i0 from "@angular/core";
4
- export declare class ProfileService {
5
- private restService;
6
- apiName: string;
7
- changePassword: (input: ChangePasswordInput) => import("rxjs").Observable<void>;
8
- get: () => import("rxjs").Observable<ProfileDto>;
9
- update: (input: UpdateProfileDto) => import("rxjs").Observable<ProfileDto>;
10
- constructor(restService: RestService);
11
- static ɵfac: i0.ɵɵFactoryDeclaration<ProfileService, never>;
12
- static ɵprov: i0.ɵɵInjectableDeclaration<ProfileService>;
13
- }
1
+ import type { ChangePasswordInput, ProfileDto, UpdateProfileDto } from './models';
2
+ import { RestService } from '@abp/ng.core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ProfileService {
5
+ private restService;
6
+ apiName: string;
7
+ changePassword: (input: ChangePasswordInput) => import("rxjs").Observable<void>;
8
+ get: () => import("rxjs").Observable<ProfileDto>;
9
+ update: (input: UpdateProfileDto) => import("rxjs").Observable<ProfileDto>;
10
+ constructor(restService: RestService);
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProfileService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<ProfileService>;
13
+ }
@@ -1,13 +1,13 @@
1
- import type { AbpLoginResult, UserLoginInfo } from './models/models';
2
- import { RestService } from '@abp/ng.core';
3
- import * as i0 from "@angular/core";
4
- export declare class AccountService {
5
- private restService;
6
- apiName: string;
7
- checkPasswordByLogin: (login: UserLoginInfo) => import("rxjs").Observable<AbpLoginResult>;
8
- loginByLogin: (login: UserLoginInfo) => import("rxjs").Observable<AbpLoginResult>;
9
- logout: () => import("rxjs").Observable<void>;
10
- constructor(restService: RestService);
11
- static ɵfac: i0.ɵɵFactoryDeclaration<AccountService, never>;
12
- static ɵprov: i0.ɵɵInjectableDeclaration<AccountService>;
13
- }
1
+ import type { AbpLoginResult, UserLoginInfo } from './models/models';
2
+ import { RestService } from '@abp/ng.core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AccountService {
5
+ private restService;
6
+ apiName: string;
7
+ checkPasswordByLogin: (login: UserLoginInfo) => import("rxjs").Observable<AbpLoginResult>;
8
+ loginByLogin: (login: UserLoginInfo) => import("rxjs").Observable<AbpLoginResult>;
9
+ logout: () => import("rxjs").Observable<void>;
10
+ constructor(restService: RestService);
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AccountService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<AccountService>;
13
+ }
@@ -1,3 +1,3 @@
1
- import * as Models from './models';
2
- export * from './account.service';
3
- export { Models };
1
+ import * as Models from './models';
2
+ export * from './account.service';
3
+ export { Models };
@@ -1,2 +1,2 @@
1
- export * from './login-result-type.enum';
2
- export * from './models';
1
+ export * from './login-result-type.enum';
2
+ export * from './models';
@@ -1,8 +1,8 @@
1
- export declare enum LoginResultType {
2
- Success = 1,
3
- InvalidUserNameOrPassword = 2,
4
- NotAllowed = 3,
5
- LockedOut = 4,
6
- RequiresTwoFactor = 5
7
- }
8
- export declare const loginResultTypeOptions: import("@abp/ng.core").ABP.Option<typeof LoginResultType>[];
1
+ export declare enum LoginResultType {
2
+ Success = 1,
3
+ InvalidUserNameOrPassword = 2,
4
+ NotAllowed = 3,
5
+ LockedOut = 4,
6
+ RequiresTwoFactor = 5
7
+ }
8
+ export declare const loginResultTypeOptions: import("@abp/ng.core").ABP.Option<typeof LoginResultType>[];
@@ -1,10 +1,10 @@
1
- import type { LoginResultType } from './login-result-type.enum';
2
- export interface AbpLoginResult {
3
- result: LoginResultType;
4
- description?: string;
5
- }
6
- export interface UserLoginInfo {
7
- userNameOrEmailAddress: string;
8
- password: string;
9
- rememberMe: boolean;
10
- }
1
+ import type { LoginResultType } from './login-result-type.enum';
2
+ export interface AbpLoginResult {
3
+ result: LoginResultType;
4
+ description?: string;
5
+ }
6
+ export interface UserLoginInfo {
7
+ userNameOrEmailAddress: string;
8
+ password: string;
9
+ rememberMe: boolean;
10
+ }
@@ -1,2 +1,2 @@
1
- import * as Controllers from './controllers';
2
- export { Controllers };
1
+ import * as Controllers from './controllers';
2
+ export { Controllers };
@@ -1,2 +1,2 @@
1
- import * as Account from './account';
2
- export { Account };
1
+ import * as Account from './account';
2
+ export { Account };
@@ -1,2 +1,2 @@
1
- import * as Areas from './areas';
2
- export { Areas };
1
+ import * as Areas from './areas';
2
+ export { Areas };
@@ -1 +1 @@
1
- export * from './models';
1
+ export * from './models';
@@ -1,15 +1,15 @@
1
- import type { ExtensibleFullAuditedEntityDto } from '@abp/ng.core';
2
- export interface IdentityUserDto extends ExtensibleFullAuditedEntityDto<string> {
3
- tenantId?: string;
4
- userName?: string;
5
- name?: string;
6
- surname?: string;
7
- email?: string;
8
- emailConfirmed: boolean;
9
- phoneNumber?: string;
10
- phoneNumberConfirmed: boolean;
11
- isActive: boolean;
12
- lockoutEnabled: boolean;
13
- lockoutEnd?: string;
14
- concurrencyStamp?: string;
15
- }
1
+ import type { ExtensibleFullAuditedEntityDto } from '@abp/ng.core';
2
+ export interface IdentityUserDto extends ExtensibleFullAuditedEntityDto<string> {
3
+ tenantId?: string;
4
+ userName?: string;
5
+ name?: string;
6
+ surname?: string;
7
+ email?: string;
8
+ emailConfirmed: boolean;
9
+ phoneNumber?: string;
10
+ phoneNumberConfirmed: boolean;
11
+ isActive: boolean;
12
+ lockoutEnabled: boolean;
13
+ lockoutEnd?: string;
14
+ concurrencyStamp?: string;
15
+ }
@@ -1 +1 @@
1
- export * from './lib/index';
1
+ export * from './lib/index';
package/public-api.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from './lib/auth-wrapper.service';
2
- export * from './lib/tenant-box.service';
1
+ export * from './lib/auth-wrapper.service';
2
+ export * from './lib/tenant-box.service';