cecon-interfaces 1.0.90 → 1.0.92
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/entities/app.entity.d.ts +1 -1
- package/dist/app/entities/app.entity.js +1 -1
- package/dist/app/interfaces/i-app.d.ts +1 -1
- package/dist/esm2022/app/entities/app.entity.mjs +2 -2
- package/dist/esm2022/app/interfaces/i-app.mjs +1 -1
- package/dist/esm2022/invite/entities/invite.entity.mjs +2 -2
- package/dist/esm2022/invite/interfaces/i-invite.mjs +1 -1
- package/dist/esm2022/notification/entities/notification.entity.mjs +2 -2
- package/dist/esm2022/notification/interfaces/i-notification.mjs +1 -1
- package/dist/esm2022/partner/entities/partner.entity.mjs +3 -3
- package/dist/esm2022/partner/interfaces/i-partner.mjs +1 -1
- package/dist/esm2022/plan/entities/plan.entity.mjs +2 -1
- package/dist/esm2022/plan/interfaces/i-plan.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +6 -5
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/invite/entities/invite.entity.d.ts +1 -1
- package/dist/invite/entities/invite.entity.js +1 -1
- package/dist/invite/interfaces/i-invite.d.ts +1 -1
- package/dist/notification/entities/notification.entity.d.ts +1 -1
- package/dist/notification/entities/notification.entity.js +1 -1
- package/dist/notification/interfaces/i-notification.d.ts +1 -1
- package/dist/package.json +1 -1
- package/dist/partner/entities/partner.entity.d.ts +2 -2
- package/dist/partner/entities/partner.entity.js +2 -2
- package/dist/partner/interfaces/i-partner.d.ts +2 -2
- package/dist/plan/entities/plan.entity.d.ts +1 -0
- package/dist/plan/entities/plan.entity.js +1 -0
- package/dist/plan/interfaces/i-plan.d.ts +1 -0
- package/package.json +1 -1
@@ -21,7 +21,7 @@ var InviteEntity = /** @class */ (function () {
|
|
21
21
|
this.internationalCode = '+55';
|
22
22
|
this.name = '';
|
23
23
|
this.phoneNumber = '';
|
24
|
-
this.
|
24
|
+
this.photoUrl = '';
|
25
25
|
this.status = enums_1.InviteStatusEnum.PENDING;
|
26
26
|
this.uid = '';
|
27
27
|
this.updatedAt = new Date();
|
@@ -16,7 +16,7 @@ var NotificationEntity = /** @class */ (function () {
|
|
16
16
|
this.title = '';
|
17
17
|
this.description = '';
|
18
18
|
this.id = '';
|
19
|
-
this.
|
19
|
+
this.imageUrl = '';
|
20
20
|
this.priority = enums_1.NotificationPriorityEnum.HIGH;
|
21
21
|
this.sound = true;
|
22
22
|
this.status = enums_1.NotificationStatusEnum.DELIVERED;
|
package/dist/package.json
CHANGED
@@ -9,9 +9,9 @@ export declare class PartnerEntity implements IPartner {
|
|
9
9
|
email: string;
|
10
10
|
fullName: string;
|
11
11
|
id: string;
|
12
|
-
|
12
|
+
imageUrl?: string;
|
13
13
|
internationalCode: string;
|
14
|
-
|
14
|
+
logoUrl?: string;
|
15
15
|
name: string;
|
16
16
|
paymentProvider: PaymentProviderEntity;
|
17
17
|
paymentsMethods: PaymentMethodEntity[];
|
@@ -15,9 +15,9 @@ var PartnerEntity = /** @class */ (function () {
|
|
15
15
|
this.email = '';
|
16
16
|
this.fullName = '';
|
17
17
|
this.id = '';
|
18
|
-
this.
|
18
|
+
this.imageUrl = '';
|
19
19
|
this.internationalCode = '';
|
20
|
-
this.
|
20
|
+
this.logoUrl = '';
|
21
21
|
this.name = '';
|
22
22
|
this.paymentProvider = new general_1.PaymentProviderEntity();
|
23
23
|
this.paymentsMethods = [];
|
@@ -8,9 +8,9 @@ export interface IPartner {
|
|
8
8
|
email: string;
|
9
9
|
fullName: string;
|
10
10
|
id: string;
|
11
|
-
|
11
|
+
imageUrl?: string;
|
12
12
|
internationalCode: string;
|
13
|
-
|
13
|
+
logoUrl?: string;
|
14
14
|
name: string;
|
15
15
|
paymentProvider: IPaymentProvider;
|
16
16
|
paymentsMethods: IPaymentMethod[];
|