|
|
@@ -1347,6 +1347,7 @@ export type CustomFields = {
|
|
|
ProductOption: Array<CustomFieldConfig>;
|
|
|
ProductOptionGroup: Array<CustomFieldConfig>;
|
|
|
ProductVariant: Array<CustomFieldConfig>;
|
|
|
+ ProductVariantPrice: Array<CustomFieldConfig>;
|
|
|
Promotion: Array<CustomFieldConfig>;
|
|
|
Region: Array<CustomFieldConfig>;
|
|
|
Seller: Array<CustomFieldConfig>;
|
|
|
@@ -4795,6 +4796,7 @@ export type ProductVariantListOptions = {
|
|
|
export type ProductVariantPrice = {
|
|
|
__typename?: 'ProductVariantPrice';
|
|
|
currencyCode: CurrencyCode;
|
|
|
+ customFields?: Maybe<Scalars['JSON']['output']>;
|
|
|
price: Scalars['Money']['output'];
|
|
|
};
|
|
|
|