UNPKG

shopify-admin-api

Version:

Shopify Admin API is a NodeJS library built to help developers easily authenticate and make calls against the Shopify API. It was inspired by and borrows heavily from ShopifySharp.

18 lines (17 loc) 548 B
import { FieldOptions, ListOptions, PublishedOptions, DateOptions } from './base'; export interface PageBaseOptions { /** * Retrieve pages with a given title. */ title?: string; } export interface PageCountOptions extends PageBaseOptions, DateOptions, PublishedOptions { } export interface PageGetOptions extends FieldOptions { } export interface PageListOptions extends PageBaseOptions, ListOptions, DateOptions, PublishedOptions, FieldOptions { /** * Retrieve a page with a given handle. */ handle?: string; }