@esolve/ng-esolve-connect 0.121.0 → 0.122.0

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.
@@ -3,5 +3,6 @@ export declare class EsolveLocationContactInfo {
3
3
  cellnumber: string;
4
4
  email: string;
5
5
  fax: string;
6
- constructor(telnumber: string[], cellnumber: string, email: string, fax: string);
6
+ whatsapp_number?: string | undefined;
7
+ constructor(telnumber: string[], cellnumber: string, email: string, fax: string, whatsapp_number?: string | undefined);
7
8
  }
@@ -1,11 +1,11 @@
1
+ import { EsolveCustomFields } from '../../shared/custom-fields';
1
2
  import { EsolveLocationRecord } from '../interfaces';
3
+ import { EsolveLocationImageSize } from '../types';
2
4
  import { EsolveLocationAddress } from './esolve-location-address.model';
3
5
  import { EsolveLocationContactInfo } from './esolve-location-contact-info.model';
6
+ import { EsolveLocationGEO } from './esolve-location-geo.model';
4
7
  import { EsolveLocationPOBoxAddress } from './esolve-location-pobox-address.model';
5
8
  import { EsolveLocationTradingTimes } from './esolve-location-trading-times.model';
6
- import { EsolveLocationGEO } from './esolve-location-geo.model';
7
- import { EsolveCustomFields } from '../../shared/custom-fields';
8
- import { EsolveLocationImageSize } from '../types';
9
9
  export declare class EsolveLocation<T extends EsolveCustomFields = EsolveCustomFields> {
10
10
  id: number;
11
11
  identifier: string;
@@ -28,6 +28,7 @@ export interface EsolveLocationRecord<T extends EsolveCustomFields = EsolveCusto
28
28
  branch_telnumber_2: string;
29
29
  branch_telnumber_3: string;
30
30
  branch_cellnumber: string;
31
+ branch_whatsapp_number: string;
31
32
  branch_fax: string;
32
33
  branch_email: string;
33
34
  monday_open_time: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esolve/ng-esolve-connect",
3
- "version": "0.121.0",
3
+ "version": "0.122.0",
4
4
  "homepage": "https://www.esolve.co.za/",
5
5
  "description": "An Angular library that speaks to an eSolve instance's API",
6
6
  "peerDependencies": {