cecon-interfaces 1.3.0 → 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. package/dist/customer/entities/customer.entity.d.ts +2 -1
  2. package/dist/customer/entities/customer.entity.js +3 -2
  3. package/dist/esm2022/customer/entities/customer.entity.mjs +4 -3
  4. package/dist/esm2022/customer/index.mjs +1 -1
  5. package/dist/esm2022/general/entities/address.entity.mjs +10 -3
  6. package/dist/esm2022/general/interfaces/i-address.mjs +1 -1
  7. package/dist/esm2022/index.mjs +3 -4
  8. package/dist/esm2022/mobyo/index.mjs +3 -3
  9. package/dist/esm2022/mobyo/mobyo-customer-mobyo/entities/customer-mobyo.entity.mjs +20 -0
  10. package/dist/esm2022/mobyo/mobyo-customer-mobyo/entities/index.mjs +2 -0
  11. package/dist/esm2022/mobyo/mobyo-customer-mobyo/index.mjs +3 -0
  12. package/dist/esm2022/mobyo/mobyo-customer-mobyo/interfaces/i-customer-mobyo.mjs +2 -0
  13. package/dist/esm2022/mobyo/mobyo-customer-mobyo/interfaces/index.mjs +2 -0
  14. package/dist/esm2022/mobyo/mobyo-deliverer/entities/deliverer.entity.mjs +25 -0
  15. package/dist/esm2022/mobyo/mobyo-deliverer/entities/index.mjs +2 -0
  16. package/dist/esm2022/mobyo/mobyo-deliverer/index.mjs +3 -0
  17. package/dist/esm2022/mobyo/mobyo-deliverer/interfaces/i-deliverer-mobyo.mjs +2 -0
  18. package/dist/esm2022/mobyo/mobyo-deliverer/interfaces/index.mjs +2 -0
  19. package/dist/esm2022/sponsor/entities/sponsor.entity.mjs +3 -2
  20. package/dist/esm2022/sponsor/interfaces/i-sponsor.mjs +1 -1
  21. package/dist/fesm2022/cecon-interfaces.mjs +103 -50
  22. package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
  23. package/dist/general/entities/address.entity.d.ts +8 -1
  24. package/dist/general/entities/address.entity.js +9 -2
  25. package/dist/general/interfaces/i-address.d.ts +8 -0
  26. package/dist/index.d.ts +2 -2
  27. package/dist/index.js +2 -3
  28. package/dist/mobyo/index.d.ts +2 -2
  29. package/dist/mobyo/index.js +2 -2
  30. package/dist/mobyo/mobyo-customer-mobyo/entities/customer-mobyo.entity.d.ts +9 -0
  31. package/dist/mobyo/mobyo-customer-mobyo/entities/customer-mobyo.entity.js +41 -0
  32. package/dist/mobyo/mobyo-customer-mobyo/entities/index.d.ts +1 -0
  33. package/dist/mobyo/mobyo-customer-mobyo/entities/index.js +5 -0
  34. package/dist/mobyo/{customer → mobyo-customer-mobyo}/index.d.ts +1 -0
  35. package/dist/mobyo/{customer → mobyo-customer-mobyo}/index.js +1 -0
  36. package/dist/mobyo/mobyo-customer-mobyo/interfaces/i-customer-mobyo.d.ts +7 -0
  37. package/dist/mobyo/mobyo-customer-mobyo/interfaces/index.d.ts +1 -0
  38. package/dist/mobyo/mobyo-deliverer/entities/deliverer.entity.d.ts +15 -0
  39. package/dist/mobyo/mobyo-deliverer/entities/deliverer.entity.js +29 -0
  40. package/dist/mobyo/mobyo-deliverer/entities/index.d.ts +1 -0
  41. package/dist/mobyo/mobyo-deliverer/entities/index.js +5 -0
  42. package/dist/mobyo/{deliverer → mobyo-deliverer}/index.d.ts +1 -0
  43. package/dist/mobyo/{deliverer → mobyo-deliverer}/index.js +1 -0
  44. package/dist/mobyo/{deliverer → mobyo-deliverer}/interfaces/i-deliverer-mobyo.d.ts +2 -1
  45. package/dist/package.json +1 -1
  46. package/dist/sponsor/entities/sponsor.entity.d.ts +2 -1
  47. package/dist/sponsor/entities/sponsor.entity.js +2 -1
  48. package/dist/sponsor/interfaces/i-sponsor.d.ts +2 -1
  49. package/package.json +1 -1
  50. package/dist/esm2022/mobyo/customer/index.mjs +0 -2
  51. package/dist/esm2022/mobyo/customer/interfaces/i-customer.mjs +0 -2
  52. package/dist/esm2022/mobyo/customer/interfaces/index.mjs +0 -2
  53. package/dist/esm2022/mobyo/deliverer/index.mjs +0 -2
  54. package/dist/esm2022/mobyo/deliverer/interfaces/i-deliverer-mobyo.mjs +0 -2
  55. package/dist/esm2022/mobyo/deliverer/interfaces/index.mjs +0 -2
  56. package/dist/mobyo/customer/interfaces/i-customer.d.ts +0 -3
  57. package/dist/mobyo/customer/interfaces/index.d.ts +0 -1
  58. /package/dist/mobyo/{customer/interfaces/i-customer.js → mobyo-customer-mobyo/interfaces/i-customer-mobyo.js} +0 -0
  59. /package/dist/mobyo/{customer → mobyo-customer-mobyo}/interfaces/index.js +0 -0
  60. /package/dist/mobyo/{deliverer → mobyo-deliverer}/interfaces/i-deliverer-mobyo.js +0 -0
  61. /package/dist/mobyo/{deliverer → mobyo-deliverer}/interfaces/index.d.ts +0 -0
  62. /package/dist/mobyo/{deliverer → mobyo-deliverer}/interfaces/index.js +0 -0
