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.
Files changed (29) hide show
  1. package/dist/app/entities/app.entity.d.ts +1 -1
  2. package/dist/app/entities/app.entity.js +1 -1
  3. package/dist/app/interfaces/i-app.d.ts +1 -1
  4. package/dist/esm2022/app/entities/app.entity.mjs +2 -2
  5. package/dist/esm2022/app/interfaces/i-app.mjs +1 -1
  6. package/dist/esm2022/invite/entities/invite.entity.mjs +2 -2
  7. package/dist/esm2022/invite/interfaces/i-invite.mjs +1 -1
  8. package/dist/esm2022/notification/entities/notification.entity.mjs +2 -2
  9. package/dist/esm2022/notification/interfaces/i-notification.mjs +1 -1
  10. package/dist/esm2022/partner/entities/partner.entity.mjs +3 -3
  11. package/dist/esm2022/partner/interfaces/i-partner.mjs +1 -1
  12. package/dist/esm2022/plan/entities/plan.entity.mjs +2 -1
  13. package/dist/esm2022/plan/interfaces/i-plan.mjs +1 -1
  14. package/dist/fesm2022/cecon-interfaces.mjs +6 -5
  15. package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
  16. package/dist/invite/entities/invite.entity.d.ts +1 -1
  17. package/dist/invite/entities/invite.entity.js +1 -1
  18. package/dist/invite/interfaces/i-invite.d.ts +1 -1
  19. package/dist/notification/entities/notification.entity.d.ts +1 -1
  20. package/dist/notification/entities/notification.entity.js +1 -1
  21. package/dist/notification/interfaces/i-notification.d.ts +1 -1
  22. package/dist/package.json +1 -1
  23. package/dist/partner/entities/partner.entity.d.ts +2 -2
  24. package/dist/partner/entities/partner.entity.js +2 -2
  25. package/dist/partner/interfaces/i-partner.d.ts +2 -2
  26. package/dist/plan/entities/plan.entity.d.ts +1 -0
  27. package/dist/plan/entities/plan.entity.js +1 -0
  28. package/dist/plan/interfaces/i-plan.d.ts +1 -0
  29. package/package.json +1 -1
@@ -15,7 +15,7 @@ export declare class InviteEntity implements IInvite {
15
15
  internationalCode: string;
16
16
  name: string;
17
17
  phoneNumber: string;
18
- photoURL: string;
18
+ photoUrl: string;
19
19
  status: InviteStatusEnum;
20
20
  uid: string;
21
21
  updatedAt: Date;
@@ -21,7 +21,7 @@ var InviteEntity = /** @class */ (function () {
21
21
  this.internationalCode = '+55';
22
22
  this.name = '';
23
23
  this.phoneNumber = '';
24
- this.photoURL = '';
24
+ this.photoUrl = '';
25
25
  this.status = enums_1.InviteStatusEnum.PENDING;
26
26
  this.uid = '';
27
27
  this.updatedAt = new Date();
@@ -14,7 +14,7 @@ export interface IInvite {
14
14
  internationalCode: string;
15
15
  name: string;
16
16
  phoneNumber: string;
17
- photoURL: string;
17
+ photoUrl: string;
18
18
  status: InviteStatusEnum;
19
19
  uid: string;
20
20
  updatedAt: Date;
@@ -10,7 +10,7 @@ export declare class NotificationEntity implements INotification {
10
10
  title: string;
11
11
  description: string;
12
12
  id: string;
13
- imageURL: string;
13
+ imageUrl: string;
14
14
  priority: NotificationPriorityEnum;
15
15
  sound: boolean;
16
16
  status: NotificationStatusEnum;
@@ -16,7 +16,7 @@ var NotificationEntity = /** @class */ (function () {
16
16
  this.title = '';
17
17
  this.description = '';
18
18
  this.id = '';
19
- this.imageURL = '';
19
+ this.imageUrl = '';
20
20
  this.priority = enums_1.NotificationPriorityEnum.HIGH;
21
21
  this.sound = true;
22
22
  this.status = enums_1.NotificationStatusEnum.DELIVERED;
@@ -9,7 +9,7 @@ export interface INotification {
9
9
  description: string;
10
10
  expirationTime: number;
11
11
  status: NotificationStatusEnum;
12
- imageURL: string;
12
+ imageUrl: string;
13
13
  sound: boolean;
14
14
  id: string;
15
15
  data: string;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.0.90",
3
+ "version": "1.0.92",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -9,9 +9,9 @@ export declare class PartnerEntity implements IPartner {
9
9
  email: string;
10
10
  fullName: string;
11
11
  id: string;
12
- imageURL?: string;
12
+ imageUrl?: string;
13
13
  internationalCode: string;
14
- logoURL?: string;
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.imageURL = '';
18
+ this.imageUrl = '';
19
19
  this.internationalCode = '';
20
- this.logoURL = '';
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
- imageURL?: string;
11
+ imageUrl?: string;
12
12
  internationalCode: string;
13
- logoURL?: string;
13
+ logoUrl?: string;
14
14
  name: string;
15
15
  paymentProvider: IPaymentProvider;
16
16
  paymentsMethods: IPaymentMethod[];
@@ -6,6 +6,7 @@ export declare class PlanEntity implements IPlan {
6
6
  createdAt: Date;
7
7
  features: PlanFeatureEntity[];
8
8
  id: string;
9
+ tags: string[];
9
10
  index: number;
10
11
  identifier: PlanIdentifierEnum;
11
12
  interval: number;
@@ -11,6 +11,7 @@ var PlanEntity = /** @class */ (function () {
11
11
  this.createdAt = new Date();
12
12
  this.features = [];
13
13
  this.id = '';
14
+ this.tags = [];
14
15
  this.index = 0;
15
16
  this.identifier = plans_identifier_enum_1.PlanIdentifierEnum.NATIGO;
16
17
  this.interval = 12;
@@ -9,6 +9,7 @@ export interface IPlan {
9
9
  index: number;
10
10
  interval: number;
11
11
  intervalType: IntervalTypeEnum;
12
+ tags: string[];
12
13
  name: string;
13
14
  price: number;
14
15
  updatedAt: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.0.90",
3
+ "version": "1.0.92",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",