@juhuu/sdk-ts 1.2.33 → 1.2.35

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
@@ -784,9 +784,11 @@ declare namespace JUHUU {
784
784
  */
785
785
  refreshTokensIfNecessary?: boolean;
786
786
  };
787
- type LocaleString = {
788
- [locale: string]: string;
789
- };
787
+ interface LocaleString {
788
+ de: string;
789
+ en: string;
790
+ fr: string;
791
+ }
790
792
  type DeepNullable<T> = {
791
793
  [P in keyof T]?: DeepNullable<T[P]> | null;
792
794
  };
@@ -1164,6 +1166,7 @@ declare namespace JUHUU {
1164
1166
  status: "draft" | "published";
1165
1167
  lastUpdatedAt: Date;
1166
1168
  createdAt: Date;
1169
+ languageCodeArray: LanguageCode[];
1167
1170
  };
1168
1171
  namespace Create {
1169
1172
  type Params = {
package/dist/index.d.ts CHANGED
@@ -784,9 +784,11 @@ declare namespace JUHUU {
784
784
  */
785
785
  refreshTokensIfNecessary?: boolean;
786
786
  };
787
- type LocaleString = {
788
- [locale: string]: string;
789
- };
787
+ interface LocaleString {
788
+ de: string;
789
+ en: string;
790
+ fr: string;
791
+ }
790
792
  type DeepNullable<T> = {
791
793
  [P in keyof T]?: DeepNullable<T[P]> | null;
792
794
  };
@@ -1164,6 +1166,7 @@ declare namespace JUHUU {
1164
1166
  status: "draft" | "published";
1165
1167
  lastUpdatedAt: Date;
1166
1168
  createdAt: Date;
1169
+ languageCodeArray: LanguageCode[];
1167
1170
  };
1168
1171
  namespace Create {
1169
1172
  type Params = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.33",
3
+ "version": "1.2.35",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",