@@ -1,11 +1,18 @@
1
- import { IAddress } from '../interfaces';
1
+ import { IAddress, IDeliveryArea } from '../interfaces';
2
2
  import { CoordsEntity } from './coords.entity';
3
3
  export declare class AddressEntity implements IAddress {
4
4
  city: string;
5
5
  complement: string | null;
6
6
  coords: CoordsEntity;
7
+ country: string;
8
+ deliveryArea: IDeliveryArea | null;
9
+ formattedAddress: string | null;
10
+ id: string | null;
11
+ isDefault: boolean;
12
+ name: string | null;
7
13
  neighborhood: string;
8
14
  postalCode: string;
15
+ reference: string | null;
9
16
  state: string;
10
17
  streetName: string;
11
18
  streetNumber: string;
@@ -3,15 +3,22 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AddressEntity = void 0;
4
4
  var coords_entity_1 = require("./coords.entity");
5
5
  var AddressEntity = /** @class */ (function () {
6
- // #endregion Properties (8)
6
+ // #endregion Properties (15)
7
7
  // #region Constructors (1)
8
8
  function AddressEntity(data) {
9
- // #region Properties (8)
9
+ // #region Properties (15)
10
10
  this.city = '';
11
11
  this.complement = '';
12
12
  this.coords = new coords_entity_1.CoordsEntity();
13
+ this.country = '';
14
+ this.deliveryArea = null;
15
+ this.formattedAddress = '';
16
+ this.id = '';
17
+ this.isDefault = false;
18
+ this.name = '';
13
19
  this.neighborhood = '';
14
20
  this.postalCode = '';
21
+ this.reference = '';
15
22
  this.state = '';
16
23
  this.streetName = '';
17
24
  this.streetNumber = '';
@@ -1,11 +1,19 @@
1
1
  import { ICoords } from './i-coords';
2
+ import { IDeliveryArea } from './i-delivery-area';
2
3
  export interface IAddress {
3
4
  city: string;
4
5
  complement: string | null;
5
6
  neighborhood: string;
7
+ country: string;
8
+ id: string | null;
9
+ formattedAddress: string | null;
6
10
  postalCode: string;
7
11
  state: string;
12
+ deliveryArea: IDeliveryArea | null;
8
13
  streetName: string;
14
+ name: string | null;
15
+ reference: string | null;
16
+ isDefault: boolean;
9
17
  streetNumber: string;
10
18
  coords: ICoords;
11
19
  }
package/dist/index.d.ts CHANGED
@@ -20,6 +20,7 @@ export * from './invite';
20
20
  export * from './invoice';
21
21
  export * from './iugu';
22
22
  export * from './lead';
23
+ export * from './logss';
23
24
  export * from './master';
24
25
  export * from './member';
25
26
  export * from './mobyo';
@@ -37,6 +38,7 @@ export * from './pubsub';
37
38
  export * from './purchases';
38
39
  export * from './requested-items';
39
40
  export * from './resume';
41
+ export * from './sponsor';
40
42
  export * from './subscription-base';
41
43
  export * from './subscription-company';
42
44
  export * from './subscription-customer';
@@ -48,5 +50,3 @@ export * from './viacep';
48
50
  export * from './voucher';
49
51
  export * from './wa-server';
50
52
  export * from './withdraw';
51
- export * from './logss';
52
- export * from './sponsor';
package/dist/index.js CHANGED
@@ -36,6 +36,7 @@ __exportStar(require("./invite"), exports);
36
36
  __exportStar(require("./invoice"), exports);
37
37
  __exportStar(require("./iugu"), exports);
38
38
  __exportStar(require("./lead"), exports);
39
+ __exportStar(require("./logss"), exports);
39
40
  __exportStar(require("./master"), exports);
40
41
  __exportStar(require("./member"), exports);
41
42
  __exportStar(require("./mobyo"), exports);
@@ -53,17 +54,15 @@ __exportStar(require("./pubsub"), exports);
53
54
  __exportStar(require("./purchases"), exports);
54
55
  __exportStar(require("./requested-items"), exports);
55
56
  __exportStar(require("./resume"), exports);
57
+ __exportStar(require("./sponsor"), exports);
56
58
  __exportStar(require("./subscription-base"), exports);
57
59
  __exportStar(require("./subscription-company"), exports);
58
60
  __exportStar(require("./subscription-customer"), exports);
59
61
  __exportStar(require("./token"), exports);
60
62
  __exportStar(require("./token-jwt"), exports);
61
- // export * from './v1-entities'; // importacoes das tabelas do nati V1
62
63
  __exportStar(require("./transaction"), exports);
63
64
  __exportStar(require("./verifier-token"), exports);
64
65
  __exportStar(require("./viacep"), exports);
65
66
  __exportStar(require("./voucher"), exports);
66
67
  __exportStar(require("./wa-server"), exports);
67
68
  __exportStar(require("./withdraw"), exports);
68
- __exportStar(require("./logss"), exports);
69
- __exportStar(require("./sponsor"), exports);
@@ -1,2 +1,2 @@
1
- export * from './customer';
2
- export * from './deliverer';
1
+ export * from './mobyo-customer-mobyo';
2
+ export * from './mobyo-deliverer';
@@ -14,5 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./customer"), exports);
18
- __exportStar(require("./deliverer"), exports);
17
+ __exportStar(require("./mobyo-customer-mobyo"), exports);
18
+ __exportStar(require("./mobyo-deliverer"), exports);
@@ -0,0 +1,9 @@
1
+ import { CustomerEntity } from '../../../customer';
2
+ import { IAddress } from '../../../general';
3
+ import { ICustomerMobyo } from '../interfaces/i-customer-mobyo';
4
+ export declare class CustomerMobyoEntity extends CustomerEntity implements ICustomerMobyo {
5
+ addresses: IAddress[];
6
+ engines: string[];
7
+ ordersCountOnRestaurant: number;
8
+ constructor(data?: Partial<CustomerMobyoEntity>);
9
+ }
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.CustomerMobyoEntity = void 0;
19
+ var customer_1 = require("../../../customer");
20
+ var CustomerMobyoEntity = /** @class */ (function (_super) {
21
+ __extends(CustomerMobyoEntity, _super);
22
+ // #endregion Properties (3)
23
+ // #region Constructors (1)
24
+ function CustomerMobyoEntity(data) {
25
+ var _this = _super.call(this, data) || this;
26
+ // #region Properties (3)
27
+ _this.addresses = [];
28
+ _this.engines = [];
29
+ _this.ordersCountOnRestaurant = 0;
30
+ if (data) {
31
+ for (var key in data) {
32
+ if (data.hasOwnProperty(key) && key in _this) {
33
+ _this[key] = data[key];
34
+ }
35
+ }
36
+ }
37
+ return _this;
38
+ }
39
+ return CustomerMobyoEntity;
40
+ }(customer_1.CustomerEntity));
41
+ exports.CustomerMobyoEntity = CustomerMobyoEntity;
@@ -0,0 +1 @@
1
+ export { CustomerMobyoEntity } from './customer-mobyo.entity';
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CustomerMobyoEntity = void 0;
4
+ var customer_mobyo_entity_1 = require("./customer-mobyo.entity");
5
+ Object.defineProperty(exports, "CustomerMobyoEntity", { enumerable: true, get: function () { return customer_mobyo_entity_1.CustomerMobyoEntity; } });
@@ -1 +1,2 @@
1
+ export * from './entities';
1
2
  export * from './interfaces';
@@ -14,4 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./entities"), exports);
17
18
  __exportStar(require("./interfaces"), exports);
@@ -0,0 +1,7 @@
1
+ import { ICustomer } from '../../../customer';
2
+ import { IAddress } from '../../../general';
3
+ export interface ICustomerMobyo extends ICustomer {
4
+ addresses: IAddress[];
5
+ engines: string[];
6
+ ordersCountOnRestaurant: number;
7
+ }
@@ -0,0 +1 @@
1
+ export { ICustomerMobyo } from './i-customer-mobyo';
@@ -0,0 +1,15 @@
1
+ import { IDelivererMobyo } from '..';
2
+ import { IOrder } from '../../../order';
3
+ export declare class DelivererMobyoEntity implements IDelivererMobyo {
4
+ active: boolean;
5
+ email?: string | undefined;
6
+ id: string;
7
+ internationalCode: string;
8
+ name: string;
9
+ nickName: string;
10
+ ordersCountDeliveredOnRestaurant: IOrder[];
11
+ phoneNumber: string;
12
+ pictureUrl?: string | undefined;
13
+ tags: string[];
14
+ constructor(data?: Partial<DelivererMobyoEntity>);
15
+ }
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DelivererMobyoEntity = void 0;
4
+ var DelivererMobyoEntity = /** @class */ (function () {
5
+ // #endregion Properties (10)
6
+ // #region Constructors (1)
7
+ function DelivererMobyoEntity(data) {
8
+ // #region Properties (10)
9
+ this.active = true;
10
+ this.email = '';
11
+ this.id = '';
12
+ this.internationalCode = '+55';
13
+ this.name = '';
14
+ this.nickName = '';
15
+ this.ordersCountDeliveredOnRestaurant = [];
16
+ this.phoneNumber = '';
17
+ this.pictureUrl = '';
18
+ this.tags = [];
19
+ if (data) {
20
+ for (var key in data) {
21
+ if (data.hasOwnProperty(key) && key in this) {
22
+ this[key] = data[key];
23
+ }
24
+ }
25
+ }
26
+ }
27
+ return DelivererMobyoEntity;
28
+ }());
29
+ exports.DelivererMobyoEntity = DelivererMobyoEntity;
@@ -0,0 +1 @@
1
+ export { DelivererMobyoEntity } from './deliverer.entity';
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DelivererMobyoEntity = void 0;
4
+ var deliverer_entity_1 = require("./deliverer.entity");
5
+ Object.defineProperty(exports, "DelivererMobyoEntity", { enumerable: true, get: function () { return deliverer_entity_1.DelivererMobyoEntity; } });
@@ -1 +1,2 @@
1
+ export * from './entities';
1
2
  export * from './interfaces';
@@ -14,4 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./entities"), exports);
17
18
  __exportStar(require("./interfaces"), exports);
@@ -1,7 +1,8 @@
1
1
  import { IOrder } from '../../../order';
2
2
  export interface IDelivererMobyo {
3
3
  id: string;
4
- cellPhone: string;
4
+ phoneNumber: string;
5
+ internationalCode: string;
5
6
  email?: string;
6
7
  name: string;
7
8
  nickName: string;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.3.00",
3
+ "version": "1.3.02",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -8,7 +8,8 @@ export declare class SponsorEntity implements ISponsor {
8
8
  createdAt: Date;
9
9
  fees: ISponsorFee[];
10
10
  docType: EDocType;
11
- desenfilaRefId: string | null;
11
+ desenfilaMerchantId: string | null;
12
+ desenfilaContainerId: string | null;
12
13
  natiRefId: string | null;
13
14
  mobyoRefId: string | null;
14
15
  from: EDesenfilaFrom;
@@ -10,7 +10,8 @@ var SponsorEntity = /** @class */ (function () {
10
10
  this.createdAt = new Date();
11
11
  this.fees = [];
12
12
  this.docType = general_1.EDocType.CNPJ;
13
- this.desenfilaRefId = null;
13
+ this.desenfilaMerchantId = null;
14
+ this.desenfilaContainerId = null;
14
15
  this.natiRefId = null;
15
16
  this.mobyoRefId = null;
16
17
  this.from = general_1.EDesenfilaFrom.DEFAULT;
@@ -8,7 +8,8 @@ export interface ISponsor {
8
8
  doc: string;
9
9
  docType: EDocType;
10
10
  from: EDesenfilaFrom;
11
- desenfilaRefId: string | null;
11
+ desenfilaContainerId: string | null;
12
+ desenfilaMerchantId: string | null;
12
13
  internationalCode: string;
13
14
  phoneNumer: string;
14
15
  email: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.3.00",
3
+ "version": "1.3.02",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,2 +0,0 @@
1
- export * from './interfaces';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbW9ieW8vY3VzdG9tZXIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2ludGVyZmFjZXMnO1xuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1jdXN0b21lci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9tb2J5by9jdXN0b21lci9pbnRlcmZhY2VzL2ktY3VzdG9tZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgSUN1c3RvbWVyTW9ieW8ge1xyXG4gIGFjdGl2ZTogYm9vbGVhbjtcclxufVxyXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvbW9ieW8vY3VzdG9tZXIvaW50ZXJmYWNlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHsgSUN1c3RvbWVyTW9ieW8gfSBmcm9tICcuL2ktY3VzdG9tZXInO1xuIl19
@@ -1,2 +0,0 @@
1
- export * from './interfaces';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbW9ieW8vZGVsaXZlcmVyL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9pbnRlcmZhY2VzJztcclxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1kZWxpdmVyZXItbW9ieW8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvbW9ieW8vZGVsaXZlcmVyL2ludGVyZmFjZXMvaS1kZWxpdmVyZXItbW9ieW8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IElPcmRlciB9IGZyb20gJy4uLy4uLy4uL29yZGVyJztcclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgSURlbGl2ZXJlck1vYnlvIHtcclxuICBpZDogc3RyaW5nO1xyXG4gIGNlbGxQaG9uZTogc3RyaW5nO1xyXG4gIGVtYWlsPzogc3RyaW5nO1xyXG4gIG5hbWU6IHN0cmluZztcclxuICBuaWNrTmFtZTogc3RyaW5nO1xyXG4gIHRhZ3M6IHN0cmluZ1tdO1xyXG4gIG9yZGVyc0NvdW50RGVsaXZlcmVkT25SZXN0YXVyYW50OiBJT3JkZXJbXTtcclxuICBwaWN0dXJlVXJsPzogc3RyaW5nO1xyXG59XHJcbiJdfQ==
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvbW9ieW8vZGVsaXZlcmVyL2ludGVyZmFjZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7IElEZWxpdmVyZXJNb2J5byB9IGZyb20gJy4vaS1kZWxpdmVyZXItbW9ieW8nO1xyXG4iXX0=
@@ -1,3 +0,0 @@
1
- export interface ICustomerMobyo {
2
- active: boolean;
3
- }
@@ -1 +0,0 @@
1
- export { ICustomerMobyo } from './i-customer';