cecon-interfaces 1.9.84 → 1.9.86

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.
Files changed (37) hide show
  1. package/dist/esm2022/general/enums/from.enum.mjs +1 -1
  2. package/dist/esm2022/natipay/orders/entities/order.entity.mjs +2 -1
  3. package/dist/esm2022/natipay/orders/enums/sale-channel.enum.mjs +2 -1
  4. package/dist/esm2022/natipay/orders/interfaces/i-order.mjs +1 -1
  5. package/dist/esm2022/payio/device/entities/device-config.entity.mjs +14 -0
  6. package/dist/esm2022/payio/device/entities/device.entity.mjs +2 -2
  7. package/dist/esm2022/payio/device/entities/index.mjs +2 -2
  8. package/dist/esm2022/payio/device/interfaces/i-device-config.mjs +2 -0
  9. package/dist/esm2022/payio/device/interfaces/i-device.mjs +1 -1
  10. package/dist/esm2022/payio/device/interfaces/index.mjs +1 -1
  11. package/dist/esm2022/transaction/entities/transaction.entity.mjs +4 -16
  12. package/dist/esm2022/transaction/interfaces/i-transaction.mjs +1 -1
  13. package/dist/fesm2022/cecon-interfaces.mjs +8 -23
  14. package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
  15. package/dist/natipay/orders/entities/order.entity.d.ts +1 -0
  16. package/dist/natipay/orders/entities/order.entity.js +1 -0
  17. package/dist/natipay/orders/enums/sale-channel.enum.d.ts +1 -0
  18. package/dist/natipay/orders/enums/sale-channel.enum.js +1 -0
  19. package/dist/natipay/orders/interfaces/i-order.d.ts +1 -0
  20. package/dist/payio/device/entities/device-config.entity.d.ts +6 -0
  21. package/dist/payio/device/entities/device-config.entity.js +18 -0
  22. package/dist/payio/device/entities/device.entity.d.ts +2 -2
  23. package/dist/payio/device/entities/device.entity.js +1 -1
  24. package/dist/payio/device/entities/index.d.ts +1 -1
  25. package/dist/payio/device/entities/index.js +3 -3
  26. package/dist/payio/device/interfaces/i-device-config.d.ts +4 -0
  27. package/dist/payio/device/interfaces/i-device-config.js +2 -0
  28. package/dist/payio/device/interfaces/i-device.d.ts +2 -2
  29. package/dist/payio/device/interfaces/index.d.ts +1 -0
  30. package/dist/transaction/entities/transaction.entity.d.ts +3 -15
  31. package/dist/transaction/entities/transaction.entity.js +1 -13
  32. package/dist/transaction/interfaces/i-transaction.d.ts +3 -28
  33. package/package.json +1 -1
  34. package/temp.md +33 -0
  35. package/dist/esm2022/payio/device/entities/device-chef.entity.mjs +0 -19
  36. package/dist/payio/device/entities/device-chef.entity.d.ts +0 -8
  37. package/dist/payio/device/entities/device-chef.entity.js +0 -23
