@medipass/web-sdk 11.71.1-chore-add-terminal-pin-endpoints.1 → 11.71.1-chore-add-terminal-pin-endpoints.2

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.
@@ -223,10 +223,16 @@ export declare const suspendBusinessEmail: (businessId: string, opts?: MedipassR
223
223
  * @param {String} businessId - Business ID
224
224
  * @param {Object} opts - Additional options
225
225
  */
226
- export declare const getBusinessTerminalPin: (businessId: string, opts?: MedipassRequestOpts) => Promise<Record<string, any>>;
226
+ export declare const getBusinessTerminalPin: (businessId: string, opts?: MedipassRequestOpts) => Promise<{
227
+ key: string;
228
+ expiry: string;
229
+ }>;
227
230
  /**
228
231
  * Create a 6 digit pin for a terminal authentication
229
232
  * @param {String} businessId - Business ID
230
233
  * @param {Object} opts - Additional options
231
234
  */
232
- export declare const createBusinessTerminalPinCode: (businessId: string, opts?: MedipassRequestOpts) => Promise<Record<string, any>>;
235
+ export declare const createBusinessTerminalPinCode: (businessId: string, opts?: MedipassRequestOpts) => Promise<{
236
+ key: string;
237
+ expiry: string;
238
+ }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medipass/web-sdk",
3
- "version": "11.71.1-chore-add-terminal-pin-endpoints.1",
3
+ "version": "11.71.1-chore-add-terminal-pin-endpoints.2",
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": "c974918164812abe5b2ce1512daddbb45fd4a2b7"
62
+ "gitHead": "120c30db5235183463aeb0cd95a48c4f3d05737f"
63
63
  }