cecon-interfaces 1.0.84 → 1.0.88

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. package/dist/esm2022/general/entities/custom-variable.entity.mjs +17 -0
  2. package/dist/esm2022/general/entities/index.mjs +2 -1
  3. package/dist/esm2022/general/interfaces/i-custom-variable.mjs +3 -0
  4. package/dist/esm2022/general/interfaces/index.mjs +1 -1
  5. package/dist/esm2022/invoice/entities/invoice-item.entity.mjs +3 -3
  6. package/dist/esm2022/invoice/entities/invoice.entity.mjs +12 -7
  7. package/dist/esm2022/invoice/interfaces/i-invoice-item.mjs +1 -1
  8. package/dist/esm2022/invoice/interfaces/i-invoice.mjs +1 -1
  9. package/dist/esm2022/plan/interfaces/i-plan.mjs +1 -1
  10. package/dist/esm2022/subscription/entities/index.mjs +3 -2
  11. package/dist/esm2022/subscription/entities/subscription-item.entity.mjs +20 -0
  12. package/dist/esm2022/subscription/entities/subscription-log.entity.mjs +19 -0
  13. package/dist/esm2022/subscription/entities/subscription.entity.mjs +21 -15
  14. package/dist/esm2022/subscription/interfaces/i-subscription-item.mjs +2 -0
  15. package/dist/esm2022/subscription/interfaces/i-subscription-log.mjs +2 -0
  16. package/dist/esm2022/subscription/interfaces/i-subscription.mjs +1 -1
  17. package/dist/esm2022/subscription/interfaces/index.mjs +1 -1
  18. package/dist/fesm2022/cecon-interfaces.mjs +75 -29
  19. package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
  20. package/dist/general/entities/custom-variable.entity.d.ts +5 -0
  21. package/dist/general/entities/custom-variable.entity.js +21 -0
  22. package/dist/general/entities/index.d.ts +1 -0
  23. package/dist/general/entities/index.js +3 -1
  24. package/dist/general/interfaces/i-custom-variable.d.ts +4 -0
  25. package/dist/general/interfaces/i-custom-variable.js +3 -0
  26. package/dist/general/interfaces/index.d.ts +1 -0
  27. package/dist/invoice/entities/invoice-item.entity.d.ts +2 -2
  28. package/dist/invoice/entities/invoice-item.entity.js +2 -2
  29. package/dist/invoice/entities/invoice.entity.d.ts +8 -3
  30. package/dist/invoice/entities/invoice.entity.js +11 -6
  31. package/dist/invoice/interfaces/i-invoice-item.d.ts +2 -2
  32. package/dist/invoice/interfaces/i-invoice.d.ts +11 -6
  33. package/dist/package.json +1 -1
  34. package/dist/plan/interfaces/i-plan.d.ts +5 -5
  35. package/dist/subscription/entities/index.d.ts +2 -1
  36. package/dist/subscription/entities/index.js +5 -3
  37. package/dist/subscription/entities/subscription-item.entity.d.ts +9 -0
  38. package/dist/subscription/entities/subscription-item.entity.js +24 -0
  39. package/dist/subscription/entities/subscription-log.entity.d.ts +8 -0
  40. package/dist/subscription/entities/subscription-log.entity.js +23 -0
  41. package/dist/subscription/entities/subscription.entity.d.ts +17 -9
  42. package/dist/subscription/entities/subscription.entity.js +18 -12
  43. package/dist/subscription/interfaces/i-subscription-item.d.ts +7 -0
  44. package/dist/subscription/interfaces/i-subscription-log.d.ts +6 -0
  45. package/dist/subscription/interfaces/i-subscription-log.js +2 -0
  46. package/dist/subscription/interfaces/i-subscription.d.ts +14 -6
  47. package/dist/subscription/interfaces/index.d.ts +2 -1
  48. package/package.json +1 -1
  49. package/dist/esm2022/subscription/entities/subscription-invoice-history.entity.mjs +0 -22
  50. package/dist/esm2022/subscription/interfaces/i-subscription-invoice-history.mjs +0 -2
  51. package/dist/subscription/entities/subscription-invoice-history.entity.d.ts +0 -11
  52. package/dist/subscription/entities/subscription-invoice-history.entity.js +0 -26
  53. package/dist/subscription/interfaces/i-subscription-invoice-history.d.ts +0 -9
  54. /package/dist/subscription/interfaces/{i-subscription-invoice-history.js → i-subscription-item.js} +0 -0
