cecon-interfaces 1.1.97 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.1.97",
3
+ "version": "1.2.01",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -2,9 +2,11 @@ import { ISubscriptionCustomerProfile } from '../interfaces/i-subscription-custo
2
2
  export declare class SubscriptionCustomerProfileEntity implements ISubscriptionCustomerProfile {
3
3
  doc: string | null;
4
4
  docType: string | null;
5
+ email: string | null;
5
6
  id: string | null;
6
7
  imageUrl: string | null;
7
8
  name: string | null;
9
+ phoneNumber: string | null;
8
10
  uid: string | null;
9
11
  constructor(data?: Partial<SubscriptionCustomerProfileEntity>);
10
12
  }
@@ -2,15 +2,17 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SubscriptionCustomerProfileEntity = void 0;
4
4
  var SubscriptionCustomerProfileEntity = /** @class */ (function () {
5
- // #endregion Properties (6)
5
+ // #endregion Properties (8)
6
6
  // #region Constructors (1)
7
7
  function SubscriptionCustomerProfileEntity(data) {
8
- // #region Properties (6)
8
+ // #region Properties (8)
9
9
  this.doc = '';
10
10
  this.docType = '';
11
+ this.email = '';
11
12
  this.id = '';
12
13
  this.imageUrl = '';
13
14
  this.name = '';
15
+ this.phoneNumber = '';
14
16
  this.uid = '';
15
17
  if (data) {
16
18
  for (var key in data) {
@@ -4,5 +4,7 @@ export interface ISubscriptionCustomerProfile {
4
4
  id: string | null;
5
5
  imageUrl: string | null;
6
6
  name: string | null;
7
+ email: string | null;
8
+ phoneNumber: string | null;
7
9
  uid: string | null;
8
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.1.97",
3
+ "version": "1.2.01",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",