cecon-interfaces 1.7.24 → 1.7.26
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/app/entities/desenfila.entity.d.ts +5 -0
- package/dist/app/entities/desenfila.entity.js +5 -0
- package/dist/app/interfaces/i-desenfila.d.ts +5 -0
- package/dist/esm2022/app/entities/desenfila.entity.mjs +6 -1
- package/dist/esm2022/app/interfaces/i-desenfila.mjs +1 -1
- package/dist/esm2022/envelope/interfaces/factory-envelope-array-pag.functions.mjs +1 -1
- package/dist/esm2022/envelope/interfaces/factory-envelope-array.functions.mjs +1 -1
- package/dist/esm2022/envelope/interfaces/factory-envelope.functions.mjs +1 -1
- package/dist/esm2022/general/entities/pix-keys.entity.mjs +1 -1
- package/dist/esm2022/general/interfaces/i-pix-key.mjs +3 -0
- package/dist/esm2022/natipay/company/entities/company.entity.mjs +1 -1
- package/dist/esm2022/natipay/company/interfaces/i-company.mjs +1 -1
- package/dist/esm2022/payio/chef-config/entities/chef-config-tabs.entity.mjs +15 -0
- package/dist/esm2022/payio/chef-config/entities/chef-config.entity.mjs +2 -4
- package/dist/esm2022/payio/chef-config/entities/index.mjs +2 -1
- package/dist/esm2022/payio/chef-config/enums/tab-mode.enum.mjs +2 -1
- package/dist/esm2022/payio/chef-config/interfaces/i-chef-config-tabs.mjs +2 -0
- package/dist/esm2022/payio/chef-config/interfaces/i-chef-config.mjs +1 -1
- package/dist/esm2022/payio/chef-config/interfaces/index.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +172 -154
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/general/entities/pix-keys.entity.d.ts +2 -2
- package/dist/general/interfaces/{i-pix-keys.d.ts → i-pix-key.d.ts} +1 -1
- package/dist/natipay/company/entities/company.entity.d.ts +2 -2
- package/dist/natipay/company/interfaces/i-company.d.ts +2 -2
- package/dist/package.json +1 -1
- package/dist/payio/chef-config/entities/chef-config-tabs.entity.d.ts +7 -0
- package/dist/payio/chef-config/entities/chef-config-tabs.entity.js +19 -0
- package/dist/payio/chef-config/entities/chef-config.entity.d.ts +2 -1
- package/dist/payio/chef-config/entities/chef-config.entity.js +1 -3
- package/dist/payio/chef-config/entities/index.d.ts +1 -0
- package/dist/payio/chef-config/entities/index.js +3 -1
- package/dist/payio/chef-config/enums/tab-mode.enum.d.ts +2 -1
- package/dist/payio/chef-config/enums/tab-mode.enum.js +1 -0
- package/dist/payio/chef-config/interfaces/i-chef-config-tabs.d.ts +5 -0
- package/dist/payio/chef-config/interfaces/i-chef-config-tabs.js +2 -0
- package/dist/payio/chef-config/interfaces/i-chef-config.d.ts +2 -0
- package/dist/payio/chef-config/interfaces/index.d.ts +1 -0
- package/package.json +1 -1
- package/dist/esm2022/general/interfaces/i-pix-keys.mjs +0 -3
- /package/dist/general/interfaces/{i-pix-keys.js → i-pix-key.js} +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
import { EPixKey } from '../enums';
|
2
|
-
import {
|
3
|
-
export declare class PixKeyEntity implements
|
2
|
+
import { IPixKey } from '../interfaces/i-pix-key';
|
3
|
+
export declare class PixKeyEntity implements IPixKey {
|
4
4
|
active: boolean;
|
5
5
|
createdAt: Date;
|
6
6
|
description: string;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { EDocType, IPaymentProvider } from '../../../general';
|
2
|
-
import {
|
2
|
+
import { IPixKey } from '../../../general/interfaces/i-pix-key';
|
3
3
|
import { IDesenfila } from '../../desenfila/interfaces';
|
4
4
|
import { INatipayCompany } from '../interfaces/i-company';
|
5
5
|
import { NatiapyAddressEntity } from './address.entity';
|
@@ -22,7 +22,7 @@ export declare class NatipayCompanyEntity implements INatipayCompany {
|
|
22
22
|
natipay: IDesenfila | null;
|
23
23
|
paymentProvider: IPaymentProvider | null;
|
24
24
|
phoneNumber: string;
|
25
|
-
pixKeys:
|
25
|
+
pixKeys: IPixKey[];
|
26
26
|
sandbox: boolean;
|
27
27
|
shortName: string;
|
28
28
|
tags: string[];
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { EDocType } from '../../../general';
|
2
2
|
import { IPaymentProvider } from '../../../general/interfaces/i-payment-provider';
|
3
|
-
import {
|
3
|
+
import { IPixKey } from '../../../general/interfaces/i-pix-key';
|
4
4
|
import { IDesenfila } from '../../desenfila/interfaces';
|
5
5
|
import { INatipayAddress } from './i-address';
|
6
6
|
export interface INatipayCompany {
|
@@ -22,7 +22,7 @@ export interface INatipayCompany {
|
|
22
22
|
natipay: IDesenfila | null;
|
23
23
|
paymentProvider: IPaymentProvider | null;
|
24
24
|
phoneNumber: string;
|
25
|
-
pixKeys:
|
25
|
+
pixKeys: IPixKey[];
|
26
26
|
sandbox: boolean;
|
27
27
|
shortName: string;
|
28
28
|
tags: string[];
|
package/dist/package.json
CHANGED
@@ -0,0 +1,19 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.PayioChefConfigTabsEntity = void 0;
|
4
|
+
var PayioChefConfigTabsEntity = /** @class */ (function () {
|
5
|
+
function PayioChefConfigTabsEntity(data) {
|
6
|
+
this.active = true;
|
7
|
+
this.id = '';
|
8
|
+
this.name = '';
|
9
|
+
if (data) {
|
10
|
+
for (var key in data) {
|
11
|
+
if (data.hasOwnProperty(key) && key in this) {
|
12
|
+
this[key] = data[key];
|
13
|
+
}
|
14
|
+
}
|
15
|
+
}
|
16
|
+
}
|
17
|
+
return PayioChefConfigTabsEntity;
|
18
|
+
}());
|
19
|
+
exports.PayioChefConfigTabsEntity = PayioChefConfigTabsEntity;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { IPayioChefConfig, IPayioChefConfigOperation, IPayioChefConfigPrinter, IPayioChefConfigScale, IPayioChefConfigWebhook } from '../interfaces';
|
1
|
+
import { IPayioChefConfig, IPayioChefConfigOperation, IPayioChefConfigPrinter, IPayioChefConfigScale, IPayioChefConfigTabs, IPayioChefConfigWebhook } from '../interfaces';
|
2
2
|
export declare class PayioChefConfigEntity implements IPayioChefConfig {
|
3
3
|
createdAt: Date;
|
4
4
|
id: string;
|
@@ -6,6 +6,7 @@ export declare class PayioChefConfigEntity implements IPayioChefConfig {
|
|
6
6
|
operation: IPayioChefConfigOperation;
|
7
7
|
printer: IPayioChefConfigPrinter | null;
|
8
8
|
scale: IPayioChefConfigScale;
|
9
|
+
tabs: IPayioChefConfigTabs[];
|
9
10
|
updatedAt: Date;
|
10
11
|
webhook: IPayioChefConfigWebhook[];
|
11
12
|
constructor(data?: Partial<PayioChefConfigEntity>);
|
@@ -4,16 +4,14 @@ exports.PayioChefConfigEntity = void 0;
|
|
4
4
|
var chef_config_operation_entity_1 = require("./chef-config-operation.entity");
|
5
5
|
var chef_config_scale_entity_1 = require("./chef-config-scale.entity");
|
6
6
|
var PayioChefConfigEntity = /** @class */ (function () {
|
7
|
-
// #endregion Properties (9)
|
8
|
-
// #region Constructors (1)
|
9
7
|
function PayioChefConfigEntity(data) {
|
10
|
-
// #region Properties (9)
|
11
8
|
this.createdAt = new Date();
|
12
9
|
this.id = '';
|
13
10
|
this.name = '';
|
14
11
|
this.operation = new chef_config_operation_entity_1.PayioChefConfigOperationEntity();
|
15
12
|
this.printer = null;
|
16
13
|
this.scale = new chef_config_scale_entity_1.PayioChefConfigScaleEntity();
|
14
|
+
this.tabs = [];
|
17
15
|
this.updatedAt = new Date();
|
18
16
|
this.webhook = [];
|
19
17
|
if (data) {
|
@@ -1,5 +1,6 @@
|
|
1
1
|
export { PayioChefConfigOperationEntity } from './chef-config-operation.entity';
|
2
2
|
export { PayioChefConfigPrinterEntity } from './chef-config-printer.entity';
|
3
3
|
export { PayioChefConfigScaleEntity } from './chef-config-scale.entity';
|
4
|
+
export { PayioChefConfigTabsEntity } from './chef-config-tabs.entity';
|
4
5
|
export { PayioChefConfigWebhookEntity } from './chef-config-webhook.entity';
|
5
6
|
export { PayioChefConfigEntity } from './chef-config.entity';
|
@@ -1,12 +1,14 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.PayioChefConfigEntity = exports.PayioChefConfigWebhookEntity = exports.PayioChefConfigScaleEntity = exports.PayioChefConfigPrinterEntity = exports.PayioChefConfigOperationEntity = void 0;
|
3
|
+
exports.PayioChefConfigEntity = exports.PayioChefConfigWebhookEntity = exports.PayioChefConfigTabsEntity = exports.PayioChefConfigScaleEntity = exports.PayioChefConfigPrinterEntity = exports.PayioChefConfigOperationEntity = void 0;
|
4
4
|
var chef_config_operation_entity_1 = require("./chef-config-operation.entity");
|
5
5
|
Object.defineProperty(exports, "PayioChefConfigOperationEntity", { enumerable: true, get: function () { return chef_config_operation_entity_1.PayioChefConfigOperationEntity; } });
|
6
6
|
var chef_config_printer_entity_1 = require("./chef-config-printer.entity");
|
7
7
|
Object.defineProperty(exports, "PayioChefConfigPrinterEntity", { enumerable: true, get: function () { return chef_config_printer_entity_1.PayioChefConfigPrinterEntity; } });
|
8
8
|
var chef_config_scale_entity_1 = require("./chef-config-scale.entity");
|
9
9
|
Object.defineProperty(exports, "PayioChefConfigScaleEntity", { enumerable: true, get: function () { return chef_config_scale_entity_1.PayioChefConfigScaleEntity; } });
|
10
|
+
var chef_config_tabs_entity_1 = require("./chef-config-tabs.entity");
|
11
|
+
Object.defineProperty(exports, "PayioChefConfigTabsEntity", { enumerable: true, get: function () { return chef_config_tabs_entity_1.PayioChefConfigTabsEntity; } });
|
10
12
|
var chef_config_webhook_entity_1 = require("./chef-config-webhook.entity");
|
11
13
|
Object.defineProperty(exports, "PayioChefConfigWebhookEntity", { enumerable: true, get: function () { return chef_config_webhook_entity_1.PayioChefConfigWebhookEntity; } });
|
12
14
|
var chef_config_entity_1 = require("./chef-config.entity");
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { IPayioChefConfigOperation } from './i-chef-config-operation';
|
2
2
|
import { IPayioChefConfigPrinter } from './i-chef-config-printer';
|
3
3
|
import { IPayioChefConfigScale } from './i-chef-config-scale';
|
4
|
+
import { IPayioChefConfigTabs } from './i-chef-config-tabs';
|
4
5
|
import { IPayioChefConfigWebhook } from './i-chef-config-webhook';
|
5
6
|
export interface IPayioChefConfig {
|
6
7
|
createdAt: Date;
|
@@ -10,5 +11,6 @@ export interface IPayioChefConfig {
|
|
10
11
|
printer: IPayioChefConfigPrinter | null;
|
11
12
|
scale: IPayioChefConfigScale;
|
12
13
|
updatedAt: Date;
|
14
|
+
tabs: IPayioChefConfigTabs[];
|
13
15
|
webhook: IPayioChefConfigWebhook[];
|
14
16
|
}
|
@@ -2,4 +2,5 @@ export { IPayioChefConfig } from './i-chef-config';
|
|
2
2
|
export { IPayioChefConfigOperation } from './i-chef-config-operation';
|
3
3
|
export { IPayioChefConfigPrinter } from './i-chef-config-printer';
|
4
4
|
export { IPayioChefConfigScale } from './i-chef-config-scale';
|
5
|
+
export { IPayioChefConfigTabs } from './i-chef-config-tabs';
|
5
6
|
export { IPayioChefConfigWebhook } from './i-chef-config-webhook';
|
package/package.json
CHANGED
@@ -1,3 +0,0 @@
|
|
1
|
-
// src/models/base.entity.ts
|
2
|
-
export {};
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1waXgta2V5cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9nZW5lcmFsL2ludGVyZmFjZXMvaS1waXgta2V5cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSw0QkFBNEIiLCJzb3VyY2VzQ29udGVudCI6WyIvLyBzcmMvbW9kZWxzL2Jhc2UuZW50aXR5LnRzXHJcblxyXG5pbXBvcnQgeyBFUGl4S2V5IH0gZnJvbSAnLi4vZW51bXMnO1xyXG5cclxuZXhwb3J0IGludGVyZmFjZSBJUGl4S2V5cyB7XHJcbiAgLy8gI3JlZ2lvbiBQcm9wZXJ0aWVzICg3KVxyXG5cclxuICBhY3RpdmU6IGJvb2xlYW47XHJcbiAga2V5OiBzdHJpbmc7XHJcbiAgdHlwZTogRVBpeEtleTtcclxuICBjcmVhdGVkQXQ6IERhdGU7XHJcbiAgaWQ6IHN0cmluZztcclxuICB1cGRhdGVkQXQ6IERhdGU7XHJcbiAgZGVzY3JpcHRpb246IHN0cmluZztcclxuICBpc0RlZmF1bHQ6IGJvb2xlYW47XHJcbiAgLy8gI2VuZHJlZ2lvbiBQcm9wZXJ0aWVzICg3KVxyXG59XHJcbiJdfQ==
|
File without changes
|