@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.
@@ -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}/confirm`, data);
272
+ return this.httpClient.put(`/appointments/${data.AptNum}/Confirm`, data);
273
273
  }
274
274
  }
275
275
  exports.default = Appointments;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rinse-dental/open-dental",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A TypeScript library for easily accessing Open Dental APIs.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -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}/confirm`, data);
334
+ return this.httpClient.put<void>(`/appointments/${data.AptNum}/Confirm`, data);
335
335
  }
336
336
  }