jconsumer-shared 0.0.2 → 1.0.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.
Files changed (128) hide show
  1. package/esm2022/lib/account-service.mjs +170 -0
  2. package/esm2022/lib/auth-service.mjs +163 -0
  3. package/esm2022/lib/booking-service.mjs +480 -0
  4. package/esm2022/lib/calendar/date-time/datetime-processor.service.mjs +448 -0
  5. package/esm2022/lib/common.service.mjs +188 -0
  6. package/esm2022/lib/confirm/confirm-box.component.mjs +159 -0
  7. package/esm2022/lib/confirm/confirm-box.module.mjs +62 -0
  8. package/esm2022/lib/consumer-service.mjs +780 -0
  9. package/esm2022/lib/currency-service.mjs +12 -0
  10. package/esm2022/lib/environment.service.mjs +23 -0
  11. package/esm2022/lib/error-message.module.mjs +23 -0
  12. package/esm2022/lib/error-message.service.mjs +22 -0
  13. package/esm2022/lib/file-service.mjs +235 -0
  14. package/esm2022/lib/form-message/field-error-display/field-error-display.component.mjs +21 -0
  15. package/esm2022/lib/form-message/form-message-display.module.mjs +35 -0
  16. package/esm2022/lib/form-message/form-message-display.service.mjs +44 -0
  17. package/esm2022/lib/form-message/form-success-display/form-success-display.component.mjs +18 -0
  18. package/esm2022/lib/group-storage.service.mjs +66 -0
  19. package/esm2022/lib/i8n.module.mjs +43 -0
  20. package/esm2022/lib/injector-resolver.mjs +28 -0
  21. package/esm2022/lib/local-storage.service.mjs +77 -0
  22. package/esm2022/lib/media-service.mjs +49 -0
  23. package/esm2022/lib/order.service.mjs +16 -1
  24. package/esm2022/lib/payment/modes/payment-modes.component.mjs +35 -0
  25. package/esm2022/lib/payment/modes/payment-modes.module.mjs +24 -0
  26. package/esm2022/lib/payment/payment.module.mjs +26 -0
  27. package/esm2022/lib/paytm.service.mjs +131 -0
  28. package/esm2022/lib/phone-input/phone-input.component.mjs +131 -0
  29. package/esm2022/lib/phone-input/phone-input.module.mjs +24 -0
  30. package/esm2022/lib/pipes/autolink/autolink.module.mjs +20 -0
  31. package/esm2022/lib/pipes/autolink/autolink.pipe.mjs +22 -0
  32. package/esm2022/lib/pipes/capitalize/capitalize.module.mjs +20 -0
  33. package/esm2022/lib/pipes/capitalize/capitalize.pipe.mjs +18 -0
  34. package/esm2022/lib/pipes/date-format/date-format.module.mjs +19 -0
  35. package/esm2022/lib/pipes/date-format/date-format.pipe.mjs +42 -0
  36. package/esm2022/lib/pipes/filter/filter.pipe.mjs +24 -0
  37. package/esm2022/lib/pipes/limit-to/limitTo.pipe.mjs +18 -0
  38. package/esm2022/lib/pipes/safe-html/safehtml.module.mjs +20 -0
  39. package/esm2022/lib/pipes/safe-html/safehtml.pipe.mjs +19 -0
  40. package/esm2022/lib/project-constants.mjs +310 -0
  41. package/esm2022/lib/project-messages.mjs +146 -0
  42. package/esm2022/lib/questionaire/edit/questionnaire.component.mjs +1427 -0
  43. package/esm2022/lib/questionaire/edit/questionnaire.module.mjs +78 -0
  44. package/esm2022/lib/questionaire/questionaire-service.mjs +92 -0
  45. package/esm2022/lib/razorpay.service.mjs +157 -0
  46. package/esm2022/lib/request-dialog/request-dialog.component.mjs +29 -0
  47. package/esm2022/lib/request-dialog/request-dialog.module.mjs +24 -0
  48. package/esm2022/lib/session-storage.service.mjs +57 -0
  49. package/esm2022/lib/shared-account.guard.mjs +41 -0
  50. package/esm2022/lib/shared-account.resolver.mjs +22 -0
  51. package/esm2022/lib/shared.service.mjs +107 -10
  52. package/esm2022/lib/showuploadfile/showuploadfile.component.mjs +61 -0
  53. package/esm2022/lib/showuploadfile/showuploadfile.module.mjs +28 -0
  54. package/esm2022/lib/spinner/loading-spinner.component.mjs +22 -0
  55. package/esm2022/lib/spinner/loading-spinner.module.mjs +28 -0
  56. package/esm2022/lib/storage.service.mjs +75 -0
  57. package/esm2022/lib/theme.service.mjs +30 -0
  58. package/esm2022/lib/timezone-converter.mjs +49 -0
  59. package/esm2022/lib/toast.service.mjs +2 -2
  60. package/esm2022/lib/twilio-service.mjs +466 -0
  61. package/esm2022/lib/word-processor.service.mjs +181 -0
  62. package/esm2022/public-api.mjs +58 -1
  63. package/fesm2022/jconsumer-shared.mjs +6989 -39
  64. package/fesm2022/jconsumer-shared.mjs.map +1 -1
  65. package/jconsumer-shared-1.0.0.tgz +0 -0
  66. package/lib/account-service.d.ts +48 -0
  67. package/lib/auth-service.d.ts +44 -0
  68. package/lib/booking-service.d.ts +101 -0
  69. package/lib/calendar/date-time/datetime-processor.service.d.ts +120 -0
  70. package/lib/common.service.d.ts +20 -0
  71. package/lib/confirm/confirm-box.component.d.ts +43 -0
  72. package/lib/confirm/confirm-box.module.d.ts +16 -0
  73. package/lib/consumer-service.d.ts +178 -0
  74. package/lib/currency-service.d.ts +4 -0
  75. package/lib/environment.service.d.ts +9 -0
  76. package/lib/error-message.module.d.ts +7 -0
  77. package/lib/error-message.service.d.ts +5 -0
  78. package/lib/file-service.d.ts +29 -0
  79. package/lib/form-message/field-error-display/field-error-display.component.d.ts +8 -0
  80. package/lib/form-message/form-message-display.module.d.ts +10 -0
  81. package/lib/form-message/form-message-display.service.d.ts +13 -0
  82. package/lib/form-message/form-success-display/form-success-display.component.d.ts +7 -0
  83. package/lib/group-storage.service.d.ts +14 -0
  84. package/lib/i8n.module.d.ts +12 -0
  85. package/lib/injector-resolver.d.ts +2 -0
  86. package/lib/local-storage.service.d.ts +34 -0
  87. package/lib/media-service.d.ts +9 -0
  88. package/lib/order.service.d.ts +4 -0
  89. package/lib/payment/modes/payment-modes.component.d.ts +15 -0
  90. package/lib/payment/modes/payment-modes.module.d.ts +9 -0
  91. package/lib/payment/payment.module.d.ts +7 -0
  92. package/lib/paytm.service.d.ts +13 -0
  93. package/lib/phone-input/phone-input.component.d.ts +27 -0
  94. package/lib/phone-input/phone-input.module.d.ts +9 -0
  95. package/lib/pipes/autolink/autolink.module.d.ts +8 -0
  96. package/lib/pipes/autolink/autolink.pipe.d.ts +7 -0
  97. package/lib/pipes/capitalize/capitalize.module.d.ts +8 -0
  98. package/lib/pipes/capitalize/capitalize.pipe.d.ts +7 -0
  99. package/lib/pipes/date-format/date-format.module.d.ts +8 -0
  100. package/lib/pipes/date-format/date-format.pipe.d.ts +12 -0
  101. package/lib/pipes/filter/filter.pipe.d.ts +7 -0
  102. package/lib/pipes/limit-to/limitTo.pipe.d.ts +7 -0
  103. package/lib/pipes/safe-html/safehtml.module.d.ts +8 -0
  104. package/lib/pipes/safe-html/safehtml.pipe.d.ts +10 -0
  105. package/lib/project-constants.d.ts +227 -0
  106. package/lib/project-messages.d.ts +1 -0
  107. package/lib/questionaire/edit/questionnaire.component.d.ts +154 -0
  108. package/lib/questionaire/edit/questionnaire.module.d.ts +20 -0
  109. package/lib/questionaire/questionaire-service.d.ts +28 -0
  110. package/lib/razorpay.service.d.ts +26 -0
  111. package/lib/request-dialog/request-dialog.component.d.ts +11 -0
  112. package/lib/request-dialog/request-dialog.module.d.ts +9 -0
  113. package/lib/session-storage.service.d.ts +26 -0
  114. package/lib/shared-account.guard.d.ts +11 -0
  115. package/lib/shared-account.resolver.d.ts +10 -0
  116. package/lib/shared.service.d.ts +43 -7
  117. package/lib/showuploadfile/showuploadfile.component.d.ts +21 -0
  118. package/lib/showuploadfile/showuploadfile.module.d.ts +9 -0
  119. package/lib/spinner/loading-spinner.component.d.ts +11 -0
  120. package/lib/spinner/loading-spinner.module.d.ts +9 -0
  121. package/lib/storage.service.d.ts +16 -0
  122. package/lib/theme.service.d.ts +10 -0
  123. package/lib/timezone-converter.d.ts +8 -0
  124. package/lib/twilio-service.d.ts +60 -0
  125. package/lib/word-processor.service.d.ts +80 -0
  126. package/package.json +1 -1
  127. package/public-api.d.ts +57 -0
  128. package/jconsumer-shared-0.0.2.tgz +0 -0
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./field-error-display/field-error-display.component";
3
+ import * as i2 from "./form-success-display/form-success-display.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/router";
6
+ export declare class FormMessageDisplayModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormMessageDisplayModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FormMessageDisplayModule, [typeof i1.FieldErrorDisplayComponent, typeof i2.FormSuccessDisplayComponent], [typeof i3.CommonModule, typeof i4.RouterModule], [typeof i1.FieldErrorDisplayComponent, typeof i2.FormSuccessDisplayComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<FormMessageDisplayModule>;
10
+ }
@@ -0,0 +1,13 @@
1
+ import { UntypedFormGroup } from '@angular/forms';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FormMessageDisplayService {
4
+ isFieldValid(form: any, field: string): any;
5
+ displayFieldCss(form: UntypedFormGroup, field: string): {
6
+ 'has-error': any;
7
+ 'has-feedback': any;
8
+ };
9
+ validateAllFormFields(formGroup: UntypedFormGroup): void;
10
+ getErrorMessage(form: any, field: string, errorMsgs: any): any;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormMessageDisplayService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<FormMessageDisplayService>;
13
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FormSuccessDisplayComponent {
3
+ successMsg: string | undefined;
4
+ displayMsg: boolean | undefined;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormSuccessDisplayComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormSuccessDisplayComponent, "app-form-success-display", never, { "successMsg": { "alias": "successMsg"; "required": false; }; "displayMsg": { "alias": "displayMsg"; "required": false; }; }, {}, never, never, false, never>;
7
+ }
@@ -0,0 +1,14 @@
1
+ import { SessionStorageService } from "./session-storage.service";
2
+ import { LocalStorageService } from "./local-storage.service";
3
+ import * as i0 from "@angular/core";
4
+ export declare class GroupStorageService {
5
+ private sessionStorageService;
6
+ private lStorageService;
7
+ constructor(sessionStorageService: SessionStorageService, lStorageService: LocalStorageService);
8
+ getGroup(): any;
9
+ setitemToGroupStorage(itemname: any, itemvalue: any): void;
10
+ getitemFromGroupStorage(itemname: string, type?: any): any;
11
+ removeitemFromGroupStorage(itemname: string | number): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<GroupStorageService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<GroupStorageService>;
14
+ }
@@ -0,0 +1,12 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { TranslateHttpLoader } from '@ngx-translate/http-loader';
3
+ import { SharedService } from './shared.service';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "@angular/common";
6
+ import * as i2 from "@ngx-translate/core";
7
+ export declare function HttpLoaderFactory(http: HttpClient, sharedService: SharedService): TranslateHttpLoader;
8
+ export declare class I8nModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<I8nModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<I8nModule, never, [typeof i1.CommonModule, typeof i2.TranslateModule], [typeof i2.TranslateModule]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<I8nModule>;
12
+ }
@@ -0,0 +1,2 @@
1
+ import { Route } from "@angular/router";
2
+ export declare function setupInjectionContextForLoadChildren(route: Route): Route;
@@ -0,0 +1,34 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class LocalStorageService {
3
+ dont_delete_localstorage: string[];
4
+ /**
5
+ * Default constructor
6
+ */
7
+ constructor();
8
+ /**
9
+ * function to get local storage item value
10
+ * @param itemname name of variable
11
+ */
12
+ getitemfromLocalStorage(itemname: string): any;
13
+ /**
14
+ * // function to set local storage item value
15
+ * @param itemname name of variable
16
+ * @param itemvalue value to set
17
+ */
18
+ setitemonLocalStorage(itemname: string, itemvalue: any): void;
19
+ /**
20
+ * Method to remove an item from local storage
21
+ * @param itemname item to be removed
22
+ */
23
+ removeitemfromLocalStorage(itemname: string): void;
24
+ /**
25
+ * Method to clear the local storage items except the ones contained in 'dont_delete_localstorage'
26
+ */
27
+ clearLocalstorage(): void;
28
+ /**
29
+ * Method to clear the local storage items
30
+ */
31
+ clearAll(): void;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<LocalStorageService, never>;
33
+ static ɵprov: i0.ɵɵInjectableDeclaration<LocalStorageService>;
34
+ }
@@ -0,0 +1,9 @@
1
+ import { ServiceMeta } from "./service-meta";
2
+ import * as i0 from "@angular/core";
3
+ export declare class MediaService {
4
+ private serviceMeta;
5
+ constructor(serviceMeta: ServiceMeta);
6
+ getMediaDevices(): Promise<unknown>;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<MediaService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<MediaService>;
9
+ }
@@ -28,6 +28,10 @@ export declare class OrderService {
28
28
  searchSpItem(accountId: any, value: any): import("rxjs").Observable<ArrayBuffer>;
29
29
  getQnrOrder(itemId: string): import("rxjs").Observable<ArrayBuffer>;
30
30
  submitQnrOrder(body: any, uuid: string): import("rxjs").Observable<ArrayBuffer>;
31
+ getShipmentDetails(orderId: any): import("rxjs").Observable<ArrayBuffer>;
32
+ getInvoiceByOrderYnwuuid(accountId: any, orderUid: any): import("rxjs").Observable<ArrayBuffer>;
33
+ getOrders(filter: any): import("rxjs").Observable<ArrayBuffer>;
34
+ getRequireOTPForAddingToCart(accountId: any): import("rxjs").Observable<ArrayBuffer>;
31
35
  static ɵfac: i0.ɵɵFactoryDeclaration<OrderService, never>;
32
36
  static ɵprov: i0.ɵɵInjectableDeclaration<OrderService>;
33
37
  }
