cecon-interfaces 1.0.90 → 1.0.91

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.91",
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[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.0.90",
3
+ "version": "1.0.91",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",