cecon-interfaces 1.8.98 → 1.9.2
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/activation-batch/entities/activation-batch.entity.mjs +2 -2
- package/dist/esm2022/payio/activation-batch/enums/activation-batch-status.enum.mjs +3 -3
- package/dist/esm2022/payio/activation-batch/interfaces/i-activation-batch.mjs +1 -1
- package/dist/esm2022/payio/catalogs/entities/catalog-item.entity.mjs +3 -1
- package/dist/esm2022/payio/catalogs/interfaces/i-catalog-item.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +84 -83
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/activation-batch/entities/activation-batch.entity.js +1 -1
- package/dist/payio/activation-batch/enums/activation-batch-status.enum.d.ts +2 -2
- package/dist/payio/activation-batch/enums/activation-batch-status.enum.js +2 -2
- package/dist/payio/activation-batch/interfaces/i-activation-batch.d.ts +1 -1
- package/dist/payio/catalogs/entities/catalog-item.entity.d.ts +2 -0
- package/dist/payio/catalogs/entities/catalog-item.entity.js +2 -0
- package/dist/payio/catalogs/interfaces/i-catalog-item.d.ts +2 -0
- package/package.json +1 -1
@@ -20,7 +20,7 @@ var PayioActivationBatchEntity = /** @class */ (function () {
|
|
20
20
|
this.negotiatedPrice = 0;
|
21
21
|
this.sandbox = false;
|
22
22
|
this.sequentialNumber = 0;
|
23
|
-
this.status = activation_batch_status_enum_1.EPayioActivationBatchStatus.
|
23
|
+
this.status = activation_batch_status_enum_1.EPayioActivationBatchStatus.PROCESSING;
|
24
24
|
this.tags = [];
|
25
25
|
this.totalLicenses = 0;
|
26
26
|
this.unitPrice = 0;
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.EPayioActivationBatchStatus = void 0;
|
4
4
|
var EPayioActivationBatchStatus;
|
5
5
|
(function (EPayioActivationBatchStatus) {
|
6
|
-
EPayioActivationBatchStatus["
|
6
|
+
EPayioActivationBatchStatus["PROCESSING"] = "PROCESSING";
|
7
7
|
EPayioActivationBatchStatus["COMPLETED"] = "COMPLETED";
|
8
|
-
EPayioActivationBatchStatus["
|
8
|
+
EPayioActivationBatchStatus["ERROR"] = "ERROR";
|
9
9
|
EPayioActivationBatchStatus["CANCELLED"] = "CANCELLED";
|
10
10
|
})(EPayioActivationBatchStatus || (exports.EPayioActivationBatchStatus = EPayioActivationBatchStatus = {}));
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { EPayioActivationBatchStatus } from
|
1
|
+
import { EPayioActivationBatchStatus } from '../enums/activation-batch-status.enum';
|
2
2
|
export interface IPayioActivationBatch {
|
3
3
|
/** Quantidade de licenças ativadas */
|
4
4
|
activatedLicenses: number;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { EPayioScheduleSkill } from '../../schedules';
|
1
2
|
import { EPayioCatalogStatus, EPayioEngines, EPayioImportStatus, EPayioMeasure } from '../enums';
|
2
3
|
import { IPayioCatalogItem } from '../interfaces';
|
3
4
|
import { PayioCatalogOptionGroupEntity } from './catalog-option-group.entity';
|
@@ -29,6 +30,7 @@ export declare class PayioCatalogItemEntity implements IPayioCatalogItem {
|
|
29
30
|
sequence: number;
|
30
31
|
serving: string;
|
31
32
|
shifts: PayioCatalogShiftEntity[];
|
33
|
+
skill: EPayioScheduleSkill;
|
32
34
|
status: EPayioCatalogStatus;
|
33
35
|
tags: string[];
|
34
36
|
updatedAt: Date;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.PayioCatalogItemEntity = void 0;
|
4
|
+
var schedules_1 = require("../../schedules");
|
4
5
|
var enums_1 = require("../enums");
|
5
6
|
var PayioCatalogItemEntity = /** @class */ (function () {
|
6
7
|
function PayioCatalogItemEntity(data) {
|
@@ -30,6 +31,7 @@ var PayioCatalogItemEntity = /** @class */ (function () {
|
|
30
31
|
this.sequence = 0;
|
31
32
|
this.serving = '';
|
32
33
|
this.shifts = [];
|
34
|
+
this.skill = schedules_1.EPayioScheduleSkill.NORMAL;
|
33
35
|
this.status = enums_1.EPayioCatalogStatus.AVAILABLE;
|
34
36
|
this.tags = [];
|
35
37
|
this.updatedAt = new Date();
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { EPayioScheduleSkill } from '../../schedules';
|
1
2
|
import { EPayioCatalogStatus, EPayioEngines, EPayioImportStatus, EPayioMeasure } from '../enums';
|
2
3
|
import { IPayioCatalogOptionGroup } from './i-catalog-option-group';
|
3
4
|
import { IPayioCatalogShift } from './i-catalog-shift';
|
@@ -27,6 +28,7 @@ export interface IPayioCatalogItem {
|
|
27
28
|
productId: string;
|
28
29
|
sequence: number;
|
29
30
|
serving: string;
|
31
|
+
skill: EPayioScheduleSkill;
|
30
32
|
shifts: IPayioCatalogShift[];
|
31
33
|
status: EPayioCatalogStatus;
|
32
34
|
tags: string[];
|