cecon-interfaces 2.0.33 → 2.0.36
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/esm2022/payio/permissions/entities/permission.entity.mjs +3 -2
- package/dist/esm2022/payio/permissions/interfaces/i-permission.mjs +1 -1
- package/dist/esm2022/payio/user/entities/user.entity.mjs +2 -7
- package/dist/esm2022/payio/user/interfaces/i-user.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +2 -6
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/permissions/entities/permission.entity.d.ts +3 -2
- package/dist/payio/permissions/interfaces/i-permission.d.ts +1 -0
- package/dist/payio/user/entities/user.entity.d.ts +1 -7
- package/dist/payio/user/entities/user.entity.js +1 -6
- package/dist/payio/user/interfaces/i-user.d.ts +3 -9
- package/package.json +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { EPayioRole } from
|
|
2
|
-
import { IPayioPermission } from
|
|
1
|
+
import { EPayioRole } from '../enums';
|
|
2
|
+
import { IPayioPermission } from '../interfaces/i-permission';
|
|
3
3
|
export declare class PayioPermissionEntity implements IPayioPermission {
|
|
4
4
|
active: boolean;
|
|
5
|
+
appId?: string | undefined;
|
|
5
6
|
code: string;
|
|
6
7
|
createdAt: Date;
|
|
7
8
|
description: string;
|
|
@@ -1,15 +1,9 @@
|
|
|
1
1
|
import { UserEntity } from '../../../users';
|
|
2
|
-
import { IPayioUserReport } from '../interfaces';
|
|
3
2
|
import { IPayioUser } from '../interfaces/i-user';
|
|
4
3
|
import { PayioUserSessionEntity } from './user-sessions.entity';
|
|
5
4
|
export declare class PayioUserEntity extends UserEntity implements IPayioUser {
|
|
6
|
-
accessCode: string | null;
|
|
7
|
-
accessCodeExpiration: Date | null;
|
|
8
5
|
code: string | null;
|
|
9
|
-
|
|
10
|
-
faceImage64: string | null;
|
|
11
|
-
faceLastUpdate: Date | null;
|
|
12
|
-
reports: IPayioUserReport[];
|
|
6
|
+
password: string | null;
|
|
13
7
|
sessions: PayioUserSessionEntity[];
|
|
14
8
|
constructor(data?: Partial<PayioUserEntity>);
|
|
15
9
|
}
|
|
@@ -21,13 +21,8 @@ var PayioUserEntity = /** @class */ (function (_super) {
|
|
|
21
21
|
__extends(PayioUserEntity, _super);
|
|
22
22
|
function PayioUserEntity(data) {
|
|
23
23
|
var _this = _super.call(this) || this;
|
|
24
|
-
_this.accessCode = null;
|
|
25
|
-
_this.accessCodeExpiration = null;
|
|
26
24
|
_this.code = null;
|
|
27
|
-
_this.
|
|
28
|
-
_this.faceImage64 = null;
|
|
29
|
-
_this.faceLastUpdate = null;
|
|
30
|
-
_this.reports = [];
|
|
25
|
+
_this.password = null;
|
|
31
26
|
_this.sessions = [];
|
|
32
27
|
if (data) {
|
|
33
28
|
for (var key in data) {
|
|
@@ -1,13 +1,7 @@
|
|
|
1
|
-
import { IUser } from
|
|
2
|
-
import {
|
|
3
|
-
import { IPayioUserSession } from './i-user-sessions';
|
|
1
|
+
import { IUser } from "../../../users";
|
|
2
|
+
import { IPayioUserSession } from "./i-user-sessions";
|
|
4
3
|
export interface IPayioUser extends IUser {
|
|
5
|
-
accessCode: string | null;
|
|
6
|
-
accessCodeExpiration: Date | null;
|
|
7
4
|
code: string | null;
|
|
5
|
+
password: string | null;
|
|
8
6
|
sessions: IPayioUserSession[];
|
|
9
|
-
faceId: string | null;
|
|
10
|
-
faceImage64: string | null;
|
|
11
|
-
faceLastUpdate: Date | null;
|
|
12
|
-
reports: IPayioUserReport[];
|
|
13
7
|
}
|