primarycare-binder 1.1.90 → 1.1.93
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.
- package/dist/index.cjs.js +10 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -11716,12 +11716,16 @@ var ALL_APPOINTMENTS = createAsyncThunk("appointmentReducer/allAppointments", /*
|
|
|
11716
11716
|
|
|
11717
11717
|
if (type_ === "THIS_WEEK") {
|
|
11718
11718
|
returnData.pastAppointmentThisWeek.push(v);
|
|
11719
|
+
returnData.pastAppointment.push(v);
|
|
11719
11720
|
} else if (type_ === "LAST_WEEK") {
|
|
11720
11721
|
returnData.pastAppointmentLastWeek.push(v);
|
|
11722
|
+
returnData.pastAppointment.push(v);
|
|
11721
11723
|
} else if (type_ === "THIS_MONTH") {
|
|
11722
11724
|
returnData.pastAppointmentThisMonth.push(v);
|
|
11725
|
+
returnData.pastAppointment.push(v);
|
|
11723
11726
|
} else if (type_ === "LAST_MONTH") {
|
|
11724
11727
|
returnData.pastAppointmentLastMonth.push(v);
|
|
11728
|
+
returnData.pastAppointment.push(v);
|
|
11725
11729
|
} else {
|
|
11726
11730
|
returnData.pastAppointment.push(v);
|
|
11727
11731
|
}
|
|
@@ -11735,14 +11739,19 @@ var ALL_APPOINTMENTS = createAsyncThunk("appointmentReducer/allAppointments", /*
|
|
|
11735
11739
|
|
|
11736
11740
|
if (type_ === "TODAY") {
|
|
11737
11741
|
returnData.upcomingAppointmentToday.push(v);
|
|
11742
|
+
returnData.upcomingAppointment.push(v);
|
|
11738
11743
|
} else if (type_ === "THIS_WEEK") {
|
|
11739
11744
|
returnData.upcomingAppointmentThisWeek.push(v);
|
|
11745
|
+
returnData.upcomingAppointment.push(v);
|
|
11740
11746
|
} else if (type_ === "NEXT_WEEK") {
|
|
11741
11747
|
returnData.upcomingAppointmentNextWeek.push(v);
|
|
11748
|
+
returnData.upcomingAppointment.push(v);
|
|
11742
11749
|
} else if (type_ === "THIS_MONTH") {
|
|
11743
11750
|
returnData.upcomingAppointmentThisMonth.push(v);
|
|
11751
|
+
returnData.upcomingAppointment.push(v);
|
|
11744
11752
|
} else if (type_ === "NEXT_MONTH") {
|
|
11745
11753
|
returnData.upcomingAppointmentNextMonth.push(v);
|
|
11754
|
+
returnData.upcomingAppointment.push(v);
|
|
11746
11755
|
} else {
|
|
11747
11756
|
returnData.upcomingAppointment.push(v);
|
|
11748
11757
|
}
|
|
@@ -16989,7 +16998,7 @@ var UPSERT_PERSON = createAsyncThunk("personApiSlice/upsertPerson", /*#__PURE__*
|
|
|
16989
16998
|
|
|
16990
16999
|
body = [{
|
|
16991
17000
|
db_name: dbName,
|
|
16992
|
-
|
|
17001
|
+
entity: "Person",
|
|
16993
17002
|
is_metadata: true,
|
|
16994
17003
|
metadataId: query_ids["personApiSlice/upsertPerson"],
|
|
16995
17004
|
doc: {
|