|
|
@@ -1083,6 +1083,13 @@ export type MutationUpdateZoneArgs = {
|
|
|
input: UpdateZoneInput;
|
|
|
};
|
|
|
|
|
|
+export type AdministratorListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<AdministratorSortParameter>;
|
|
|
+ filter?: Maybe<AdministratorFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
export type CreateAdministratorInput = {
|
|
|
firstName: Scalars['String'];
|
|
|
lastName: Scalars['String'];
|
|
|
@@ -1157,12 +1164,12 @@ export type MimeTypeError = ErrorResult & {
|
|
|
export type CreateAssetResult = Asset | MimeTypeError;
|
|
|
|
|
|
export type AssetListOptions = {
|
|
|
+ tags?: Maybe<Array<Scalars['String']>>;
|
|
|
+ tagsOperator?: Maybe<LogicalOperator>;
|
|
|
skip?: Maybe<Scalars['Int']>;
|
|
|
take?: Maybe<Scalars['Int']>;
|
|
|
sort?: Maybe<AssetSortParameter>;
|
|
|
filter?: Maybe<AssetFilterParameter>;
|
|
|
- tags?: Maybe<Array<Scalars['String']>>;
|
|
|
- tagsOperator?: Maybe<LogicalOperator>;
|
|
|
};
|
|
|
|
|
|
export type CreateAssetInput = {
|
|
|
@@ -1201,6 +1208,10 @@ export type AssignAssetsToChannelInput = {
|
|
|
channelId: Scalars['ID'];
|
|
|
};
|
|
|
|
|
|
+export type AuthenticationInput = {
|
|
|
+ native?: Maybe<NativeAuthInput>;
|
|
|
+};
|
|
|
+
|
|
|
export type NativeAuthenticationResult = CurrentUser | InvalidCredentialsError | NativeAuthStrategyError;
|
|
|
|
|
|
export type AuthenticationResult = CurrentUser | InvalidCredentialsError;
|
|
|
@@ -1267,6 +1278,13 @@ export type CollectionProductVariantsArgs = {
|
|
|
options?: Maybe<ProductVariantListOptions>;
|
|
|
};
|
|
|
|
|
|
+export type CollectionListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<CollectionSortParameter>;
|
|
|
+ filter?: Maybe<CollectionFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
export type MoveCollectionInput = {
|
|
|
collectionId: Scalars['ID'];
|
|
|
parentId: Scalars['ID'];
|
|
|
@@ -1330,6 +1348,13 @@ export type UpdateCountryInput = {
|
|
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
|
};
|
|
|
|
|
|
+export type CountryListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<CountrySortParameter>;
|
|
|
+ filter?: Maybe<CountryFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
export type Customer = Node & {
|
|
|
__typename?: 'Customer';
|
|
|
groups: Array<CustomerGroup>;
|
|
|
@@ -1364,6 +1389,13 @@ export type CustomerGroupList = PaginatedList & {
|
|
|
totalItems: Scalars['Int'];
|
|
|
};
|
|
|
|
|
|
+export type CustomerGroupListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<CustomerGroupSortParameter>;
|
|
|
+ filter?: Maybe<CustomerGroupFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
export type CreateCustomerGroupInput = {
|
|
|
name: Scalars['String'];
|
|
|
customerIds?: Maybe<Array<Scalars['ID']>>;
|
|
|
@@ -1384,6 +1416,13 @@ export type UpdateCustomerInput = {
|
|
|
customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
+export type CustomerListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<CustomerSortParameter>;
|
|
|
+ filter?: Maybe<CustomerFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
export type AddNoteToCustomerInput = {
|
|
|
id: Scalars['ID'];
|
|
|
note: Scalars['String'];
|
|
|
@@ -1413,6 +1452,13 @@ export type Facet = Node & {
|
|
|
customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
+export type FacetListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<FacetSortParameter>;
|
|
|
+ filter?: Maybe<FacetFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
export type FacetTranslationInput = {
|
|
|
id?: Maybe<Scalars['ID']>;
|
|
|
languageCode: LanguageCode;
|
|
|
@@ -1549,6 +1595,13 @@ export enum JobState {
|
|
|
CANCELLED = 'CANCELLED'
|
|
|
}
|
|
|
|
|
|
+export type JobListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<JobSortParameter>;
|
|
|
+ filter?: Maybe<JobFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
export type JobList = PaginatedList & {
|
|
|
__typename?: 'JobList';
|
|
|
items: Array<Job>;
|
|
|
@@ -1684,6 +1737,7 @@ export type OrderModification = Node & {
|
|
|
};
|
|
|
|
|
|
export type OrderFilterParameter = {
|
|
|
+ customerLastName?: Maybe<StringOperators>;
|
|
|
createdAt?: Maybe<DateOperators>;
|
|
|
updatedAt?: Maybe<DateOperators>;
|
|
|
orderPlacedAt?: Maybe<DateOperators>;
|
|
|
@@ -1698,10 +1752,10 @@ export type OrderFilterParameter = {
|
|
|
shippingWithTax?: Maybe<NumberOperators>;
|
|
|
total?: Maybe<NumberOperators>;
|
|
|
totalWithTax?: Maybe<NumberOperators>;
|
|
|
- customerLastName?: Maybe<StringOperators>;
|
|
|
};
|
|
|
|
|
|
export type OrderSortParameter = {
|
|
|
+ customerLastName?: Maybe<SortOrder>;
|
|
|
id?: Maybe<SortOrder>;
|
|
|
createdAt?: Maybe<SortOrder>;
|
|
|
updatedAt?: Maybe<SortOrder>;
|
|
|
@@ -1715,7 +1769,13 @@ export type OrderSortParameter = {
|
|
|
shippingWithTax?: Maybe<SortOrder>;
|
|
|
total?: Maybe<SortOrder>;
|
|
|
totalWithTax?: Maybe<SortOrder>;
|
|
|
- customerLastName?: Maybe<SortOrder>;
|
|
|
+};
|
|
|
+
|
|
|
+export type OrderListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<OrderSortParameter>;
|
|
|
+ filter?: Maybe<OrderFilterParameter>;
|
|
|
};
|
|
|
|
|
|
export type UpdateOrderInput = {
|
|
|
@@ -2034,6 +2094,13 @@ export type PaymentMethodList = PaginatedList & {
|
|
|
totalItems: Scalars['Int'];
|
|
|
};
|
|
|
|
|
|
+export type PaymentMethodListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<PaymentMethodSortParameter>;
|
|
|
+ filter?: Maybe<PaymentMethodFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
export type CreatePaymentMethodInput = {
|
|
|
name: Scalars['String'];
|
|
|
code: Scalars['String'];
|
|
|
@@ -2116,7 +2183,7 @@ export type ProductVariant = Node & {
|
|
|
options: Array<ProductOption>;
|
|
|
facetValues: Array<FacetValue>;
|
|
|
translations: Array<ProductVariantTranslation>;
|
|
|
- customFields?: Maybe<ProductVariantCustomFields>;
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
|
|
|
@@ -2202,6 +2269,20 @@ export type StockMovementListOptions = {
|
|
|
take?: Maybe<Scalars['Int']>;
|
|
|
};
|
|
|
|
|
|
+export type ProductListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<ProductSortParameter>;
|
|
|
+ filter?: Maybe<ProductFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
+export type ProductVariantListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<ProductVariantSortParameter>;
|
|
|
+ filter?: Maybe<ProductVariantFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
export type ProductTranslationInput = {
|
|
|
id?: Maybe<Scalars['ID']>;
|
|
|
languageCode: LanguageCode;
|
|
|
@@ -2257,7 +2338,7 @@ export type CreateProductVariantInput = {
|
|
|
outOfStockThreshold?: Maybe<Scalars['Int']>;
|
|
|
useGlobalOutOfStockThreshold?: Maybe<Scalars['Boolean']>;
|
|
|
trackInventory?: Maybe<GlobalFlag>;
|
|
|
- customFields?: Maybe<CreateProductVariantCustomFieldsInput>;
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
export type UpdateProductVariantInput = {
|
|
|
@@ -2274,7 +2355,7 @@ export type UpdateProductVariantInput = {
|
|
|
outOfStockThreshold?: Maybe<Scalars['Int']>;
|
|
|
useGlobalOutOfStockThreshold?: Maybe<Scalars['Boolean']>;
|
|
|
trackInventory?: Maybe<GlobalFlag>;
|
|
|
- customFields?: Maybe<UpdateProductVariantCustomFieldsInput>;
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
export type AssignProductsToChannelInput = {
|
|
|
@@ -2309,6 +2390,13 @@ export type ProductOptionInUseError = ErrorResult & {
|
|
|
|
|
|
export type RemoveOptionGroupFromProductResult = Product | ProductOptionInUseError;
|
|
|
|
|
|
+export type PromotionListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<PromotionSortParameter>;
|
|
|
+ filter?: Maybe<PromotionFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
export type CreatePromotionInput = {
|
|
|
name: Scalars['String'];
|
|
|
enabled: Scalars['Boolean'];
|
|
|
@@ -2353,6 +2441,13 @@ export type CreatePromotionResult = Promotion | MissingConditionsError;
|
|
|
|
|
|
export type UpdatePromotionResult = Promotion | MissingConditionsError;
|
|
|
|
|
|
+export type RoleListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<RoleSortParameter>;
|
|
|
+ filter?: Maybe<RoleFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
export type CreateRoleInput = {
|
|
|
code: Scalars['String'];
|
|
|
description: Scalars['String'];
|
|
|
@@ -2368,6 +2463,13 @@ export type UpdateRoleInput = {
|
|
|
channelIds?: Maybe<Array<Scalars['ID']>>;
|
|
|
};
|
|
|
|
|
|
+export type ShippingMethodListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<ShippingMethodSortParameter>;
|
|
|
+ filter?: Maybe<ShippingMethodFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
export type ShippingMethodTranslationInput = {
|
|
|
id?: Maybe<Scalars['ID']>;
|
|
|
languageCode: LanguageCode;
|
|
|
@@ -2516,6 +2618,13 @@ export type StockMovementList = {
|
|
|
totalItems: Scalars['Int'];
|
|
|
};
|
|
|
|
|
|
+export type TagListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<TagSortParameter>;
|
|
|
+ filter?: Maybe<TagFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
export type CreateTagInput = {
|
|
|
value: Scalars['String'];
|
|
|
};
|
|
|
@@ -2536,6 +2645,13 @@ export type UpdateTaxCategoryInput = {
|
|
|
isDefault?: Maybe<Scalars['Boolean']>;
|
|
|
};
|
|
|
|
|
|
+export type TaxRateListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<TaxRateSortParameter>;
|
|
|
+ filter?: Maybe<TaxRateFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
export type CreateTaxRateInput = {
|
|
|
name: Scalars['String'];
|
|
|
enabled: Scalars['Boolean'];
|
|
|
@@ -3743,6 +3859,13 @@ export type HistoryEntryList = PaginatedList & {
|
|
|
totalItems: Scalars['Int'];
|
|
|
};
|
|
|
|
|
|
+export type HistoryEntryListOptions = {
|
|
|
+ skip?: Maybe<Scalars['Int']>;
|
|
|
+ take?: Maybe<Scalars['Int']>;
|
|
|
+ sort?: Maybe<HistoryEntrySortParameter>;
|
|
|
+ filter?: Maybe<HistoryEntryFilterParameter>;
|
|
|
+};
|
|
|
+
|
|
|
/**
|
|
|
* @description
|
|
|
* Languages in the form of a ISO 639-1 language code with optional
|
|
|
@@ -4511,125 +4634,6 @@ export type Zone = Node & {
|
|
|
members: Array<Country>;
|
|
|
};
|
|
|
|
|
|
-export type AdministratorListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<AdministratorSortParameter>;
|
|
|
- filter?: Maybe<AdministratorFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type CollectionListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<CollectionSortParameter>;
|
|
|
- filter?: Maybe<CollectionFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type CountryListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<CountrySortParameter>;
|
|
|
- filter?: Maybe<CountryFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type CustomerGroupListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<CustomerGroupSortParameter>;
|
|
|
- filter?: Maybe<CustomerGroupFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type CustomerListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<CustomerSortParameter>;
|
|
|
- filter?: Maybe<CustomerFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type FacetListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<FacetSortParameter>;
|
|
|
- filter?: Maybe<FacetFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type JobListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<JobSortParameter>;
|
|
|
- filter?: Maybe<JobFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type OrderListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<OrderSortParameter>;
|
|
|
- filter?: Maybe<OrderFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type PaymentMethodListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<PaymentMethodSortParameter>;
|
|
|
- filter?: Maybe<PaymentMethodFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type ProductListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<ProductSortParameter>;
|
|
|
- filter?: Maybe<ProductFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type ProductVariantListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<ProductVariantSortParameter>;
|
|
|
- filter?: Maybe<ProductVariantFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type PromotionListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<PromotionSortParameter>;
|
|
|
- filter?: Maybe<PromotionFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type RoleListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<RoleSortParameter>;
|
|
|
- filter?: Maybe<RoleFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type ShippingMethodListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<ShippingMethodSortParameter>;
|
|
|
- filter?: Maybe<ShippingMethodFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type TagListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<TagSortParameter>;
|
|
|
- filter?: Maybe<TagFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type TaxRateListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<TaxRateSortParameter>;
|
|
|
- filter?: Maybe<TaxRateFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
-export type HistoryEntryListOptions = {
|
|
|
- skip?: Maybe<Scalars['Int']>;
|
|
|
- take?: Maybe<Scalars['Int']>;
|
|
|
- sort?: Maybe<HistoryEntrySortParameter>;
|
|
|
- filter?: Maybe<HistoryEntryFilterParameter>;
|
|
|
-};
|
|
|
-
|
|
|
export type AdministratorFilterParameter = {
|
|
|
createdAt?: Maybe<DateOperators>;
|
|
|
updatedAt?: Maybe<DateOperators>;
|
|
|
@@ -4836,7 +4840,6 @@ export type ProductVariantFilterParameter = {
|
|
|
currencyCode?: Maybe<StringOperators>;
|
|
|
priceWithTax?: Maybe<NumberOperators>;
|
|
|
stockLevel?: Maybe<StringOperators>;
|
|
|
- discountPrice?: Maybe<NumberOperators>;
|
|
|
};
|
|
|
|
|
|
export type ProductVariantSortParameter = {
|
|
|
@@ -4852,7 +4855,6 @@ export type ProductVariantSortParameter = {
|
|
|
price?: Maybe<SortOrder>;
|
|
|
priceWithTax?: Maybe<SortOrder>;
|
|
|
stockLevel?: Maybe<SortOrder>;
|
|
|
- discountPrice?: Maybe<SortOrder>;
|
|
|
};
|
|
|
|
|
|
export type PromotionFilterParameter = {
|
|
|
@@ -4953,23 +4955,6 @@ export type HistoryEntrySortParameter = {
|
|
|
updatedAt?: Maybe<SortOrder>;
|
|
|
};
|
|
|
|
|
|
-export type ProductVariantCustomFields = {
|
|
|
- __typename?: 'ProductVariantCustomFields';
|
|
|
- discountPrice?: Maybe<Scalars['Int']>;
|
|
|
-};
|
|
|
-
|
|
|
-export type CreateProductVariantCustomFieldsInput = {
|
|
|
- discountPrice?: Maybe<Scalars['Int']>;
|
|
|
-};
|
|
|
-
|
|
|
-export type UpdateProductVariantCustomFieldsInput = {
|
|
|
- discountPrice?: Maybe<Scalars['Int']>;
|
|
|
-};
|
|
|
-
|
|
|
-export type AuthenticationInput = {
|
|
|
- native?: Maybe<NativeAuthInput>;
|
|
|
-};
|
|
|
-
|
|
|
export type NativeAuthInput = {
|
|
|
username: Scalars['String'];
|
|
|
password: Scalars['String'];
|
|
|
@@ -6042,9 +6027,11 @@ export type CreateFulfillmentMutation = { addFulfillmentToOrder: (
|
|
|
& ErrorResult_InvalidFulfillmentHandlerError_Fragment
|
|
|
) | (
|
|
|
{ __typename?: 'FulfillmentStateTransitionError' }
|
|
|
+ & Pick<FulfillmentStateTransitionError, 'errorCode' | 'message' | 'transitionError'>
|
|
|
& ErrorResult_FulfillmentStateTransitionError_Fragment
|
|
|
) | (
|
|
|
{ __typename?: 'CreateFulfillmentError' }
|
|
|
+ & Pick<CreateFulfillmentError, 'errorCode' | 'message' | 'fulfillmentHandlerError'>
|
|
|
& ErrorResult_CreateFulfillmentError_Fragment
|
|
|
) };
|
|
|
|
|
|
@@ -8932,6 +8919,8 @@ export namespace CreateFulfillment {
|
|
|
export type Variables = CreateFulfillmentMutationVariables;
|
|
|
export type Mutation = CreateFulfillmentMutation;
|
|
|
export type AddFulfillmentToOrder = (NonNullable<CreateFulfillmentMutation['addFulfillmentToOrder']>);
|
|
|
+ export type CreateFulfillmentErrorInlineFragment = (DiscriminateUnion<(NonNullable<CreateFulfillmentMutation['addFulfillmentToOrder']>), { __typename?: 'CreateFulfillmentError' }>);
|
|
|
+ export type FulfillmentStateTransitionErrorInlineFragment = (DiscriminateUnion<(NonNullable<CreateFulfillmentMutation['addFulfillmentToOrder']>), { __typename?: 'FulfillmentStateTransitionError' }>);
|
|
|
}
|
|
|
|
|
|
export namespace CancelOrder {
|