@juhuu/sdk-ts 1.2.195 → 1.2.196
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/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
@@ -448,6 +448,9 @@ var SessionService = class extends Service {
|
|
448
448
|
if (SessionListParams.locationId !== void 0) {
|
449
449
|
queryArray.push("locationId=" + SessionListParams.locationId);
|
450
450
|
}
|
451
|
+
if (SessionListParams.paymentId !== void 0) {
|
452
|
+
queryArray.push("paymentId=" + SessionListParams.paymentId);
|
453
|
+
}
|
451
454
|
if (SessionListOptions?.limit !== void 0) {
|
452
455
|
queryArray.push("limit=" + SessionListOptions.limit);
|
453
456
|
}
|
package/dist/index.mjs
CHANGED
@@ -404,6 +404,9 @@ var SessionService = class extends Service {
|
|
404
404
|
if (SessionListParams.locationId !== void 0) {
|
405
405
|
queryArray.push("locationId=" + SessionListParams.locationId);
|
406
406
|
}
|
407
|
+
if (SessionListParams.paymentId !== void 0) {
|
408
|
+
queryArray.push("paymentId=" + SessionListParams.paymentId);
|
409
|
+
}
|
407
410
|
if (SessionListOptions?.limit !== void 0) {
|
408
411
|
queryArray.push("limit=" + SessionListOptions.limit);
|
409
412
|
}
|