/*********************************************************************************************************************** * This file is auto-generated. If you have an issue, please create a GitHub issue. * ***********************************************************************************************************************/ import { Base, FindAllResponse } from '../../base'; import { ResourcePath, ResourceNames } from '../../types'; import { Session } from '../../../lib/session/session'; import { ApiVersion } from '../../../lib/types'; import { Image } from './image'; interface FindArgs { session: Session; collection_id: number | string; } interface DeleteArgs { session: Session; collection_id: number | string; } interface AllArgs { [key: string]: unknown; session: Session; limit?: unknown; } interface ProductIdsArgs { [key: string]: unknown; session: Session; collection_id: number | string; limit?: unknown; } export declare class CollectionListing extends Base { static apiVersion: ApiVersion; protected static hasOne: { [key: string]: typeof Base; }; protected static hasMany: { [key: string]: typeof Base; }; protected static paths: ResourcePath[]; protected static primaryKey: string; protected static resourceNames: ResourceNames[]; static find({ session, collection_id }: FindArgs): Promise; static delete({ session, collection_id }: DeleteArgs): Promise; static all({ session, limit, ...otherArgs }: AllArgs): Promise>; static product_ids({ session, collection_id, limit, ...otherArgs }: ProductIdsArgs): Promise; body_html: string | null; collection_id: string | null; default_product_image: { [key: string]: unknown; }[] | null; handle: string | null; image: Image | null | { [key: string]: any; }; published_at: string | null; sort_order: string | null; title: string | null; updated_at: string | null; } export {}; //# sourceMappingURL=collection_listing.d.ts.map