cecon-interfaces 1.3.3 → 1.3.5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/mobyo/mobyo-customer-mobyo/entities/customer-mobyo.entity.mjs +8 -3
- package/dist/esm2022/mobyo/mobyo-customer-mobyo/interfaces/i-customer-mobyo.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +7 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/mobyo/mobyo-customer-mobyo/entities/customer-mobyo.entity.d.ts +5 -0
- package/dist/mobyo/mobyo-customer-mobyo/entities/customer-mobyo.entity.js +7 -2
- package/dist/mobyo/mobyo-customer-mobyo/interfaces/i-customer-mobyo.d.ts +5 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -2,9 +2,14 @@ import { CustomerEntity } from '../../../customer';
|
|
2
2
|
import { IAddress } from '../../../general';
|
3
3
|
import { ICustomerMobyo } from '../interfaces/i-customer-mobyo';
|
4
4
|
export declare class CustomerMobyoEntity extends CustomerEntity implements ICustomerMobyo {
|
5
|
+
active: boolean;
|
5
6
|
addresses: IAddress[];
|
7
|
+
companyId: string;
|
8
|
+
containerId: string;
|
6
9
|
engines: string[];
|
10
|
+
isTest: boolean;
|
7
11
|
ordersCountOnRestaurant: number;
|
12
|
+
uid: string;
|
8
13
|
version: string;
|
9
14
|
constructor(data?: Partial<CustomerMobyoEntity>);
|
10
15
|
}
|
@@ -19,14 +19,19 @@ exports.CustomerMobyoEntity = void 0;
|
|
19
19
|
var customer_1 = require("../../../customer");
|
20
20
|
var CustomerMobyoEntity = /** @class */ (function (_super) {
|
21
21
|
__extends(CustomerMobyoEntity, _super);
|
22
|
-
// #endregion Properties (
|
22
|
+
// #endregion Properties (9)
|
23
23
|
// #region Constructors (1)
|
24
24
|
function CustomerMobyoEntity(data) {
|
25
25
|
var _this = _super.call(this, data) || this;
|
26
|
-
// #region Properties (
|
26
|
+
// #region Properties (9)
|
27
|
+
_this.active = true;
|
27
28
|
_this.addresses = [];
|
29
|
+
_this.companyId = '';
|
30
|
+
_this.containerId = '';
|
28
31
|
_this.engines = [];
|
32
|
+
_this.isTest = false;
|
29
33
|
_this.ordersCountOnRestaurant = 0;
|
34
|
+
_this.uid = '';
|
30
35
|
_this.version = '1.0.2';
|
31
36
|
if (data) {
|
32
37
|
for (var key in data) {
|
@@ -1,8 +1,13 @@
|
|
1
1
|
import { ICustomer } from '../../../customer';
|
2
2
|
import { IAddress } from '../../../general';
|
3
3
|
export interface ICustomerMobyo extends ICustomer {
|
4
|
+
active: boolean;
|
4
5
|
addresses: IAddress[];
|
6
|
+
companyId: string;
|
7
|
+
containerId: string;
|
5
8
|
engines: string[];
|
9
|
+
isTest: boolean;
|
6
10
|
ordersCountOnRestaurant: number;
|
11
|
+
uid: string;
|
7
12
|
version: string;
|
8
13
|
}
|
package/dist/package.json
CHANGED