@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 +6 -3
- package/dist/index.d.ts +6 -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
|
};
|
@@ -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
|
-
|
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
|
};
|
@@ -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 = {
|