cecon-interfaces 1.6.71 → 1.6.72

Sign up to get free protection for your applications and to get access to all the features.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.71",
3
+ "version": "1.6.72",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,5 +1,5 @@
1
- import { PayioPermissionRoleEntity } from '../../permissions';
2
1
  import { IPayioMember } from '../interfaces/i-member';
2
+ import { PayioMemberRoleEntity } from './member-role.entity';
3
3
  export declare class PayioMemberEntity implements IPayioMember {
4
4
  accessCount: number | null;
5
5
  active: boolean;
@@ -11,7 +11,7 @@ export declare class PayioMemberEntity implements IPayioMember {
11
11
  imageUrl: string | null;
12
12
  lastAccessAt: Date | null;
13
13
  name: string;
14
- roles: PayioPermissionRoleEntity[];
14
+ roles: PayioMemberRoleEntity[];
15
15
  tags: string[];
16
16
  updatedAt: Date;
17
17
  userId: string;
@@ -1,4 +1,4 @@
1
- import { IPayioPermissionRole } from '../../permissions';
1
+ import { IPayioMemberRole } from './i-member-role';
2
2
  export interface IPayioMember {
3
3
  accessCount: number | null;
4
4
  active: boolean;
@@ -10,7 +10,7 @@ export interface IPayioMember {
10
10
  imageUrl: string | null;
11
11
  lastAccessAt: Date | null;
12
12
  name: string;
13
- roles: IPayioPermissionRole[];
13
+ roles: IPayioMemberRole[];
14
14
  tags: string[];
15
15
  updatedAt: Date;
16
16
  userId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.71",
3
+ "version": "1.6.72",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",