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.
@@ -1,6 +1,7 @@
1
1
  import { ColorSetting } from "../../index.model.js";
2
2
  export interface GetColorSettingsResponse {
3
3
  colorSetting: ColorSetting | null;
4
+ logo: string | null;
4
5
  }
5
6
  export interface UpdateColorSettingsRequest {
6
7
  appId: string;
@@ -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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-magic-api",
3
- "version": "0.1.33",
3
+ "version": "0.1.34",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && tsc",
6
6
  "prepare": "npm run build"