@medipass/web-sdk 12.4.8-feature-aged-care-entry-departure-apis.0 → 12.4.8-feature-aged-care-entry-departure-apis.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.
@@ -972,11 +972,20 @@ export interface CreateEntryRequestBody {
972
972
  };
973
973
  }
974
974
  export interface CreateEntryResponse {
975
+ eventId: string;
976
+ status: string;
977
+ channel: string;
978
+ careRecipientName: string;
975
979
  serviceNapsId: string;
980
+ serviceProviderId: string;
976
981
  careRecipientId: string;
977
982
  entryDate: string;
978
983
  entryCategoryCode: string;
984
+ entryCategoryText: string;
979
985
  externalReferenceId: string;
986
+ departureDate: string;
987
+ departureReasonCode: string;
988
+ departureEventId: string;
980
989
  optInSupportAtHomeRates: string;
981
990
  centrelinkCrn: string;
982
991
  dvaUin: string;
@@ -985,16 +994,24 @@ export interface CreateEntryResponse {
985
994
  awardOrSettlementTypeCode: string;
986
995
  unfundedPriorEntryDate: string;
987
996
  approvalSighted: string;
997
+ awardOrSettlementTypeText: string;
998
+ departureReasonText: string;
999
+ createdAtDateTime: string;
1000
+ updatedAtDateTime: string;
988
1001
  address: {
989
1002
  streetLine: string;
990
1003
  suburb: string;
991
1004
  state: string;
992
1005
  postcode: string;
993
1006
  };
1007
+ messages: Array<{
1008
+ type: string;
1009
+ shortText: string;
1010
+ longText: string;
1011
+ }>;
994
1012
  }
995
1013
  export interface DeleteEntryQuery {
996
1014
  businessId?: string;
997
- eventId: string;
998
1015
  }
999
1016
  export declare type GetDeparturesQuery = PaginatedQuery & {
1000
1017
  businessId?: string;
@@ -1074,14 +1091,28 @@ export interface CreateDepartureRequestBody {
1074
1091
  departureReasonCode: string;
1075
1092
  }
1076
1093
  export interface CreateDepartureResponse {
1094
+ eventId: string;
1095
+ status: string;
1096
+ channel: string;
1077
1097
  serviceNapsId: string;
1098
+ serviceProviderId: string;
1078
1099
  careRecipientId: string;
1100
+ careRecipientName: string;
1079
1101
  externalReferenceId: string;
1080
1102
  entryCategoryCode: string;
1103
+ entryCategoryText: string;
1081
1104
  departureDate: string;
1082
1105
  departureReasonCode: string;
1106
+ departureReasonText: string;
1107
+ entryId: string;
1108
+ createdAtDateTime: string;
1109
+ updatedAtDateTime: string;
1110
+ messages: Array<{
1111
+ type: string;
1112
+ shortText: string;
1113
+ longText: string;
1114
+ }>;
1083
1115
  }
1084
1116
  export interface DeleteDepartureQuery {
1085
1117
  businessId?: string;
1086
- eventId: string;
1087
1118
  }
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.0",
3
+ "version": "12.4.8-feature-aged-care-entry-departure-apis.2",
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": "2a73db3c0a604871454bf20ec30e0a9d7c0fbf69"
61
+ "gitHead": "01221e1743cd1886dfce14385b3a87778d63bd18"
62
62
  }