@posiwise/common-services 0.2.25 → 0.2.26
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/package.json
CHANGED
|
@@ -74,6 +74,7 @@ declare abstract class BaseHttpService {
|
|
|
74
74
|
private readonly toast;
|
|
75
75
|
abstract getConfig(): void;
|
|
76
76
|
constructor(http: HttpClient, injector: Injector);
|
|
77
|
+
private buildUrl;
|
|
77
78
|
get<T>(url: any): Observable<any>;
|
|
78
79
|
getWithParams<T>(url: any, params: any): Observable<any>;
|
|
79
80
|
post<T>(url: any, params?: {}): Observable<any>;
|
|
@@ -448,9 +449,6 @@ declare class SecureTokenStorageService {
|
|
|
448
449
|
* Get cookie value
|
|
449
450
|
*/
|
|
450
451
|
private getCookieValue;
|
|
451
|
-
/**
|
|
452
|
-
* Delete cookie
|
|
453
|
-
*/
|
|
454
452
|
private deleteCookie;
|
|
455
453
|
/**
|
|
456
454
|
* Initialize tokens from storage on service startup
|
|
@@ -815,6 +813,7 @@ declare class AhoyService {
|
|
|
815
813
|
private readonly ahoy;
|
|
816
814
|
private readonly toast;
|
|
817
815
|
constructor(http: HttpClient, injector: Injector);
|
|
816
|
+
private buildUrl;
|
|
818
817
|
getAhoyEvents(params: RequestParams, service: any, paging: Paging): Observable<AhoyEventResponse>;
|
|
819
818
|
getAhoyMessages(params: RequestParams, service: any, paging: Paging): Observable<AhoyMessageResponse>;
|
|
820
819
|
getAhoyVisits(params: RequestParams, service: any, paging: Paging): Observable<AhoyVisitResponse>;
|