@rinse-dental/open-dental 1.0.1 → 1.0.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.
package/dist/api/appointments.js
CHANGED
|
@@ -269,7 +269,7 @@ class Appointments {
|
|
|
269
269
|
if (!data.AptNum || (!data.confirmVal && !data.defNum)) {
|
|
270
270
|
throw new Error("AptNum and either confirmVal or defNum are required.");
|
|
271
271
|
}
|
|
272
|
-
return this.httpClient.put(`/appointments/${data.AptNum}/
|
|
272
|
+
return this.httpClient.put(`/appointments/${data.AptNum}/Confirm`, data);
|
|
273
273
|
}
|
|
274
274
|
}
|
|
275
275
|
exports.default = Appointments;
|
package/package.json
CHANGED
package/src/api/appointments.ts
CHANGED
|
@@ -331,6 +331,6 @@ public async getAppointments({
|
|
|
331
331
|
throw new Error("AptNum and either confirmVal or defNum are required.");
|
|
332
332
|
}
|
|
333
333
|
|
|
334
|
-
return this.httpClient.put<void>(`/appointments/${data.AptNum}/
|
|
334
|
+
return this.httpClient.put<void>(`/appointments/${data.AptNum}/Confirm`, data);
|
|
335
335
|
}
|
|
336
336
|
}
|