@rinse-dental/open-dental 1.0.8 → 1.0.9
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 DiscountPlanSubs {
|
|
|
9
9
|
* @param {number} [params.PatNum] - Filter by patient.
|
|
10
10
|
* @returns {Promise<DiscountPlanSub>} - A list of discountplansubs.
|
|
11
11
|
*/
|
|
12
|
-
|
|
12
|
+
getDiscountPlanSub({ PatNum, }?: GetDiscountPlanSubsParams): Promise<DiscountPlanSub>;
|
|
13
13
|
/**
|
|
14
14
|
* Create a new discount plan sub.
|
|
15
15
|
* @param {Object} data - The details of discount plan sub to create.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"discountPlanSubs.d.ts","sourceRoot":"","sources":["../../src/api/discountPlanSubs.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,qBAAqB,CAAC;AAC7C,OAAO,EACL,eAAe,EACf,yBAAyB,EACzB,2BAA2B,EAC3B,2BAA2B,EAC5B,MAAM,+BAA+B,CAAC;AAGvC,MAAM,CAAC,OAAO,OAAO,gBAAgB;IACnC,OAAO,CAAC,UAAU,CAAa;gBAEnB,UAAU,EAAE,UAAU;IAIlC;;;;;OAKG;IACU,
|
|
1
|
+
{"version":3,"file":"discountPlanSubs.d.ts","sourceRoot":"","sources":["../../src/api/discountPlanSubs.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,qBAAqB,CAAC;AAC7C,OAAO,EACL,eAAe,EACf,yBAAyB,EACzB,2BAA2B,EAC3B,2BAA2B,EAC5B,MAAM,+BAA+B,CAAC;AAGvC,MAAM,CAAC,OAAO,OAAO,gBAAgB;IACnC,OAAO,CAAC,UAAU,CAAa;gBAEnB,UAAU,EAAE,UAAU;IAIlC;;;;;OAKG;IACU,kBAAkB,CAAC,EAC9B,MAAM,GACP,GAAE,yBAA8B,GAAG,OAAO,CAAC,eAAe,CAAC;IAQ5D;;;;;;;;;;OAUG;IACU,qBAAqB,CAAC,EACjC,eAAe,EACf,MAAM,EACN,aAAa,EACb,QAAQ,EACR,OAAO,GACR,EAAG,2BAA2B,GAAG,OAAO,CAAC,eAAe,CAAC;IAc1D;;;;;;;;;;OAUG;IACU,qBAAqB,CAAC,EACjC,cAAc,EACd,MAAM,EACN,aAAa,EACb,QAAQ,EACR,OAAO,GACR,EAAE,2BAA2B,GAAG,OAAO,CAAC,eAAe,CAAC;IAazD;;;;;OAKG;IACU,qBAAqB,CAAC,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;CAO1E"}
|
|
@@ -11,7 +11,7 @@ class DiscountPlanSubs {
|
|
|
11
11
|
* @param {number} [params.PatNum] - Filter by patient.
|
|
12
12
|
* @returns {Promise<DiscountPlanSub>} - A list of discountplansubs.
|
|
13
13
|
*/
|
|
14
|
-
async
|
|
14
|
+
async getDiscountPlanSub({ PatNum, } = {}) {
|
|
15
15
|
const params = {
|
|
16
16
|
PatNum,
|
|
17
17
|
};
|
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@ export default class DiscountPlanSubs {
|
|
|
20
20
|
* @param {number} [params.PatNum] - Filter by patient.
|
|
21
21
|
* @returns {Promise<DiscountPlanSub>} - A list of discountplansubs.
|
|
22
22
|
*/
|
|
23
|
-
public async
|
|
23
|
+
public async getDiscountPlanSub({
|
|
24
24
|
PatNum,
|
|
25
25
|
}: GetDiscountPlanSubsParams = {}): Promise<DiscountPlanSub> {
|
|
26
26
|
const params = {
|