@vendure/admin-ui 3.3.2 → 3.3.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.
@@ -9145,6 +9145,11 @@ export type OrderLineFragment = {
9145
9145
  sku: string;
9146
9146
  trackInventory: GlobalFlag;
9147
9147
  stockOnHand: number;
9148
+ product: {
9149
+ __typename?: 'Product';
9150
+ id: string;
9151
+ name: string;
9152
+ };
9148
9153
  };
9149
9154
  discounts: Array<{
9150
9155
  __typename?: 'Discount';
@@ -9226,6 +9231,11 @@ export type OrderDetailFragment = {
9226
9231
  sku: string;
9227
9232
  trackInventory: GlobalFlag;
9228
9233
  stockOnHand: number;
9234
+ product: {
9235
+ __typename?: 'Product';
9236
+ id: string;
9237
+ name: string;
9238
+ };
9229
9239
  };
9230
9240
  discounts: Array<{
9231
9241
  __typename?: 'Discount';
@@ -9490,6 +9500,11 @@ export type GetOrderQuery = {
9490
9500
  sku: string;
9491
9501
  trackInventory: GlobalFlag;
9492
9502
  stockOnHand: number;
9503
+ product: {
9504
+ __typename?: 'Product';
9505
+ id: string;
9506
+ name: string;
9507
+ };
9493
9508
  };
9494
9509
  discounts: Array<{
9495
9510
  __typename?: 'Discount';
@@ -9850,6 +9865,11 @@ export type CancelOrderMutation = {
9850
9865
  sku: string;
9851
9866
  trackInventory: GlobalFlag;
9852
9867
  stockOnHand: number;
9868
+ product: {
9869
+ __typename?: 'Product';
9870
+ id: string;
9871
+ name: string;
9872
+ };
9853
9873
  };
9854
9874
  discounts: Array<{
9855
9875
  __typename?: 'Discount';
@@ -10339,6 +10359,11 @@ export type ModifyOrderMutation = {
10339
10359
  sku: string;
10340
10360
  trackInventory: GlobalFlag;
10341
10361
  stockOnHand: number;
10362
+ product: {
10363
+ __typename?: 'Product';
10364
+ id: string;
10365
+ name: string;
10366
+ };
10342
10367
  };
10343
10368
  discounts: Array<{
10344
10369
  __typename?: 'Discount';
@@ -10588,6 +10613,11 @@ export type AddManualPaymentMutation = {
10588
10613
  sku: string;
10589
10614
  trackInventory: GlobalFlag;
10590
10615
  stockOnHand: number;
10616
+ product: {
10617
+ __typename?: 'Product';
10618
+ id: string;
10619
+ name: string;
10620
+ };
10591
10621
  };
10592
10622
  discounts: Array<{
10593
10623
  __typename?: 'Discount';
@@ -10817,6 +10847,11 @@ export type CreateDraftOrderMutation = {
10817
10847
  sku: string;
10818
10848
  trackInventory: GlobalFlag;
10819
10849
  stockOnHand: number;
10850
+ product: {
10851
+ __typename?: 'Product';
10852
+ id: string;
10853
+ name: string;
10854
+ };
10820
10855
  };
10821
10856
  discounts: Array<{
10822
10857
  __typename?: 'Discount';
@@ -11065,6 +11100,11 @@ export type AddItemToDraftOrderMutation = {
11065
11100
  sku: string;
11066
11101
  trackInventory: GlobalFlag;
11067
11102
  stockOnHand: number;
11103
+ product: {
11104
+ __typename?: 'Product';
11105
+ id: string;
11106
+ name: string;
11107
+ };
11068
11108
  };
11069
11109
  discounts: Array<{
11070
11110
  __typename?: 'Discount';
@@ -11315,6 +11355,11 @@ export type AdjustDraftOrderLineMutation = {
11315
11355
  sku: string;
11316
11356
  trackInventory: GlobalFlag;
11317
11357
  stockOnHand: number;
11358
+ product: {
11359
+ __typename?: 'Product';
11360
+ id: string;
11361
+ name: string;
11362
+ };
11318
11363
  };
11319
11364
  discounts: Array<{
11320
11365
  __typename?: 'Discount';
@@ -11557,6 +11602,11 @@ export type RemoveDraftOrderLineMutation = {
11557
11602
  sku: string;
11558
11603
  trackInventory: GlobalFlag;
11559
11604
  stockOnHand: number;
11605
+ product: {
11606
+ __typename?: 'Product';
11607
+ id: string;
11608
+ name: string;
11609
+ };
11560
11610
  };
11561
11611
  discounts: Array<{
11562
11612
  __typename?: 'Discount';
@@ -11800,6 +11850,11 @@ export type SetCustomerForDraftOrderMutation = {
11800
11850
  sku: string;
11801
11851
  trackInventory: GlobalFlag;
11802
11852
  stockOnHand: number;
11853
+ product: {
11854
+ __typename?: 'Product';
11855
+ id: string;
11856
+ name: string;
11857
+ };
11803
11858
  };
11804
11859
  discounts: Array<{
11805
11860
  __typename?: 'Discount';
@@ -12030,6 +12085,11 @@ export type SetDraftOrderShippingAddressMutation = {
12030
12085
  sku: string;
12031
12086
  trackInventory: GlobalFlag;
12032
12087
  stockOnHand: number;
12088
+ product: {
12089
+ __typename?: 'Product';
12090
+ id: string;
12091
+ name: string;
12092
+ };
12033
12093
  };
12034
12094
  discounts: Array<{
12035
12095
  __typename?: 'Discount';
@@ -12260,6 +12320,11 @@ export type SetDraftOrderBillingAddressMutation = {
12260
12320
  sku: string;
12261
12321
  trackInventory: GlobalFlag;
12262
12322
  stockOnHand: number;
12323
+ product: {
12324
+ __typename?: 'Product';
12325
+ id: string;
12326
+ name: string;
12327
+ };
12263
12328
  };
12264
12329
  discounts: Array<{
12265
12330
  __typename?: 'Discount';
@@ -12489,6 +12554,11 @@ export type UnsetDraftOrderShippingAddressMutation = {
12489
12554
  sku: string;
12490
12555
  trackInventory: GlobalFlag;
12491
12556
  stockOnHand: number;
12557
+ product: {
12558
+ __typename?: 'Product';
12559
+ id: string;
12560
+ name: string;
12561
+ };
12492
12562
  };
12493
12563
  discounts: Array<{
12494
12564
  __typename?: 'Discount';
@@ -12718,6 +12788,11 @@ export type UnsetDraftOrderBillingAddressMutation = {
12718
12788
  sku: string;
12719
12789
  trackInventory: GlobalFlag;
12720
12790
  stockOnHand: number;
12791
+ product: {
12792
+ __typename?: 'Product';
12793
+ id: string;
12794
+ name: string;
12795
+ };
12721
12796
  };
12722
12797
  discounts: Array<{
12723
12798
  __typename?: 'Discount';
@@ -12960,6 +13035,11 @@ export type ApplyCouponCodeToDraftOrderMutation = {
12960
13035
  sku: string;
12961
13036
  trackInventory: GlobalFlag;
12962
13037
  stockOnHand: number;
13038
+ product: {
13039
+ __typename?: 'Product';
13040
+ id: string;
13041
+ name: string;
13042
+ };
12963
13043
  };
12964
13044
  discounts: Array<{
12965
13045
  __typename?: 'Discount';
@@ -13190,6 +13270,11 @@ export type RemoveCouponCodeFromDraftOrderMutation = {
13190
13270
  sku: string;
13191
13271
  trackInventory: GlobalFlag;
13192
13272
  stockOnHand: number;
13273
+ product: {
13274
+ __typename?: 'Product';
13275
+ id: string;
13276
+ name: string;
13277
+ };
13193
13278
  };
13194
13279
  discounts: Array<{
13195
13280
  __typename?: 'Discount';
@@ -13443,6 +13528,11 @@ export type SetDraftOrderShippingMethodMutation = {
13443
13528
  sku: string;
13444
13529
  trackInventory: GlobalFlag;
13445
13530
  stockOnHand: number;
13531
+ product: {
13532
+ __typename?: 'Product';
13533
+ id: string;
13534
+ name: string;
13535
+ };
13446
13536
  };
13447
13537
  discounts: Array<{
13448
13538
  __typename?: 'Discount';
@@ -19346,6 +19436,11 @@ export type OrderDetailQueryQuery = {
19346
19436
  sku: string;
19347
19437
  trackInventory: GlobalFlag;
19348
19438
  stockOnHand: number;
19439
+ product: {
19440
+ __typename?: 'Product';
19441
+ id: string;
19442
+ name: string;
19443
+ };
19349
19444
  };
19350
19445
  discounts: Array<{
19351
19446
  __typename?: 'Discount';
@@ -1 +1 @@
1
- export declare const ADMIN_UI_VERSION = "3.3.2";
1
+ export declare const ADMIN_UI_VERSION = "3.3.3";