@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.
- package/esm2022/lib/locations/classes/esolve-location-contact-info.model.mjs +3 -2
- package/esm2022/lib/locations/classes/esolve-location.model.mjs +7 -4
- package/esm2022/lib/locations/interfaces/esolve-location-record.interface.mjs +1 -1
- package/fesm2022/esolve-ng-esolve-connect.mjs +6 -2
- package/fesm2022/esolve-ng-esolve-connect.mjs.map +1 -1
- package/lib/locations/classes/esolve-location-contact-info.model.d.ts +2 -1
- package/lib/locations/classes/esolve-location.model.d.ts +3 -3
- package/lib/locations/interfaces/esolve-location-record.interface.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3,5 +3,6 @@ export declare class EsolveLocationContactInfo {
|
|
|
3
3
|
cellnumber: string;
|
|
4
4
|
email: string;
|
|
5
5
|
fax: string;
|
|
6
|
-
|
|
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;
|