@medipass/web-sdk 12.11.0 → 12.11.1-feature-minor-dep-upgrades.1
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/lib/resources/payments.d.ts +1 -1
- package/lib/resources/self-checkout-sessions.d.ts +1 -1
- package/lib/types/payment-methods.d.ts +1 -1
- package/lib/types/provider-registration.d.ts +1 -1
- package/lib/types/settlements.d.ts +1 -1
- package/lib/types/staff-member.d.ts +1 -1
- package/package.json +2 -2
|
@@ -55,7 +55,7 @@ export declare const deleteBusinessPatientPaymentMethod: (businessId: string, pa
|
|
|
55
55
|
* @param {Object} opts - Additional options
|
|
56
56
|
* @returns {Object} The device data
|
|
57
57
|
*/
|
|
58
|
-
export declare const getAccountPaymentMethods: (accountId: string, opts?: MedipassRequestOpts) => Promise<
|
|
58
|
+
export declare const getAccountPaymentMethods: (accountId: string, opts?: MedipassRequestOpts) => Promise<Array<PaymentMethod>>;
|
|
59
59
|
/**
|
|
60
60
|
* Get a business' payment methods
|
|
61
61
|
* @param {String} businessId - Business ID
|
|
@@ -99,7 +99,7 @@ export declare const addPaymentMethodToSelfCheckoutSession: (body: {
|
|
|
99
99
|
data?: Record<string, any>;
|
|
100
100
|
selfCheckoutSession: Record<string, any>;
|
|
101
101
|
}, opts?: MedipassRequestOpts) => Promise<{
|
|
102
|
-
paymentMethod:
|
|
102
|
+
paymentMethod: import("./payments").PaymentMethod | undefined;
|
|
103
103
|
selfCheckoutSession: Record<string, any>;
|
|
104
104
|
}>;
|
|
105
105
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ProviderNumberType, ProfessionalCategory, Specialty, ProviderRegistrationType } from '
|
|
1
|
+
import type { ProviderNumberType, ProfessionalCategory, Specialty, ProviderRegistrationType } from './index';
|
|
2
2
|
export interface ProviderRegistration {
|
|
3
3
|
_id: string;
|
|
4
4
|
specialtyIds?: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medipass/web-sdk",
|
|
3
|
-
"version": "12.11.
|
|
3
|
+
"version": "12.11.1-feature-minor-dep-upgrades.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"resolutions": {
|
|
60
60
|
"react-scripts/**/@typescript-eslint/eslint-plugin": "5.32.0"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "33f2cd5641589ac8904ef7aaf2b8023fcf00dd04"
|
|
63
63
|
}
|