@@ -0,0 +1,5 @@
1
+ export declare class CustomVariableEntity {
2
+ name: string;
3
+ value: string;
4
+ constructor(data?: Partial<CustomVariableEntity>);
5
+ }
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CustomVariableEntity = void 0;
4
+ var CustomVariableEntity = /** @class */ (function () {
5
+ // #endregion Properties (2)
6
+ // #region Constructors (1)
7
+ function CustomVariableEntity(data) {
8
+ // #region Properties (2)
9
+ this.name = "";
10
+ this.value = "";
11
+ if (data) {
12
+ for (var key in data) {
13
+ if (data.hasOwnProperty(key) && key in this) {
14
+ this[key] = data[key];
15
+ }
16
+ }
17
+ }
18
+ }
19
+ return CustomVariableEntity;
20
+ }());
21
+ exports.CustomVariableEntity = CustomVariableEntity;
@@ -2,6 +2,7 @@ export { AddressEntity } from './address.entity';
2
2
  export { BaseEntity } from './base.entity';
3
3
  export { CarouselImageEntity } from './carousel-image.entity';
4
4
  export { CoordsEntity } from './coords.entity';
5
+ export { CustomVariableEntity } from './custom-variable.entity';
5
6
  export { DeliveryAreaEntity } from './delivery-area.entity';
6
7
  export { DeliveryAreaFixedEntity } from './dellivery-area-fixed.entity';
7
8
  export { MessagerChannelEntity } from './messager-channel.entity';
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RatingEntity = exports.PaymentTokenEntity = exports.PaymentTokenDataEntity = exports.PaymentProviderEntity = exports.PaymentProviderAgentEntity = exports.PaymentMethodEntity = exports.OriginEntity = exports.MobyoApiConfigEntity = exports.MessagerChannelEntity = exports.DeliveryAreaFixedEntity = exports.DeliveryAreaEntity = exports.CoordsEntity = exports.CarouselImageEntity = exports.BaseEntity = exports.AddressEntity = void 0;
3
+ exports.RatingEntity = exports.PaymentTokenEntity = exports.PaymentTokenDataEntity = exports.PaymentProviderEntity = exports.PaymentProviderAgentEntity = exports.PaymentMethodEntity = exports.OriginEntity = exports.MobyoApiConfigEntity = exports.MessagerChannelEntity = exports.DeliveryAreaFixedEntity = exports.DeliveryAreaEntity = exports.CustomVariableEntity = exports.CoordsEntity = exports.CarouselImageEntity = exports.BaseEntity = exports.AddressEntity = void 0;
4
4
  var address_entity_1 = require("./address.entity");
5
5
  Object.defineProperty(exports, "AddressEntity", { enumerable: true, get: function () { return address_entity_1.AddressEntity; } });
6
6
  var base_entity_1 = require("./base.entity");
@@ -9,6 +9,8 @@ var carousel_image_entity_1 = require("./carousel-image.entity");
9
9
  Object.defineProperty(exports, "CarouselImageEntity", { enumerable: true, get: function () { return carousel_image_entity_1.CarouselImageEntity; } });
10
10
  var coords_entity_1 = require("./coords.entity");
11
11
  Object.defineProperty(exports, "CoordsEntity", { enumerable: true, get: function () { return coords_entity_1.CoordsEntity; } });
12
+ var custom_variable_entity_1 = require("./custom-variable.entity");
13
+ Object.defineProperty(exports, "CustomVariableEntity", { enumerable: true, get: function () { return custom_variable_entity_1.CustomVariableEntity; } });
12
14
  var delivery_area_entity_1 = require("./delivery-area.entity");
13
15
  Object.defineProperty(exports, "DeliveryAreaEntity", { enumerable: true, get: function () { return delivery_area_entity_1.DeliveryAreaEntity; } });
14
16
  var dellivery_area_fixed_entity_1 = require("./dellivery-area-fixed.entity");
