@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 CHANGED
@@ -1124,6 +1124,7 @@ declare namespace JUHUU {
1124
1124
  statusArray?: JUHUU.Session.Object["status"][];
1125
1125
  locationId?: string;
1126
1126
  locationGroupId?: string;
1127
+ paymentId: string;
1127
1128
  };
1128
1129
  type Options = {
1129
1130
  limit?: number;
package/dist/index.d.ts CHANGED
@@ -1124,6 +1124,7 @@ declare namespace JUHUU {
1124
1124
  statusArray?: JUHUU.Session.Object["status"][];
1125
1125
  locationId?: string;
1126
1126
  locationGroupId?: string;
1127
+ paymentId: string;
1127
1128
  };
1128
1129
  type Options = {
1129
1130
  limit?: number;
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.195",
3
+ "version": "1.2.196",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",