@vendure/admin-ui 1.0.2 → 1.0.3

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.
@@ -5198,9 +5198,9 @@ export declare type CreateFulfillmentMutation = {
5198
5198
  __typename?: 'InvalidFulfillmentHandlerError';
5199
5199
  } & ErrorResult_InvalidFulfillmentHandlerError_Fragment) | ({
5200
5200
  __typename?: 'FulfillmentStateTransitionError';
5201
- } & ErrorResult_FulfillmentStateTransitionError_Fragment) | ({
5201
+ } & Pick<FulfillmentStateTransitionError, 'errorCode' | 'message' | 'transitionError'> & ErrorResult_FulfillmentStateTransitionError_Fragment) | ({
5202
5202
  __typename?: 'CreateFulfillmentError';
5203
- } & ErrorResult_CreateFulfillmentError_Fragment);
5203
+ } & Pick<CreateFulfillmentError, 'errorCode' | 'message' | 'fulfillmentHandlerError'> & ErrorResult_CreateFulfillmentError_Fragment);
5204
5204
  };
5205
5205
  export declare type CancelOrderMutationVariables = Exact<{
5206
5206
  input: CancelOrderInput;
@@ -7554,6 +7554,12 @@ export declare namespace CreateFulfillment {
7554
7554
  type Variables = CreateFulfillmentMutationVariables;
7555
7555
  type Mutation = CreateFulfillmentMutation;
7556
7556
  type AddFulfillmentToOrder = (NonNullable<CreateFulfillmentMutation['addFulfillmentToOrder']>);
7557
+ type CreateFulfillmentErrorInlineFragment = (DiscriminateUnion<(NonNullable<CreateFulfillmentMutation['addFulfillmentToOrder']>), {
7558
+ __typename?: 'CreateFulfillmentError';
7559
+ }>);
7560
+ type FulfillmentStateTransitionErrorInlineFragment = (DiscriminateUnion<(NonNullable<CreateFulfillmentMutation['addFulfillmentToOrder']>), {
7561
+ __typename?: 'FulfillmentStateTransitionError';
7562
+ }>);
7557
7563
  }
7558
7564
  export declare namespace CancelOrder {
7559
7565
  type Variables = CancelOrderMutationVariables;
@@ -1 +1 @@
1
- export declare const ADMIN_UI_VERSION = "1.0.2";
1
+ export declare const ADMIN_UI_VERSION = "1.0.3";