@@ -0,0 +1,15 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { SharedService } from '../../shared.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class PaymentModesComponent implements OnInit {
5
+ private sharedService;
6
+ cashPay: any;
7
+ paymentModes: any;
8
+ modeSelected: EventEmitter<any>;
9
+ constructor(sharedService: SharedService);
10
+ ngOnInit(): void;
11
+ getImageSrc(mode: any): string;
12
+ paymentModeSelected(event: any): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaymentModesComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<PaymentModesComponent, "app-payment-modes", never, { "cashPay": { "alias": "cashPay"; "required": false; }; "paymentModes": { "alias": "paymentModes"; "required": false; }; }, { "modeSelected": "modeSelected"; }, never, never, false, never>;
15
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./payment-modes.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/material/radio";
5
+ export declare class PaymentModesModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaymentModesModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PaymentModesModule, [typeof i1.PaymentModesComponent], [typeof i2.CommonModule, typeof i3.MatRadioModule], [typeof i1.PaymentModesComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<PaymentModesModule>;
9
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ export declare class PaymentsModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaymentsModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PaymentsModule, never, [typeof i1.CommonModule], never>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<PaymentsModule>;
7
+ }
@@ -0,0 +1,13 @@
1
+ import { ServiceMeta } from "./service-meta";
2
+ import * as i0 from "@angular/core";
3
+ export declare class PaytmService {
4
+ private servicemeta;
5
+ paymentModes: string[];
6
+ constructor(servicemeta: ServiceMeta);
7
+ initializePayment(pData: any, accountId: any, referrer: any): void;
8
+ loadPayTMScript(pData: any, isfrom: any): HTMLScriptElement;
9
+ updateResult(payload: any, accountId?: any): import("rxjs").Observable<ArrayBuffer>;
10
+ updatePaytmPay(payload: any, accountId?: any): Promise<unknown>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaytmService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<PaytmService>;
13
+ }
@@ -0,0 +1,27 @@
1
+ import { AfterViewInit, ElementRef, EventEmitter } from '@angular/core';
2
+ import { ControlValueAccessor, NgModel } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class PhoneInputComponent implements AfterViewInit, ControlValueAccessor {
5
+ initialCountry: string;
6
+ preferredCountries: string[];
7
+ nationalMode: boolean;
8
+ separateDialCode: boolean;
9
+ otherOptions: any;
10
+ phoneInput: ElementRef;
11
+ ngModelRef: NgModel;
12
+ phoneNumberChange: EventEmitter<any>;
13
+ ngModelChange: EventEmitter<any>;
14
+ phoneNumber: any;
15
+ phoneInputInstance: any;
16
+ onChange: (value: any) => void;
17
+ onTouched: () => void;
18
+ ngAfterViewInit(): void;
19
+ initializePhoneInput(): void;
20
+ updatePhoneNumber(): void;
21
+ writeValue(value: any): void;
22
+ registerOnChange(fn: any): void;
23
+ registerOnTouched(fn: any): void;
24
+ validatePhoneNumber(): boolean;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<PhoneInputComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<PhoneInputComponent, "app-phone-input", never, { "initialCountry": { "alias": "initialCountry"; "required": false; }; "preferredCountries": { "alias": "preferredCountries"; "required": false; }; "nationalMode": { "alias": "nationalMode"; "required": false; }; "separateDialCode": { "alias": "separateDialCode"; "required": false; }; "otherOptions": { "alias": "otherOptions"; "required": false; }; }, { "phoneNumberChange": "phoneNumberChange"; "ngModelChange": "ngModelChange"; }, never, never, false, never>;
27
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./phone-input.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ export declare class PhoneInputModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<PhoneInputModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PhoneInputModule, [typeof i1.PhoneInputComponent], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.PhoneInputComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<PhoneInputModule>;
9
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./autolink.pipe";
3
+ import * as i2 from "@angular/common";
4
+ export declare class AutolinkPipeModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutolinkPipeModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AutolinkPipeModule, [typeof i1.AutolinkPipe], [typeof i2.CommonModule], [typeof i1.AutolinkPipe]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<AutolinkPipeModule>;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AutolinkPipe implements PipeTransform {
4
+ transform(value: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutolinkPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<AutolinkPipe, "autolink", false>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./capitalize.pipe";
3
+ import * as i2 from "@angular/common";
4
+ export declare class CapitalizeFirstPipeModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CapitalizeFirstPipeModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CapitalizeFirstPipeModule, [typeof i1.CapitalizeFirstPipe], [typeof i2.CommonModule], [typeof i1.CapitalizeFirstPipe]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<CapitalizeFirstPipeModule>;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CapitalizeFirstPipe implements PipeTransform {
4
+ transform(value: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CapitalizeFirstPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<CapitalizeFirstPipe, "capitalizeFirst", false>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./date-format.pipe";
3
+ import * as i2 from "@angular/common";
4
+ export declare class DateFormatPipeModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateFormatPipeModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DateFormatPipeModule, [typeof i1.DateFormatPipe], [typeof i2.CommonModule], [typeof i1.DateFormatPipe]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<DateFormatPipeModule>;
8
+ }
@@ -0,0 +1,12 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DateFormatPipe implements PipeTransform {
4
+ transform(value: any, args?: any): any;
5
+ transformTofilterDate(value: any): any;
6
+ transformTomciDate(value: any): any;
7
+ transformToDIsplayFormat(value: any): any;
8
+ transformToMonthlyDate(value: any): any;
9
+ transformToDateWithTime(value: any): any;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateFormatPipe, never>;
11
+ static ɵpipe: i0.ɵɵPipeDeclaration<DateFormatPipe, "dateFormat", false>;
12
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FilterPipe implements PipeTransform {
4
+ transform(items: any[], searchText: string): any[];
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<FilterPipe, "filter", false>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TruncatePipe implements PipeTransform {
4
+ transform(value: string, args: any[]): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TruncatePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<TruncatePipe, "limitTo", false>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./safehtml.pipe";
3
+ import * as i2 from "@angular/common";
4
+ export declare class SafeHtmlModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<SafeHtmlModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SafeHtmlModule, [typeof i1.SafeHtmlPipe], [typeof i2.CommonModule], [typeof i1.SafeHtmlPipe]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<SafeHtmlModule>;
8
+ }
@@ -0,0 +1,10 @@
1
+ import { PipeTransform } from "@angular/core";
2
+ import { DomSanitizer } from "@angular/platform-browser";
3
+ import * as i0 from "@angular/core";
4
+ export declare class SafeHtmlPipe implements PipeTransform {
5
+ private sanitized;
6
+ constructor(sanitized: DomSanitizer);
7
+ transform(value: any): import("@angular/platform-browser").SafeHtml;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SafeHtmlPipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<SafeHtmlPipe, "safeHtml", false>;
10
+ }
@@ -0,0 +1,227 @@
1
+ export declare const projectConstantsLocal: {
2
+ GOOGLEAPIKEY: string;
3
+ PERPAGING_LIMIT: number;
4
+ CONSUMER_DASHBOARD_REFRESH_TIME: number;
5
+ INBOX_REFRESH_TIME: number;
6
+ SMALL_DEVICE_BOUNDARY: number;
7
+ MY_DATE_FORMATS: {
8
+ parse: {
9
+ dateInput: string;
10
+ };
11
+ display: {
12
+ dateInput: string;
13
+ monthYearLabel: string;
14
+ dateA11yLabel: string;
15
+ monthYearA11yLabel: string;
16
+ };
17
+ };
18
+ TIMEOUT_DELAY: number;
19
+ TIMEOUT_DELAY_SMALL: number;
20
+ TIMEOUT_DELAY_LARGE: number;
21
+ TIMEOUT_DELAY_LARGE6: number;
22
+ TIMEOUT_DELAY_LARGE10: number;
23
+ TIMEOUT_DELAY_600: number;
24
+ TIMEOUT_MEETING: number;
25
+ DISPLAY_DATE_FORMAT: string;
26
+ DISPLAY_DATE_FORMAT_NEW: string;
27
+ PIPE_DISPLAY_DATE_FORMAT: string;
28
+ PIPE_DISPLAY_DATE_FORMAT_WITH_DAY: string;
29
+ PIPE_DISPLAY_TIME_FORMAT: string;
30
+ PIPE_DISPLAY_DATE_TIME_FORMAT: string;
31
+ POST_DATE_FORMAT: string;
32
+ POST_DATE_FORMAT_WITHTIME: string;
33
+ POST_DATE_FORMAT_WITHTIME_A: string;
34
+ DATE_FORMAT_WITH_MONTH: string;
35
+ DATE_FORMAT_STARTS_MONTH: string;
36
+ DATE_MM_DD_YY_FORMAT: string;
37
+ DATE_EE_MM_DD_YY_FORMAT: string;
38
+ DATE_MM_DD_YY_HH_MM_A_FORMAT: string;
39
+ DATE_FORMAT_WITH_TIME: string;
40
+ DATE_FORMAT_WITH_DATE_TIME: string;
41
+ DEFAULT_STARTTIME: string;
42
+ DEFAULT_ENDTIME: string;
43
+ IMAGE_FORMATS: string[];
44
+ IMAGE_MAX_SIZE: number;
45
+ FILE_MAX_SIZE: number;
46
+ MAP_BASE_URL: string;
47
+ SOCIAL_MEDIA_CONSUMER: ({
48
+ key: string;
49
+ iconClass: string;
50
+ iconImage: string;
51
+ displayName: string;
52
+ iconImg?: undefined;
53
+ } | {
54
+ key: string;
55
+ iconClass: string;
56
+ iconImg: string;
57
+ displayName: string;
58
+ iconImage?: undefined;
59
+ } | {
60
+ key: string;
61
+ iconClass: string;
62
+ displayName: string;
63
+ iconImage?: undefined;
64
+ iconImg?: undefined;
65
+ })[];
66
+ PRIVACY_PERMISSIONS: {
67
+ all: string;
68
+ customersOnly: string;
69
+ self: string;
70
+ };
71
+ HealthcareService: {
72
+ service_cap: string;
73
+ };
74
+ PersonalFitness: {
75
+ personalFitness: {
76
+ helphint: string;
77
+ };
78
+ };
79
+ TOOLTIP_CLS: string;
80
+ TOOLTIP_PRIVACYPHONE: string;
81
+ TOOLTIP_PRIVACYEMAIL: string;
82
+ TOOLTIP_MALE: string;
83
+ TOOLTIP_FEMALE: string;
84
+ VALIDATOR_BLANK_FALSE: RegExp;
85
+ VALIDATOR_BLANK: RegExp;
86
+ VALIDATOR_URL: RegExp;
87
+ VALIDATOR_NUMBERONLY: RegExp;
88
+ VALIDATOR_ONLYNUMBER: RegExp;
89
+ VALIDATOR_COUNTRYCODE: RegExp;
90
+ VALIDATOR_PHONENUMBERONLY: RegExp;
91
+ VALIDATOR_FLOAT: RegExp;
92
+ VALIDATOR_PHONENUMBERCOUNT10: RegExp;
93
+ VALIDATOR_CHARONLY: RegExp;
94
+ VALIDATOR_ALPHANUMERIC: RegExp;
95
+ VALIDATOR_ALPHANUMERIC_HYPHEN: RegExp;
96
+ VALIDATOR_ALPHANUMERIC_DOT: RegExp;
97
+ VALIDATOR_EMAIL: RegExp;
98
+ VALIDATOR_NUMBER_COMMA: RegExp;
99
+ VALIDATOR_MAX6: number;
100
+ VALIDATOR_MAX9: number;
101
+ VALIDATOR_MAX10: number;
102
+ VALIDATOR_MAX15_DEPT_CDE: number;
103
+ VALIDATOR_MAX100_DEPT_NME: number;
104
+ VALIDATOR_MAX50: number;
105
+ VALIDATOR_MAX100: number;
106
+ VALIDATOR_MAX150: number;
107
+ VALIDATOR_MAX200: number;
108
+ VALIDATOR_MAX250: number;
109
+ VALIDATOR_MAX500: number;
110
+ VALIDATOR_MAX_LAKH: number;
111
+ VALIDATOR_MOBILE_AND_EMAIL: RegExp;
112
+ VALIDATOR_SPACE_NOT_ALLOWED: RegExp;
113
+ QTY_MAX_VALUE: number;
114
+ PRICE_MAX_VALUE: number;
115
+ TIME_MAX_VALUE: number;
116
+ PERC_MAX_VALUE: number;
117
+ WAITLIST_CANCEL_RESON: ({
118
+ title: string;
119
+ value: string;
120
+ reasonkey: string;
121
+ type: number;
122
+ } | {
123
+ title: string;
124
+ value: string;
125
+ reasonkey: string;
126
+ type?: undefined;
127
+ })[];
128
+ DOMAINLIST_APIFETCH_HOURS: number;
129
+ COUPON_NOTES: {
130
+ COUPON_APPLIED: string;
131
+ SELF_PAY_REQUIRED: string;
132
+ NO_OTHER_COUPONS_ALLOWED: string;
133
+ EXCEEDS_APPLY_LIMIT: string;
134
+ ONLY_WHEN_FITST_CHECKIN: string;
135
+ ONLINE_CHECKIN_REQUIRED: string;
136
+ CANT_COMBINE_WITH_OTHER_COUPONES: string;
137
+ CONSUMER_CAN_NOT_APPLY_COUPON: string;
138
+ PROVIDER_COUPON_NOT_APPLICABLE_SERVICE: string;
139
+ PROVIDER_COUPON_NOT_APPLICABLE_USER: string;
140
+ PROVIDER_COUPON_NOT_APPLICABLE_GROUP: string;
141
+ PROVIDER_COUPON_NOT_APPLICABLE_ITEM: string;
142
+ PROVIDER_COUPON_NOT_APPLICABLE_CATALOG: string;
143
+ PROVIDER_COUPON_NOT_APPLICABLE_LABEL: string;
144
+ PROVIDER_COUPON_NOT_APPLICABLE_BOOKING_MODE: string;
145
+ PROVIDER_COUPON_NOT_APPLICABLE: string;
146
+ PROVIDER_COUPON_NOT_APPLICABLE_NOW: string;
147
+ JC_NOT_APPLICABLE_DAY: string;
148
+ ONLY_WHEN_FITST_CHECKIN_ON_PROVIDER: string;
149
+ MINIMUM_BILL_AMT_REQUIRED: string;
150
+ PROVIDER_COUPON_NOT_APPLICABLE_ORDER: string;
151
+ PROVIDER_COUPON_NOT_APPLICABLE_WAITLIST: string;
152
+ PROVIDER_COUPON_NOT_APPLICABLE_APPOINTMENT: string;
153
+ EXCEEDS_PRO_COUP_APPLY_LIMIT: string;
154
+ };
155
+ CHECK_IN_STATUSES: {
156
+ Done: string;
157
+ Started: string;
158
+ Arrived: string;
159
+ CheckedIn: string;
160
+ Cancelled: string;
161
+ Completed: string;
162
+ Rejected: string;
163
+ Confirmed: string;
164
+ Rescheduled: string;
165
+ PrepaymentPending: string;
166
+ Requested: string;
167
+ RequestRejected: string;
168
+ Failed: string;
169
+ };
170
+ MONTH: {
171
+ value: string;
172
+ name: string;
173
+ }[];
174
+ REGION_LANGUAGE: string;
175
+ TIME_ZONE_REGION: string;
176
+ KEY: string;
177
+ FILETYPES_UPLOAD: string[];
178
+ CALLING_MODES: {
179
+ WHATSAPP: string;
180
+ HANGOUTS: string;
181
+ SKYPE: string;
182
+ BOTIM: string;
183
+ IMO: string;
184
+ };
185
+ WAITLIST_CANCEL_REASON: ({
186
+ title: string;
187
+ value: string;
188
+ reasonkey: string;
189
+ type?: undefined;
190
+ } | {
191
+ title: string;
192
+ value: string;
193
+ reasonkey: string;
194
+ type: number;
195
+ })[];
196
+ BOOKING_STATUS_CLASS: {
197
+ value: string;
198
+ class: string;
199
+ }[];
200
+ ITEM_TYPES: {
201
+ displayName: string;
202
+ value: string;
203
+ }[];
204
+ INBOX_MSG_TYPES: {
205
+ CHAT: string;
206
+ ENQUIRY: string;
207
+ ALERT: string;
208
+ BOOKINGS: string;
209
+ };
210
+ WALLET_NOTES: {
211
+ APP_SIGNUP: string;
212
+ };
213
+ PAYTMLOCAL_URL: string;
214
+ PAYTM_URL: string;
215
+ SUPPORTEDLANGUAGES: {
216
+ value: string;
217
+ viewValue: string;
218
+ }[];
219
+ INDIAN_STATES: {
220
+ name: string;
221
+ displayName: string;
222
+ }[];
223
+ RELATIONSHIPS: {
224
+ name: string;
225
+ displayName: string;
226
+ }[];
227
+ };
@@ -0,0 +1 @@
1
+ export declare const Messages: any;