@juhuu/sdk-ts 1.2.294 → 1.2.296

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
@@ -5640,7 +5640,8 @@ declare namespace JUHUU {
5640
5640
  }
5641
5641
  namespace List {
5642
5642
  type Params = {
5643
- propertyId: string;
5643
+ propertyId?: string;
5644
+ userId?: string;
5644
5645
  };
5645
5646
  type Options = {
5646
5647
  limit?: number;
package/dist/index.d.ts CHANGED
@@ -5640,7 +5640,8 @@ declare namespace JUHUU {
5640
5640
  }
5641
5641
  namespace List {
5642
5642
  type Params = {
5643
- propertyId: string;
5643
+ propertyId?: string;
5644
+ userId?: string;
5644
5645
  };
5645
5646
  type Options = {
5646
5647
  limit?: number;
package/dist/index.js CHANGED
@@ -4612,6 +4612,9 @@ var BenefitCardsService = class extends Service {
4612
4612
  if (params?.propertyId !== void 0) {
4613
4613
  queryArray.push("propertyId=" + params.propertyId);
4614
4614
  }
4615
+ if (params?.userId !== void 0) {
4616
+ queryArray.push("userId=" + params.userId);
4617
+ }
4615
4618
  if (options?.limit !== void 0) {
4616
4619
  queryArray.push("limit=" + options.limit);
4617
4620
  }
package/dist/index.mjs CHANGED
@@ -4568,6 +4568,9 @@ var BenefitCardsService = class extends Service {
4568
4568
  if (params?.propertyId !== void 0) {
4569
4569
  queryArray.push("propertyId=" + params.propertyId);
4570
4570
  }
4571
+ if (params?.userId !== void 0) {
4572
+ queryArray.push("userId=" + params.userId);
4573
+ }
4571
4574
  if (options?.limit !== void 0) {
4572
4575
  queryArray.push("limit=" + options.limit);
4573
4576
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.294",
3
+ "version": "1.2.296",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",