cecon-interfaces 1.9.66 → 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 +35 -47
@@ -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) {
|
package/package.json
CHANGED
@@ -1,48 +1,36 @@
|
|
1
|
-
{
|
2
|
-
"name": "cecon-interfaces",
|
3
|
-
"version": "1.9.
|
4
|
-
"description": "Interfaces de Projetos Cecon",
|
5
|
-
"main": "dist/
|
6
|
-
"types": "dist/index.d.ts",
|
7
|
-
"
|
8
|
-
"
|
9
|
-
"
|
10
|
-
|
11
|
-
|
12
|
-
"
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
},
|
19
|
-
"
|
20
|
-
|
21
|
-
"
|
22
|
-
"
|
23
|
-
"
|
24
|
-
"
|
25
|
-
|
26
|
-
|
27
|
-
"
|
28
|
-
|
29
|
-
"url": "
|
30
|
-
},
|
31
|
-
"
|
32
|
-
|
33
|
-
"
|
34
|
-
"
|
35
|
-
|
36
|
-
"cecon"
|
37
|
-
],
|
38
|
-
"author": "Mark Cecon",
|
39
|
-
"license": "MIT",
|
40
|
-
"bugs": {
|
41
|
-
"url": "https://github.com/markcecon/cecon-interfaces/issues"
|
42
|
-
},
|
43
|
-
"homepage": "https://github.com/markcecon/cecon-interfaces#readme",
|
44
|
-
"devDependencies": {
|
45
|
-
"ng-packagr": "^16.2.0",
|
46
|
-
"rimraf": "^6.0.1"
|
47
|
-
}
|
1
|
+
{
|
2
|
+
"name": "cecon-interfaces",
|
3
|
+
"version": "1.9.69",
|
4
|
+
"description": "Interfaces de Projetos Cecon",
|
5
|
+
"main": "dist/index.js",
|
6
|
+
"types": "dist/index.d.ts",
|
7
|
+
"private": false,
|
8
|
+
"scripts": {
|
9
|
+
"packagr": "ng-packagr -p ng-package.json",
|
10
|
+
"clean-dist": "rimraf dist/package.json dist/README.md",
|
11
|
+
"build": "tsc src/index.ts --outDir dist && npm run clean-dist",
|
12
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
13
|
+
"deploy": "npm run packagr && npm run build && npm publish"
|
14
|
+
},
|
15
|
+
"repository": {
|
16
|
+
"type": "git",
|
17
|
+
"url": "git+https://github.com/markcecon/cecon-interfaces.git"
|
18
|
+
},
|
19
|
+
"keywords": [
|
20
|
+
"interfaces",
|
21
|
+
"models",
|
22
|
+
"pacotes",
|
23
|
+
"types",
|
24
|
+
"cecon"
|
25
|
+
],
|
26
|
+
"author": "Mark Cecon",
|
27
|
+
"license": "MIT",
|
28
|
+
"bugs": {
|
29
|
+
"url": "https://github.com/markcecon/cecon-interfaces/issues"
|
30
|
+
},
|
31
|
+
"homepage": "https://github.com/markcecon/cecon-interfaces#readme",
|
32
|
+
"devDependencies": {
|
33
|
+
"ng-packagr": "^16.2.0",
|
34
|
+
"rimraf": "^6.0.1"
|
35
|
+
}
|
48
36
|
}
|