Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x | import { ApolloQueryResult } from 'apollo-client'; import { FetchResult } from 'apollo-link'; import { Cart, Order, ShippingMethod, CustomerSignInResult, Customer } from './GraphQL'; import { Token, CustomerCredentials } from './setup'; export type CustomQueryFn<T = any> = (query: any, variables: T) => { query?: any; variables?: T; }; export interface BaseSearch { limit?: number; offset?: number; sort?: string[]; } export interface ProductWhereSearch extends BaseSearch { catId?: string | string[]; skus?: string[]; slug?: string; id?: string; filters?: Filter[]; } export interface Filter { type: AttributeType; name: string; value: any; } export interface FilterOption { label: string; value: string | number | boolean | [number, number] | [string, string]; selected: boolean; } export interface CategoryWhereSearch extends BaseSearch { catId?: string; slug?: string; } export interface OrderWhereSearch extends BaseSearch { id?: string; } export enum AttributeType { STRING = 'StringAttribute', DATE = 'DateAttribute', DATETIME = 'DateTimeAttribute', TIME = 'TimeAttribute', NUMBER = 'NumberAttribute', ENUM = 'EnumAttribute', LOCALIZED_ENUM = 'LocalizedEnumAttribute', LOCALIZED_STRING = 'LocalizedStringAttribute', MONEY = 'MoneyAttribute', BOOLEAN = 'BooleanAttribute' } export interface FlowOptions { currentToken?: Token; customerCredentials?: CustomerCredentials; requireUserSession?: boolean; } export type QueryResponse<K extends string, V> = ApolloQueryResult<Record<K, V>>; export type MutationResponse<K extends string, V> = FetchResult<Record<K, V>>; export type CartQueryResponse = QueryResponse<'cart', Cart>; export type OrderQueryResponse = QueryResponse<'order', Order>; export type CartMutationResponse = MutationResponse<'cart', Cart>; export type CartResponse = CartQueryResponse | CartMutationResponse; export type OrderMutationResponse = MutationResponse<'order', Order>; export type OrderResponse = OrderQueryResponse | OrderMutationResponse; export type ShippingMethodsResponse = QueryResponse<'shippingMethods', ShippingMethod>; export type SignInResponse = QueryResponse<'user', CustomerSignInResult>; export type ChangeMyPasswordResponse = QueryResponse<'user', Customer>; |