@@ -7736,6 +7736,9 @@ export type FulfillmentFulfillmentMutateMutation = {
7736
7736
payload ?: {
7737
7737
__typename ?: 'IoRestorecommerceFulfillmentFulfillment' ;
7738
7738
id ?: string | null ;
7739
+ customerId ?: string | null ;
7740
+ shopId ?: string | null ;
7741
+ userId ?: string | null ;
7739
7742
fulfillmentState ?: IoRestorecommerceFulfillmentFulfillmentState | null ;
7740
7743
labels ?: Array < {
7741
7744
__typename ?: 'IoRestorecommerceFulfillmentLabel' ;
@@ -7751,6 +7754,76 @@ export type FulfillmentFulfillmentMutateMutation = {
7751
7754
message ?: string | null ;
7752
7755
} | null ;
7753
7756
} > | null ;
7757
+ packaging ?: {
7758
+ __typename ?: 'IoRestorecommerceFulfillmentPackaging' ;
7759
+ exportType ?: string | null ;
7760
+ notify ?: string | null ;
7761
+ invoiceNumber ?: string | null ;
7762
+ exportDescription ?: string | null ;
7763
+ parcels ?: Array < {
7764
+ __typename ?: 'IoRestorecommerceFulfillmentParcel' ;
7765
+ id ?: string | null ;
7766
+ productId ?: string | null ;
7767
+ variantId ?: string | null ;
7768
+ items ?: Array < {
7769
+ __typename ?: 'IoRestorecommerceFulfillmentItem' ;
7770
+ productId ?: string | null ;
7771
+ variantId ?: string | null ;
7772
+ quantity ?: number | null ;
7773
+ package ?: {
7774
+ __typename ?: 'IoRestorecommerceProductPackage' ;
7775
+ rotatable ?: boolean | null ;
7776
+ weightInKg ?: number | null ;
7777
+ sizeInCm ?: {
7778
+ __typename ?: 'IoRestorecommerceGeometryBoundingBox3D' ;
7779
+ height ?: number | null ;
7780
+ width ?: number | null ;
7781
+ length ?: number | null ;
7782
+ } | null ;
7783
+ } | null ;
7784
+ } > | null ;
7785
+ package ?: {
7786
+ __typename ?: 'IoRestorecommerceProductPackage' ;
7787
+ rotatable ?: boolean | null ;
7788
+ weightInKg ?: number | null ;
7789
+ sizeInCm ?: {
7790
+ __typename ?: 'IoRestorecommerceGeometryBoundingBox3D' ;
7791
+ height ?: number | null ;
7792
+ width ?: number | null ;
7793
+ length ?: number | null ;
7794
+ } | null ;
7795
+ } | null ;
7796
+ } > | null ;
7797
+ sender ?: {
7798
+ __typename ?: 'IoRestorecommerceAddressShippingAddress' ;
7799
+ comments ?: string | null ;
7800
+ address ?: {
7801
+ __typename ?: 'IoRestorecommerceAddressAddress' ;
7802
+ id ?: string | null ;
7803
+ postcode ?: string | null ;
7804
+ } | null ;
7805
+ contact ?: {
7806
+ __typename ?: 'IoRestorecommerceAddressContact' ;
7807
+ name ?: string | null ;
7808
+ email ?: string | null ;
7809
+ phone ?: string | null ;
7810
+ } | null ;
7811
+ } | null ;
7812
+ recipient ?: {
7813
+ __typename ?: 'IoRestorecommerceAddressShippingAddress' ;
7814
+ address ?: {
7815
+ __typename ?: 'IoRestorecommerceAddressAddress' ;
7816
+ id ?: string | null ;
7817
+ postcode ?: string | null ;
7818
+ countryId ?: string | null ;
7819
+ } | null ;
7820
+ } | null ;
7821
+ } | null ;
7822
+ references ?: Array < {
7823
+ __typename ?: 'IoRestorecommerceReferenceReference' ;
7824
+ instanceType ?: string | null ;
7825
+ instanceId ?: string | null ;
7826
+ } > | null ;
7754
7827
meta ?: {
7755
7828
__typename ?: 'IoRestorecommerceMetaMeta' ;
7756
7829
created ?: unknown | null ;
@@ -12233,31 +12306,15 @@ export const FulfillmentFulfillmentMutateDocument = gql`
12233
12306
}
12234
12307
items {
12235
12308
payload {
12236
- id
12237
- labels {
12238
- pdf
12239
- png
12240
- shipmentNumber
12241
- state
12242
- parcelId
12243
- url
12244
- status {
12245
- code
12246
- message
12247
- }
12248
- }
12249
- fulfillmentState
12250
- meta {
12251
- ...MetaFragment
12252
- }
12309
+ ...FulfillmentFragment
12253
12310
}
12254
12311
}
12255
12312
}
12256
12313
}
12257
12314
}
12258
12315
}
12259
12316
}
12260
- ${ MetaFragmentFragmentDoc }
12317
+ ${ FulfillmentFragmentFragmentDoc }
12261
12318
` ;
12262
12319
12263
12320
@Injectable ( {
0 commit comments