|
|
@@ -512,15 +512,11 @@ export type CreateProductInput = {
|
|
|
customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
-export type CreateProductOptionGroupCustomFieldsInput = {
|
|
|
- linkUrl?: Maybe<Scalars['String']>;
|
|
|
-};
|
|
|
-
|
|
|
export type CreateProductOptionGroupInput = {
|
|
|
code: Scalars['String'];
|
|
|
translations: Array<ProductOptionGroupTranslationInput>;
|
|
|
options: Array<CreateGroupOptionInput>;
|
|
|
- customFields?: Maybe<CreateProductOptionGroupCustomFieldsInput>;
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
export type CreateProductOptionInput = {
|
|
|
@@ -2581,12 +2577,7 @@ export type ProductOptionGroup = Node & {
|
|
|
name: Scalars['String'];
|
|
|
options: Array<ProductOption>;
|
|
|
translations: Array<ProductOptionGroupTranslation>;
|
|
|
- customFields?: Maybe<ProductOptionGroupCustomFields>;
|
|
|
-};
|
|
|
-
|
|
|
-export type ProductOptionGroupCustomFields = {
|
|
|
- __typename?: 'ProductOptionGroupCustomFields';
|
|
|
- linkUrl?: Maybe<Scalars['String']>;
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
export type ProductOptionGroupTranslation = {
|
|
|
@@ -3513,15 +3504,11 @@ export type UpdateProductInput = {
|
|
|
customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
-export type UpdateProductOptionGroupCustomFieldsInput = {
|
|
|
- linkUrl?: Maybe<Scalars['String']>;
|
|
|
-};
|
|
|
-
|
|
|
export type UpdateProductOptionGroupInput = {
|
|
|
id: Scalars['ID'];
|
|
|
code?: Maybe<Scalars['String']>;
|
|
|
translations?: Maybe<Array<ProductOptionGroupTranslationInput>>;
|
|
|
- customFields?: Maybe<UpdateProductOptionGroupCustomFieldsInput>;
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
export type UpdateProductOptionInput = {
|
|
|
@@ -4707,7 +4694,7 @@ export type GetCustomerListQuery = { __typename?: 'Query' } & {
|
|
|
items: Array<
|
|
|
{ __typename?: 'Customer' } & Pick<
|
|
|
Customer,
|
|
|
- 'id' | 'title' | 'firstName' | 'lastName' | 'emailAddress'
|
|
|
+ 'id' | 'title' | 'firstName' | 'lastName' | 'emailAddress' | 'phoneNumber'
|
|
|
> & { user?: Maybe<{ __typename?: 'User' } & Pick<User, 'id' | 'verified'>> }
|
|
|
>;
|
|
|
};
|