cecon-interfaces 1.1.22 → 1.1.24

Sign up to get free protection for your applications and to get access to all the features.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.1.22",
3
+ "version": "1.1.24",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,7 +1,7 @@
1
1
  import { FeatureEntity } from '../../feature';
2
2
  import { CustomVariableEntity, IntervalTypeEnum, PaymentEntity } from '../../general';
3
3
  import { InvoiceEntity } from '../../invoice';
4
- import { SubscriptionStatusEnum } from '../enums';
4
+ import { ESubscriptionStatus } from '../enums';
5
5
  import { ISubscription } from '../interfaces/i-subscription';
6
6
  import { SubscriptionCompanyEntity } from './subscription-company.entity';
7
7
  import { SubscriptionItemEntity } from './subscription-item.entity';
@@ -30,7 +30,7 @@ export declare class SubscriptionEntity implements ISubscription {
30
30
  renewPaymentDate: Date;
31
31
  renovatedAt: Date;
32
32
  startsAt: Date;
33
- status: SubscriptionStatusEnum;
33
+ status: ESubscriptionStatus;
34
34
  tags: string[];
35
35
  updatedAt: Date;
36
36
  payment: PaymentEntity;
@@ -32,7 +32,7 @@ var SubscriptionEntity = /** @class */ (function () {
32
32
  this.renewPaymentDate = new Date();
33
33
  this.renovatedAt = new Date();
34
34
  this.startsAt = new Date();
35
- this.status = enums_1.SubscriptionStatusEnum.PENDING;
35
+ this.status = enums_1.ESubscriptionStatus.PENDING;
36
36
  this.tags = [];
37
37
  this.updatedAt = new Date();
38
38
  this.payment = new general_1.PaymentEntity();
@@ -1 +1 @@
1
- export { ESubscriptionStatus as SubscriptionStatusEnum } from './subscription-status.enum';
1
+ export { ESubscriptionStatus } from './subscription-status.enum';
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SubscriptionStatusEnum = void 0;
3
+ exports.ESubscriptionStatus = void 0;
4
4
  var subscription_status_enum_1 = require("./subscription-status.enum");
5
- Object.defineProperty(exports, "SubscriptionStatusEnum", { enumerable: true, get: function () { return subscription_status_enum_1.ESubscriptionStatus; } });
5
+ Object.defineProperty(exports, "ESubscriptionStatus", { enumerable: true, get: function () { return subscription_status_enum_1.ESubscriptionStatus; } });
@@ -1,8 +1,8 @@
1
1
  import { IFeature } from '../../feature';
2
2
  import { ICustomVariable, IntervalTypeEnum } from '../../general';
3
- import { IPayment } from '../../general/interfaces/i-payment';
3
+ import { IPayment } from '../../general/interfaces';
4
4
  import { IInvoice } from '../../invoice';
5
- import { SubscriptionStatusEnum } from '../enums';
5
+ import { ESubscriptionStatus } from '../enums';
6
6
  import { ISubscriptionCompany } from './i-subscription-company';
7
7
  import { ISubscriptionItem } from './i-subscription-item';
8
8
  import { ISubscriptionLog } from './i-subscription-log';
@@ -31,7 +31,7 @@ export interface ISubscription {
31
31
  renewPaymentDate: Date;
32
32
  renovatedAt: Date;
33
33
  startsAt: Date;
34
- status: SubscriptionStatusEnum;
34
+ status: ESubscriptionStatus;
35
35
  tags: string[];
36
36
  updatedAt: Date;
37
37
  }
@@ -18,6 +18,7 @@ export declare class VoucherEntity implements IVoucher {
18
18
  partnerId: string | null;
19
19
  sponsorship: SponsorshipValueEntity[];
20
20
  status: EVoucherStatus;
21
+ tags: string[];
21
22
  updatedAt: Date;
22
23
  usedCount: number;
23
24
  constructor(data?: Partial<VoucherEntity>);
@@ -4,10 +4,10 @@ exports.VoucherEntity = void 0;
4
4
  var general_1 = require("../../general");
5
5
  var enums_1 = require("../enums");
6
6
  var VoucherEntity = /** @class */ (function () {
7
- // #endregion Properties (18)
7
+ // #endregion Properties (19)
8
8
  // #region Constructors (1)
9
9
  function VoucherEntity(data) {
10
- // #region Properties (18)
10
+ // #region Properties (19)
11
11
  // se permite ou não a alteração do nome do cupom pelo parceiro
12
12
  this.allowsKeyChange = false;
13
13
  // valor do desconto (soma do valor de todos os patrocínios - sponsorship)
@@ -39,6 +39,7 @@ var VoucherEntity = /** @class */ (function () {
39
39
  this.sponsorship = [];
40
40
  // status do cupom
41
41
  this.status = enums_1.EVoucherStatus.PLACED;
42
+ this.tags = [];
42
43
  // data da última atualização do cupom
43
44
  this.updatedAt = new Date();
44
45
  // contador de quantas vezes o cupom foi usado
@@ -11,6 +11,7 @@ export interface IVoucher {
11
11
  discountType: EDiscountType;
12
12
  expirationDate: Date;
13
13
  id: string;
14
+ tags: string[];
14
15
  isPublic: boolean;
15
16
  key: string;
16
17
  maxUses: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.1.22",
3
+ "version": "1.1.24",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",