cecon-interfaces 1.6.90 → 1.6.91
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/payio/schedules/entities/schedule-product.entity.mjs +5 -3
- package/dist/esm2022/payio/schedules/interfaces/i-schedule-product.mjs +1 -1
- package/dist/esm2022/payio/schedules/interfaces/i-schedule-slots.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +4 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/schedules/entities/schedule-product.entity.d.ts +2 -0
- package/dist/payio/schedules/entities/schedule-product.entity.js +4 -2
- package/dist/payio/schedules/interfaces/i-schedule-product.d.ts +2 -0
- package/dist/payio/schedules/interfaces/i-schedule-slots.d.ts +2 -1
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -4,6 +4,8 @@ export declare class PayioScheduleProductEntity implements IPayioScheduleProduct
|
|
4
4
|
description: string;
|
5
5
|
exceededWeightMessageText: string | null;
|
6
6
|
exceededWeightPrice: number;
|
7
|
+
helpYourSelfId: string;
|
8
|
+
helpYourSelfPrice: number;
|
7
9
|
id: string;
|
8
10
|
price: number;
|
9
11
|
unit: string;
|
@@ -2,14 +2,16 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.PayioScheduleProductEntity = void 0;
|
4
4
|
var PayioScheduleProductEntity = /** @class */ (function () {
|
5
|
-
// #endregion Properties (
|
5
|
+
// #endregion Properties (11)
|
6
6
|
// #region Constructors (1)
|
7
7
|
function PayioScheduleProductEntity(data) {
|
8
|
-
// #region Properties (
|
8
|
+
// #region Properties (11)
|
9
9
|
this.code = '';
|
10
10
|
this.description = '';
|
11
11
|
this.exceededWeightMessageText = '';
|
12
12
|
this.exceededWeightPrice = 0;
|
13
|
+
this.helpYourSelfId = '';
|
14
|
+
this.helpYourSelfPrice = 0;
|
13
15
|
this.id = '';
|
14
16
|
this.price = 0;
|
15
17
|
this.unit = 'KG';
|