@medipass/web-sdk 11.62.0 → 11.62.2-fix-hp-save-application.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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [11.62.1](https://github.com/medipass/medipass-web-sdk/compare/@medipass/web-sdk@11.62.0...@medipass/web-sdk@11.62.1) (2023-04-15)
7
+
8
+ **Note:** Version bump only for package @medipass/web-sdk
9
+
10
+
11
+
12
+
13
+
6
14
  # [11.62.0](https://github.com/medipass/medipass-web-sdk/compare/@medipass/web-sdk@11.61.0...@medipass/web-sdk@11.62.0) (2023-04-15)
7
15
 
8
16
 
@@ -154,7 +154,7 @@ export declare const updateBusinessPaymentMethod: (businessId: string, paymentMe
154
154
  * @returns {Object} The device data
155
155
  */
156
156
  export declare const updateBusinessPatientPaymentMethod: (businessId: string, patientId: string, paymentMethodId: string, body: Record<string, any>, opts?: MedipassRequestOpts) => Promise<Record<string, any>>;
157
- export declare const getPaymentGatewayError: (sessionResponse: Record<string, any>) => any;
157
+ export declare const getPaymentGatewayError: (sessionResponse: Record<string, any>) => "The payment card details you entered were invalid, please review the payment card credentials and try again." | "There are issues connecting to the payment gateway. Please refresh the page and try again." | null;
158
158
  /**
159
159
  * Get a business nonce
160
160
  * @param {Object} body - Request body
@@ -199,12 +199,12 @@ export interface HealthPointRegistrationApplicationResponse {
199
199
  export interface UpdateHealthPointRegistrationApplicationBody {
200
200
  isMidChecked: boolean;
201
201
  isMidEnabled: boolean;
202
- isMidCheckedForSettlement: boolean;
202
+ isMidCheckedForSettlement?: boolean;
203
203
  staffs: {
204
204
  _id: string;
205
205
  providerSet: {
206
206
  _id: string;
207
- isCertificationMatch: boolean;
207
+ isCertificationMatch?: boolean;
208
208
  }[];
209
209
  }[];
210
210
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medipass/web-sdk",
3
- "version": "11.62.0",
3
+ "version": "11.62.2-fix-hp-save-application.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "devDependencies": {
48
48
  "@babel/plugin-transform-runtime": "7.8.3",
49
- "@medipass/utils": "^11.77.5-feature-healthpoint-registration-application-endpoints.3",
49
+ "@medipass/utils": "11.78.0",
50
50
  "@types/jest": "28.1.6",
51
51
  "@types/mocha": "9.1.1",
52
52
  "@types/node": "18.7.1",
@@ -58,5 +58,5 @@
58
58
  "resolutions": {
59
59
  "react-scripts/**/@typescript-eslint/eslint-plugin": "5.32.0"
60
60
  },
61
- "gitHead": "f6b64efc35879c53d8a0979b31055cb9bf1907ca"
61
+ "gitHead": "d6045592b5e3b7df6eb28d068cfda9d90445c2fc"
62
62
  }