@juhuu/sdk-ts 1.2.143 → 1.2.144
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -892,12 +892,12 @@ declare namespace JUHUU {
|
|
892
892
|
}
|
893
893
|
interface HttpResponse<T> {
|
894
894
|
ok: boolean;
|
895
|
-
data:
|
895
|
+
data: T & {
|
896
896
|
/**
|
897
897
|
* Might be defined if the request failed
|
898
898
|
*/
|
899
899
|
message?: string | LocaleString;
|
900
|
-
}
|
900
|
+
};
|
901
901
|
statusText?: string;
|
902
902
|
status?: number;
|
903
903
|
}
|
package/dist/index.d.ts
CHANGED
@@ -892,12 +892,12 @@ declare namespace JUHUU {
|
|
892
892
|
}
|
893
893
|
interface HttpResponse<T> {
|
894
894
|
ok: boolean;
|
895
|
-
data:
|
895
|
+
data: T & {
|
896
896
|
/**
|
897
897
|
* Might be defined if the request failed
|
898
898
|
*/
|
899
899
|
message?: string | LocaleString;
|
900
|
-
}
|
900
|
+
};
|
901
901
|
statusText?: string;
|
902
902
|
status?: number;
|
903
903
|
}
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED