UNPKG

shopifymo

Version:

- Module get product information, customer, order history. - Get customer information by token and authenticate through email login, password

8 lines (7 loc) 266 B
import { ConfigParams } from "@shopify/shopify-api"; export type OrderStatus = 'open' | 'closed' | 'cancelled' | 'any'; export interface ConfigShopifyMo extends ConfigParams { domain: string; adminApiAccessToken: string; storefrontAccessToken: string; }