@rinse-dental/open-dental 2.3.0 → 2.3.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.
@@ -11,7 +11,7 @@ export default class ProcNotes {
11
11
  * @param {number} [params.Offset] - Optional. Pagination offset for results.
12
12
  * @returns {Promise<ProcNote[]>} - A list of ProcNotes.
13
13
  */
14
- getFees({ PatNum, ProcNum, Offset, }?: GetProcNotesParams): Promise<ProcNote[]>;
14
+ getProcNotes({ PatNum, ProcNum, Offset, }?: GetProcNotesParams): Promise<ProcNote[]>;
15
15
  /**
16
16
  * Creates a ProcNote
17
17
  * @param {Object} data - The details of ProcNote to create.
@@ -1 +1 @@
1
- {"version":3,"file":"procNotes.d.ts","sourceRoot":"","sources":["../../src/api/procNotes.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,qBAAqB,CAAC;AAC7C,OAAO,EACL,QAAQ,EACR,kBAAkB,EAClB,oBAAoB,EACrB,MAAM,wBAAwB,CAAC;AAEhC,MAAM,CAAC,OAAO,OAAO,SAAS;IAC5B,OAAO,CAAC,UAAU,CAAa;gBAEnB,UAAU,EAAE,UAAU;IAIpC;;;;;;;OAOG;IACU,OAAO,CAAC,EACjB,MAAM,EACN,OAAO,EACP,MAAM,GACP,GAAE,kBAAuB,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC;IAUlD;;;;;;;;;;SAUK;IACU,cAAc,CAAC,EAC1B,MAAM,EACN,OAAO,EACP,IAAI,EACJ,QAAQ,EACR,YAAY,GACb,EAAG,oBAAoB,GAAG,OAAO,CAAC,QAAQ,CAAC;CAa7C"}
1
+ {"version":3,"file":"procNotes.d.ts","sourceRoot":"","sources":["../../src/api/procNotes.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,qBAAqB,CAAC;AAC7C,OAAO,EACL,QAAQ,EACR,kBAAkB,EAClB,oBAAoB,EACrB,MAAM,wBAAwB,CAAC;AAEhC,MAAM,CAAC,OAAO,OAAO,SAAS;IAC5B,OAAO,CAAC,UAAU,CAAa;gBAEnB,UAAU,EAAE,UAAU;IAIpC;;;;;;;OAOG;IACU,YAAY,CAAC,EACtB,MAAM,EACN,OAAO,EACP,MAAM,GACP,GAAE,kBAAuB,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC;IAUlD;;;;;;;;;;SAUK;IACU,cAAc,CAAC,EAC1B,MAAM,EACN,OAAO,EACP,IAAI,EACJ,QAAQ,EACR,YAAY,GACb,EAAG,oBAAoB,GAAG,OAAO,CAAC,QAAQ,CAAC;CAa7C"}
@@ -13,7 +13,7 @@ class ProcNotes {
13
13
  * @param {number} [params.Offset] - Optional. Pagination offset for results.
14
14
  * @returns {Promise<ProcNote[]>} - A list of ProcNotes.
15
15
  */
16
- async getFees({ PatNum, ProcNum, Offset, } = {}) {
16
+ async getProcNotes({ PatNum, ProcNum, Offset, } = {}) {
17
17
  const params = {
18
18
  PatNum,
19
19
  ProcNum,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rinse-dental/open-dental",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
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",
@@ -20,7 +20,7 @@ export default class ProcNotes {
20
20
  * @param {number} [params.Offset] - Optional. Pagination offset for results.
21
21
  * @returns {Promise<ProcNote[]>} - A list of ProcNotes.
22
22
  */
23
- public async getFees({
23
+ public async getProcNotes({
24
24
  PatNum,
25
25
  ProcNum,
26
26
  Offset,