@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.
package/dist/api/feeScheds.d.ts
CHANGED
|
@@ -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
|
-
|
|
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,
|
|
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"}
|
package/dist/api/feeScheds.js
CHANGED
|
@@ -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
|
|
14
|
+
async getFeeScheds({ Offset }) {
|
|
15
15
|
const params = {};
|
|
16
16
|
if (Offset !== undefined) {
|
|
17
17
|
params.Offset = Offset;
|
package/package.json
CHANGED
package/src/api/feeScheds.ts
CHANGED
|
@@ -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
|
|
21
|
+
public async getFeeScheds({ Offset }: { Offset?: number }): Promise<FeeSched[]> {
|
|
22
22
|
const params: Record<string, unknown> = {};
|
|
23
23
|
|
|
24
24
|
if (Offset !== undefined) {
|