cecon-interfaces 1.9.67 → 1.9.69
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/payload/entities/payload-device.entity.mjs +2 -2
- package/dist/esm2022/payio/payload/entities/payload-info.entity.mjs +4 -6
- package/dist/esm2022/payio/payload/interfaces/i-payload-info.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +3 -5
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/payload/entities/payload-device.entity.d.ts +2 -2
- package/dist/payio/payload/entities/payload-info.entity.d.ts +3 -2
- package/dist/payio/payload/entities/payload-info.entity.js +3 -5
- package/dist/payio/payload/interfaces/i-payload-info.d.ts +1 -0
- package/package.json +1 -1
@@ -1,5 +1,5 @@
|
|
1
|
-
import { EPayioActivationKeyStatus } from
|
2
|
-
import { IPayioJwtPayloadDevice } from
|
1
|
+
import { EPayioActivationKeyStatus } from '../../activation-key/enums/activation-key-status.enum';
|
2
|
+
import { IPayioJwtPayloadDevice } from '../interfaces/i-payload-device';
|
3
3
|
export declare class PayioJwtPayloadDeviceEntity implements IPayioJwtPayloadDevice {
|
4
4
|
activationId: string | null;
|
5
5
|
activationKey: string | null;
|
@@ -5,8 +5,9 @@ export declare class PayioJwtPayloadInfoEntity implements IPayioJwtPayloadInfo {
|
|
5
5
|
companyName: string;
|
6
6
|
containerId: string | null;
|
7
7
|
containerName: string | null;
|
8
|
-
sandbox: boolean;
|
9
|
-
docType: EDocType | null;
|
10
8
|
doc: string | null;
|
9
|
+
docType: EDocType | null;
|
10
|
+
natipayPix: boolean;
|
11
|
+
sandbox: boolean;
|
11
12
|
constructor(data?: Partial<PayioJwtPayloadInfoEntity>);
|
12
13
|
}
|
@@ -2,17 +2,15 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.PayioJwtPayloadInfoEntity = void 0;
|
4
4
|
var PayioJwtPayloadInfoEntity = /** @class */ (function () {
|
5
|
-
// #endregion Properties (4)
|
6
|
-
// #region Constructors (1)
|
7
5
|
function PayioJwtPayloadInfoEntity(data) {
|
8
|
-
// #region Properties (4)
|
9
6
|
this.companyId = '';
|
10
7
|
this.companyName = '';
|
11
8
|
this.containerId = null;
|
12
9
|
this.containerName = null;
|
13
|
-
this.sandbox = false;
|
14
|
-
this.docType = null;
|
15
10
|
this.doc = null;
|
11
|
+
this.docType = null;
|
12
|
+
this.natipayPix = false;
|
13
|
+
this.sandbox = false;
|
16
14
|
if (data) {
|
17
15
|
for (var key in data) {
|
18
16
|
if (data.hasOwnProperty(key) && key in this) {
|