UNPKG

shopifymo

Version:

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

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