@rinse-dental/open-dental 2.4.16 → 2.4.17

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.
@@ -9,7 +9,7 @@ export default class FeeScheds {
9
9
  * @param {number} [params.Offset] - Optional. Pagination offset for results.
10
10
  * @returns {Promise<FeeSched[]>} - A list of fees.
11
11
  */
12
- getFees({ Offset }: {
12
+ getFeeScheds({ Offset }: {
13
13
  Offset?: number;
14
14
  }): Promise<FeeSched[]>;
15
15
  }
@@ -1 +1 @@
1
- {"version":3,"file":"feeScheds.d.ts","sourceRoot":"","sources":["../../src/api/feeScheds.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,qBAAqB,CAAC;AAC7C,OAAO,EACL,QAAQ,EAGT,MAAM,yBAAyB,CAAC;AAEjC,MAAM,CAAC,OAAO,OAAO,SAAS;IAC5B,OAAO,CAAC,UAAU,CAAa;gBAEnB,UAAU,EAAE,UAAU;IAIlC;;;;;OAKG;IACU,OAAO,CAAC,EAAE,MAAM,EAAE,EAAE;QAAE,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC;CAS3E"}
1
+ {"version":3,"file":"feeScheds.d.ts","sourceRoot":"","sources":["../../src/api/feeScheds.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,qBAAqB,CAAC;AAC7C,OAAO,EACL,QAAQ,EAGT,MAAM,yBAAyB,CAAC;AAEjC,MAAM,CAAC,OAAO,OAAO,SAAS;IAC5B,OAAO,CAAC,UAAU,CAAa;gBAEnB,UAAU,EAAE,UAAU;IAIlC;;;;;OAKG;IACU,YAAY,CAAC,EAAE,MAAM,EAAE,EAAE;QAAE,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC;CAShF"}
@@ -11,7 +11,7 @@ class FeeScheds {
11
11
  * @param {number} [params.Offset] - Optional. Pagination offset for results.
12
12
  * @returns {Promise<FeeSched[]>} - A list of fees.
13
13
  */
14
- async getFees({ Offset }) {
14
+ async getFeeScheds({ Offset }) {
15
15
  const params = {};
16
16
  if (Offset !== undefined) {
17
17
  params.Offset = Offset;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rinse-dental/open-dental",
3
- "version": "2.4.16",
3
+ "version": "2.4.17",
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",
@@ -18,7 +18,7 @@ export default class FeeScheds {
18
18
  * @param {number} [params.Offset] - Optional. Pagination offset for results.
19
19
  * @returns {Promise<FeeSched[]>} - A list of fees.
20
20
  */
21
- public async getFees({ Offset }: { Offset?: number }): Promise<FeeSched[]> {
21
+ public async getFeeScheds({ Offset }: { Offset?: number }): Promise<FeeSched[]> {
22
22
  const params: Record<string, unknown> = {};
23
23
 
24
24
  if (Offset !== undefined) {