hplx-feature-library 1.0.419 → 1.0.421
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/dist/PatientPopup/action/APIAction.d.ts +2 -2
- package/dist/PatientPopup/common/common.d.ts +0 -1
- package/dist/PatientPopup/components/Visits/index.d.ts +1 -2
- package/dist/PatientPopup/index.js +1 -1
- package/dist/PatientPopup/types/hplxAPITypes.d.ts +2 -2
- package/dist/{PatientPopupContainer-DnjqW4iM.js → PatientPopupContainer-BVIoIg2M.js} +4336 -4458
- package/dist/PatientPopupContainer-BlVCBLTP.cjs +36 -0
- package/dist/{PrintModal-BzjvUGub.cjs → PrintModal-BUM-ZosA.cjs} +8 -8
- package/dist/{PrintModal-B_epkIh4.js → PrintModal-DWpfMHKG.js} +786 -790
- package/dist/UserProfile/index.js +1 -1
- package/dist/{UserProfile-DZhYk6j1.js → UserProfile-Bg1i4cIR.js} +3 -3
- package/dist/{UserProfile-EyfmI8rE.cjs → UserProfile-cjYmF518.cjs} +1 -1
- package/dist/hplx-feature-library.css +1 -1
- package/dist/index.js +3 -3
- package/dist/print-pdf/index.js +1 -1
- package/dist/types/CommonTypes.d.ts +0 -10
- package/dist/types/PatientPopupTypes.d.ts +20 -25
- package/package.json +1 -1
- package/dist/PatientPopupContainer-Bbx4Ojw-.cjs +0 -36
|
@@ -49,8 +49,8 @@ export declare const deletePayment: (payment_id: string, type: string, order_id:
|
|
|
49
49
|
export declare const getAllBillsPaymentsByBillId: (bill_id: string, patient_role_id: string, fields: Array<string>, token_env: ENV_PARAMS) => Promise<GET_ALL_BILL_PAYMENT_RESPONSE>;
|
|
50
50
|
export declare const getAbhaInfo: (pr_id: string, pid: string, token_env: ENV_PARAMS) => Promise<GET_ABHA_USER_INFO_RESPONSE>;
|
|
51
51
|
export declare const getAbhaAddressByPhoneNum: (patient_role_id: string, patient_id: string, phone: string, token_env: ENV_PARAMS) => Promise<GET_ABHA_ADDRESS_RESPONSE>;
|
|
52
|
-
export declare const generateOTPByAbhaAddress: (abha_address:
|
|
53
|
-
export declare const verifyAbhaOTP: (
|
|
52
|
+
export declare const generateOTPByAbhaAddress: (abha_address: string, token_env: ENV_PARAMS) => Promise<GENERATE_OTP_BY_ABHA_ADDRESS_RESPONSE>;
|
|
53
|
+
export declare const verifyAbhaOTP: (abha_address: string, otp: string, patient_role_id: string, patient_id: string, token_env: ENV_PARAMS) => Promise<VERIFY_ABHA_OTP_RESPONSE>;
|
|
54
54
|
export declare const getAbhaConsent: (abha_address: string, token_env: ENV_PARAMS) => Promise<GET_ABHA_CONSENT_RESPONSE>;
|
|
55
55
|
export declare const getInsuranceListByPartnerName: (partnerName: string, token_env: ENV_PARAMS) => Promise<GET_INSURANCE_LIST_RESPONSE>;
|
|
56
56
|
export declare const getCustomTranslations: (token_env: ENV_PARAMS) => Promise<{
|
|
@@ -3,7 +3,6 @@ import { ENV_PARAMS, GET_PATIENT_DETAILS_RESPONSE } from '../../types/ApiRespons
|
|
|
3
3
|
export declare const handleCreateUpdateAppointment: (formData: any, isChecked: boolean, showToast: (title: string, description: string, type: string, duration: number) => void, patientDetails: GET_PATIENT_DETAILS_RESPONSE | undefined, patientIDs: PatientIDsState | undefined, _ppEventProps: PpEventPropsState, isPartnerAppointment: boolean, checkBillCreation: boolean, tokenEnv: ENV_PARAMS) => Promise<CREATE_APPOINTMENT_RESPONSE | UPDATE_APPOINTMENT_RESPONSE>;
|
|
4
4
|
export declare const handleCreateUpdateBill: (formData: any, showToast: (title: string, description: string, type: string, duration: number) => void, patientRoleID: string, bill_date: string, _ppEventProps: PpEventPropsState, serviceCat: string, tokenEnv: ENV_PARAMS) => Promise<{}>;
|
|
5
5
|
export declare const getPaymentModes: (billNumber: string, patientRoleID: string, tokenEnv: ENV_PARAMS) => Promise<{
|
|
6
|
-
order_created_on: string;
|
|
7
6
|
lab_owner_name: string;
|
|
8
7
|
paymentModes: string[];
|
|
9
8
|
} | null>;
|
|
@@ -10,7 +10,6 @@ interface VisitsProps {
|
|
|
10
10
|
doc_rid: string;
|
|
11
11
|
}) => Promise<any>;
|
|
12
12
|
updateVPPrefUsingDocPref: (preferences: any, index: number, doc_role_id: string, fromPrint: boolean) => Promise<void>;
|
|
13
|
-
setPrintPinnedTest?: any;
|
|
14
13
|
}
|
|
15
|
-
declare const Visits: ({ closePrintModal, setLatestMetaData, setInvestigationDropdown, setCustomTranslations, getVisitpadPreferenceHandler, updateVPPrefUsingDocPref,
|
|
14
|
+
declare const Visits: ({ closePrintModal, setLatestMetaData, setInvestigationDropdown, setCustomTranslations, getVisitpadPreferenceHandler, updateVPPrefUsingDocPref, }: VisitsProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
15
|
export default Visits;
|
|
@@ -20,8 +20,8 @@ export declare const DELETE_TRANSACTION = "/v1/transaction";
|
|
|
20
20
|
export declare const GET_BILLS_PAYMENTS_BILL_ID = "/v1/bills";
|
|
21
21
|
export declare const GET_ABHA_INFO = "/abha/v1/fetch";
|
|
22
22
|
export declare const GET_ABHA_ADDRESS = "/abha/v1/search";
|
|
23
|
-
export declare const GENERATE_OTP_BY_ABHA_ADDRESS = "/abha/
|
|
24
|
-
export declare const VERIFY_ABHA_OTP = "/abha/
|
|
23
|
+
export declare const GENERATE_OTP_BY_ABHA_ADDRESS = "/abha/v0.5/otp/generate";
|
|
24
|
+
export declare const VERIFY_ABHA_OTP = "/abha/v0.5/otp/verify";
|
|
25
25
|
export declare const GET_ABHA_CONSENT = "/v1/consent/request";
|
|
26
26
|
export declare const GET_INSURANCE_LIST = "v1/partner/insurance-companies";
|
|
27
27
|
export declare const VERIFY_INSURANCE = "v1/insurance/verify";
|