@abp/ng.identity 9.3.5 → 10.0.0-rc.1

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/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@abp/ng.identity",
3
- "version": "9.3.5",
3
+ "version": "10.0.0-rc.1",
4
4
  "homepage": "https://abp.io",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/abpframework/abp.git"
8
8
  },
9
9
  "dependencies": {
10
- "@abp/ng.components": "~9.3.5",
11
- "@abp/ng.permission-management": "~9.3.5",
12
- "@abp/ng.theme.shared": "~9.3.5",
10
+ "@abp/ng.components": "~10.0.0-rc.1",
11
+ "@abp/ng.permission-management": "~10.0.0-rc.1",
12
+ "@abp/ng.theme.shared": "~10.0.0-rc.1",
13
13
  "tslib": "^2.0.0"
14
14
  },
15
15
  "publishConfig": {
package/proxy/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as rxjs from 'rxjs';
2
- import { ExtensibleObject, ExtensibleEntityDto, PagedAndSortedResultRequestDto, ExtensibleFullAuditedEntityDto, ListResultDto, PagedResultDto, RestService } from '@abp/ng.core';
2
+ import { ExtensibleObject, ExtensibleEntityDto, PagedAndSortedResultRequestDto, ExtensibleFullAuditedEntityDto, ListResultDto, PagedResultDto } from '@abp/ng.core';
3
3
  import * as i0 from '@angular/core';
4
4
 
5
5
  interface GetIdentityRolesInput extends PagedAndSortedResultRequestDto {
@@ -75,7 +75,6 @@ declare class IdentityRoleService {
75
75
  getAllList: () => rxjs.Observable<ListResultDto<IdentityRoleDto>>;
76
76
  getList: (input: GetIdentityRolesInput) => rxjs.Observable<PagedResultDto<IdentityRoleDto>>;
77
77
  update: (id: string, input: IdentityRoleUpdateDto) => rxjs.Observable<IdentityRoleDto>;
78
- constructor(restService: RestService);
79
78
  static ɵfac: i0.ɵɵFactoryDeclaration<IdentityRoleService, never>;
80
79
  static ɵprov: i0.ɵɵInjectableDeclaration<IdentityRoleService>;
81
80
  }
@@ -99,7 +98,6 @@ declare class IdentityUserLookupService {
99
98
  findByUserName: (userName: string) => rxjs.Observable<UserData>;
100
99
  getCount: (input: UserLookupCountInputDto) => rxjs.Observable<number>;
101
100
  search: (input: UserLookupSearchInputDto) => rxjs.Observable<ListResultDto<UserData>>;
102
- constructor(restService: RestService);
103
101
  static ɵfac: i0.ɵɵFactoryDeclaration<IdentityUserLookupService, never>;
104
102
  static ɵprov: i0.ɵɵInjectableDeclaration<IdentityUserLookupService>;
105
103
  }
@@ -117,7 +115,6 @@ declare class IdentityUserService {
117
115
  getRoles: (id: string) => rxjs.Observable<ListResultDto<IdentityRoleDto>>;
118
116
  update: (id: string, input: IdentityUserUpdateDto) => rxjs.Observable<IdentityUserDto>;
119
117
  updateRoles: (id: string, input: IdentityUserUpdateRolesDto) => rxjs.Observable<void>;
120
- constructor(restService: RestService);
121
118
  static ɵfac: i0.ɵɵFactoryDeclaration<IdentityUserService, never>;
122
119
  static ɵprov: i0.ɵɵInjectableDeclaration<IdentityUserService>;
123
120
  }