From c3b2ef5a7005ed8dae93ffaee9821c6fa27bdf27 Mon Sep 17 00:00:00 2001 From: Tiago Gimenes Date: Fri, 27 May 2022 17:31:25 -0300 Subject: [PATCH] bulild --- packages/api/src/__generated__/schema.ts | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/packages/api/src/__generated__/schema.ts b/packages/api/src/__generated__/schema.ts index 59f25144f3..1fd00b4961 100644 --- a/packages/api/src/__generated__/schema.ts +++ b/packages/api/src/__generated__/schema.ts @@ -552,11 +552,20 @@ export const enum StoreStatus { Warning = 'WARNING' }; +/** Suggestion term. */ +export type StoreSuggestionTerm = { + __typename?: 'StoreSuggestionTerm'; + /** Its occurrences count. */ + count: Scalars['Int']; + /** The term. */ + value: Scalars['String']; +}; + /** Suggestions information. */ export type StoreSuggestions = { __typename?: 'StoreSuggestions'; /** Array with suggestion products' information. */ - products?: Maybe>; + products: Array; /** Array with suggestion terms. */ - terms?: Maybe>; + terms: Array; };