@@ -7,6 +7,7 @@ import { NatipayMercadoPagoEntity } from './mercado-pago.entity';
7
7
  export declare class NatipayOrderEntity implements INatipayOrder {
8
8
  additionalFees: IOrderAdditionalFee[];
9
9
  benefits: IOrderBenefits[];
10
+ callbacks: string[];
10
11
  cancellation: IOrderCancellation | null;
11
12
  companyId: string;
12
13
  companyName: string;
@@ -8,6 +8,7 @@ var NatipayOrderEntity = /** @class */ (function () {
8
8
  function NatipayOrderEntity(data) {
9
9
  this.additionalFees = [];
10
10
  this.benefits = [];
11
+ this.callbacks = [];
11
12
  this.cancellation = null;
12
13
  this.companyId = '';
13
14
  this.companyName = '';
@@ -3,6 +3,7 @@ export declare enum ENatipaySaleChannel {
3
3
  PAYIO_CHEF = "PAYIOCHEF",
4
4
  PAYIO_GESTOR = "PAYIO-GESTOR",
5
5
  PAYIO_GESTOR_ORDER = "PAYIO-GESTOR-ORDER",
6
+ PAYIO_GESTOR_CREDIT = "PAYIO-GESTOR-CREDIT",
6
7
  PAYIO_SMART = "PAYIO-SMART",
7
8
  GESTOR_FINANCE = "GESTOR-FINANCE",
8
9
  NATIPAY = "NATIPAY",
@@ -8,6 +8,7 @@ var ENatipaySaleChannel;
8
8
  ENatipaySaleChannel["PAYIO_CHEF"] = "PAYIOCHEF";
9
9
  ENatipaySaleChannel["PAYIO_GESTOR"] = "PAYIO-GESTOR";
10
10
  ENatipaySaleChannel["PAYIO_GESTOR_ORDER"] = "PAYIO-GESTOR-ORDER";
11
+ ENatipaySaleChannel["PAYIO_GESTOR_CREDIT"] = "PAYIO-GESTOR-CREDIT";
11
12
  ENatipaySaleChannel["PAYIO_SMART"] = "PAYIO-SMART";
12
13
  ENatipaySaleChannel["GESTOR_FINANCE"] = "GESTOR-FINANCE";
13
14
  ENatipaySaleChannel["NATIPAY"] = "NATIPAY";
@@ -6,6 +6,7 @@ import { INatipayMercadoPago } from './i-mercado-pago';
6
6
  export interface INatipayOrder {
7
7
  additionalFees: IOrderAdditionalFee[];
8
8
  benefits: IOrderBenefits[];
9
+ callbacks: string[];
9
10
  cancellation: IOrderCancellation | null;
10
11
  companyId: string;
11
12
  companyName: string;
@@ -0,0 +1,6 @@
1
+ import { IPayioDeviceConfig } from '../interfaces/i-device-config';
2
+ export declare class PayioDeviceConfigEntity implements IPayioDeviceConfig {
3
+ key: string | null;
4
+ value: string | null;
5
+ constructor(data?: Partial<PayioDeviceConfigEntity>);
6
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PayioDeviceConfigEntity = void 0;
4
+ var PayioDeviceConfigEntity = /** @class */ (function () {
5
+ function PayioDeviceConfigEntity(data) {
6
+ this.key = null;
7
+ this.value = null;
8
+ if (data) {
9
+ for (var key in data) {
10
+ if (data.hasOwnProperty(key) && key in this) {
11
+ this[key] = data[key];
12
+ }
13
+ }
14
+ }
15
+ }
16
+ return PayioDeviceConfigEntity;
17
+ }());
18
+ exports.PayioDeviceConfigEntity = PayioDeviceConfigEntity;
@@ -1,10 +1,10 @@
1
1
  import { IPayioDevice } from '../interfaces/i-device';
2
2
  import { IPayioDeviceActivation } from '../interfaces/i-device-activation';
3
- import { PayioDeviceChefEntity } from './device-chef.entity';
3
+ import { IPayioDeviceConfig } from '../interfaces/i-device-config';
4
4
  export declare class PayioDeviceEntity implements IPayioDevice {
5
5
  activations: IPayioDeviceActivation[];
6
6
  active: boolean;
7
- chef: PayioDeviceChefEntity | null;
7
+ configs: IPayioDeviceConfig[];
8
8
  companyId: string;
9
9
  containerId: string;
10
10
  createdAt: Date;
@@ -5,7 +5,7 @@ var PayioDeviceEntity = /** @class */ (function () {
5
5
  function PayioDeviceEntity(data) {
6
6
  this.activations = [];
7
7
  this.active = false;
8
- this.chef = null;
8
+ this.configs = [];
9
9
  this.companyId = '';
10
10
  this.containerId = '';
11
11
  this.createdAt = new Date();
@@ -1,3 +1,3 @@
1
1
  export { PayioDeviceActivationEntity } from './device-activation.entity';
2
- export { PayioDeviceChefEntity } from './device-chef.entity';
2
+ export { PayioDeviceConfigEntity } from './device-config.entity';
3
3
  export { PayioDeviceEntity } from './device.entity';
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PayioDeviceEntity = exports.PayioDeviceChefEntity = exports.PayioDeviceActivationEntity = void 0;
3
+ exports.PayioDeviceEntity = exports.PayioDeviceConfigEntity = exports.PayioDeviceActivationEntity = void 0;
4
4
  var device_activation_entity_1 = require("./device-activation.entity");
5
5
  Object.defineProperty(exports, "PayioDeviceActivationEntity", { enumerable: true, get: function () { return device_activation_entity_1.PayioDeviceActivationEntity; } });
6
- var device_chef_entity_1 = require("./device-chef.entity");
7
- Object.defineProperty(exports, "PayioDeviceChefEntity", { enumerable: true, get: function () { return device_chef_entity_1.PayioDeviceChefEntity; } });
6
+ var device_config_entity_1 = require("./device-config.entity");
7
+ Object.defineProperty(exports, "PayioDeviceConfigEntity", { enumerable: true, get: function () { return device_config_entity_1.PayioDeviceConfigEntity; } });
8
8
  var device_entity_1 = require("./device.entity");
9
9
  Object.defineProperty(exports, "PayioDeviceEntity", { enumerable: true, get: function () { return device_entity_1.PayioDeviceEntity; } });
@@ -0,0 +1,4 @@
1
+ export interface IPayioDeviceConfig {
2
+ key: string | null;
3
+ value: string | null;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,14 +1,14 @@
1
- import { IPayioDeviceChef } from './i-device-chef';
2
1
  import { IPayioDeviceActivation } from './i-device-activation';
2
+ import { IPayioDeviceConfig } from './i-device-config';
3
3
  export interface IPayioDevice {
4
4
  activations: IPayioDeviceActivation[];
5
5
  active: boolean;
6
- chef: IPayioDeviceChef | null;
7
6
  companyId: string;
8
7
  containerId: string;
9
8
  createdAt: Date;
10
9
  deviceId: string;
11
10
  id: string;
11
+ configs: IPayioDeviceConfig[];
12
12
  lastAccess: Date;
13
13
  name: string;
14
14
  sandbox: boolean;
@@ -1,3 +1,4 @@
1
1
  export { IPayioDevice } from './i-device';
2
2
  export { IPayioDeviceActivation } from './i-device-activation';
3
3
  export { IPayioDeviceChef } from './i-device-chef';
4
+ export { IPayioDeviceConfig } from './i-device-config';
@@ -1,6 +1,6 @@
1
- import { EFrom, IDesenfilaInfo, IInfo, IMobyoInfo } from '../../general';
1
+ import { EFrom, IInfo } from '../../general';
2
2
  import { ENatipaySaleChannel } from '../../natipay';
3
- import { EFeePayer, EMpStatus, EMpStatusDetail, EOperationType, EPaymentMethodId, EReleaseStatus, ETransactionOperation, ETransactionProvider, ETransactionStatus } from '../enums';
3
+ import { EFeePayer, EMpStatus, EMpStatusDetail, EOperationType, EPaymentMethodId, EReleaseStatus, ETransactionProvider, ETransactionStatus } from '../enums';
4
4
  import { ITransaction } from '../interfaces';
5
5
  import { FeeDetailEntity } from './fee-detail.entity';
6
6
  import { TransactionBalanceEntity } from './transaction-balance.entity';
@@ -8,22 +8,14 @@ import { TransactionPaymentMethodEntity } from './transaction-payment-method.ent
8
8
  import { TransactionTotalEntity } from './transaction-total.entity';
9
9
  export declare class TransactionEntity implements ITransaction {
10
10
  balance: TransactionBalanceEntity | null;
11
- card: {};
12
11
  createdAt: Date;
13
- dateApproved: Date | null;
14
- dateCreated: Date;
15
- dateLastUpdated: Date;
16
- dateOfExpiration: Date | null;
12
+ data: string;
17
13
  description: string;
18
- desenfilaInfo: IDesenfilaInfo | null;
19
14
  externalOrderReference: string;
20
15
  feeDetails: FeeDetailEntity[];
21
16
  feePayer: EFeePayer;
22
17
  from: EFrom;
23
18
  id: string;
24
- installments: number;
25
- liveMode: boolean;
26
- mobyoInfo: IMobyoInfo | null;
27
19
  moneyReleaseDate: Date | null;
28
20
  moneyReleaseStatus: EReleaseStatus;
29
21
  natiInfo: IInfo | null;
@@ -40,11 +32,7 @@ export declare class TransactionEntity implements ITransaction {
40
32
  status: EMpStatus;
41
33
  statusDetail: EMpStatusDetail;
42
34
  total: TransactionTotalEntity | null;
43
- transactionAmount: number;
44
- transactionAmountRefunded: number;
45
- transactionOperation: ETransactionOperation;
46
35
  transactionStatus: ETransactionStatus;
47
- transactionTraceIds: string[];
48
36
  updatedAt: Date;
49
37
  constructor(data?: Partial<TransactionEntity>);
50
38
  }
@@ -7,22 +7,14 @@ var enums_1 = require("../enums");
7
7
  var TransactionEntity = /** @class */ (function () {
8
8
  function TransactionEntity(data) {
9
9
  this.balance = null;
10
- this.card = {};
11
10
  this.createdAt = new Date();
12
- this.dateApproved = null;
13
- this.dateCreated = new Date();
14
- this.dateLastUpdated = new Date();
15
- this.dateOfExpiration = null;
11
+ this.data = '';
16
12
  this.description = '';
17
- this.desenfilaInfo = new general_1.DesenfilaInfoEntity(); // TODO: Verificar se é necessário
18
13
  this.externalOrderReference = '';
19
14
  this.feeDetails = [];
20
15
  this.feePayer = enums_1.EFeePayer.PLATFORM;
21
16
  this.from = general_1.EFrom.NATIPAY;
22
17
  this.id = '';
23
- this.installments = 0;
24
- this.liveMode = true;
25
- this.mobyoInfo = new general_1.MobyoInfoEntity(); // TODO: Verificar se é necessário
26
18
  this.moneyReleaseDate = null;
27
19
  this.moneyReleaseStatus = enums_1.EReleaseStatus.PENDING;
28
20
  this.natiInfo = new general_1.InfoEntity();
@@ -39,11 +31,7 @@ var TransactionEntity = /** @class */ (function () {
39
31
  this.status = enums_1.EMpStatus.PENDING;
40
32
  this.statusDetail = enums_1.EMpStatusDetail.ACCREDITED;
41
33
  this.total = null;
42
- this.transactionAmount = 0;
43
- this.transactionAmountRefunded = 0;
44
- this.transactionOperation = enums_1.ETransactionOperation.STAMP_NEEDED;
45
34
  this.transactionStatus = enums_1.ETransactionStatus.PROCESSING;
46
- this.transactionTraceIds = [];
47
35
  this.updatedAt = new Date();
48
36
  if (data) {
49
37
  for (var key in data) {
@@ -1,21 +1,15 @@
1
- import { EFrom, IDesenfilaInfo, IInfo, IMobyoInfo } from '../../general';
1
+ import { EFrom, IInfo } from '../../general';
2
2
  import { ENatipaySaleChannel } from '../../natipay/orders/enums';
3
3
  import { EFeePayer, EMpStatus, EMpStatusDetail, EOperationType, EPaymentMethodId, EReleaseStatus, ETransactionProvider, ETransactionStatus } from '../enums';
4
- import { ETransactionOperation } from '../enums/transaction-operation.enum';
5
4
  import { ITransactionBalance } from './i-balance';
6
5
  import { IFeeDetail } from './i-fee-detail';
7
6
  import { ITransactionPaymentMethod } from './i-payment-method';
8
7
  import { ITransactionTotal } from './i-total';
9
8
  export interface ITransaction {
10
9
  balance: ITransactionBalance | null;
11
- card: {};
12
10
  createdAt: Date;
13
- dateApproved: Date | null;
14
- dateCreated: Date;
15
- dateLastUpdated: Date;
16
- dateOfExpiration: Date | null;
11
+ data: string;
17
12
  description: string;
18
- desenfilaInfo: IDesenfilaInfo | null;
19
13
  externalOrderReference: string;
20
14
  feeDetails: IFeeDetail[];
21
15
  /**
@@ -27,12 +21,9 @@ export interface ITransaction {
27
21
  feePayer: EFeePayer;
28
22
  from: EFrom;
29
23
  id: string;
30
- installments: number;
31
- liveMode: boolean;
32
- mobyoInfo: IMobyoInfo | null;
24
+ natiInfo: IInfo | null;
33
25
  moneyReleaseDate: Date | null;
34
26
  moneyReleaseStatus: EReleaseStatus;
35
- natiInfo: IInfo | null;
36
27
  operationType: EOperationType;
37
28
  payerInfo: IInfo | null;
38
29
  paymentMethod: ITransactionPaymentMethod | null;
@@ -46,22 +37,6 @@ export interface ITransaction {
46
37
  status: EMpStatus;
47
38
  statusDetail: EMpStatusDetail;
48
39
  total: ITransactionTotal | null;
49
- transactionAmount: number;
50
- transactionAmountRefunded: number;
51
- transactionOperation: ETransactionOperation;
52
40
  transactionStatus: ETransactionStatus;
53
- /**
54
- * @description IDs das transações originais usadas para rastreamento de fees (tarifas).
55
- *
56
- * - Quando o `feePayer` for MERCHANT: utilize `id[0]` para localizar
57
- * a transação original associada à tarifa do lojista.
58
- *
59
- * - Quando o `feePayer` for PLATFORM: utilize `id[1]` para localizar
60
- * a transação original associada à tarifa da plataforma.
61
- *
62
- * @important Esses IDs são cruciais para auditoria e reconciliação,
63
- * mantendo o vínculo com as transações de origem.
64
- */
65
- transactionTraceIds: string[];
66
41
  updatedAt: Date;
67
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.9.84",
3
+ "version": "1.9.86",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/temp.md ADDED
@@ -0,0 +1,33 @@
1
+ # Fluxo de Recarga - Organograma
2
+
3
+ ## 📱 Frontend (App)
4
+
5
+ ### 1. Botão de Recarga
6
+ - **Localização**: Interface do usuário
7
+ - **Ação**: Usuário solicita recarga de créditos
8
+ - **Chamada**: API interna para gerar PIX
9
+
10
+ ---
11
+
12
+ ## 🔧 Backend (API Interna)
13
+
14
+ ### 2. Endpoint de Geração de PIX
15
+ - **Método**: POST `/api/recarga/gerar-pix`
16
+ - **Parâmetros**:
17
+ - `amount`: Valor da recarga
18
+ - `userId`: ID do usuário
19
+ - **Ação**: Chama API Natipay
20
+
21
+ ### 3. Chamada para Natipay
22
+ - **Endpoint**: POST Natipay `/orders`
23
+ - **Body**:
24
+ ```json
25
+ {
26
+ "displayId": "${TENANT_ID}_POSID_PAYIO_GESTOR",
27
+ "from": "PAYIO_GESTOR",
28
+ "items": [],
29
+ "orderAmount": ":AMOUNT",
30
+ "reference": ":REFERENCE",
31
+ "saleChannel": "PAYIOGESTOR",
32
+ "callbacks": ["URL_CALLBACK"]
33
+ }
@@ -1,19 +0,0 @@
1
- export class PayioDeviceChefEntity {
2
- // #region Properties (4)
3
- chefConfigId = null;
4
- chefConfigName = null;
5
- scheduleId = null;
6
- scheduleName = null;
7
- // #endregion Properties (4)
8
- // #region Constructors (1)
9
- constructor(data) {
10
- if (data) {
11
- for (let key in data) {
12
- if (data.hasOwnProperty(key) && key in this) {
13
- this[key] = data[key];
14
- }
15
- }
16
- }
17
- }
18
- }
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGV2aWNlLWNoZWYuZW50aXR5LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3BheWlvL2RldmljZS9lbnRpdGllcy9kZXZpY2UtY2hlZi5lbnRpdHkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxPQUFPLHFCQUFxQjtJQUNoQyx5QkFBeUI7SUFFbEIsWUFBWSxHQUFrQixJQUFJLENBQUM7SUFDbkMsY0FBYyxHQUFrQixJQUFJLENBQUM7SUFDckMsVUFBVSxHQUFrQixJQUFJLENBQUM7SUFDakMsWUFBWSxHQUFrQixJQUFJLENBQUM7SUFFMUMsNEJBQTRCO0lBRTVCLDJCQUEyQjtJQUUzQixZQUFZLElBQXFDO1FBQy9DLElBQUksSUFBSSxFQUFFO1lBQ1IsS0FBSyxJQUFJLEdBQUcsSUFBSSxJQUFJLEVBQUU7Z0JBQ3BCLElBQUksSUFBSSxDQUFDLGNBQWMsQ0FBQyxHQUFHLENBQUMsSUFBSSxHQUFHLElBQUksSUFBSSxFQUFFO29CQUMxQyxJQUFZLENBQUMsR0FBRyxDQUFDLEdBQUksSUFBWSxDQUFDLEdBQUcsQ0FBQyxDQUFDO2lCQUN6QzthQUNGO1NBQ0Y7SUFDSCxDQUFDO0NBR0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJUGF5aW9EZXZpY2VDaGVmIH0gZnJvbSAnLi4vaW50ZXJmYWNlcy9pLWRldmljZS1jaGVmJztcclxuXHJcbmV4cG9ydCBjbGFzcyBQYXlpb0RldmljZUNoZWZFbnRpdHkgaW1wbGVtZW50cyBJUGF5aW9EZXZpY2VDaGVmIHtcclxuICAvLyAjcmVnaW9uIFByb3BlcnRpZXMgKDQpXHJcblxyXG4gIHB1YmxpYyBjaGVmQ29uZmlnSWQ6IHN0cmluZyB8IG51bGwgPSBudWxsO1xyXG4gIHB1YmxpYyBjaGVmQ29uZmlnTmFtZTogc3RyaW5nIHwgbnVsbCA9IG51bGw7XHJcbiAgcHVibGljIHNjaGVkdWxlSWQ6IHN0cmluZyB8IG51bGwgPSBudWxsO1xyXG4gIHB1YmxpYyBzY2hlZHVsZU5hbWU6IHN0cmluZyB8IG51bGwgPSBudWxsO1xyXG5cclxuICAvLyAjZW5kcmVnaW9uIFByb3BlcnRpZXMgKDQpXHJcblxyXG4gIC8vICNyZWdpb24gQ29uc3RydWN0b3JzICgxKVxyXG5cclxuICBjb25zdHJ1Y3RvcihkYXRhPzogUGFydGlhbDxQYXlpb0RldmljZUNoZWZFbnRpdHk+KSB7XHJcbiAgICBpZiAoZGF0YSkge1xyXG4gICAgICBmb3IgKGxldCBrZXkgaW4gZGF0YSkge1xyXG4gICAgICAgIGlmIChkYXRhLmhhc093blByb3BlcnR5KGtleSkgJiYga2V5IGluIHRoaXMpIHtcclxuICAgICAgICAgICh0aGlzIGFzIGFueSlba2V5XSA9IChkYXRhIGFzIGFueSlba2V5XTtcclxuICAgICAgICB9XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gIC8vICNlbmRyZWdpb24gQ29uc3RydWN0b3JzICgxKVxyXG59XHJcbiJdfQ==
@@ -1,8 +0,0 @@
1
- import { IPayioDeviceChef } from '../interfaces/i-device-chef';
2
- export declare class PayioDeviceChefEntity implements IPayioDeviceChef {
3
- chefConfigId: string | null;
4
- chefConfigName: string | null;
5
- scheduleId: string | null;
6
- scheduleName: string | null;
7
- constructor(data?: Partial<PayioDeviceChefEntity>);
8
- }
@@ -1,23 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PayioDeviceChefEntity = void 0;
4
- var PayioDeviceChefEntity = /** @class */ (function () {
5
- // #endregion Properties (4)
6
- // #region Constructors (1)
7
- function PayioDeviceChefEntity(data) {
8
- // #region Properties (4)
9
- this.chefConfigId = null;
10
- this.chefConfigName = null;
11
- this.scheduleId = null;
12
- this.scheduleName = null;
13
- if (data) {
14
- for (var key in data) {
15
- if (data.hasOwnProperty(key) && key in this) {
16
- this[key] = data[key];
17
- }
18
- }
19
- }
20
- }
21
- return PayioDeviceChefEntity;
22
- }());
23
- exports.PayioDeviceChefEntity = PayioDeviceChefEntity;