@medipass/web-sdk 12.4.8-feature-aged-care-entry-departure-apis.0 → 12.4.8-feature-aged-care-entry-departure-apis.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.
@@ -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;
@@ -1083,5 +1100,4 @@ export interface CreateDepartureResponse {
1083
1100
  }
1084
1101
  export interface DeleteDepartureQuery {
1085
1102
  businessId?: string;
1086
- eventId: string;
1087
1103
  }
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.1",
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": "b442573875a6dcd8a67917008d860a284dc512bc"
62
62
  }