@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 +5 -3
- package/dist/index.d.ts +5 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -784,9 +784,11 @@ declare namespace JUHUU {
|
|
784
784
|
*/
|
785
785
|
refreshTokensIfNecessary?: boolean;
|
786
786
|
};
|
787
|
-
|
788
|
-
|
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
|
-
|
788
|
-
|
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
|
};
|