@medipass/web-sdk 11.48.1-feature-backlist-settlement-bank-accounts.1 → 11.48.1-feature-backlist-settlement-bank-accounts.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.
@@ -1,4 +1,4 @@
1
- import type { BlacklistedBankAccountResponse, MedipassRequestOpts, PaginatedResponse } from '../types';
1
+ import type { BlacklistedBankAccount, MedipassRequestOpts, PaginatedResponse } from '../types';
2
2
  export interface CreateBlacklistedBankAccountPayload {
3
3
  bsb: string;
4
4
  accountNumber: string;
@@ -12,10 +12,10 @@ export interface GetBlacklistedBankAccountsQuery {
12
12
  * @param {Object} body - Object body
13
13
  * @param {Object} opts - Additional options
14
14
  */
15
- export declare const createBlacklistedBankAccount: (body: CreateBlacklistedBankAccountPayload, opts?: MedipassRequestOpts) => Promise<BlacklistedBankAccountResponse>;
15
+ export declare const createBlacklistedBankAccount: (body: CreateBlacklistedBankAccountPayload, opts?: MedipassRequestOpts) => Promise<BlacklistedBankAccount>;
16
16
  /**
17
17
  * Get blacklisted bank accounts
18
18
  * @param {Object} query - Query parameters
19
19
  * @param {Object} opts - Additional options
20
20
  */
21
- export declare const getBlacklistedBankAccounts: (query: GetBlacklistedBankAccountsQuery, opts?: MedipassRequestOpts) => Promise<PaginatedResponse<BlacklistedBankAccountResponse>>;
21
+ export declare const getBlacklistedBankAccounts: (query: GetBlacklistedBankAccountsQuery, opts?: MedipassRequestOpts) => Promise<PaginatedResponse<BlacklistedBankAccount>>;
@@ -1,4 +1,4 @@
1
- export interface BlacklistedBankAccountResponse {
1
+ export interface BlacklistedBankAccount {
2
2
  bsb: string;
3
3
  accountNumber: string;
4
4
  businesses: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medipass/web-sdk",
3
- "version": "11.48.1-feature-backlist-settlement-bank-accounts.1",
3
+ "version": "11.48.1-feature-backlist-settlement-bank-accounts.2",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -57,5 +57,5 @@
57
57
  "resolutions": {
58
58
  "react-scripts/**/@typescript-eslint/eslint-plugin": "5.32.0"
59
59
  },
60
- "gitHead": "7ebf466eb47917b1139142a727592efde7e20b2f"
60
+ "gitHead": "2962ed167b65e175915c94ab9b32a0cd9e6d151b"
61
61
  }