cecon-interfaces 1.1.34 → 1.1.37

Sign up to get free protection for your applications and to get access to all the features.
@@ -37,7 +37,7 @@ export declare class InvoiceEntity implements IInvoice {
37
37
  payer: InvoicePayerEntity;
38
38
  paymentMethod: PaymentTypeEnum;
39
39
  paymentProvider: PaymentProviderEntity | null;
40
- phoneNumberNotification: number | null;
40
+ phoneNumberNotification: string | null;
41
41
  pix: InvoicePixEntity | null;
42
42
  returnExpiredUrl: string;
43
43
  returnUrl: string;
@@ -36,7 +36,7 @@ export interface IInvoice {
36
36
  payer: IInvoicePayer;
37
37
  paymentMethod: PaymentTypeEnum;
38
38
  paymentProvider: IPaymentProvider | null;
39
- phoneNumberNotification: number | null;
39
+ phoneNumberNotification: string | null;
40
40
  pix: IInvoicePix | null;
41
41
  returnExpiredUrl: string;
42
42
  returnUrl: string;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.1.34",
3
+ "version": "1.1.37",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -3,6 +3,7 @@ import { ResumeCollectionEntity } from './resume-collection.entity';
3
3
  import { ResumeTotalEntity } from './resume-total.entity';
4
4
  export declare class ResumeEntity implements IResume {
5
5
  counts: ResumeCollectionEntity[];
6
+ id: string;
6
7
  totals: ResumeTotalEntity[];
7
8
  constructor(data?: Partial<ResumeEntity>);
8
9
  }
@@ -2,11 +2,12 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ResumeEntity = void 0;
4
4
  var ResumeEntity = /** @class */ (function () {
5
- // #endregion Properties (2)
5
+ // #endregion Properties (3)
6
6
  // #region Constructors (1)
7
7
  function ResumeEntity(data) {
8
- // #region Properties (2)
8
+ // #region Properties (3)
9
9
  this.counts = [];
10
+ this.id = '';
10
11
  this.totals = [];
11
12
  if (data) {
12
13
  for (var key in data) {
@@ -3,4 +3,5 @@ import { IResumeTotal } from './i-resume-total';
3
3
  export interface IResume {
4
4
  counts: IResumeCollection[];
5
5
  totals: IResumeTotal[];
6
+ id: string;
6
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.1.34",
3
+ "version": "1.1.37",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",