inventora-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.
19 lines (15 loc) • 533 B
text/typescript
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;
}