@posiwise/common-services 0.1.74 → 0.1.76

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/index.d.ts CHANGED
@@ -39,3 +39,4 @@ export * from './lib/logo-caching.service';
39
39
  export * from './lib/hopscotch.service';
40
40
  export * from './lib/brain.service';
41
41
  export * from './lib/brain-api-http.service';
42
+ export * from './lib/jquery.service';
@@ -17,6 +17,7 @@ export declare class GoogleAnalyticsService {
17
17
  private isGaAvailable;
18
18
  loadGScript(): Promise<void>;
19
19
  pushArgumentsGA(): void;
20
+ private addOneTimeTrackingListeners;
20
21
  subscribe(): void;
21
22
  /**
22
23
  * Emit google analytics event
@@ -0,0 +1,14 @@
1
+ /// <reference types="jquery" />
2
+ import * as i0 from "@angular/core";
3
+ declare global {
4
+ interface Window {
5
+ $: any;
6
+ jQuery: JQueryStatic;
7
+ }
8
+ }
9
+ export declare class JQueryService {
10
+ private loadPromise;
11
+ ensure(): Promise<JQueryStatic>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<JQueryService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<JQueryService>;
14
+ }
@@ -21,6 +21,7 @@ export declare class SubscriptionService {
21
21
  removeEnrolledSubscription(id: number, user_id: number): import("rxjs").Observable<any>;
22
22
  toggleAdmin(id: number, data: any): import("rxjs").Observable<any>;
23
23
  updateSubscriptionAPIKey(id: number): import("rxjs").Observable<any>;
24
+ refreshApiTokens(id: number): import("rxjs").Observable<any>;
24
25
  addFullLogo(id: number, data: any): import("rxjs").Observable<any>;
25
26
  addSquaredLogo(id: number, data: any): import("rxjs").Observable<any>;
26
27
  getCardDetails(subscriptionId: number): import("rxjs").Observable<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@posiwise/common-services",
3
- "version": "0.1.74",
3
+ "version": "0.1.76",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "17.3.11",
6
6
  "@angular/core": "17.3.11",