@medipass/web-sdk 11.53.1-feature-healthpoint-upload-endpoints.0 → 11.53.1-feature-healthpoint-upload-endpoints.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.
@@ -1,8 +1,10 @@
1
1
  import type { ProviderNumberType, Practice, ProfessionalCategory, Specialty, Funder, ProviderRegistrationType } from 'types';
2
2
  export interface ProviderSetItem {
3
3
  created: string;
4
+ files?: HealthPointProviderSetFilesAttributes[];
4
5
  funderId: string;
5
6
  healthFundOverrides: string[];
7
+ healthpoint?: HealthPointProviderSetAttributes;
6
8
  practiceId: string;
7
9
  professionalCategoryId: string;
8
10
  providerNumber: string;
@@ -19,6 +21,7 @@ export interface ProviderSetItemRequestBody {
19
21
  providerNumber: string;
20
22
  specialtyIds: string[];
21
23
  hicaps?: HicapsProviderSetAttributes;
24
+ healthpoint?: HealthPointProviderSetAttributes;
22
25
  }
23
26
  export interface HicapsProviderSetAttributes {
24
27
  address?: string;
@@ -37,4 +40,20 @@ export declare type ParsedProviderSetItem = ProviderSetItem & {
37
40
  professionalCategory: ProfessionalCategory | undefined;
38
41
  specialties: Specialty[];
39
42
  providerRegistrationType: ProviderRegistrationType | undefined;
43
+ healthpoint?: HealthPointProviderSetAttributes;
40
44
  };
45
+ export interface HealthPointProviderSetAttributes {
46
+ settlement: {
47
+ bankAccount: {
48
+ accountName: string;
49
+ accountNumber: string;
50
+ bankName: string;
51
+ bsb: string;
52
+ };
53
+ };
54
+ }
55
+ export interface HealthPointProviderSetFilesAttributes {
56
+ category: string;
57
+ filename: string;
58
+ s3SignedUrlId: string;
59
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medipass/web-sdk",
3
- "version": "11.53.1-feature-healthpoint-upload-endpoints.0",
3
+ "version": "11.53.1-feature-healthpoint-upload-endpoints.1",
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": "4fe79b583cbde8b5166367463a152dce6bc68df1"
60
+ "gitHead": "9f4792e125ed28862322ce18b2d6c2c7cfc140c2"
61
61
  }