@@ -0,0 +1,4 @@
1
+ export interface ICustomVariable {
2
+ name: string;
3
+ value: string;
4
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ // src/models/base.entity.ts
3
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -2,6 +2,7 @@ export { IAddress } from './i-address';
2
2
  export { IBase } from './i-base';
3
3
  export { ICarouselImage } from './i-carousel-image';
4
4
  export { ICoords } from './i-coords';
5
+ export { ICustomVariable } from './i-custom-variable';
5
6
  export { IDeliveryArea } from './i-delivery-area';
6
7
  export { IDeliveryAreaFixed } from './i-delivery-area-fixed';
7
8
  export { IMessagerChannel } from './i-messager-channel';
@@ -1,11 +1,11 @@
1
1
  import { IInvoiceItem } from '../interfaces';
2
2
  export declare class InvoiceItemEntity implements IInvoiceItem {
3
+ addition: number;
3
4
  description: string;
4
- discounts: number;
5
+ discount: number;
5
6
  id: string;
6
7
  quantity: number;
7
8
  sku: string;
8
- taxes: number;
9
9
  totalPrice: number;
10
10
  unitPrice: number;
11
11
  constructor(data?: Partial<InvoiceItemEntity>);
@@ -6,12 +6,12 @@ var InvoiceItemEntity = /** @class */ (function () {
6
6
  // #region Constructors (1)
7
7
  function InvoiceItemEntity(data) {
8
8
  // #region Properties (8)
9
+ this.addition = 0;
9
10
  this.description = '';
10
- this.discounts = 0;
11
+ this.discount = 0;
11
12
  this.id = '';
12
13
  this.quantity = 1;
13
14
  this.sku = '';
14
- this.taxes = 0;
15
15
  this.totalPrice = 0;
16
16
  this.unitPrice = 0;
17
17
  if (data) {
@@ -3,18 +3,23 @@ import { IInvoice } from '../interfaces';
3
3
  import { InvoiceItemEntity } from './invoice-item.entity';
4
4
  import { InvoicePaymentMethodEntity } from './invoice-payment-method.entity';
5
5
  export declare class InvoiceEntity implements IInvoice {
6
+ addition: number;
6
7
  companyId: string;
7
8
  containerId: string;
8
9
  createdAt: Date;
9
- discounts: number;
10
+ discount: number;
10
11
  dueDateAt: Date;
12
+ ensureDueOnWorkday: boolean;
13
+ expiresIn: number;
11
14
  id: string;
12
- invoiceNumber: string;
13
15
  items: InvoiceItemEntity[];
14
16
  notes: string;
15
- paidDateAt: Date;
17
+ paidAt: Date;
16
18
  paymentMethod: InvoicePaymentMethodEntity[];
19
+ providerInvoiceNumber: string;
20
+ providerInvoiceUrl: string;
17
21
  status: InvoiceStatusEnum;
22
+ subscriptionId: string;
18
23
  subtotal: number;
19
24
  taxes: number;
20
25
  total: number;
@@ -3,22 +3,27 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.InvoiceEntity = void 0;
4
4
  var enums_1 = require("../enums");
5
5
  var InvoiceEntity = /** @class */ (function () {
6
- // #endregion Properties (16)
6
+ // #endregion Properties (21)
7
7
  // #region Constructors (1)
8
8
  function InvoiceEntity(data) {
9
- // #region Properties (16)
9
+ // #region Properties (21)
10
+ this.addition = 0;
10
11
  this.companyId = '';
11
12
  this.containerId = '';
12
13
  this.createdAt = new Date();
13
- this.discounts = 0;
14
- this.dueDateAt = new Date();
14
+ this.discount = 0;
15
+ this.dueDateAt = new Date(Date.now() + 3 * 24 * 60 * 60 * 1000);
16
+ this.ensureDueOnWorkday = true;
17
+ this.expiresIn = 5;
15
18
  this.id = '';
16
- this.invoiceNumber = '';
17
19
  this.items = [];
18
20
  this.notes = '';
19
- this.paidDateAt = new Date();
21
+ this.paidAt = new Date();
20
22
  this.paymentMethod = [];
23
+ this.providerInvoiceNumber = '';
24
+ this.providerInvoiceUrl = '';
21
25
  this.status = enums_1.InvoiceStatusEnum.PENDING;
26
+ this.subscriptionId = '';
22
27
  this.subtotal = 0;
23
28
  this.taxes = 0;
24
29
  this.total = 0;
@@ -1,10 +1,10 @@
1
1
  export interface IInvoiceItem {
2
+ addition: number;
2
3
  description: string;
3
- discounts: number;
4
+ discount: number;
4
5
  id: string;
5
6
  quantity: number;
6
7
  sku: string;
7
- taxes: number;
8
8
  totalPrice: number;
9
9
  unitPrice: number;
10
10
  }
@@ -1,19 +1,24 @@
1
- import { InvoiceStatusEnum } from '../enums';
2
- import { IInvoiceItem } from './i-invoice-item';
3
- import { IInvoicePaymentMethod } from './i-invoice-payment-method';
1
+ import { InvoiceStatusEnum } from "../enums";
2
+ import { IInvoiceItem } from "./i-invoice-item";
3
+ import { IInvoicePaymentMethod } from "./i-invoice-payment-method";
4
4
  export interface IInvoice {
5
+ addition: number;
5
6
  companyId: string;
6
7
  containerId: string;
7
8
  createdAt: Date;
8
- discounts: number;
9
+ discount: number;
9
10
  dueDateAt: Date;
11
+ ensureDueOnWorkday: boolean;
12
+ expiresIn: number;
10
13
  id: string;
11
- invoiceNumber: string;
12
14
  items: IInvoiceItem[];
13
15
  notes: string;
14
- paidDateAt: Date;
16
+ paidAt: Date;
15
17
  paymentMethod: IInvoicePaymentMethod[];
18
+ providerInvoiceNumber: string;
19
+ providerInvoiceUrl: string;
16
20
  status: InvoiceStatusEnum;
21
+ subscriptionId: string;
17
22
  subtotal: number;
18
23
  taxes: number;
19
24
  total: number;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.0.84",
3
+ "version": "1.0.88",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -2,14 +2,14 @@ import { IntervalTypeEnum } from '../../general/enums';
2
2
  import { PlanIdentifierEnum } from '../enums/plans-identifier.enum';
3
3
  import { IPlanFeature } from './i-feature';
4
4
  export interface IPlan {
5
+ createdAt: Date;
6
+ features: IPlanFeature[];
5
7
  id: string;
6
- name: string;
7
8
  identifier: PlanIdentifierEnum;
9
+ index: number;
8
10
  interval: number;
9
11
  intervalType: IntervalTypeEnum;
10
- createdAt: Date;
11
- index: number;
12
- updatedAt: Date;
12
+ name: string;
13
13
  price: number;
14
- features: IPlanFeature[];
14
+ updatedAt: Date;
15
15
  }
@@ -1,2 +1,3 @@
1
- export { SubscriptionInvoiceHistoryEntity } from './subscription-invoice-history.entity';
1
+ export { SubscriptionItemEntity } from './subscription-item.entity';
2
+ export { SubscriptionLogEntity } from './subscription-log.entity';
2
3
  export { SubscriptionEntity } from './subscription.entity';
@@ -1,7 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SubscriptionEntity = exports.SubscriptionInvoiceHistoryEntity = void 0;
4
- var subscription_invoice_history_entity_1 = require("./subscription-invoice-history.entity");
5
- Object.defineProperty(exports, "SubscriptionInvoiceHistoryEntity", { enumerable: true, get: function () { return subscription_invoice_history_entity_1.SubscriptionInvoiceHistoryEntity; } });
3
+ exports.SubscriptionEntity = exports.SubscriptionLogEntity = exports.SubscriptionItemEntity = void 0;
4
+ var subscription_item_entity_1 = require("./subscription-item.entity");
5
+ Object.defineProperty(exports, "SubscriptionItemEntity", { enumerable: true, get: function () { return subscription_item_entity_1.SubscriptionItemEntity; } });
6
+ var subscription_log_entity_1 = require("./subscription-log.entity");
7
+ Object.defineProperty(exports, "SubscriptionLogEntity", { enumerable: true, get: function () { return subscription_log_entity_1.SubscriptionLogEntity; } });
6
8
  var subscription_entity_1 = require("./subscription.entity");
7
9
  Object.defineProperty(exports, "SubscriptionEntity", { enumerable: true, get: function () { return subscription_entity_1.SubscriptionEntity; } });
@@ -0,0 +1,9 @@
1
+ import { ISubscriptionItem } from "../interfaces";
2
+ export declare class SubscriptionItemEntity implements ISubscriptionItem {
3
+ description: string;
4
+ quantity: number;
5
+ recurrent: boolean;
6
+ totalPrice: number;
7
+ unitPrice: number;
8
+ constructor(data?: Partial<SubscriptionItemEntity>);
9
+ }
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SubscriptionItemEntity = void 0;
4
+ var SubscriptionItemEntity = /** @class */ (function () {
5
+ // #endregion Properties (5)
6
+ // #region Constructors (1)
7
+ function SubscriptionItemEntity(data) {
8
+ // #region Properties (5)
9
+ this.description = "";
10
+ this.quantity = 1;
11
+ this.recurrent = true;
12
+ this.totalPrice = 0;
13
+ this.unitPrice = 0;
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 SubscriptionItemEntity;
23
+ }());
24
+ exports.SubscriptionItemEntity = SubscriptionItemEntity;
@@ -0,0 +1,8 @@
1
+ import { ISubscriptionLog } from "../interfaces/i-subscription-log";
2
+ export declare class SubscriptionLogEntity implements ISubscriptionLog {
3
+ createdAt: Date;
4
+ description: string;
5
+ id: string;
6
+ notes: string;
7
+ constructor(data?: Partial<SubscriptionLogEntity>);
8
+ }
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SubscriptionLogEntity = void 0;
4
+ var SubscriptionLogEntity = /** @class */ (function () {
5
+ // #endregion Properties (4)
6
+ // #region Constructors (1)
7
+ function SubscriptionLogEntity(data) {
8
+ // #region Properties (4)
9
+ this.createdAt = new Date();
10
+ this.description = "";
11
+ this.id = "";
12
+ this.notes = "";
13
+ if (data) {
14
+ for (var key in data) {
15
+ if (data.hasOwnProperty(key) && key in this) {
16
+ this[key] = data[key];
17
+ }
18
+ }
19
+ }
20
+ }
21
+ return SubscriptionLogEntity;
22
+ }());
23
+ exports.SubscriptionLogEntity = SubscriptionLogEntity;
@@ -1,22 +1,30 @@
1
- import { IntervalTypeEnum } from '../../general';
2
- import { SubscriptionStatusEnum } from '../enums';
3
- import { ISubscription } from '../interfaces/i-subscription';
4
- import { SubscriptionInvoiceHistoryEntity } from './subscription-invoice-history.entity';
1
+ import { FeatureEntity } from "../../feature";
2
+ import { CustomVariableEntity, IntervalTypeEnum } from "../../general";
3
+ import { SubscriptionStatusEnum } from "../enums";
4
+ import { ISubscription } from "../interfaces/i-subscription";
5
+ import { SubscriptionItemEntity } from "./subscription-item.entity";
6
+ import { SubscriptionLogEntity } from "./subscription-log.entity";
5
7
  export declare class SubscriptionEntity implements ISubscription {
6
8
  cancellationReason: string;
7
- createdAt: Date;
8
9
  companyId: string;
10
+ companyName: string;
9
11
  containerId: string | null;
10
- partnerId: string | null;
11
- endDate: Date;
12
+ createdAt: Date;
13
+ customVariable: CustomVariableEntity[];
14
+ expiresAt: Date;
15
+ features: FeatureEntity[];
12
16
  id: string;
13
17
  interval: number;
14
18
  intervalType: IntervalTypeEnum;
15
- invoiceHistory: SubscriptionInvoiceHistoryEntity[];
19
+ items: SubscriptionItemEntity[];
20
+ logs: SubscriptionLogEntity[];
16
21
  notes: string;
22
+ partnerId: string | null;
17
23
  planId: string;
24
+ planName: string;
18
25
  renewPaymentDate: Date;
19
- startDate: Date;
26
+ renovatedAt: Date;
27
+ startsAt: Date;
20
28
  status: SubscriptionStatusEnum;
21
29
  updatedAt: Date;
22
30
  constructor(data?: Partial<SubscriptionEntity>);
@@ -4,24 +4,30 @@ exports.SubscriptionEntity = void 0;
4
4
  var general_1 = require("../../general");
5
5
  var enums_1 = require("../enums");
6
6
  var SubscriptionEntity = /** @class */ (function () {
7
- // #endregion Properties (14)
7
+ // #endregion Properties (22)
8
8
  // #region Constructors (1)
9
9
  function SubscriptionEntity(data) {
10
- // #region Properties (14)
11
- this.cancellationReason = '';
10
+ // #region Properties (22)
11
+ this.cancellationReason = "";
12
+ this.companyId = "";
13
+ this.companyName = "";
14
+ this.containerId = "";
12
15
  this.createdAt = new Date();
13
- this.companyId = '';
14
- this.containerId = '';
15
- this.partnerId = '';
16
- this.endDate = new Date();
17
- this.id = '';
16
+ this.customVariable = [];
17
+ this.expiresAt = new Date();
18
+ this.features = [];
19
+ this.id = "";
18
20
  this.interval = 0;
19
21
  this.intervalType = general_1.IntervalTypeEnum.MONTHS;
20
- this.invoiceHistory = [];
21
- this.notes = '';
22
- this.planId = '';
22
+ this.items = [];
23
+ this.logs = [];
24
+ this.notes = "";
25
+ this.partnerId = "";
26
+ this.planId = "";
27
+ this.planName = "";
23
28
  this.renewPaymentDate = new Date();
24
- this.startDate = new Date();
29
+ this.renovatedAt = new Date();
30
+ this.startsAt = new Date();
25
31
  this.status = enums_1.SubscriptionStatusEnum.PENDING;
26
32
  this.updatedAt = new Date();
27
33
  if (data) {
@@ -0,0 +1,7 @@
1
+ export interface ISubscriptionItem {
2
+ description: string;
3
+ quantity: number;
4
+ recurrent: boolean;
5
+ totalPrice: number;
6
+ unitPrice: number;
7
+ }
@@ -0,0 +1,6 @@
1
+ export interface ISubscriptionLog {
2
+ createdAt: Date;
3
+ description: string;
4
+ id: string;
5
+ notes: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,21 +1,29 @@
1
- import { IntervalTypeEnum } from "../../general";
1
+ import { IFeature } from "../../feature";
2
+ import { ICustomVariable, IntervalTypeEnum } from "../../general";
2
3
  import { SubscriptionStatusEnum } from "../enums";
3
- import { ISubscriptionInvoiceHistory } from "./i-subscription-invoice-history";
4
+ import { ISubscriptionItem } from "./i-subscription-item";
5
+ import { ISubscriptionLog } from "./i-subscription-log";
4
6
  export interface ISubscription {
5
7
  cancellationReason: string;
6
8
  companyId: string;
9
+ companyName: string;
7
10
  containerId: string | null;
8
- partnerId: string | null;
9
11
  createdAt: Date;
10
- endDate: Date;
12
+ customVariable: ICustomVariable[];
13
+ expiresAt: Date;
14
+ features: IFeature[];
11
15
  id: string;
12
16
  interval: number;
13
17
  intervalType: IntervalTypeEnum;
14
- invoiceHistory: ISubscriptionInvoiceHistory[];
18
+ items: ISubscriptionItem[];
19
+ logs: ISubscriptionLog[];
15
20
  notes: string;
21
+ partnerId: string | null;
16
22
  planId: string;
23
+ planName: string;
17
24
  renewPaymentDate: Date;
18
- startDate: Date;
25
+ renovatedAt: Date;
26
+ startsAt: Date;
19
27
  status: SubscriptionStatusEnum;
20
28
  updatedAt: Date;
21
29
  }
@@ -1,2 +1,3 @@
1
1
  export { ISubscription } from './i-subscription';
2
- export { ISubscriptionInvoiceHistory } from './i-subscription-invoice-history';
2
+ export { ISubscriptionItem } from './i-subscription-item';
3
+ export { ISubscriptionLog } from './i-subscription-log';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.0.84",
3
+ "version": "1.0.88",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,22 +0,0 @@
1
- import { OrderStatusEnum } from '../../order';
2
- export class SubscriptionInvoiceHistoryEntity {
3
- // #region Properties (6)
4
- amount = 0;
5
- createdAt = new Date();
6
- dueDate = new Date();
7
- invoiceId = '';
8
- paidDate = new Date();
9
- status = OrderStatusEnum.PENDING;
10
- // #endregion Properties (6)
11
- // #region Constructors (1)
12
- constructor(data) {
13
- if (data) {
14
- for (let key in data) {
15
- if (data.hasOwnProperty(key) && key in this) {
16
- this[key] = data[key];
17
- }
18
- }
19
- }
20
- }
21
- }
22
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3Vic2NyaXB0aW9uLWludm9pY2UtaGlzdG9yeS5lbnRpdHkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvc3Vic2NyaXB0aW9uL2VudGl0aWVzL3N1YnNjcmlwdGlvbi1pbnZvaWNlLWhpc3RvcnkuZW50aXR5LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFHOUMsTUFBTSxPQUFPLGdDQUFnQztJQUN6Qyx5QkFBeUI7SUFFbEIsTUFBTSxHQUFXLENBQUMsQ0FBQztJQUNuQixTQUFTLEdBQVMsSUFBSSxJQUFJLEVBQUUsQ0FBQztJQUM3QixPQUFPLEdBQVMsSUFBSSxJQUFJLEVBQUUsQ0FBQztJQUMzQixTQUFTLEdBQVcsRUFBRSxDQUFDO0lBQ3ZCLFFBQVEsR0FBUyxJQUFJLElBQUksRUFBRSxDQUFDO0lBQzVCLE1BQU0sR0FBb0IsZUFBZSxDQUFDLE9BQU8sQ0FBQztJQUV6RCw0QkFBNEI7SUFFNUIsMkJBQTJCO0lBRTNCLFlBQVksSUFBZ0Q7UUFDeEQsSUFBSSxJQUFJLEVBQUU7WUFDTixLQUFLLElBQUksR0FBRyxJQUFJLElBQUksRUFBRTtnQkFDbEIsSUFBSSxJQUFJLENBQUMsY0FBYyxDQUFDLEdBQUcsQ0FBQyxJQUFJLEdBQUcsSUFBSSxJQUFJLEVBQUU7b0JBQ3hDLElBQVksQ0FBQyxHQUFHLENBQUMsR0FBSSxJQUFZLENBQUMsR0FBRyxDQUFDLENBQUM7aUJBQzNDO2FBQ0o7U0FDSjtJQUNMLENBQUM7Q0FHSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE9yZGVyU3RhdHVzRW51bSB9IGZyb20gJy4uLy4uL29yZGVyJztcbmltcG9ydCB7IElTdWJzY3JpcHRpb25JbnZvaWNlSGlzdG9yeSB9IGZyb20gJy4uL2ludGVyZmFjZXMvaS1zdWJzY3JpcHRpb24taW52b2ljZS1oaXN0b3J5JztcblxuZXhwb3J0IGNsYXNzIFN1YnNjcmlwdGlvbkludm9pY2VIaXN0b3J5RW50aXR5IGltcGxlbWVudHMgSVN1YnNjcmlwdGlvbkludm9pY2VIaXN0b3J5IHtcbiAgICAvLyAjcmVnaW9uIFByb3BlcnRpZXMgKDYpXG5cbiAgICBwdWJsaWMgYW1vdW50OiBudW1iZXIgPSAwO1xuICAgIHB1YmxpYyBjcmVhdGVkQXQ6IERhdGUgPSBuZXcgRGF0ZSgpO1xuICAgIHB1YmxpYyBkdWVEYXRlOiBEYXRlID0gbmV3IERhdGUoKTtcbiAgICBwdWJsaWMgaW52b2ljZUlkOiBzdHJpbmcgPSAnJztcbiAgICBwdWJsaWMgcGFpZERhdGU6IERhdGUgPSBuZXcgRGF0ZSgpO1xuICAgIHB1YmxpYyBzdGF0dXM6IE9yZGVyU3RhdHVzRW51bSA9IE9yZGVyU3RhdHVzRW51bS5QRU5ESU5HO1xuXG4gICAgLy8gI2VuZHJlZ2lvbiBQcm9wZXJ0aWVzICg2KVxuXG4gICAgLy8gI3JlZ2lvbiBDb25zdHJ1Y3RvcnMgKDEpXG5cbiAgICBjb25zdHJ1Y3RvcihkYXRhPzogUGFydGlhbDxTdWJzY3JpcHRpb25JbnZvaWNlSGlzdG9yeUVudGl0eT4pIHtcbiAgICAgICAgaWYgKGRhdGEpIHtcbiAgICAgICAgICAgIGZvciAobGV0IGtleSBpbiBkYXRhKSB7XG4gICAgICAgICAgICAgICAgaWYgKGRhdGEuaGFzT3duUHJvcGVydHkoa2V5KSAmJiBrZXkgaW4gdGhpcykge1xuICAgICAgICAgICAgICAgICAgICAodGhpcyBhcyBhbnkpW2tleV0gPSAoZGF0YSBhcyBhbnkpW2tleV07XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgfVxuXG4gICAgLy8gI2VuZHJlZ2lvbiBDb25zdHJ1Y3RvcnMgKDEpXG59XG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1zdWJzY3JpcHRpb24taW52b2ljZS1oaXN0b3J5LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL3N1YnNjcmlwdGlvbi9pbnRlcmZhY2VzL2ktc3Vic2NyaXB0aW9uLWludm9pY2UtaGlzdG9yeS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgT3JkZXJTdGF0dXNFbnVtIH0gZnJvbSAnLi4vLi4vb3JkZXInO1xuXG5leHBvcnQgaW50ZXJmYWNlIElTdWJzY3JpcHRpb25JbnZvaWNlSGlzdG9yeSB7XG4gICAgLy8gI3JlZ2lvbiBQcm9wZXJ0aWVzICgxNilcblxuICAgIGludm9pY2VJZDogc3RyaW5nO1xuICAgIGFtb3VudDogbnVtYmVyO1xuICAgIGNyZWF0ZWRBdDogRGF0ZTtcbiAgICBkdWVEYXRlOiBEYXRlO1xuICAgIHBhaWREYXRlOiBEYXRlO1xuICAgIHN0YXR1czogT3JkZXJTdGF0dXNFbnVtO1xuXG4gICAgLy8gI2VuZHJlZ2lvbiBQcm9wZXJ0aWVzICgxNilcbn1cbiJdfQ==
@@ -1,11 +0,0 @@
1
- import { OrderStatusEnum } from '../../order';
2
- import { ISubscriptionInvoiceHistory } from '../interfaces/i-subscription-invoice-history';
3
- export declare class SubscriptionInvoiceHistoryEntity implements ISubscriptionInvoiceHistory {
4
- amount: number;
5
- createdAt: Date;
6
- dueDate: Date;
7
- invoiceId: string;
8
- paidDate: Date;
9
- status: OrderStatusEnum;
10
- constructor(data?: Partial<SubscriptionInvoiceHistoryEntity>);
11
- }
@@ -1,26 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SubscriptionInvoiceHistoryEntity = void 0;
4
- var order_1 = require("../../order");
5
- var SubscriptionInvoiceHistoryEntity = /** @class */ (function () {
6
- // #endregion Properties (6)
7
- // #region Constructors (1)
8
- function SubscriptionInvoiceHistoryEntity(data) {
9
- // #region Properties (6)
10
- this.amount = 0;
11
- this.createdAt = new Date();
12
- this.dueDate = new Date();
13
- this.invoiceId = '';
14
- this.paidDate = new Date();
15
- this.status = order_1.OrderStatusEnum.PENDING;
16
- if (data) {
17
- for (var key in data) {
18
- if (data.hasOwnProperty(key) && key in this) {
19
- this[key] = data[key];
20
- }
21
- }
22
- }
23
- }
24
- return SubscriptionInvoiceHistoryEntity;
25
- }());
26
- exports.SubscriptionInvoiceHistoryEntity = SubscriptionInvoiceHistoryEntity;
@@ -1,9 +0,0 @@
1
- import { OrderStatusEnum } from '../../order';
2
- export interface ISubscriptionInvoiceHistory {
3
- invoiceId: string;
4
- amount: number;
5
- createdAt: Date;
6
- dueDate: Date;
7
- paidDate: Date;
8
- status: OrderStatusEnum;
9
- }