jconsumer-shared 1.1.2 → 1.1.4

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.
Binary file
@@ -151,6 +151,9 @@ export declare class ConsumerService {
151
151
  getSorderbyEncId(encId: any): import("rxjs").Observable<ArrayBuffer>;
152
152
  getIvrQuestionnaireByUid(uid: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
153
153
  getivrByConsumerUUID(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
154
+ getAppointmentById(appmntId: any): import("rxjs").Observable<ArrayBuffer>;
155
+ getProviderOrderDetailById(uuid: any): import("rxjs").Observable<ArrayBuffer>;
156
+ getProviderWaitlistDetailById(uuid: any): import("rxjs").Observable<ArrayBuffer>;
154
157
  Paymentlinkcheck(uuid: any): import("rxjs").Observable<ArrayBuffer>;
155
158
  getIdTerminologies(domain: any, subDomain: any): import("rxjs").Observable<ArrayBuffer>;
156
159
  linkPayment(data: any): import("rxjs").Observable<ArrayBuffer>;
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./filter.pipe";
3
+ import * as i2 from "@angular/common";
4
+ export declare class FilterPipeModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterPipeModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FilterPipeModule, [typeof i1.FilterPipe], [typeof i2.CommonModule], [typeof i1.FilterPipe]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<FilterPipeModule>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./limitTo.pipe";
3
+ import * as i2 from "@angular/common";
4
+ export declare class TruncateModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TruncateModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TruncateModule, [typeof i1.TruncatePipe], [typeof i2.CommonModule], [typeof i1.TruncatePipe]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<TruncateModule>;
8
+ }
@@ -97,6 +97,7 @@ export declare class QuestionnaireComponent implements OnInit, OnChanges {
97
97
  serviceTotalPrice: number;
98
98
  editableItem: any;
99
99
  cdnPath: string;
100
+ customID: any;
100
101
  constructor(activated_route: ActivatedRoute, wordProcessor: WordProcessor, lStorageService: LocalStorageService, dateProcessor: DateTimeProcessor, dialog: MatDialog, fileService: FileService, commonService: CommonService, questionaireService: QuestionaireService, errorService: ErrorMessagingService, toastService: ToastService, sharedService: SharedService, galleryService: JGalleryService, location: Location);
101
102
  ngOnDestroy(): void;
102
103
  ngOnChanges(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jconsumer-shared",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0"
package/public-api.d.ts CHANGED
@@ -27,8 +27,11 @@ export * from './lib/project-messages';
27
27
  export * from './lib/razorpay.service';
28
28
  export * from './lib/paytm.service';
29
29
  export * from './lib/pipes/safe-html/safehtml.pipe';
30
+ export * from './lib/pipes/safe-html/safehtml.module';
30
31
  export * from './lib/pipes/limit-to/limitTo.pipe';
32
+ export * from './lib/pipes/limit-to/limitTo.module';
31
33
  export * from './lib/pipes/filter/filter.pipe';
34
+ export * from './lib/pipes/filter/filter.module';
32
35
  export * from './lib/pipes/capitalize/capitalize.pipe';
33
36
  export * from './lib/pipes/capitalize/capitalize.module';
34
37
  export * from './lib/pipes/autolink/autolink.pipe';
Binary file