@whizzes/wsfc 0.0.1-early-dev-6 → 0.0.1-early-dev-7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
@@ -730,6 +730,7 @@ export type Product = {
|
|
730
730
|
defaultVariantId: Scalars['UUID']['output'];
|
731
731
|
description: Scalars['JsonString']['output'];
|
732
732
|
id: Scalars['UUID']['output'];
|
733
|
+
metadata?: Maybe<Scalars['JsonString']['output']>;
|
733
734
|
name: Scalars['String']['output'];
|
734
735
|
position: Scalars['Int']['output'];
|
735
736
|
publishAt: Scalars['DateTime']['output'];
|
@@ -796,6 +797,7 @@ export type ProductUpdate = {
|
|
796
797
|
|
797
798
|
export type ProductUpdateInput = {
|
798
799
|
description?: InputMaybe<Scalars['JsonString']['input']>;
|
800
|
+
metadata?: InputMaybe<Scalars['JsonString']['input']>;
|
799
801
|
name?: InputMaybe<Scalars['String']['input']>;
|
800
802
|
position?: InputMaybe<Scalars['Int']['input']>;
|
801
803
|
slug?: InputMaybe<Scalars['Slug']['input']>;
|
@@ -996,9 +998,9 @@ export type ProductsListQueryVariables = Exact<{
|
|
996
998
|
}>;
|
997
999
|
|
998
1000
|
|
999
|
-
export type ProductsListQuery = { __typename?: 'Query', products: { __typename?: 'ProductConnection', edges: Array<{ __typename?: 'ProductEdge', node: { __typename?: 'Product', channelCode: any, id: any, name: string, slug: any, description: any, defaultVariantId: any, position: number, defaultVariant: { __typename?: 'Variant', id: any, channelCode: any, sku?: string | null, productId: any, requiresShipping: boolean, images: Array<{ __typename?: 'Image', id: any, channelCode: any, height: number, width: number, url: string, thumbnailUrl?: string | null, size: number, mimeType: MimeType, useCase: UseCase, createdAt: any, updatedAt: any }>, prices: Array<{ __typename?: 'Price', variantId: any, channelCode: any, currency: Iso4217, price: any }> }, categories: Array<{ __typename?: 'Category', id: any, name: string, path: Array<any>, position: number, isActive: boolean, createdAt: any, updatedAt: any }> } }> } };
|
1001
|
+
export type ProductsListQuery = { __typename?: 'Query', products: { __typename?: 'ProductConnection', edges: Array<{ __typename?: 'ProductEdge', node: { __typename?: 'Product', channelCode: any, id: any, name: string, slug: any, description: any, metadata?: any | null, defaultVariantId: any, position: number, defaultVariant: { __typename?: 'Variant', id: any, channelCode: any, sku?: string | null, productId: any, requiresShipping: boolean, images: Array<{ __typename?: 'Image', id: any, channelCode: any, height: number, width: number, url: string, thumbnailUrl?: string | null, size: number, mimeType: MimeType, useCase: UseCase, createdAt: any, updatedAt: any }>, prices: Array<{ __typename?: 'Price', variantId: any, channelCode: any, currency: Iso4217, price: any }> }, categories: Array<{ __typename?: 'Category', id: any, name: string, path: Array<any>, position: number, isActive: boolean, createdAt: any, updatedAt: any }> } }> } };
|
1000
1002
|
|
1001
|
-
export type ProductsListFieldsFragment = { __typename?: 'Product', channelCode: any, id: any, name: string, slug: any, description: any, defaultVariantId: any, position: number, defaultVariant: { __typename?: 'Variant', id: any, channelCode: any, sku?: string | null, productId: any, requiresShipping: boolean, images: Array<{ __typename?: 'Image', id: any, channelCode: any, height: number, width: number, url: string, thumbnailUrl?: string | null, size: number, mimeType: MimeType, useCase: UseCase, createdAt: any, updatedAt: any }>, prices: Array<{ __typename?: 'Price', variantId: any, channelCode: any, currency: Iso4217, price: any }> }, categories: Array<{ __typename?: 'Category', id: any, name: string, path: Array<any>, position: number, isActive: boolean, createdAt: any, updatedAt: any }> };
|
1003
|
+
export type ProductsListFieldsFragment = { __typename?: 'Product', channelCode: any, id: any, name: string, slug: any, description: any, metadata?: any | null, defaultVariantId: any, position: number, defaultVariant: { __typename?: 'Variant', id: any, channelCode: any, sku?: string | null, productId: any, requiresShipping: boolean, images: Array<{ __typename?: 'Image', id: any, channelCode: any, height: number, width: number, url: string, thumbnailUrl?: string | null, size: number, mimeType: MimeType, useCase: UseCase, createdAt: any, updatedAt: any }>, prices: Array<{ __typename?: 'Price', variantId: any, channelCode: any, currency: Iso4217, price: any }> }, categories: Array<{ __typename?: 'Category', id: any, name: string, path: Array<any>, position: number, isActive: boolean, createdAt: any, updatedAt: any }> };
|
1002
1004
|
|
1003
1005
|
export const ProductsListFieldsFragmentDoc = gql`
|
1004
1006
|
fragment ProductsListFields on Product {
|
@@ -1007,6 +1009,7 @@ export const ProductsListFieldsFragmentDoc = gql`
|
|
1007
1009
|
name
|
1008
1010
|
slug
|
1009
1011
|
description
|
1012
|
+
metadata
|
1010
1013
|
defaultVariantId
|
1011
1014
|
defaultVariant {
|
1012
1015
|
id
|