cecon-interfaces 1.9.2 → 1.9.4
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/index.mjs +2 -1
- package/dist/esm2022/payio/preparation-place/entities/index.mjs +2 -0
- package/dist/esm2022/payio/preparation-place/entities/preparation-place.entity.mjs +20 -0
- package/dist/esm2022/payio/preparation-place/enums/index.mjs +2 -0
- package/dist/esm2022/payio/preparation-place/enums/mode.enum.mjs +6 -0
- package/dist/esm2022/payio/preparation-place/index.mjs +4 -0
- package/dist/esm2022/payio/preparation-place/interfaces/i-preparation-place.mjs +2 -0
- package/dist/esm2022/payio/preparation-place/interfaces/index.mjs +2 -0
- package/dist/fesm2022/cecon-interfaces.mjs +26 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/index.d.ts +1 -0
- package/dist/payio/index.js +1 -0
- package/dist/payio/preparation-place/entities/index.d.ts +1 -0
- package/dist/payio/preparation-place/entities/index.js +5 -0
- package/dist/payio/preparation-place/entities/preparation-place.entity.d.ts +12 -0
- package/dist/payio/preparation-place/entities/preparation-place.entity.js +24 -0
- package/dist/payio/preparation-place/enums/index.d.ts +1 -0
- package/dist/payio/preparation-place/enums/index.js +5 -0
- package/dist/payio/preparation-place/enums/mode.enum.d.ts +4 -0
- package/dist/payio/preparation-place/enums/mode.enum.js +8 -0
- package/dist/payio/preparation-place/index.d.ts +3 -0
- package/dist/payio/preparation-place/index.js +19 -0
- package/dist/payio/preparation-place/interfaces/i-preparation-place.d.ts +10 -0
- package/dist/payio/preparation-place/interfaces/i-preparation-place.js +2 -0
- package/dist/payio/preparation-place/interfaces/index.d.ts +1 -0
- package/dist/payio/preparation-place/interfaces/index.js +2 -0
- package/package.json +1 -1
package/dist/payio/index.d.ts
CHANGED
package/dist/payio/index.js
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
export { PayioPreparationPlaceEntity } from './preparation-place.entity';
|
@@ -0,0 +1,5 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.PayioPreparationPlaceEntity = void 0;
|
4
|
+
var preparation_place_entity_1 = require("./preparation-place.entity");
|
5
|
+
Object.defineProperty(exports, "PayioPreparationPlaceEntity", { enumerable: true, get: function () { return preparation_place_entity_1.PayioPreparationPlaceEntity; } });
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { EPayioPreparationPlaceMode } from '../enums/mode.enum';
|
2
|
+
import { IPayioPreparationPlace } from '../interfaces';
|
3
|
+
export declare class PayioPreparationPlaceEntity implements IPayioPreparationPlace {
|
4
|
+
createdAt: Date;
|
5
|
+
id: string;
|
6
|
+
mode: EPayioPreparationPlaceMode;
|
7
|
+
name: string;
|
8
|
+
notes: string;
|
9
|
+
updatedAt: Date;
|
10
|
+
url: string;
|
11
|
+
constructor(data?: Partial<PayioPreparationPlaceEntity>);
|
12
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.PayioPreparationPlaceEntity = void 0;
|
4
|
+
var mode_enum_1 = require("../enums/mode.enum");
|
5
|
+
var PayioPreparationPlaceEntity = /** @class */ (function () {
|
6
|
+
function PayioPreparationPlaceEntity(data) {
|
7
|
+
this.createdAt = new Date();
|
8
|
+
this.id = '';
|
9
|
+
this.mode = mode_enum_1.EPayioPreparationPlaceMode.IP;
|
10
|
+
this.name = '';
|
11
|
+
this.notes = '';
|
12
|
+
this.updatedAt = new Date();
|
13
|
+
this.url = '';
|
14
|
+
if (data) {
|
15
|
+
for (var key in data) {
|
16
|
+
if (data.hasOwnProperty(key) && key in this) {
|
17
|
+
this[key] = data[key];
|
18
|
+
}
|
19
|
+
}
|
20
|
+
}
|
21
|
+
}
|
22
|
+
return PayioPreparationPlaceEntity;
|
23
|
+
}());
|
24
|
+
exports.PayioPreparationPlaceEntity = PayioPreparationPlaceEntity;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { EPayioPreparationPlaceMode } from './mode.enum';
|
@@ -0,0 +1,5 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.EPayioPreparationPlaceMode = void 0;
|
4
|
+
var mode_enum_1 = require("./mode.enum");
|
5
|
+
Object.defineProperty(exports, "EPayioPreparationPlaceMode", { enumerable: true, get: function () { return mode_enum_1.EPayioPreparationPlaceMode; } });
|
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.EPayioPreparationPlaceMode = void 0;
|
4
|
+
var EPayioPreparationPlaceMode;
|
5
|
+
(function (EPayioPreparationPlaceMode) {
|
6
|
+
EPayioPreparationPlaceMode["IP"] = "IP";
|
7
|
+
EPayioPreparationPlaceMode["SHARED_PORT"] = "SHARED_PORT";
|
8
|
+
})(EPayioPreparationPlaceMode || (exports.EPayioPreparationPlaceMode = EPayioPreparationPlaceMode = {}));
|
@@ -0,0 +1,19 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
__exportStar(require("./entities"), exports);
|
18
|
+
__exportStar(require("./enums"), exports);
|
19
|
+
__exportStar(require("./interfaces"), exports);
|
@@ -0,0 +1 @@
|
|
1
|
+
export { IPayioPreparationPlace } from './i-preparation-place';
|