|
|
@@ -1414,12 +1414,12 @@ export type Mutation = {
|
|
|
assignRoleToAdministrator: Administrator,
|
|
|
/** Create a new Asset */
|
|
|
createAssets: Array<Asset>,
|
|
|
- login: LoginResult,
|
|
|
- logout: Scalars['Boolean'],
|
|
|
/** Create a new Channel */
|
|
|
createChannel: Channel,
|
|
|
/** Update an existing Channel */
|
|
|
updateChannel: Channel,
|
|
|
+ login: LoginResult,
|
|
|
+ logout: Scalars['Boolean'],
|
|
|
/** Create a new Collection */
|
|
|
createCollection: Collection,
|
|
|
/** Update an existing Collection */
|
|
|
@@ -1472,7 +1472,6 @@ export type Mutation = {
|
|
|
createProductOptionGroup: ProductOptionGroup,
|
|
|
/** Update an existing ProductOptionGroup */
|
|
|
updateProductOptionGroup: ProductOptionGroup,
|
|
|
- reindex: SearchReindexResponse,
|
|
|
/** Create a new Product */
|
|
|
createProduct: Product,
|
|
|
/** Update an existing Product */
|
|
|
@@ -1487,6 +1486,7 @@ export type Mutation = {
|
|
|
generateVariantsForProduct: Product,
|
|
|
/** Update existing ProductVariants */
|
|
|
updateProductVariants: Array<Maybe<ProductVariant>>,
|
|
|
+ reindex: SearchReindexResponse,
|
|
|
createPromotion: Promotion,
|
|
|
updatePromotion: Promotion,
|
|
|
deletePromotion: DeletionResponse,
|
|
|
@@ -1494,14 +1494,14 @@ export type Mutation = {
|
|
|
createRole: Role,
|
|
|
/** Update an existing Role */
|
|
|
updateRole: Role,
|
|
|
- /** Create a new ShippingMethod */
|
|
|
- createShippingMethod: ShippingMethod,
|
|
|
- /** Update an existing ShippingMethod */
|
|
|
- updateShippingMethod: ShippingMethod,
|
|
|
/** Create a new TaxCategory */
|
|
|
createTaxCategory: TaxCategory,
|
|
|
/** Update an existing TaxCategory */
|
|
|
updateTaxCategory: TaxCategory,
|
|
|
+ /** Create a new ShippingMethod */
|
|
|
+ createShippingMethod: ShippingMethod,
|
|
|
+ /** Update an existing ShippingMethod */
|
|
|
+ updateShippingMethod: ShippingMethod,
|
|
|
/** Create a new TaxRate */
|
|
|
createTaxRate: TaxRate,
|
|
|
/** Update an existing TaxRate */
|
|
|
@@ -1545,13 +1545,6 @@ export type MutationCreateAssetsArgs = {
|
|
|
};
|
|
|
|
|
|
|
|
|
-export type MutationLoginArgs = {
|
|
|
- username: Scalars['String'],
|
|
|
- password: Scalars['String'],
|
|
|
- rememberMe?: Maybe<Scalars['Boolean']>
|
|
|
-};
|
|
|
-
|
|
|
-
|
|
|
export type MutationCreateChannelArgs = {
|
|
|
input: CreateChannelInput
|
|
|
};
|
|
|
@@ -1562,6 +1555,13 @@ export type MutationUpdateChannelArgs = {
|
|
|
};
|
|
|
|
|
|
|
|
|
+export type MutationLoginArgs = {
|
|
|
+ username: Scalars['String'],
|
|
|
+ password: Scalars['String'],
|
|
|
+ rememberMe?: Maybe<Scalars['Boolean']>
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
export type MutationCreateCollectionArgs = {
|
|
|
input: CreateCollectionInput
|
|
|
};
|
|
|
@@ -1768,23 +1768,23 @@ export type MutationUpdateRoleArgs = {
|
|
|
};
|
|
|
|
|
|
|
|
|
-export type MutationCreateShippingMethodArgs = {
|
|
|
- input: CreateShippingMethodInput
|
|
|
+export type MutationCreateTaxCategoryArgs = {
|
|
|
+ input: CreateTaxCategoryInput
|
|
|
};
|
|
|
|
|
|
|
|
|
-export type MutationUpdateShippingMethodArgs = {
|
|
|
- input: UpdateShippingMethodInput
|
|
|
+export type MutationUpdateTaxCategoryArgs = {
|
|
|
+ input: UpdateTaxCategoryInput
|
|
|
};
|
|
|
|
|
|
|
|
|
-export type MutationCreateTaxCategoryArgs = {
|
|
|
- input: CreateTaxCategoryInput
|
|
|
+export type MutationCreateShippingMethodArgs = {
|
|
|
+ input: CreateShippingMethodInput
|
|
|
};
|
|
|
|
|
|
|
|
|
-export type MutationUpdateTaxCategoryArgs = {
|
|
|
- input: UpdateTaxCategoryInput
|
|
|
+export type MutationUpdateShippingMethodArgs = {
|
|
|
+ input: UpdateShippingMethodInput
|
|
|
};
|
|
|
|
|
|
|
|
|
@@ -1874,6 +1874,7 @@ export type Order = Node & {
|
|
|
subTotal: Scalars['Int'],
|
|
|
currencyCode: CurrencyCode,
|
|
|
shipping: Scalars['Int'],
|
|
|
+ shippingWithTax: Scalars['Int'],
|
|
|
shippingMethod?: Maybe<ShippingMethod>,
|
|
|
totalBeforeTax: Scalars['Int'],
|
|
|
total: Scalars['Int'],
|
|
|
@@ -1902,6 +1903,7 @@ export type OrderFilterParameter = {
|
|
|
subTotal?: Maybe<NumberOperators>,
|
|
|
currencyCode?: Maybe<StringOperators>,
|
|
|
shipping?: Maybe<NumberOperators>,
|
|
|
+ shippingWithTax?: Maybe<NumberOperators>,
|
|
|
totalBeforeTax?: Maybe<NumberOperators>,
|
|
|
total?: Maybe<NumberOperators>,
|
|
|
};
|
|
|
@@ -1953,6 +1955,7 @@ export type OrderSortParameter = {
|
|
|
subTotalBeforeTax?: Maybe<SortOrder>,
|
|
|
subTotal?: Maybe<SortOrder>,
|
|
|
shipping?: Maybe<SortOrder>,
|
|
|
+ shippingWithTax?: Maybe<SortOrder>,
|
|
|
totalBeforeTax?: Maybe<SortOrder>,
|
|
|
total?: Maybe<SortOrder>,
|
|
|
};
|
|
|
@@ -2294,10 +2297,10 @@ export type Query = {
|
|
|
administrator?: Maybe<Administrator>,
|
|
|
assets: AssetList,
|
|
|
asset?: Maybe<Asset>,
|
|
|
- me?: Maybe<CurrentUser>,
|
|
|
channels: Array<Channel>,
|
|
|
channel?: Maybe<Channel>,
|
|
|
activeChannel: Channel,
|
|
|
+ me?: Maybe<CurrentUser>,
|
|
|
collections: CollectionList,
|
|
|
collection?: Maybe<Collection>,
|
|
|
collectionFilters: Array<ConfigurableOperation>,
|
|
|
@@ -2316,20 +2319,20 @@ export type Query = {
|
|
|
paymentMethod?: Maybe<PaymentMethod>,
|
|
|
productOptionGroups: Array<ProductOptionGroup>,
|
|
|
productOptionGroup?: Maybe<ProductOptionGroup>,
|
|
|
- search: SearchResponse,
|
|
|
products: ProductList,
|
|
|
product?: Maybe<Product>,
|
|
|
+ search: SearchResponse,
|
|
|
promotion?: Maybe<Promotion>,
|
|
|
promotions: PromotionList,
|
|
|
adjustmentOperations: AdjustmentOperations,
|
|
|
roles: RoleList,
|
|
|
role?: Maybe<Role>,
|
|
|
+ taxCategories: Array<TaxCategory>,
|
|
|
+ taxCategory?: Maybe<TaxCategory>,
|
|
|
shippingMethods: ShippingMethodList,
|
|
|
shippingMethod?: Maybe<ShippingMethod>,
|
|
|
shippingEligibilityCheckers: Array<ConfigurableOperation>,
|
|
|
shippingCalculators: Array<ConfigurableOperation>,
|
|
|
- taxCategories: Array<TaxCategory>,
|
|
|
- taxCategory?: Maybe<TaxCategory>,
|
|
|
taxRates: TaxRateList,
|
|
|
taxRate?: Maybe<TaxRate>,
|
|
|
zones: Array<Zone>,
|
|
|
@@ -2447,11 +2450,6 @@ export type QueryProductOptionGroupArgs = {
|
|
|
};
|
|
|
|
|
|
|
|
|
-export type QuerySearchArgs = {
|
|
|
- input: SearchInput
|
|
|
-};
|
|
|
-
|
|
|
-
|
|
|
export type QueryProductsArgs = {
|
|
|
languageCode?: Maybe<LanguageCode>,
|
|
|
options?: Maybe<ProductListOptions>
|
|
|
@@ -2464,6 +2462,11 @@ export type QueryProductArgs = {
|
|
|
};
|
|
|
|
|
|
|
|
|
+export type QuerySearchArgs = {
|
|
|
+ input: SearchInput
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
export type QueryPromotionArgs = {
|
|
|
id: Scalars['ID']
|
|
|
};
|
|
|
@@ -2484,17 +2487,17 @@ export type QueryRoleArgs = {
|
|
|
};
|
|
|
|
|
|
|
|
|
-export type QueryShippingMethodsArgs = {
|
|
|
- options?: Maybe<ShippingMethodListOptions>
|
|
|
+export type QueryTaxCategoryArgs = {
|
|
|
+ id: Scalars['ID']
|
|
|
};
|
|
|
|
|
|
|
|
|
-export type QueryShippingMethodArgs = {
|
|
|
- id: Scalars['ID']
|
|
|
+export type QueryShippingMethodsArgs = {
|
|
|
+ options?: Maybe<ShippingMethodListOptions>
|
|
|
};
|
|
|
|
|
|
|
|
|
-export type QueryTaxCategoryArgs = {
|
|
|
+export type QueryShippingMethodArgs = {
|
|
|
id: Scalars['ID']
|
|
|
};
|
|
|
|
|
|
@@ -2658,6 +2661,7 @@ export type ShippingMethodListOptions = {
|
|
|
export type ShippingMethodQuote = {
|
|
|
id: Scalars['ID'],
|
|
|
price: Scalars['Int'],
|
|
|
+ priceWithTax: Scalars['Int'],
|
|
|
description: Scalars['String'],
|
|
|
};
|
|
|
|