cecon-interfaces 1.2.1 → 1.2.4
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/invoice/entities/invoice-item.entity.mjs +2 -1
- package/dist/esm2022/invoice/entities/invoice.entity.mjs +3 -3
- package/dist/esm2022/invoice/interfaces/i-invoice-item.mjs +1 -1
- package/dist/esm2022/invoice/interfaces/i-invoice.mjs +1 -1
- package/dist/esm2022/subscription-customer/entities/subscription-customer.entity.mjs +3 -2
- package/dist/esm2022/subscription-customer/interfaces/i-subscription-customer.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +4 -3
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/invoice/entities/invoice-item.entity.d.ts +1 -0
- package/dist/invoice/entities/invoice-item.entity.js +1 -0
- package/dist/invoice/entities/invoice.entity.d.ts +1 -1
- package/dist/invoice/entities/invoice.entity.js +2 -2
- package/dist/invoice/interfaces/i-invoice-item.d.ts +1 -0
- package/dist/invoice/interfaces/i-invoice.d.ts +1 -1
- package/dist/package.json +1 -1
- package/dist/subscription-customer/entities/subscription-customer.entity.d.ts +2 -1
- package/dist/subscription-customer/entities/subscription-customer.entity.js +2 -1
- package/dist/subscription-customer/interfaces/i-subscription-customer.d.ts +2 -1
- package/package.json +1 -1
@@ -42,9 +42,9 @@ var InvoiceEntity = /** @class */ (function () {
|
|
42
42
|
this.pix = null;
|
43
43
|
this.returnExpiredUrl = '';
|
44
44
|
this.returnUrl = '';
|
45
|
-
this.status = enums_1.EInvoiceStatus.
|
45
|
+
this.status = enums_1.EInvoiceStatus.DRAFT;
|
46
46
|
this.subscriptionId = '';
|
47
|
-
this.
|
47
|
+
this.subTotal = 0;
|
48
48
|
this.totalAmount = 0;
|
49
49
|
this.totalFee = 0;
|
50
50
|
this.totalOverPaid = 0;
|
package/dist/package.json
CHANGED
@@ -1,7 +1,8 @@
|
|
1
|
+
import { EDocType } from '../../general';
|
1
2
|
import { ISubscriptionCustomerProfile } from '../interfaces/i-subscription-customer';
|
2
3
|
export declare class SubscriptionCustomerProfileEntity implements ISubscriptionCustomerProfile {
|
3
4
|
doc: string | null;
|
4
|
-
docType:
|
5
|
+
docType: EDocType;
|
5
6
|
email: string | null;
|
6
7
|
id: string | null;
|
7
8
|
imageUrl: string | null;
|
@@ -1,13 +1,14 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.SubscriptionCustomerProfileEntity = void 0;
|
4
|
+
var general_1 = require("../../general");
|
4
5
|
var SubscriptionCustomerProfileEntity = /** @class */ (function () {
|
5
6
|
// #endregion Properties (8)
|
6
7
|
// #region Constructors (1)
|
7
8
|
function SubscriptionCustomerProfileEntity(data) {
|
8
9
|
// #region Properties (8)
|
9
10
|
this.doc = '';
|
10
|
-
this.docType =
|
11
|
+
this.docType = general_1.EDocType.CNPJ;
|
11
12
|
this.email = '';
|
12
13
|
this.id = '';
|
13
14
|
this.imageUrl = '';
|