types-magic-api 0.1.33 → 0.1.34
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.
|
@@ -1008,3 +1008,18 @@ export interface ShopifyLoginReq {
|
|
|
1008
1008
|
export interface ShopifyLoginRes {
|
|
1009
1009
|
redirectUrl: string;
|
|
1010
1010
|
}
|
|
1011
|
+
export interface getLogoImage {
|
|
1012
|
+
shop: {
|
|
1013
|
+
brand: {
|
|
1014
|
+
logo: {
|
|
1015
|
+
image: {
|
|
1016
|
+
url: string;
|
|
1017
|
+
};
|
|
1018
|
+
};
|
|
1019
|
+
};
|
|
1020
|
+
name: string;
|
|
1021
|
+
primaryDomain: {
|
|
1022
|
+
url: string;
|
|
1023
|
+
};
|
|
1024
|
+
};
|
|
1025
|
+
}
|