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.
- package/dist/company/entities/company.entity.d.ts +2 -0
- package/dist/company/entities/company.entity.js +2 -0
- package/dist/company/interfaces/i-company.d.ts +2 -0
- package/dist/esm2022/company/entities/company.entity.mjs +3 -1
- package/dist/esm2022/company/interfaces/i-company.mjs +1 -1
- package/dist/esm2022/invoice/entities/invoice.entity.mjs +1 -1
- package/dist/esm2022/invoice/interfaces/i-invoice.mjs +1 -1
- package/dist/esm2022/resume/entities/resume.entity.mjs +4 -3
- package/dist/esm2022/resume/interfaces/i-resume.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +5 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/invoice/entities/invoice.entity.d.ts +1 -1
- package/dist/invoice/interfaces/i-invoice.d.ts +1 -1
- package/dist/package.json +1 -1
- package/dist/resume/entities/resume.entity.d.ts +1 -0
- package/dist/resume/entities/resume.entity.js +3 -2
- package/dist/resume/interfaces/i-resume.d.ts +1 -0
- package/package.json +1 -1
@@ -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:
|
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:
|
39
|
+
phoneNumberNotification: string | null;
|
40
40
|
pix: IInvoicePix | null;
|
41
41
|
returnExpiredUrl: string;
|
42
42
|
returnUrl: string;
|
package/dist/package.json
CHANGED
@@ -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 (
|
5
|
+
// #endregion Properties (3)
|
6
6
|
// #region Constructors (1)
|
7
7
|
function ResumeEntity(data) {
|
8
|
-
// #region Properties (
|
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) {
|