@juhuu/sdk-ts 1.2.293 → 1.2.295

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
@@ -5608,7 +5608,7 @@ declare namespace JUHUU {
5608
5608
  readonly object: "benefitCard";
5609
5609
  readonly objectType: "dto";
5610
5610
  createdAt: Date;
5611
- name: string;
5611
+ name: LocaleString;
5612
5612
  imageLight: string | null;
5613
5613
  imageDark: string | null;
5614
5614
  userId: string | null;
@@ -5618,7 +5618,7 @@ declare namespace JUHUU {
5618
5618
  namespace Create {
5619
5619
  type Params = {
5620
5620
  propertyId: string;
5621
- name: string;
5621
+ name?: LocaleString;
5622
5622
  imageLight?: string | null;
5623
5623
  imageDark?: string | null;
5624
5624
  userId?: string | null;
@@ -5641,6 +5641,7 @@ declare namespace JUHUU {
5641
5641
  namespace List {
5642
5642
  type Params = {
5643
5643
  propertyId: string;
5644
+ userId?: string;
5644
5645
  };
5645
5646
  type Options = {
5646
5647
  limit?: number;
@@ -5655,7 +5656,7 @@ declare namespace JUHUU {
5655
5656
  namespace Update {
5656
5657
  type Params = {
5657
5658
  benefitCardId: string;
5658
- name?: string;
5659
+ name?: LocaleString;
5659
5660
  imageLight?: string | null;
5660
5661
  imageDark?: string | null;
5661
5662
  userId?: string | null;
package/dist/index.d.ts CHANGED
@@ -5608,7 +5608,7 @@ declare namespace JUHUU {
5608
5608
  readonly object: "benefitCard";
5609
5609
  readonly objectType: "dto";
5610
5610
  createdAt: Date;
5611
- name: string;
5611
+ name: LocaleString;
5612
5612
  imageLight: string | null;
5613
5613
  imageDark: string | null;
5614
5614
  userId: string | null;
@@ -5618,7 +5618,7 @@ declare namespace JUHUU {
5618
5618
  namespace Create {
5619
5619
  type Params = {
5620
5620
  propertyId: string;
5621
- name: string;
5621
+ name?: LocaleString;
5622
5622
  imageLight?: string | null;
5623
5623
  imageDark?: string | null;
5624
5624
  userId?: string | null;
@@ -5641,6 +5641,7 @@ declare namespace JUHUU {
5641
5641
  namespace List {
5642
5642
  type Params = {
5643
5643
  propertyId: string;
5644
+ userId?: string;
5644
5645
  };
5645
5646
  type Options = {
5646
5647
  limit?: number;
@@ -5655,7 +5656,7 @@ declare namespace JUHUU {
5655
5656
  namespace Update {
5656
5657
  type Params = {
5657
5658
  benefitCardId: string;
5658
- name?: string;
5659
+ name?: LocaleString;
5659
5660
  imageLight?: string | null;
5660
5661
  imageDark?: string | null;
5661
5662
  userId?: string | null;
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.293",
3
+ "version": "1.2.295",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",