@juhuu/sdk-ts 1.2.293 → 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,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;
@@ -5655,7 +5655,7 @@ declare namespace JUHUU {
5655
5655
  namespace Update {
5656
5656
  type Params = {
5657
5657
  benefitCardId: string;
5658
- name?: string;
5658
+ name?: LocaleString;
5659
5659
  imageLight?: string | null;
5660
5660
  imageDark?: string | null;
5661
5661
  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;
@@ -5655,7 +5655,7 @@ declare namespace JUHUU {
5655
5655
  namespace Update {
5656
5656
  type Params = {
5657
5657
  benefitCardId: string;
5658
- name?: string;
5658
+ name?: LocaleString;
5659
5659
  imageLight?: string | null;
5660
5660
  imageDark?: string | null;
5661
5661
  userId?: string | null;
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.294",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",