@juhuu/sdk-ts 1.2.292 → 1.2.294

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,6 +5608,7 @@ declare namespace JUHUU {
5608
5608
  readonly object: "benefitCard";
5609
5609
  readonly objectType: "dto";
5610
5610
  createdAt: Date;
5611
+ name: LocaleString;
5611
5612
  imageLight: string | null;
5612
5613
  imageDark: string | null;
5613
5614
  userId: string | null;
@@ -5617,6 +5618,7 @@ declare namespace JUHUU {
5617
5618
  namespace Create {
5618
5619
  type Params = {
5619
5620
  propertyId: string;
5621
+ name?: LocaleString;
5620
5622
  imageLight?: string | null;
5621
5623
  imageDark?: string | null;
5622
5624
  userId?: string | null;
@@ -5653,6 +5655,7 @@ declare namespace JUHUU {
5653
5655
  namespace Update {
5654
5656
  type Params = {
5655
5657
  benefitCardId: string;
5658
+ name?: LocaleString;
5656
5659
  imageLight?: string | null;
5657
5660
  imageDark?: string | null;
5658
5661
  userId?: string | null;
package/dist/index.d.ts CHANGED
@@ -5608,6 +5608,7 @@ declare namespace JUHUU {
5608
5608
  readonly object: "benefitCard";
5609
5609
  readonly objectType: "dto";
5610
5610
  createdAt: Date;
5611
+ name: LocaleString;
5611
5612
  imageLight: string | null;
5612
5613
  imageDark: string | null;
5613
5614
  userId: string | null;
@@ -5617,6 +5618,7 @@ declare namespace JUHUU {
5617
5618
  namespace Create {
5618
5619
  type Params = {
5619
5620
  propertyId: string;
5621
+ name?: LocaleString;
5620
5622
  imageLight?: string | null;
5621
5623
  imageDark?: string | null;
5622
5624
  userId?: string | null;
@@ -5653,6 +5655,7 @@ declare namespace JUHUU {
5653
5655
  namespace Update {
5654
5656
  type Params = {
5655
5657
  benefitCardId: string;
5658
+ name?: LocaleString;
5656
5659
  imageLight?: string | null;
5657
5660
  imageDark?: string | null;
5658
5661
  userId?: string | null;
package/dist/index.js CHANGED
@@ -4596,6 +4596,7 @@ var BenefitCardsService = class extends Service {
4596
4596
  url: "benefitCards",
4597
4597
  body: {
4598
4598
  propertyId: params.propertyId,
4599
+ name: params.name,
4599
4600
  imageLight: params.imageLight,
4600
4601
  imageDark: params.imageDark,
4601
4602
  userId: params.userId,
@@ -4644,6 +4645,7 @@ var BenefitCardsService = class extends Service {
4644
4645
  method: "PATCH",
4645
4646
  url: "benefitCards/" + params.benefitCardId,
4646
4647
  body: {
4648
+ name: params.name,
4647
4649
  imageLight: params.imageLight,
4648
4650
  imageDark: params.imageDark,
4649
4651
  userId: params.userId,
package/dist/index.mjs CHANGED
@@ -4552,6 +4552,7 @@ var BenefitCardsService = class extends Service {
4552
4552
  url: "benefitCards",
4553
4553
  body: {
4554
4554
  propertyId: params.propertyId,
4555
+ name: params.name,
4555
4556
  imageLight: params.imageLight,
4556
4557
  imageDark: params.imageDark,
4557
4558
  userId: params.userId,
@@ -4600,6 +4601,7 @@ var BenefitCardsService = class extends Service {
4600
4601
  method: "PATCH",
4601
4602
  url: "benefitCards/" + params.benefitCardId,
4602
4603
  body: {
4604
+ name: params.name,
4603
4605
  imageLight: params.imageLight,
4604
4606
  imageDark: params.imageDark,
4605
4607
  userId: params.userId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.292",
3
+ "version": "1.2.294",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",