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.
@@ -1,5 +1,5 @@
1
- import { EPayioActivationKeyStatus } from "../../activation-key/enums/activation-key-status.enum";
2
- import { IPayioJwtPayloadDevice } from "../interfaces/i-payload-device";
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) {
@@ -4,6 +4,7 @@ export interface IPayioJwtPayloadInfo {
4
4
  docType: EDocType | null;
5
5
  doc: string | null;
6
6
  companyName: string;
7
+ natipayPix: boolean;
7
8
  containerId: string | null;
8
9
  containerName: string | null;
9
10
  sandbox: boolean;
package/package.json CHANGED
@@ -1,48 +1,36 @@
1
- {
2
- "name": "cecon-interfaces",
3
- "version": "1.9.66",
4
- "description": "Interfaces de Projetos Cecon",
5
- "main": "dist/fesm2022/cecon-interfaces.mjs",
6
- "types": "dist/index.d.ts",
7
- "module": "dist/fesm2022/cecon-interfaces.mjs",
8
- "exports": {
9
- "./package.json": {
10
- "default": "./dist/package.json"
11
- },
12
- ".": {
13
- "types": "./dist/index.d.ts",
14
- "esm2022": "./dist/esm2022/cecon-interfaces.mjs",
15
- "esm": "./dist/esm2022/cecon-interfaces.mjs",
16
- "default": "./dist/fesm2022/cecon-interfaces.mjs"
17
- }
18
- },
19
- "private": false,
20
- "scripts": {
21
- "packagr": "ng-packagr -p ng-package.json",
22
- "clean-dist": "rimraf dist/package.json dist/README.md",
23
- "build": "tsc src/index.ts --outDir dist && npm run clean-dist",
24
- "test": "echo \"Error: no test specified\" && exit 1",
25
- "deploy": "npm run packagr && npm run build && npm publish"
26
- },
27
- "repository": {
28
- "type": "git",
29
- "url": "git+https://github.com/markcecon/cecon-interfaces.git"
30
- },
31
- "keywords": [
32
- "interfaces",
33
- "models",
34
- "pacotes",
35
- "types",
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
  }