cecon-interfaces 1.7.41 → 1.7.43
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/natipay/payload/entities/payload-user.entity.mjs +3 -4
- package/dist/esm2022/natipay/payload/interfaces/i-payload-user.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +1 -3
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/natipay/payload/entities/payload-user.entity.d.ts +2 -0
- package/dist/natipay/payload/entities/payload-user.entity.js +2 -3
- package/dist/natipay/payload/interfaces/i-payload-user.d.ts +2 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -1,8 +1,10 @@
|
|
1
|
+
import { NatipayMemberRulesEnum } from '../../members';
|
1
2
|
import { INatipayJwtPayloadUser } from '../interfaces/i-payload-user';
|
2
3
|
export declare class NatipayJwtPayloadUserEntity implements INatipayJwtPayloadUser {
|
3
4
|
email: string | null;
|
4
5
|
id: string;
|
5
6
|
internationalCode: string;
|
7
|
+
memberRule: NatipayMemberRulesEnum;
|
6
8
|
name: string;
|
7
9
|
phoneNumber: string;
|
8
10
|
constructor(data?: Partial<NatipayJwtPayloadUserEntity>);
|
@@ -1,14 +1,13 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.NatipayJwtPayloadUserEntity = void 0;
|
4
|
+
var members_1 = require("../../members");
|
4
5
|
var NatipayJwtPayloadUserEntity = /** @class */ (function () {
|
5
|
-
// #endregion Properties (6)
|
6
|
-
// #region Constructors (1)
|
7
6
|
function NatipayJwtPayloadUserEntity(data) {
|
8
|
-
// #region Properties (6)
|
9
7
|
this.email = null;
|
10
8
|
this.id = '';
|
11
9
|
this.internationalCode = '';
|
10
|
+
this.memberRule = members_1.NatipayMemberRulesEnum.USER;
|
12
11
|
this.name = '';
|
13
12
|
this.phoneNumber = '';
|
14
13
|
if (data) {
|
package/dist/package.json
CHANGED