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.
- package/esm2022/lib/account-service.mjs +170 -0
- package/esm2022/lib/auth-service.mjs +163 -0
- package/esm2022/lib/booking-service.mjs +480 -0
- package/esm2022/lib/calendar/date-time/datetime-processor.service.mjs +448 -0
- package/esm2022/lib/common.service.mjs +188 -0
- package/esm2022/lib/confirm/confirm-box.component.mjs +159 -0
- package/esm2022/lib/confirm/confirm-box.module.mjs +62 -0
- package/esm2022/lib/consumer-service.mjs +780 -0
- package/esm2022/lib/currency-service.mjs +12 -0
- package/esm2022/lib/environment.service.mjs +23 -0
- package/esm2022/lib/error-message.module.mjs +23 -0
- package/esm2022/lib/error-message.service.mjs +22 -0
- package/esm2022/lib/file-service.mjs +235 -0
- package/esm2022/lib/form-message/field-error-display/field-error-display.component.mjs +21 -0
- package/esm2022/lib/form-message/form-message-display.module.mjs +35 -0
- package/esm2022/lib/form-message/form-message-display.service.mjs +44 -0
- package/esm2022/lib/form-message/form-success-display/form-success-display.component.mjs +18 -0
- package/esm2022/lib/group-storage.service.mjs +66 -0
- package/esm2022/lib/i8n.module.mjs +43 -0
- package/esm2022/lib/injector-resolver.mjs +28 -0
- package/esm2022/lib/local-storage.service.mjs +77 -0
- package/esm2022/lib/media-service.mjs +49 -0
- package/esm2022/lib/order.service.mjs +16 -1
- package/esm2022/lib/payment/modes/payment-modes.component.mjs +35 -0
- package/esm2022/lib/payment/modes/payment-modes.module.mjs +24 -0
- package/esm2022/lib/payment/payment.module.mjs +26 -0
- package/esm2022/lib/paytm.service.mjs +131 -0
- package/esm2022/lib/phone-input/phone-input.component.mjs +131 -0
- package/esm2022/lib/phone-input/phone-input.module.mjs +24 -0
- package/esm2022/lib/pipes/autolink/autolink.module.mjs +20 -0
- package/esm2022/lib/pipes/autolink/autolink.pipe.mjs +22 -0
- package/esm2022/lib/pipes/capitalize/capitalize.module.mjs +20 -0
- package/esm2022/lib/pipes/capitalize/capitalize.pipe.mjs +18 -0
- package/esm2022/lib/pipes/date-format/date-format.module.mjs +19 -0
- package/esm2022/lib/pipes/date-format/date-format.pipe.mjs +42 -0
- package/esm2022/lib/pipes/filter/filter.pipe.mjs +24 -0
- package/esm2022/lib/pipes/limit-to/limitTo.pipe.mjs +18 -0
- package/esm2022/lib/pipes/safe-html/safehtml.module.mjs +20 -0
- package/esm2022/lib/pipes/safe-html/safehtml.pipe.mjs +19 -0
- package/esm2022/lib/project-constants.mjs +310 -0
- package/esm2022/lib/project-messages.mjs +146 -0
- package/esm2022/lib/questionaire/edit/questionnaire.component.mjs +1427 -0
- package/esm2022/lib/questionaire/edit/questionnaire.module.mjs +78 -0
- package/esm2022/lib/questionaire/questionaire-service.mjs +92 -0
- package/esm2022/lib/razorpay.service.mjs +157 -0
- package/esm2022/lib/request-dialog/request-dialog.component.mjs +29 -0
- package/esm2022/lib/request-dialog/request-dialog.module.mjs +24 -0
- package/esm2022/lib/session-storage.service.mjs +57 -0
- package/esm2022/lib/shared-account.guard.mjs +41 -0
- package/esm2022/lib/shared-account.resolver.mjs +22 -0
- package/esm2022/lib/shared.service.mjs +107 -10
- package/esm2022/lib/showuploadfile/showuploadfile.component.mjs +61 -0
- package/esm2022/lib/showuploadfile/showuploadfile.module.mjs +28 -0
- package/esm2022/lib/spinner/loading-spinner.component.mjs +22 -0
- package/esm2022/lib/spinner/loading-spinner.module.mjs +28 -0
- package/esm2022/lib/storage.service.mjs +75 -0
- package/esm2022/lib/theme.service.mjs +30 -0
- package/esm2022/lib/timezone-converter.mjs +49 -0
- package/esm2022/lib/toast.service.mjs +2 -2
- package/esm2022/lib/twilio-service.mjs +466 -0
- package/esm2022/lib/word-processor.service.mjs +181 -0
- package/esm2022/public-api.mjs +58 -1
- package/fesm2022/jconsumer-shared.mjs +6989 -39
- package/fesm2022/jconsumer-shared.mjs.map +1 -1
- package/jconsumer-shared-1.0.0.tgz +0 -0
- package/lib/account-service.d.ts +48 -0
- package/lib/auth-service.d.ts +44 -0
- package/lib/booking-service.d.ts +101 -0
- package/lib/calendar/date-time/datetime-processor.service.d.ts +120 -0
- package/lib/common.service.d.ts +20 -0
- package/lib/confirm/confirm-box.component.d.ts +43 -0
- package/lib/confirm/confirm-box.module.d.ts +16 -0
- package/lib/consumer-service.d.ts +178 -0
- package/lib/currency-service.d.ts +4 -0
- package/lib/environment.service.d.ts +9 -0
- package/lib/error-message.module.d.ts +7 -0
- package/lib/error-message.service.d.ts +5 -0
- package/lib/file-service.d.ts +29 -0
- package/lib/form-message/field-error-display/field-error-display.component.d.ts +8 -0
- package/lib/form-message/form-message-display.module.d.ts +10 -0
- package/lib/form-message/form-message-display.service.d.ts +13 -0
- package/lib/form-message/form-success-display/form-success-display.component.d.ts +7 -0
- package/lib/group-storage.service.d.ts +14 -0
- package/lib/i8n.module.d.ts +12 -0
- package/lib/injector-resolver.d.ts +2 -0
- package/lib/local-storage.service.d.ts +34 -0
- package/lib/media-service.d.ts +9 -0
- package/lib/order.service.d.ts +4 -0
- package/lib/payment/modes/payment-modes.component.d.ts +15 -0
- package/lib/payment/modes/payment-modes.module.d.ts +9 -0
- package/lib/payment/payment.module.d.ts +7 -0
- package/lib/paytm.service.d.ts +13 -0
- package/lib/phone-input/phone-input.component.d.ts +27 -0
- package/lib/phone-input/phone-input.module.d.ts +9 -0
- package/lib/pipes/autolink/autolink.module.d.ts +8 -0
- package/lib/pipes/autolink/autolink.pipe.d.ts +7 -0
- package/lib/pipes/capitalize/capitalize.module.d.ts +8 -0
- package/lib/pipes/capitalize/capitalize.pipe.d.ts +7 -0
- package/lib/pipes/date-format/date-format.module.d.ts +8 -0
- package/lib/pipes/date-format/date-format.pipe.d.ts +12 -0
- package/lib/pipes/filter/filter.pipe.d.ts +7 -0
- package/lib/pipes/limit-to/limitTo.pipe.d.ts +7 -0
- package/lib/pipes/safe-html/safehtml.module.d.ts +8 -0
- package/lib/pipes/safe-html/safehtml.pipe.d.ts +10 -0
- package/lib/project-constants.d.ts +227 -0
- package/lib/project-messages.d.ts +1 -0
- package/lib/questionaire/edit/questionnaire.component.d.ts +154 -0
- package/lib/questionaire/edit/questionnaire.module.d.ts +20 -0
- package/lib/questionaire/questionaire-service.d.ts +28 -0
- package/lib/razorpay.service.d.ts +26 -0
- package/lib/request-dialog/request-dialog.component.d.ts +11 -0
- package/lib/request-dialog/request-dialog.module.d.ts +9 -0
- package/lib/session-storage.service.d.ts +26 -0
- package/lib/shared-account.guard.d.ts +11 -0
- package/lib/shared-account.resolver.d.ts +10 -0
- package/lib/shared.service.d.ts +43 -7
- package/lib/showuploadfile/showuploadfile.component.d.ts +21 -0
- package/lib/showuploadfile/showuploadfile.module.d.ts +9 -0
- package/lib/spinner/loading-spinner.component.d.ts +11 -0
- package/lib/spinner/loading-spinner.module.d.ts +9 -0
- package/lib/storage.service.d.ts +16 -0
- package/lib/theme.service.d.ts +10 -0
- package/lib/timezone-converter.d.ts +8 -0
- package/lib/twilio-service.d.ts +60 -0
- package/lib/word-processor.service.d.ts +80 -0
- package/package.json +1 -1
- package/public-api.d.ts +57 -0
- package/jconsumer-shared-0.0.2.tgz +0 -0
|
Binary file
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { Meta, Title } from '@angular/platform-browser';
|
|
2
|
+
import { SharedService } from './shared.service';
|
|
3
|
+
import { ServiceMeta } from './service-meta';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AccountService {
|
|
6
|
+
private titleService;
|
|
7
|
+
private metaService;
|
|
8
|
+
private serviceMeta;
|
|
9
|
+
private sharedService;
|
|
10
|
+
accountConfig: any;
|
|
11
|
+
activeLocation: any;
|
|
12
|
+
accountLocations: any;
|
|
13
|
+
activeStore: any;
|
|
14
|
+
stores: any;
|
|
15
|
+
constructor(titleService: Title, metaService: Meta, serviceMeta: ServiceMeta, sharedService: SharedService);
|
|
16
|
+
setActiveStore(store: any): void;
|
|
17
|
+
getActiveStore(): any;
|
|
18
|
+
getAccountConfig(): any;
|
|
19
|
+
setStores(stores: any): void;
|
|
20
|
+
getStores(): any;
|
|
21
|
+
setActiveLocation(location: any): void;
|
|
22
|
+
getActiveLocation(): any;
|
|
23
|
+
setAccountLocations(locations: any): void;
|
|
24
|
+
getAccountLocations(): any;
|
|
25
|
+
/**
|
|
26
|
+
* Method which returns the Jsons
|
|
27
|
+
* @param accountUniqueId The Unique Id which represents S3 Bucket for a particular Account
|
|
28
|
+
* @param listOfUrlTypes Type of the Url eg. services, businessProfile etc.
|
|
29
|
+
* @returns { "services": 'services.json', "businessProfile": businessprofile.json}
|
|
30
|
+
*/
|
|
31
|
+
getJsonsbyTypes(accountUniqueId: any, userId: any, listOfUrlTypes: any): import("rxjs").Observable<ArrayBuffer>;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @param jsonStr_Obj
|
|
35
|
+
*/
|
|
36
|
+
getJson(jsonStr_Obj: any): any;
|
|
37
|
+
setIcon(url: any): void;
|
|
38
|
+
getAccountInfoById(): Promise<unknown>;
|
|
39
|
+
getAccountInfoPromise(): Promise<unknown>;
|
|
40
|
+
getAccountConfiguration(): Promise<unknown>;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
*/
|
|
44
|
+
getUIAccountConfig(): import("rxjs").Observable<ArrayBuffer>;
|
|
45
|
+
getUserInformation(uniqueId: any, userId: any): Promise<unknown>;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccountService, never>;
|
|
47
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AccountService>;
|
|
48
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { Observable } from "rxjs";
|
|
2
|
+
import { ServiceMeta } from "./service-meta";
|
|
3
|
+
import { LocalStorageService } from "./local-storage.service";
|
|
4
|
+
import { SessionStorageService } from "./session-storage.service";
|
|
5
|
+
import { GroupStorageService } from "./group-storage.service";
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class AuthService {
|
|
8
|
+
private serviceMeta;
|
|
9
|
+
private lStorageService;
|
|
10
|
+
private sessionStorageService;
|
|
11
|
+
private groupService;
|
|
12
|
+
private subject;
|
|
13
|
+
getMessage(): Observable<any>;
|
|
14
|
+
sendMessage(message: any): void;
|
|
15
|
+
constructor(serviceMeta: ServiceMeta, lStorageService: LocalStorageService, sessionStorageService: SessionStorageService, groupService: GroupStorageService);
|
|
16
|
+
login(post_data: any): Promise<unknown>;
|
|
17
|
+
/**
|
|
18
|
+
* Set Credentials and User Type (provider/consumer) in Local Storage
|
|
19
|
+
* @param data
|
|
20
|
+
* @param post_data
|
|
21
|
+
* @param mod
|
|
22
|
+
*/
|
|
23
|
+
setLoginData(data: any, post_data: any): void;
|
|
24
|
+
signUp(post_data: any): Promise<unknown>;
|
|
25
|
+
doLogout(): Promise<void>;
|
|
26
|
+
signUpConsumer(body: any): Observable<ArrayBuffer>;
|
|
27
|
+
loginConsumer(body: any): Observable<ArrayBuffer>;
|
|
28
|
+
consumerLogout(): Observable<ArrayBuffer>;
|
|
29
|
+
sendConsumerOTP(body: any): Observable<ArrayBuffer>;
|
|
30
|
+
verifyConsumerOTP(otp: string): Observable<ArrayBuffer>;
|
|
31
|
+
verifyNewPhoneOTP(otp: string, body: any, origin?: string): Observable<ArrayBuffer>;
|
|
32
|
+
verifyNewPhone(phonenumber: string, origin?: string, countryCode?: string): Observable<ArrayBuffer>;
|
|
33
|
+
getProviderConsumer(): Observable<ArrayBuffer>;
|
|
34
|
+
/**
|
|
35
|
+
* To check whether user logged in or not
|
|
36
|
+
* @returns true/false
|
|
37
|
+
*/
|
|
38
|
+
goThroughLogin(): Promise<unknown>;
|
|
39
|
+
shareOTPforForm(uuid: string): Observable<ArrayBuffer>;
|
|
40
|
+
verifyOTPforForm(otp: string, uuid: string): Observable<ArrayBuffer>;
|
|
41
|
+
isLoggedIn(): boolean;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
|
|
43
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
|
44
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { ServiceMeta } from "./service-meta";
|
|
2
|
+
import { MatDialog } from "@angular/material/dialog";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BookingService {
|
|
5
|
+
private serviceMeta;
|
|
6
|
+
private dialog;
|
|
7
|
+
services: any;
|
|
8
|
+
activeServices: any;
|
|
9
|
+
selectedApptsTime: any;
|
|
10
|
+
bookingDate: any;
|
|
11
|
+
constructor(serviceMeta: ServiceMeta, dialog: MatDialog);
|
|
12
|
+
getServices(): any;
|
|
13
|
+
setServices(services: any): void;
|
|
14
|
+
setActiveServices(services: any): void;
|
|
15
|
+
getActiveServices(): any;
|
|
16
|
+
setBookingDate(bookingDate: any): void;
|
|
17
|
+
getBookingDate(): any;
|
|
18
|
+
getTimings(): any;
|
|
19
|
+
setTimings(selectedApptsTime: any): void;
|
|
20
|
+
doCancelWaitlist(waitlist: any, type: any, theme_data: any, cthis?: any): Promise<unknown>;
|
|
21
|
+
cancelWaitlist(id: any, provider_id: any, type: any, result?: any): Promise<unknown>;
|
|
22
|
+
deleteWaitlist(id: any, params: any, type: any, result?: any): import("rxjs").Observable<{}>;
|
|
23
|
+
/**
|
|
24
|
+
* Cancel a Booking (Waitlist/Appointment/Order)
|
|
25
|
+
* @param bookingId Booking Id
|
|
26
|
+
* @param params accountId
|
|
27
|
+
* @param type order/checkin/appointment
|
|
28
|
+
* @returns true if success
|
|
29
|
+
*/
|
|
30
|
+
cancelBookingAPI(bookingId: any, params: any, type: any): import("rxjs").Observable<ArrayBuffer>;
|
|
31
|
+
/**
|
|
32
|
+
* To get all the checkin services of a particular location
|
|
33
|
+
* @param locationId location id
|
|
34
|
+
* @returns Promise of services
|
|
35
|
+
*/
|
|
36
|
+
getCheckinServices(locationId: any): Promise<unknown>;
|
|
37
|
+
/**
|
|
38
|
+
* To get all the appointent services of a particular location
|
|
39
|
+
* @param locid location id
|
|
40
|
+
* @returns services
|
|
41
|
+
*/
|
|
42
|
+
getServicesforAppontmntByLocationId(locid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
43
|
+
/**
|
|
44
|
+
* To get all the appointment services of a particular location
|
|
45
|
+
* @param locationId location id
|
|
46
|
+
* @returns Promise of services
|
|
47
|
+
*/
|
|
48
|
+
getAppointmentServices(locationId: any): Promise<unknown>;
|
|
49
|
+
sortBookings(bookings: any): void;
|
|
50
|
+
getAppointmentRequests(accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
51
|
+
getWaitlist(params: any): import("rxjs").Observable<ArrayBuffer>;
|
|
52
|
+
getFutureWaitlist(filter?: {}): import("rxjs").Observable<ArrayBuffer>;
|
|
53
|
+
getAppointmentToday(params?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
54
|
+
getAppointmentFuture(params?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
55
|
+
getWaitlistHistory(params?: {}): import("rxjs").Observable<ArrayBuffer>;
|
|
56
|
+
getAppointmentHistory(params?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
57
|
+
getAppointmentHistoryCount(): import("rxjs").Observable<ArrayBuffer>;
|
|
58
|
+
getAppointmentAttachmentsByUuid(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
59
|
+
getConsumerAppointmentAttachmentsByUuid(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
60
|
+
getWaitlistAttachmentsByUuid(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
61
|
+
getConsumerWaitlistAttachmentsByUuid(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
62
|
+
removeBooking(id: string, bookingType: string, accountID: any, data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
63
|
+
getVirtualServiceInput(selectedService: any, callingModes: any, commObj: any): {};
|
|
64
|
+
getServicesByDepartment(selectedDeptId: any): any;
|
|
65
|
+
getServicesByUser(selectedUserId: any): any;
|
|
66
|
+
getGlobalServices(deptId?: any): any[];
|
|
67
|
+
getAppointmentByConsumerUUID(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
68
|
+
getServicesByLocationId(locid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
69
|
+
getLocationsByServiceId(serviceId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
70
|
+
getWaitlistServices(locationId: any): Promise<unknown>;
|
|
71
|
+
getAvailableDatessByLocationService(locid: any, servid: any, accountid?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
72
|
+
getServicebyLocationId(locationId: any): Promise<unknown>;
|
|
73
|
+
/**
|
|
74
|
+
* returns Available dates for calendar
|
|
75
|
+
* @param locid location id
|
|
76
|
+
* @param servid service id
|
|
77
|
+
* @param accountid account id
|
|
78
|
+
*/
|
|
79
|
+
getSchedulesbyLocationandServiceIdavailability(locid: any, servid: any, accountid: any): Promise<unknown>;
|
|
80
|
+
getQueuesbyLocationandServiceIdavailability(locid: any, servid: any, accountid: any): any[];
|
|
81
|
+
getQueuesbyLocationandServiceIdAvailableDates(locid: any, servid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
82
|
+
validateVirtualCallInfo(callingModes: any, selectedService: any, commObj: any): boolean;
|
|
83
|
+
getRescheduledInfo(bookingId: any, accountId: any, bookingMode: any): Promise<unknown>;
|
|
84
|
+
addApptAdvancePayment(param: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
85
|
+
addWaitlistAdvancePayment(param: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
86
|
+
getCheckinByConsumerUUID(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
87
|
+
getSlotsByLocationServiceandDate(locid: any, servid: any, pdate: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @param locid Location Id
|
|
91
|
+
* @returns services of location
|
|
92
|
+
*/
|
|
93
|
+
getQueuesbyLocationServiceAndDate(locid: any, servid: any, pdate: any, accountid: any): Promise<unknown>;
|
|
94
|
+
getQueuesbyLocationandServiceId(locid: any, servid: any, pdate?: any, accountid?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
95
|
+
getConvenientFeeOfProvider(provid: any, data?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
96
|
+
getApptCoupons(servId: any, locId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
97
|
+
getCheckinCoupons(servId: any, locId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
98
|
+
getServiceById(serviceId: any, type: any): any;
|
|
99
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BookingService, never>;
|
|
100
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BookingService>;
|
|
101
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import moment from 'moment';
|
|
2
|
+
import { ServiceMeta } from "../../service-meta";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DateTimeProcessor {
|
|
5
|
+
private servicemeta;
|
|
6
|
+
REGION_LANGUAGE: string;
|
|
7
|
+
TIME_ZONE_REGION: string;
|
|
8
|
+
myweekdaysSchedule: string[];
|
|
9
|
+
constructor(servicemeta: ServiceMeta);
|
|
10
|
+
/**
|
|
11
|
+
*
|
|
12
|
+
* @param date1
|
|
13
|
+
* @param date2
|
|
14
|
+
* @returns difference between the two dates
|
|
15
|
+
*/
|
|
16
|
+
getdaysdifffromDates(date1: any, date2: any): {
|
|
17
|
+
hours: number;
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @param time
|
|
22
|
+
* @returns
|
|
23
|
+
*/
|
|
24
|
+
getTimeAsNumberOfMinutes(time: string): number;
|
|
25
|
+
/**
|
|
26
|
+
* convert year-month-day to day-monthname-year
|
|
27
|
+
* @param psdate
|
|
28
|
+
* @param params
|
|
29
|
+
* @returns
|
|
30
|
+
*/
|
|
31
|
+
formatDate(psdate: string, params?: any): string | string[];
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @param i
|
|
35
|
+
* @returns
|
|
36
|
+
*/
|
|
37
|
+
addZero(i: any): any;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @param time
|
|
41
|
+
* @param secreq
|
|
42
|
+
* @returns
|
|
43
|
+
*/
|
|
44
|
+
convert24HourtoAmPm(time: string, secreq?: any): string;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @param mins
|
|
48
|
+
* @returns
|
|
49
|
+
*/
|
|
50
|
+
providerConvertMinutesToHourMinute(mins: any): string;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @param mins
|
|
54
|
+
* @returns
|
|
55
|
+
*/
|
|
56
|
+
convertMinutesToHourMinute(mins: any): string;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @param mins
|
|
60
|
+
* @returns
|
|
61
|
+
*/
|
|
62
|
+
convertMinutesToHourMinuteForCheckin(mins: any): string;
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @param time
|
|
66
|
+
* @returns
|
|
67
|
+
*/
|
|
68
|
+
getDateFromTimeString(time: string): Date;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @param dt
|
|
72
|
+
* @param mod
|
|
73
|
+
* @returns
|
|
74
|
+
*/
|
|
75
|
+
stringtoDate(dt: string, mod: string): string;
|
|
76
|
+
/**
|
|
77
|
+
*
|
|
78
|
+
* @param date
|
|
79
|
+
* @returns
|
|
80
|
+
*/
|
|
81
|
+
transformToYMDFormat(date: any): string;
|
|
82
|
+
/**
|
|
83
|
+
*
|
|
84
|
+
* @param dateStr
|
|
85
|
+
* @returns
|
|
86
|
+
*/
|
|
87
|
+
formatDateDisplay(dateStr: string): string;
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @returns
|
|
91
|
+
*/
|
|
92
|
+
getMoment(): typeof moment;
|
|
93
|
+
/**
|
|
94
|
+
*
|
|
95
|
+
* @param num
|
|
96
|
+
* @returns
|
|
97
|
+
*/
|
|
98
|
+
getDay(num: any): string;
|
|
99
|
+
/**
|
|
100
|
+
* Convert Date to String in YYYYMMDD format
|
|
101
|
+
* @param inputDate input date
|
|
102
|
+
* @returns string
|
|
103
|
+
*/
|
|
104
|
+
getStringFromDate_YYYYMMDD(inputDate: any): string;
|
|
105
|
+
getLocaleDateFromServer(serverDate: any): string;
|
|
106
|
+
getToday(serverDate: any): string;
|
|
107
|
+
isFutureDate(serverDate: any, appmtDate: any): boolean;
|
|
108
|
+
getMomentDate(pdate: any): string;
|
|
109
|
+
/**
|
|
110
|
+
*
|
|
111
|
+
* @param date
|
|
112
|
+
* @returns
|
|
113
|
+
*/
|
|
114
|
+
transformToMMDDYYYY_(date: any): string;
|
|
115
|
+
getCurrentUTCdatetimestring(): string;
|
|
116
|
+
getSystemDate(): import("rxjs").Observable<ArrayBuffer>;
|
|
117
|
+
AMHourto24(date: any, time12: any): moment.Moment;
|
|
118
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateTimeProcessor, never>;
|
|
119
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DateTimeProcessor>;
|
|
120
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { SharedService } from './shared.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CommonService {
|
|
4
|
+
private sharedService;
|
|
5
|
+
constructor(sharedService: SharedService);
|
|
6
|
+
groupBy(xs: any, key: any): any;
|
|
7
|
+
isValid(evt: any): boolean;
|
|
8
|
+
isNumericwithoutdot(evt: any): boolean;
|
|
9
|
+
isNumber(evt: any): boolean;
|
|
10
|
+
isNumeric(evt: any): boolean;
|
|
11
|
+
isNumericSign(evt: any): boolean;
|
|
12
|
+
showlogoicon(logo: any): any;
|
|
13
|
+
getDistanceFromLatLonInKm(lat1: any, lon1: any, lat2: any, lon2: any): number;
|
|
14
|
+
deg2rad(deg: any): number;
|
|
15
|
+
getCurrentLocation(): Promise<unknown>;
|
|
16
|
+
sortVfields(dataF: any): any;
|
|
17
|
+
b64toBlobforSign(b64Data: any): Blob;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommonService, never>;
|
|
19
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CommonService>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
4
|
+
import { FormMessageDisplayService } from '../form-message/form-message-display.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ConfirmBoxComponent implements OnInit {
|
|
7
|
+
dialogRef: MatDialogRef<ConfirmBoxComponent>;
|
|
8
|
+
data: any;
|
|
9
|
+
private formBuilder;
|
|
10
|
+
fed_service: FormMessageDisplayService;
|
|
11
|
+
ok_btn_cap: any;
|
|
12
|
+
cancel_btn_cap: any;
|
|
13
|
+
newDateFormat: string;
|
|
14
|
+
send_message_cap: any;
|
|
15
|
+
select_reason_cap: any;
|
|
16
|
+
messgae_cap: any;
|
|
17
|
+
amForm: FormGroup;
|
|
18
|
+
api_error: any;
|
|
19
|
+
api_success: any;
|
|
20
|
+
cancel_reasonobj: any;
|
|
21
|
+
cancel_reason: string;
|
|
22
|
+
cancel_reason_key: string;
|
|
23
|
+
default_message_arr: any;
|
|
24
|
+
def_msg: string;
|
|
25
|
+
deptName: any;
|
|
26
|
+
showError: boolean;
|
|
27
|
+
okCancelBtn: boolean;
|
|
28
|
+
cancel_reasons: any;
|
|
29
|
+
rep_username: string;
|
|
30
|
+
rep_service: string;
|
|
31
|
+
rep_date: string;
|
|
32
|
+
rep_time: string;
|
|
33
|
+
rep_provname: string;
|
|
34
|
+
constructor(dialogRef: MatDialogRef<ConfirmBoxComponent>, data: any, formBuilder: FormBuilder, fed_service: FormMessageDisplayService);
|
|
35
|
+
ngOnInit(): void;
|
|
36
|
+
onClick(data: any): void;
|
|
37
|
+
selectReason(cancel_reason: any): void;
|
|
38
|
+
replacedMessage(): string;
|
|
39
|
+
resetApiErrors(): void;
|
|
40
|
+
onSubmit(form_data: any): void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmBoxComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmBoxComponent, "app-confirm-box", never, {}, {}, never, never, false, never>;
|
|
43
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./confirm-box.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/dialog";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "primeng/accordion";
|
|
7
|
+
import * as i6 from "@angular/material/chips";
|
|
8
|
+
import * as i7 from "@angular/material/checkbox";
|
|
9
|
+
import * as i8 from "@angular/material/button";
|
|
10
|
+
import * as i9 from "../form-message/form-message-display.module";
|
|
11
|
+
import * as i10 from "primeng/inputtextarea";
|
|
12
|
+
export declare class ConfirmBoxModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmBoxModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ConfirmBoxModule, [typeof i1.ConfirmBoxComponent], [typeof i2.CommonModule, typeof i3.MatDialogModule, typeof i4.FormsModule, typeof i5.AccordionModule, typeof i6.MatChipsModule, typeof i7.MatCheckboxModule, typeof i8.MatButtonModule, typeof i9.FormMessageDisplayModule, typeof i4.ReactiveFormsModule, typeof i10.InputTextareaModule], [typeof i1.ConfirmBoxComponent]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ConfirmBoxModule>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import { ServiceMeta } from "./service-meta";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ConsumerService {
|
|
4
|
+
private servicemeta;
|
|
5
|
+
orderdata: any;
|
|
6
|
+
constructor(servicemeta: ServiceMeta);
|
|
7
|
+
setOrderDetails(data: any): void;
|
|
8
|
+
getOrderDetails(): any;
|
|
9
|
+
getProviderConsumer(): import("rxjs").Observable<ArrayBuffer>;
|
|
10
|
+
updateSPConsumer(post_data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
11
|
+
getFavProvider(): import("rxjs").Observable<ArrayBuffer>;
|
|
12
|
+
removeProviderfromFavourite(accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
13
|
+
doDeleteFavProvider(fav: any, cthis?: any): Promise<unknown>;
|
|
14
|
+
deleteFavProvider(id: any): Promise<unknown>;
|
|
15
|
+
addProvidertoFavourite(accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
16
|
+
changePasswordProfile(data: any, origin?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
17
|
+
consumertelegramChat(countryCode: any, loginId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
18
|
+
getConsumerRateService(params: any, type: any): import("rxjs").Observable<ArrayBuffer>;
|
|
19
|
+
updateConsumerRateService(params: any, data: any, type: any): import("rxjs").Observable<ArrayBuffer>;
|
|
20
|
+
postConsumerRateService(params: any, data: any, type: any): import("rxjs").Observable<ArrayBuffer>;
|
|
21
|
+
getWaitlist(params: any): import("rxjs").Observable<ArrayBuffer>;
|
|
22
|
+
getWaitlistFuture(params?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
23
|
+
addConsumerWaitlistAttachment(accountid: any, uuid: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
24
|
+
addWaitlistAttachment(accountid: any, uuid: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
25
|
+
getConsumerWaitlistAttachmentsByUuid(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
26
|
+
getWaitlistToday(): import("rxjs").Observable<ArrayBuffer>;
|
|
27
|
+
getAppointmentFuture(params?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
28
|
+
getApptlist(params: any): import("rxjs").Observable<ArrayBuffer>;
|
|
29
|
+
getAppointmentToday(params?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
30
|
+
addConsumerAppointmentAttachment(accountid: any, uuid: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
31
|
+
addAppointmentAttachment(accountid: any, uuid: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
32
|
+
getConsumerAppointmentAttachmentsByUuid(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
33
|
+
getConsumerFutOrders(): import("rxjs").Observable<ArrayBuffer>;
|
|
34
|
+
getConsumerOrders(params: any): import("rxjs").Observable<ArrayBuffer>;
|
|
35
|
+
getConsumerDonations(params?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
36
|
+
getConsumerWaitlistMeetingDetails(uuid: any, mode: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
37
|
+
getConsumerApptMeetingDetails(uuid: any, mode: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
38
|
+
getProfile(consumerId: any): Promise<unknown>;
|
|
39
|
+
getTelegramstat(): import("rxjs").Observable<ArrayBuffer>;
|
|
40
|
+
enableTelegramNoti(status: any): import("rxjs").Observable<ArrayBuffer>;
|
|
41
|
+
getMyProfile(id: any): import("rxjs").Observable<ArrayBuffer>;
|
|
42
|
+
updateProfile(data: any, origin: any): import("rxjs").Observable<ArrayBuffer>;
|
|
43
|
+
updateSPConsumerProfile(data: any, origin: any): import("rxjs").Observable<ArrayBuffer>;
|
|
44
|
+
addMembers(data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
45
|
+
editMember(data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
46
|
+
getConsumerPayments(filter?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
47
|
+
getOrderByConsumerUUID(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
48
|
+
getCheckinByConsumerUUID(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
49
|
+
getAppointmentByConsumerUUID(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
50
|
+
getConsumerDonationByUid(uid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
51
|
+
getConsumerPaymentById(id: any): import("rxjs").Observable<ArrayBuffer>;
|
|
52
|
+
getMembers(providerCustomerID: any): import("rxjs").Observable<ArrayBuffer>;
|
|
53
|
+
deleteMember(memberId: any, parentID: any): import("rxjs").Observable<ArrayBuffer>;
|
|
54
|
+
getWaitlistHistory(params?: {}): import("rxjs").Observable<ArrayBuffer>;
|
|
55
|
+
getHistoryWaitlistCount(params?: {}): import("rxjs").Observable<ArrayBuffer>;
|
|
56
|
+
getWaitlistBill(params: any, uuid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
57
|
+
getPaymentDetail(params: any, uuid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
58
|
+
getAppointmentHistory(params?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
59
|
+
getAppointmentHistoryCount(): import("rxjs").Observable<ArrayBuffer>;
|
|
60
|
+
getOrderHistory(params?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
61
|
+
getPaymentModesofProvider(provid: any, serviceId: any, purpose?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
62
|
+
consumerPayment(data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
63
|
+
consumerPayment_invocie(data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
64
|
+
applyCoupon(jCouponCode: any, checkinId: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
65
|
+
getConsumerCommunications(provider_id: any): import("rxjs").Observable<ArrayBuffer>;
|
|
66
|
+
getWtlistHistory(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
67
|
+
getWaitlistQuestionnaireByUid(uid: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
68
|
+
getApptHistory(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
69
|
+
getApptQuestionnaireByUid(uid: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
70
|
+
getAppointmentDetail(uuid: any, params: any): import("rxjs").Observable<ArrayBuffer>;
|
|
71
|
+
getJaldeeCashandJcredit(): import("rxjs").Observable<ArrayBuffer>;
|
|
72
|
+
getRemainingPrepaymentAmount(jcash?: any, jcredit?: any, advanceamount?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
73
|
+
PayByJaldeewallet(postData: any): import("rxjs").Observable<ArrayBuffer>;
|
|
74
|
+
getWaitlistDetail(uuid: any, params: any): import("rxjs").Observable<ArrayBuffer>;
|
|
75
|
+
generateDonationLink(accountid: any, data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
76
|
+
addCustomerDonation(postData: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
77
|
+
getDonationLinkUuid(uuid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
78
|
+
addConsumerWaitlistNote(accountid: any, uuid: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
79
|
+
getDonationQuestionnaire(serviceId: any, account_id: any): import("rxjs").Observable<ArrayBuffer>;
|
|
80
|
+
submitDonationQuestionnaire(uuid: any, body: any, account_id: any): import("rxjs").Observable<ArrayBuffer>;
|
|
81
|
+
consumerDonationQnrUploadStatusUpdate(uid: any, account: any, data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
82
|
+
validateConsumerQuestionnaire(body: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
83
|
+
validateConsumerOneTimeQuestionnaire(body: any, accountId: any, providerConsumerId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
84
|
+
getProviderCustomerOnetimeInfo(providerConsumerID: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
85
|
+
submitCustomerOnetimeInfo(body: any, userId: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
86
|
+
submitConsumerApptServiceOption(body: any, uuid: any, account: any): import("rxjs").Observable<ArrayBuffer>;
|
|
87
|
+
rescheduleConsumerApptmnt(accountid: any, postData: any): import("rxjs").Observable<ArrayBuffer>;
|
|
88
|
+
addCustomerAppointment(accountid: any, postData: any): import("rxjs").Observable<ArrayBuffer>;
|
|
89
|
+
getConvenientFeeOfProvider(provid: any, data?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
90
|
+
addApptAdvancePayment(param: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
91
|
+
getConsumerQuestionnaire(serviceId: any, consumerId: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
92
|
+
getServiceoptionsAppt(servid: any, account: any): import("rxjs").Observable<ArrayBuffer>;
|
|
93
|
+
getAppointmentReschedulePricelist(serviceid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
94
|
+
getSlotsByLocationServiceandDate(locid: any, servid: any, pdate: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
95
|
+
getAvailableDatessByLocationService(locid: any, servid: any, accountid?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
96
|
+
getServicesforAppontmntByLocationId(locid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
97
|
+
rescheduleConsumerWaitlist(accountid: any, postData: any): import("rxjs").Observable<ArrayBuffer>;
|
|
98
|
+
getQueuesbyLocationandServiceIdAvailableDates(locid: any, servid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
99
|
+
addCheckin(accountid: any, postData: any): import("rxjs").Observable<ArrayBuffer>;
|
|
100
|
+
submitConsumerWaitlistServiceOption(body: any, uuid: any, account: any): import("rxjs").Observable<ArrayBuffer>;
|
|
101
|
+
getPartysizeDetails(domain: any, subdomain: any): import("rxjs").Observable<ArrayBuffer>;
|
|
102
|
+
addWaitlistAdvancePayment(param: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
103
|
+
getServiceoptionsWaitlist(servid: any, account: any): import("rxjs").Observable<ArrayBuffer>;
|
|
104
|
+
getQueuesbyLocationandServiceId(locid: any, servid: any, pdate?: any, accountid?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
105
|
+
getServicesByLocationId(locid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
106
|
+
getOrderQuestionnaireByUid(uid: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
107
|
+
getStoreContact(accountid?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
108
|
+
getConsumerCatalogs(accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
109
|
+
getAvailableDatesForHome(catalogid: any, accountid?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
110
|
+
getAvailableDatesForPickup(catalogid: any, accountid?: any): import("rxjs").Observable<ArrayBuffer>;
|
|
111
|
+
updateConsumeraddress(data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
112
|
+
CreateConsumerOrder(accountid: any, postData: any): import("rxjs").Observable<ArrayBuffer>;
|
|
113
|
+
CreateConsumerEmail(uuid: any, accountid: any, post_Data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
114
|
+
getConsumerOrderQuestionnaire(catelogId: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
115
|
+
getConsumeraddress(): import("rxjs").Observable<ArrayBuffer>;
|
|
116
|
+
getCartdetails(accountid: any, data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
117
|
+
getUserApptTime(prov_arr: any): import("rxjs").Observable<ArrayBuffer>;
|
|
118
|
+
getOrderSettings(accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
119
|
+
addConsumertoProviderNote(message: any, filter: any): import("rxjs").Observable<ArrayBuffer>;
|
|
120
|
+
telegramChat(countryCode: any, phNumber: any): import("rxjs").Observable<ArrayBuffer>;
|
|
121
|
+
getMembership(accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
122
|
+
addConsumerAppointmentNote(accountid: any, uuid: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
123
|
+
addConsumerOrderNote(accountid: any, uuid: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
124
|
+
addConsumerOrderNotecomm(accountid: any, uuid: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
125
|
+
addConsumerDonationNote(accountid: any, uuid: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
126
|
+
deactiveAccount(user: any): import("rxjs").Observable<ArrayBuffer>;
|
|
127
|
+
getCatalogById(catalogs: any, catalogId: any): any;
|
|
128
|
+
getCatalogItemById(catalog: any, catalogItemId: any): any;
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @param orders
|
|
132
|
+
* @param item
|
|
133
|
+
* @returns
|
|
134
|
+
*/
|
|
135
|
+
getItemQty(orders: any, itemId: any): number;
|
|
136
|
+
getApptRequestList(accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
137
|
+
postAppointmentRequest(accountid: any, postData: any): import("rxjs").Observable<ArrayBuffer>;
|
|
138
|
+
getPrescriptions(): import("rxjs").Observable<ArrayBuffer>;
|
|
139
|
+
submitItemOptions(itemId: any, orderId: any, accountId: any, postData: any): import("rxjs").Observable<ArrayBuffer>;
|
|
140
|
+
getServiceoptionsOrder(itemId: any, account: any): import("rxjs").Observable<ArrayBuffer>;
|
|
141
|
+
removeProfilePhoto(consumerId: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
142
|
+
addProfilePhoto(customerId: number, post_data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
143
|
+
getDocument(): import("rxjs").Observable<ArrayBuffer>;
|
|
144
|
+
getItemsListWithItemOptions(catalogId: any, account: any): import("rxjs").Observable<ArrayBuffer>;
|
|
145
|
+
videoaudioS3Upload(url: any, file: any): import("rxjs").Observable<ArrayBuffer>;
|
|
146
|
+
getApptCoupons(servId: any, locId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
147
|
+
getCheckinCoupons(servId: any, locId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
148
|
+
getCheckinbyEncId(encId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
149
|
+
getApptbyEncId(encId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
150
|
+
getOrderbyEncId(encId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
151
|
+
getSorderbyEncId(encId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
152
|
+
getIvrQuestionnaireByUid(uid: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
153
|
+
getivrByConsumerUUID(uuid: any, accountid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
154
|
+
Paymentlinkcheck(uuid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
155
|
+
getIdTerminologies(domain: any, subDomain: any): import("rxjs").Observable<ArrayBuffer>;
|
|
156
|
+
linkPayment_invoic(data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
157
|
+
linkSoPayment_invoic(data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
158
|
+
getInvoiceDetailsById(accId: any, uuid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
159
|
+
getSoInvoiceDetailsById(accId: any, uuid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
160
|
+
uploadFilesToS3(data: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
161
|
+
videoaudioS3UploadStatusUpdate(status: any, id: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
162
|
+
getApptBill(uuid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
163
|
+
getWaitBill(uuid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
164
|
+
getInvoiceDetailsByuuid(uuid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
165
|
+
getInvoice(accountId: any, invoiceUid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
166
|
+
getConsentForm(id: any): import("rxjs").Observable<ArrayBuffer>;
|
|
167
|
+
getconsentFormQuestionaire(uuid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
168
|
+
submitQuestionnaire(body: any, uuid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
169
|
+
verifySign(uuid: any, body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
170
|
+
verifyQnr(uuid: any): import("rxjs").Observable<ArrayBuffer>;
|
|
171
|
+
isProviderReady(post_data: any): import("rxjs").Observable<ArrayBuffer>;
|
|
172
|
+
updateAnalytics(body: any): import("rxjs").Observable<ArrayBuffer>;
|
|
173
|
+
getUsersByLocation(locationId: any, uniqueId: any, listOfUrls: any): import("rxjs").Observable<ArrayBuffer>;
|
|
174
|
+
getInbox(usertype: any): import("rxjs").Observable<ArrayBuffer>;
|
|
175
|
+
readProviderMessages(providerId: any, messageIds: any, accountId: any): import("rxjs").Observable<ArrayBuffer>;
|
|
176
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConsumerService, never>;
|
|
177
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ConsumerService>;
|
|
178
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class EnvironmentService {
|
|
3
|
+
constructor();
|
|
4
|
+
private environment;
|
|
5
|
+
setEnvironment(environment: any): void;
|
|
6
|
+
getEnvironment(key: string): any;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnvironmentService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EnvironmentService>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
export declare class ErrrorMessageModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrrorMessageModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ErrrorMessageModule, never, [typeof i1.CommonModule], never>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ErrrorMessageModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { SharedService } from './shared.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FileService {
|
|
4
|
+
private sharedService;
|
|
5
|
+
IMAGE_FORMATS: string[];
|
|
6
|
+
FILETYPES_UPLOAD: string[];
|
|
7
|
+
cdnPath: string;
|
|
8
|
+
imageSize: number;
|
|
9
|
+
FILE_MAX_SIZE: number;
|
|
10
|
+
constructor(sharedService: SharedService);
|
|
11
|
+
/**
|
|
12
|
+
* Method returns supported formats of files which has to be uploaded
|
|
13
|
+
* @param source image/file
|
|
14
|
+
* @returns available formats
|
|
15
|
+
*/
|
|
16
|
+
getSupportedFormats(source: any): any[];
|
|
17
|
+
/**
|
|
18
|
+
* Method will return the maximum uploadable size of a file/image
|
|
19
|
+
* @returns Maximum size of the image to upload
|
|
20
|
+
*/
|
|
21
|
+
getMaximumImageSize(): number;
|
|
22
|
+
imageValidation(file: any, source?: any): any;
|
|
23
|
+
getImage(url: any, fileObj: any): any;
|
|
24
|
+
getImageByType(type: any): string;
|
|
25
|
+
filesSelected(event: any, selectedMessage: any): Promise<unknown>;
|
|
26
|
+
filessSelected(event: any, selectedMessage: any): Promise<unknown>;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileService, never>;
|
|
28
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FileService>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FieldErrorDisplayComponent {
|
|
3
|
+
errorMsg: string | undefined;
|
|
4
|
+
displayError: boolean | undefined;
|
|
5
|
+
errorMsgs: string | undefined;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldErrorDisplayComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldErrorDisplayComponent, "app-field-error-display", never, { "errorMsg": { "alias": "errorMsg"; "required": false; }; "displayError": { "alias": "displayError"; "required": false; }; "errorMsgs": { "alias": "errorMsgs"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|