@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.
package/dist/api/procNotes.d.ts
CHANGED
|
@@ -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
|
-
|
|
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,
|
|
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"}
|
package/dist/api/procNotes.js
CHANGED
|
@@ -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
|
|
16
|
+
async getProcNotes({ PatNum, ProcNum, Offset, } = {}) {
|
|
17
17
|
const params = {
|
|
18
18
|
PatNum,
|
|
19
19
|
ProcNum,
|
package/package.json
CHANGED
package/src/api/procNotes.ts
CHANGED
|
@@ -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
|
|
23
|
+
public async getProcNotes({
|
|
24
24
|
PatNum,
|
|
25
25
|
ProcNum,
|
|
26
26
|
Offset,
|