@medipass/web-sdk 12.4.8-feature-aged-care-entry-departure-apis.4 → 12.4.8-feature-aged-care-entry-departure-apis.5

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.
@@ -889,11 +889,11 @@ export interface GetEntriesItem {
889
889
  departureReasonText: string;
890
890
  createdAtDateTime: string;
891
891
  updatedAtDateTime: string;
892
- address: {
893
- streetLine: string;
894
- suburb: string;
895
- state: string;
896
- postcode: string;
892
+ address?: {
893
+ streetLine?: string;
894
+ suburb?: string;
895
+ state?: string;
896
+ postcode?: string;
897
897
  };
898
898
  messages: Array<{
899
899
  type: string;
@@ -932,11 +932,11 @@ export interface GetEntryResponse {
932
932
  departureReasonText: string;
933
933
  createdAtDateTime: string;
934
934
  updatedAtDateTime: string;
935
- address: {
936
- streetLine: string;
937
- suburb: string;
938
- state: string;
939
- postcode: string;
935
+ address?: {
936
+ streetLine?: string;
937
+ suburb?: string;
938
+ state?: string;
939
+ postcode?: string;
940
940
  };
941
941
  messages: Array<{
942
942
  type: string;
@@ -960,10 +960,10 @@ export interface UpdateEntryRequestBody {
960
960
  unfundedPriorEntryDate?: string;
961
961
  approvalSighted?: 'Y' | 'N' | '';
962
962
  address?: {
963
- streetLine: string;
964
- suburb: string;
965
- state: string;
966
- postcode: string;
963
+ streetLine?: string;
964
+ suburb?: string;
965
+ state?: string;
966
+ postcode?: string;
967
967
  };
968
968
  }
969
969
  export interface CreateEntryRequestBody {
@@ -1015,11 +1015,11 @@ export interface CreateEntryResponse {
1015
1015
  departureReasonText: string;
1016
1016
  createdAtDateTime: string;
1017
1017
  updatedAtDateTime: string;
1018
- address: {
1019
- streetLine: string;
1020
- suburb: string;
1021
- state: string;
1022
- postcode: string;
1018
+ address?: {
1019
+ streetLine?: string;
1020
+ suburb?: string;
1021
+ state?: string;
1022
+ postcode?: string;
1023
1023
  };
1024
1024
  messages: Array<{
1025
1025
  type: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medipass/web-sdk",
3
- "version": "12.4.8-feature-aged-care-entry-departure-apis.4",
3
+ "version": "12.4.8-feature-aged-care-entry-departure-apis.5",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -58,5 +58,5 @@
58
58
  "resolutions": {
59
59
  "react-scripts/**/@typescript-eslint/eslint-plugin": "5.32.0"
60
60
  },
61
- "gitHead": "7142396777f8d39ca23c98f3b852d4e787ae6298"
61
+ "gitHead": "68904c8039b4e780866ac06fc75cec8935125135"
62
62
  }