|
|
@@ -471,6 +471,36 @@ export interface RemoveOptionGroupFromProductVariables {
|
|
|
/* tslint:disable */
|
|
|
// This file was automatically generated and should not be edited.
|
|
|
|
|
|
+// ====================================================
|
|
|
+// GraphQL query operation: GetFacetList
|
|
|
+// ====================================================
|
|
|
+
|
|
|
+export interface GetFacetList_facets_items {
|
|
|
+ __typename: "Facet";
|
|
|
+ id: string;
|
|
|
+ languageCode: LanguageCode;
|
|
|
+ code: string;
|
|
|
+ name: string;
|
|
|
+}
|
|
|
+
|
|
|
+export interface GetFacetList_facets {
|
|
|
+ __typename: "FacetList";
|
|
|
+ items: GetFacetList_facets_items[];
|
|
|
+ totalItems: number;
|
|
|
+}
|
|
|
+
|
|
|
+export interface GetFacetList {
|
|
|
+ facets: GetFacetList_facets;
|
|
|
+}
|
|
|
+
|
|
|
+export interface GetFacetListVariables {
|
|
|
+ options?: FacetListOptions | null;
|
|
|
+ languageCode?: LanguageCode | null;
|
|
|
+}
|
|
|
+
|
|
|
+/* tslint:disable */
|
|
|
+// This file was automatically generated and should not be edited.
|
|
|
+
|
|
|
// ====================================================
|
|
|
// GraphQL query operation: GetNetworkStatus
|
|
|
// ====================================================
|
|
|
@@ -1063,35 +1093,26 @@ export interface CreateProductOptionInput {
|
|
|
customFields?: any | null;
|
|
|
}
|
|
|
|
|
|
-export interface ProductListOptions {
|
|
|
+export interface FacetListOptions {
|
|
|
take?: number | null;
|
|
|
skip?: number | null;
|
|
|
- sort?: ProductSortParameter | null;
|
|
|
- filter?: ProductFilterParameter | null;
|
|
|
+ sort?: FacetSortParameter | null;
|
|
|
+ filter?: FacetFilterParameter | null;
|
|
|
}
|
|
|
|
|
|
-export interface ProductSortParameter {
|
|
|
+export interface FacetSortParameter {
|
|
|
id?: SortOrder | null;
|
|
|
createdAt?: SortOrder | null;
|
|
|
updatedAt?: SortOrder | null;
|
|
|
name?: SortOrder | null;
|
|
|
- slug?: SortOrder | null;
|
|
|
- description?: SortOrder | null;
|
|
|
- image?: SortOrder | null;
|
|
|
- infoUrl?: SortOrder | null;
|
|
|
- downloadable?: SortOrder | null;
|
|
|
- nickname?: SortOrder | null;
|
|
|
+ code?: SortOrder | null;
|
|
|
}
|
|
|
|
|
|
-export interface ProductFilterParameter {
|
|
|
+export interface FacetFilterParameter {
|
|
|
name?: StringOperators | null;
|
|
|
- slug?: StringOperators | null;
|
|
|
- description?: StringOperators | null;
|
|
|
+ code?: StringOperators | null;
|
|
|
createdAt?: DateOperators | null;
|
|
|
updatedAt?: DateOperators | null;
|
|
|
- infoUrl?: StringOperators | null;
|
|
|
- downloadable?: BooleanOperators | null;
|
|
|
- nickname?: StringOperators | null;
|
|
|
}
|
|
|
|
|
|
export interface StringOperators {
|
|
|
@@ -1111,6 +1132,37 @@ export interface DateRange {
|
|
|
end: any;
|
|
|
}
|
|
|
|
|
|
+export interface ProductListOptions {
|
|
|
+ take?: number | null;
|
|
|
+ skip?: number | null;
|
|
|
+ sort?: ProductSortParameter | null;
|
|
|
+ filter?: ProductFilterParameter | null;
|
|
|
+}
|
|
|
+
|
|
|
+export interface ProductSortParameter {
|
|
|
+ id?: SortOrder | null;
|
|
|
+ createdAt?: SortOrder | null;
|
|
|
+ updatedAt?: SortOrder | null;
|
|
|
+ name?: SortOrder | null;
|
|
|
+ slug?: SortOrder | null;
|
|
|
+ description?: SortOrder | null;
|
|
|
+ image?: SortOrder | null;
|
|
|
+ infoUrl?: SortOrder | null;
|
|
|
+ downloadable?: SortOrder | null;
|
|
|
+ nickname?: SortOrder | null;
|
|
|
+}
|
|
|
+
|
|
|
+export interface ProductFilterParameter {
|
|
|
+ name?: StringOperators | null;
|
|
|
+ slug?: StringOperators | null;
|
|
|
+ description?: StringOperators | null;
|
|
|
+ createdAt?: DateOperators | null;
|
|
|
+ updatedAt?: DateOperators | null;
|
|
|
+ infoUrl?: StringOperators | null;
|
|
|
+ downloadable?: BooleanOperators | null;
|
|
|
+ nickname?: StringOperators | null;
|
|
|
+}
|
|
|
+
|
|
|
export interface BooleanOperators {
|
|
|
eq?: boolean | null;
|
|
|
}
|