@juhuu/sdk-ts 1.2.34 → 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
  };
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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.34",
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",