@dropins/storefront-quote-management 1.0.0-beta3 → 1.0.0-beta4

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.
Files changed (35) hide show
  1. package/api/graphql/NegotiableQuoteTemplateFragment.d.ts +1 -1
  2. package/api.js +1 -1
  3. package/chunks/ItemsQuoted.js.map +1 -1
  4. package/chunks/ItemsQuotedTemplate.js +1 -1
  5. package/chunks/ItemsQuotedTemplate.js.map +1 -1
  6. package/chunks/LineItemNoteModal.js.map +1 -1
  7. package/chunks/NegotiableQuoteTemplateFragment.js +144 -2
  8. package/chunks/NegotiableQuoteTemplateFragment.js.map +1 -1
  9. package/chunks/negotiableQuotes.js +1 -1
  10. package/chunks/transform-quote-template.js +1 -1
  11. package/chunks/transform-quote-template.js.map +1 -1
  12. package/chunks/transform-quote.js +1 -1
  13. package/chunks/transform-quote.js.map +1 -1
  14. package/components/LineItemNoteModal/LineItemNoteModal.d.ts +2 -2
  15. package/containers/ItemsQuoted/ItemsQuoted.d.ts +7 -7
  16. package/containers/ManageNegotiableQuote.js +1 -1
  17. package/containers/ManageNegotiableQuote.js.map +1 -1
  18. package/containers/QuoteSummaryList/QuoteSummaryList.d.ts +1 -1
  19. package/containers/QuoteSummaryList.js.map +1 -1
  20. package/containers/QuoteTemplatesListTable.js +1 -1
  21. package/containers/QuoteTemplatesListTable.js.map +1 -1
  22. package/containers/QuotesListTable.js +1 -1
  23. package/containers/QuotesListTable.js.map +1 -1
  24. package/data/models/__fixtures__/negotiableQuoteModel.d.ts +5 -5
  25. package/data/models/negotiable-quote-model.d.ts +2 -2
  26. package/data/models/negotiable-quote-template-model.d.ts +3 -39
  27. package/data/transforms/__fixtures__/negotiableQuoteTemplateData.d.ts +560 -75
  28. package/data/transforms/transform-history.d.ts +15 -0
  29. package/data/transforms/transform-quote-items.d.ts +15 -0
  30. package/hooks/useItemsQuotedTemplate.d.ts +2 -2
  31. package/hooks/useRemoveTemplateItems.d.ts +3 -3
  32. package/lib/itemFormatters.d.ts +1 -1
  33. package/lib/priceCalculators.d.ts +1 -1
  34. package/package.json +1 -1
  35. package/render.js +1 -1
@@ -42,26 +42,51 @@ export declare const mockQuoteTemplateData: {
42
42
  attachments?: undefined;
43
43
  })[];
44
44
  items: ({
45
+ __typename: string;
45
46
  uid: string;
46
47
  product: {
47
48
  name: string;
48
49
  sku: string;
49
50
  uid: string;
50
51
  stock_status: string;
52
+ thumbnail: {
53
+ url: string;
54
+ label: string;
55
+ };
56
+ price_range: {
57
+ maximum_price: {
58
+ regular_price: {
59
+ value: number;
60
+ currency: string;
61
+ };
62
+ };
63
+ };
51
64
  };
52
65
  prices: {
53
66
  price: {
54
67
  currency: string;
55
68
  value: number;
56
69
  };
70
+ price_including_tax: {
71
+ currency: string;
72
+ value: number;
73
+ };
57
74
  original_item_price: {
58
75
  currency: string;
59
76
  value: number;
60
77
  };
78
+ original_row_total: {
79
+ currency: string;
80
+ value: number;
81
+ };
61
82
  row_total: {
62
83
  currency: string;
63
84
  value: number;
64
85
  };
86
+ row_total_including_tax: {
87
+ currency: string;
88
+ value: number;
89
+ };
65
90
  catalog_discount: {
66
91
  amount_off: number;
67
92
  percent_off: number;
@@ -76,45 +101,89 @@ export declare const mockQuoteTemplateData: {
76
101
  }[];
77
102
  };
78
103
  quantity: number;
104
+ is_available: boolean;
79
105
  note_from_buyer: {
80
106
  created_at: string;
81
- creator_id: string;
82
- creator_type: string;
83
- negotiable_quote_template_item_uid: string;
107
+ creator_id: number;
108
+ creator_type: number;
109
+ negotiable_quote_item_uid: string;
84
110
  note: string;
85
111
  note_uid: string;
86
112
  }[];
87
113
  note_from_seller: {
88
114
  created_at: string;
89
- creator_id: string;
90
- creator_type: string;
91
- negotiable_quote_template_item_uid: string;
115
+ creator_id: number;
116
+ creator_type: number;
117
+ negotiable_quote_item_uid: string;
92
118
  note: string;
93
119
  note_uid: string;
94
120
  }[];
121
+ configured_variant?: undefined;
95
122
  configurable_options?: undefined;
96
123
  bundle_options?: undefined;
97
124
  } | {
125
+ __typename: string;
98
126
  uid: string;
99
127
  product: {
100
128
  name: string;
101
129
  sku: string;
102
130
  uid: string;
103
131
  stock_status: string;
132
+ thumbnail: {
133
+ url: string;
134
+ label: string;
135
+ };
136
+ price_range: {
137
+ maximum_price: {
138
+ regular_price: {
139
+ value: number;
140
+ currency: string;
141
+ };
142
+ };
143
+ };
144
+ };
145
+ configured_variant: {
146
+ uid: string;
147
+ sku: string;
148
+ stock_status: string;
149
+ thumbnail: {
150
+ url: string;
151
+ label: string;
152
+ };
153
+ price_range: {
154
+ maximum_price: {
155
+ regular_price: {
156
+ value: number;
157
+ currency: string;
158
+ };
159
+ };
160
+ };
104
161
  };
105
162
  prices: {
106
163
  price: {
107
164
  currency: string;
108
165
  value: number;
109
166
  };
167
+ price_including_tax: {
168
+ currency: string;
169
+ value: number;
170
+ };
110
171
  original_item_price: {
111
172
  currency: string;
112
173
  value: number;
113
174
  };
175
+ original_row_total: {
176
+ currency: string;
177
+ value: number;
178
+ };
114
179
  row_total: {
115
180
  currency: string;
116
181
  value: number;
117
182
  };
183
+ row_total_including_tax: {
184
+ currency: string;
185
+ value: number;
186
+ };
118
187
  catalog_discount: {
119
188
  amount_off: number;
120
189
  percent_off: number;
@@ -129,41 +198,67 @@ export declare const mockQuoteTemplateData: {
129
198
  }[];
130
199
  };
131
200
  quantity: number;
201
+ is_available: boolean;
132
202
  configurable_options: {
133
203
  option_label: string;
134
204
  value_label: string;
135
205
  }[];
136
206
  note_from_buyer: {
137
207
  created_at: string;
138
- creator_id: string;
139
- creator_type: string;
140
- negotiable_quote_template_item_uid: string;
208
+ creator_id: number;
209
+ creator_type: number;
210
+ negotiable_quote_item_uid: string;
141
211
  note: string;
142
212
  note_uid: string;
143
213
  }[];
144
214
  note_from_seller: never[];
145
215
  bundle_options?: undefined;
146
216
  } | {
217
+ __typename: string;
147
218
  uid: string;
148
219
  product: {
149
220
  name: string;
150
221
  sku: string;
151
222
  uid: string;
152
223
  stock_status: string;
224
+ thumbnail: {
225
+ url: string;
226
+ label: string;
227
+ };
228
+ price_range: {
229
+ maximum_price: {
230
+ regular_price: {
231
+ value: number;
232
+ currency: string;
233
+ };
234
+ };
235
+ };
153
236
  };
154
237
  prices: {
155
238
  price: {
156
239
  currency: string;
157
240
  value: number;
158
241
  };
242
+ price_including_tax: {
243
+ currency: string;
244
+ value: number;
245
+ };
159
246
  original_item_price: {
160
247
  currency: string;
161
248
  value: number;
162
249
  };
250
+ original_row_total: {
251
+ currency: string;
252
+ value: number;
253
+ };
163
254
  row_total: {
164
255
  currency: string;
165
256
  value: number;
166
257
  };
258
+ row_total_including_tax: {
259
+ currency: string;
260
+ value: number;
261
+ };
167
262
  catalog_discount: {
168
263
  amount_off: number;
169
264
  percent_off: number;
@@ -178,6 +273,7 @@ export declare const mockQuoteTemplateData: {
178
273
  }[];
179
274
  };
180
275
  quantity: number;
276
+ is_available: boolean;
181
277
  bundle_options: {
182
278
  label: string;
183
279
  values: {
@@ -195,20 +291,21 @@ export declare const mockQuoteTemplateData: {
195
291
  }[];
196
292
  note_from_buyer: {
197
293
  created_at: string;
198
- creator_id: string;
199
- creator_type: string;
200
- negotiable_quote_template_item_uid: string;
294
+ creator_id: number;
295
+ creator_type: number;
296
+ negotiable_quote_item_uid: string;
201
297
  note: string;
202
298
  note_uid: string;
203
299
  }[];
204
300
  note_from_seller: {
205
301
  created_at: string;
206
- creator_id: string;
207
- creator_type: string;
208
- negotiable_quote_template_item_uid: string;
302
+ creator_id: number;
303
+ creator_type: number;
304
+ negotiable_quote_item_uid: string;
209
305
  note: string;
210
306
  note_uid: string;
211
307
  }[];
308
+ configured_variant?: undefined;
212
309
  configurable_options?: undefined;
213
310
  })[];
214
311
  history: ({
@@ -375,26 +472,51 @@ export declare const mockSubmittedQuoteTemplateData: {
375
472
  attachments?: undefined;
376
473
  })[];
377
474
  items: ({
475
+ __typename: string;
378
476
  uid: string;
379
477
  product: {
380
478
  name: string;
381
479
  sku: string;
382
480
  uid: string;
383
481
  stock_status: string;
482
+ thumbnail: {
483
+ url: string;
484
+ label: string;
485
+ };
486
+ price_range: {
487
+ maximum_price: {
488
+ regular_price: {
489
+ value: number;
490
+ currency: string;
491
+ };
492
+ };
493
+ };
384
494
  };
385
495
  prices: {
386
496
  price: {
387
497
  currency: string;
388
498
  value: number;
389
499
  };
500
+ price_including_tax: {
501
+ currency: string;
502
+ value: number;
503
+ };
390
504
  original_item_price: {
391
505
  currency: string;
392
506
  value: number;
393
507
  };
508
+ original_row_total: {
509
+ currency: string;
510
+ value: number;
511
+ };
394
512
  row_total: {
395
513
  currency: string;
396
514
  value: number;
397
515
  };
516
+ row_total_including_tax: {
517
+ currency: string;
518
+ value: number;
519
+ };
398
520
  catalog_discount: {
399
521
  amount_off: number;
400
522
  percent_off: number;
@@ -409,45 +531,89 @@ export declare const mockSubmittedQuoteTemplateData: {
409
531
  }[];
410
532
  };
411
533
  quantity: number;
534
+ is_available: boolean;
412
535
  note_from_buyer: {
413
536
  created_at: string;
414
- creator_id: string;
415
- creator_type: string;
416
- negotiable_quote_template_item_uid: string;
537
+ creator_id: number;
538
+ creator_type: number;
539
+ negotiable_quote_item_uid: string;
417
540
  note: string;
418
541
  note_uid: string;
419
542
  }[];
420
543
  note_from_seller: {
421
544
  created_at: string;
422
- creator_id: string;
423
- creator_type: string;
424
- negotiable_quote_template_item_uid: string;
545
+ creator_id: number;
546
+ creator_type: number;
547
+ negotiable_quote_item_uid: string;
425
548
  note: string;
426
549
  note_uid: string;
427
550
  }[];
551
+ configured_variant?: undefined;
428
552
  configurable_options?: undefined;
429
553
  bundle_options?: undefined;
430
554
  } | {
555
+ __typename: string;
431
556
  uid: string;
432
557
  product: {
433
558
  name: string;
434
559
  sku: string;
435
560
  uid: string;
436
561
  stock_status: string;
562
+ thumbnail: {
563
+ url: string;
564
+ label: string;
565
+ };
566
+ price_range: {
567
+ maximum_price: {
568
+ regular_price: {
569
+ value: number;
570
+ currency: string;
571
+ };
572
+ };
573
+ };
574
+ };
575
+ configured_variant: {
576
+ uid: string;
577
+ sku: string;
578
+ stock_status: string;
579
+ thumbnail: {
580
+ url: string;
581
+ label: string;
582
+ };
583
+ price_range: {
584
+ maximum_price: {
585
+ regular_price: {
586
+ value: number;
587
+ currency: string;
588
+ };
589
+ };
590
+ };
437
591
  };
438
592
  prices: {
439
593
  price: {
440
594
  currency: string;
441
595
  value: number;
442
596
  };
597
+ price_including_tax: {
598
+ currency: string;
599
+ value: number;
600
+ };
443
601
  original_item_price: {
444
602
  currency: string;
445
603
  value: number;
446
604
  };
605
+ original_row_total: {
606
+ currency: string;
607
+ value: number;
608
+ };
447
609
  row_total: {
448
610
  currency: string;
449
611
  value: number;
450
612
  };
613
+ row_total_including_tax: {
614
+ currency: string;
615
+ value: number;
616
+ };
451
617
  catalog_discount: {
452
618
  amount_off: number;
453
619
  percent_off: number;
@@ -462,41 +628,67 @@ export declare const mockSubmittedQuoteTemplateData: {
462
628
  }[];
463
629
  };
464
630
  quantity: number;
631
+ is_available: boolean;
465
632
  configurable_options: {
466
633
  option_label: string;
467
634
  value_label: string;
468
635
  }[];
469
636
  note_from_buyer: {
470
637
  created_at: string;
471
- creator_id: string;
472
- creator_type: string;
473
- negotiable_quote_template_item_uid: string;
638
+ creator_id: number;
639
+ creator_type: number;
640
+ negotiable_quote_item_uid: string;
474
641
  note: string;
475
642
  note_uid: string;
476
643
  }[];
477
644
  note_from_seller: never[];
478
645
  bundle_options?: undefined;
479
646
  } | {
647
+ __typename: string;
480
648
  uid: string;
481
649
  product: {
482
650
  name: string;
483
651
  sku: string;
484
652
  uid: string;
485
653
  stock_status: string;
654
+ thumbnail: {
655
+ url: string;
656
+ label: string;
657
+ };
658
+ price_range: {
659
+ maximum_price: {
660
+ regular_price: {
661
+ value: number;
662
+ currency: string;
663
+ };
664
+ };
665
+ };
486
666
  };
487
667
  prices: {
488
668
  price: {
489
669
  currency: string;
490
670
  value: number;
491
671
  };
672
+ price_including_tax: {
673
+ currency: string;
674
+ value: number;
675
+ };
492
676
  original_item_price: {
493
677
  currency: string;
494
678
  value: number;
495
679
  };
680
+ original_row_total: {
681
+ currency: string;
682
+ value: number;
683
+ };
496
684
  row_total: {
497
685
  currency: string;
498
686
  value: number;
499
687
  };
688
+ row_total_including_tax: {
689
+ currency: string;
690
+ value: number;
691
+ };
500
692
  catalog_discount: {
501
693
  amount_off: number;
502
694
  percent_off: number;
@@ -511,6 +703,7 @@ export declare const mockSubmittedQuoteTemplateData: {
511
703
  }[];
512
704
  };
513
705
  quantity: number;
706
+ is_available: boolean;
514
707
  bundle_options: {
515
708
  label: string;
516
709
  values: {
@@ -528,20 +721,21 @@ export declare const mockSubmittedQuoteTemplateData: {
528
721
  }[];
529
722
  note_from_buyer: {
530
723
  created_at: string;
531
- creator_id: string;
532
- creator_type: string;
533
- negotiable_quote_template_item_uid: string;
724
+ creator_id: number;
725
+ creator_type: number;
726
+ negotiable_quote_item_uid: string;
534
727
  note: string;
535
728
  note_uid: string;
536
729
  }[];
537
730
  note_from_seller: {
538
731
  created_at: string;
539
- creator_id: string;
540
- creator_type: string;
541
- negotiable_quote_template_item_uid: string;
732
+ creator_id: number;
733
+ creator_type: number;
734
+ negotiable_quote_item_uid: string;
542
735
  note: string;
543
736
  note_uid: string;
544
737
  }[];
738
+ configured_variant?: undefined;
545
739
  configurable_options?: undefined;
546
740
  })[];
547
741
  history: ({
@@ -695,26 +889,51 @@ export declare const mockInReviewQuoteTemplateData: {
695
889
  attachments?: undefined;
696
890
  })[];
697
891
  items: ({
892
+ __typename: string;
698
893
  uid: string;
699
894
  product: {
700
895
  name: string;
701
896
  sku: string;
702
897
  uid: string;
703
898
  stock_status: string;
899
+ thumbnail: {
900
+ url: string;
901
+ label: string;
902
+ };
903
+ price_range: {
904
+ maximum_price: {
905
+ regular_price: {
906
+ value: number;
907
+ currency: string;
908
+ };
909
+ };
910
+ };
704
911
  };
705
912
  prices: {
706
913
  price: {
707
914
  currency: string;
708
915
  value: number;
709
916
  };
917
+ price_including_tax: {
918
+ currency: string;
919
+ value: number;
920
+ };
710
921
  original_item_price: {
711
922
  currency: string;
712
923
  value: number;
713
924
  };
925
+ original_row_total: {
926
+ currency: string;
927
+ value: number;
928
+ };
714
929
  row_total: {
715
930
  currency: string;
716
931
  value: number;
717
932
  };
933
+ row_total_including_tax: {
934
+ currency: string;
935
+ value: number;
936
+ };
718
937
  catalog_discount: {
719
938
  amount_off: number;
720
939
  percent_off: number;
@@ -729,45 +948,89 @@ export declare const mockInReviewQuoteTemplateData: {
729
948
  }[];
730
949
  };
731
950
  quantity: number;
951
+ is_available: boolean;
732
952
  note_from_buyer: {
733
953
  created_at: string;
734
- creator_id: string;
735
- creator_type: string;
736
- negotiable_quote_template_item_uid: string;
954
+ creator_id: number;
955
+ creator_type: number;
956
+ negotiable_quote_item_uid: string;
737
957
  note: string;
738
958
  note_uid: string;
739
959
  }[];
740
960
  note_from_seller: {
741
961
  created_at: string;
742
- creator_id: string;
743
- creator_type: string;
744
- negotiable_quote_template_item_uid: string;
962
+ creator_id: number;
963
+ creator_type: number;
964
+ negotiable_quote_item_uid: string;
745
965
  note: string;
746
966
  note_uid: string;
747
967
  }[];
968
+ configured_variant?: undefined;
748
969
  configurable_options?: undefined;
749
970
  bundle_options?: undefined;
750
971
  } | {
972
+ __typename: string;
751
973
  uid: string;
752
974
  product: {
753
975
  name: string;
754
976
  sku: string;
755
977
  uid: string;
756
978
  stock_status: string;
979
+ thumbnail: {
980
+ url: string;
981
+ label: string;
982
+ };
983
+ price_range: {
984
+ maximum_price: {
985
+ regular_price: {
986
+ value: number;
987
+ currency: string;
988
+ };
989
+ };
990
+ };
991
+ };
992
+ configured_variant: {
993
+ uid: string;
994
+ sku: string;
995
+ stock_status: string;
996
+ thumbnail: {
997
+ url: string;
998
+ label: string;
999
+ };
1000
+ price_range: {
1001
+ maximum_price: {
1002
+ regular_price: {
1003
+ value: number;
1004
+ currency: string;
1005
+ };
1006
+ };
1007
+ };
757
1008
  };
758
1009
  prices: {
759
1010
  price: {
760
1011
  currency: string;
761
1012
  value: number;
762
1013
  };
1014
+ price_including_tax: {
1015
+ currency: string;
1016
+ value: number;
1017
+ };
763
1018
  original_item_price: {
764
1019
  currency: string;
765
1020
  value: number;
766
1021
  };
1022
+ original_row_total: {
1023
+ currency: string;
1024
+ value: number;
1025
+ };
767
1026
  row_total: {
768
1027
  currency: string;
769
1028
  value: number;
770
1029
  };
1030
+ row_total_including_tax: {
1031
+ currency: string;
1032
+ value: number;
1033
+ };
771
1034
  catalog_discount: {
772
1035
  amount_off: number;
773
1036
  percent_off: number;
@@ -782,41 +1045,67 @@ export declare const mockInReviewQuoteTemplateData: {
782
1045
  }[];
783
1046
  };
784
1047
  quantity: number;
1048
+ is_available: boolean;
785
1049
  configurable_options: {
786
1050
  option_label: string;
787
1051
  value_label: string;
788
1052
  }[];
789
1053
  note_from_buyer: {
790
1054
  created_at: string;
791
- creator_id: string;
792
- creator_type: string;
793
- negotiable_quote_template_item_uid: string;
1055
+ creator_id: number;
1056
+ creator_type: number;
1057
+ negotiable_quote_item_uid: string;
794
1058
  note: string;
795
1059
  note_uid: string;
796
1060
  }[];
797
1061
  note_from_seller: never[];
798
1062
  bundle_options?: undefined;
799
1063
  } | {
1064
+ __typename: string;
800
1065
  uid: string;
801
1066
  product: {
802
1067
  name: string;
803
1068
  sku: string;
804
1069
  uid: string;
805
1070
  stock_status: string;
1071
+ thumbnail: {
1072
+ url: string;
1073
+ label: string;
1074
+ };
1075
+ price_range: {
1076
+ maximum_price: {
1077
+ regular_price: {
1078
+ value: number;
1079
+ currency: string;
1080
+ };
1081
+ };
1082
+ };
806
1083
  };
807
1084
  prices: {
808
1085
  price: {
809
1086
  currency: string;
810
1087
  value: number;
811
1088
  };
1089
+ price_including_tax: {
1090
+ currency: string;
1091
+ value: number;
1092
+ };
812
1093
  original_item_price: {
813
1094
  currency: string;
814
1095
  value: number;
815
1096
  };
1097
+ original_row_total: {
1098
+ currency: string;
1099
+ value: number;
1100
+ };
816
1101
  row_total: {
817
1102
  currency: string;
818
1103
  value: number;
819
1104
  };
1105
+ row_total_including_tax: {
1106
+ currency: string;
1107
+ value: number;
1108
+ };
820
1109
  catalog_discount: {
821
1110
  amount_off: number;
822
1111
  percent_off: number;
@@ -831,6 +1120,7 @@ export declare const mockInReviewQuoteTemplateData: {
831
1120
  }[];
832
1121
  };
833
1122
  quantity: number;
1123
+ is_available: boolean;
834
1124
  bundle_options: {
835
1125
  label: string;
836
1126
  values: {
@@ -848,20 +1138,21 @@ export declare const mockInReviewQuoteTemplateData: {
848
1138
  }[];
849
1139
  note_from_buyer: {
850
1140
  created_at: string;
851
- creator_id: string;
852
- creator_type: string;
853
- negotiable_quote_template_item_uid: string;
1141
+ creator_id: number;
1142
+ creator_type: number;
1143
+ negotiable_quote_item_uid: string;
854
1144
  note: string;
855
1145
  note_uid: string;
856
1146
  }[];
857
1147
  note_from_seller: {
858
1148
  created_at: string;
859
- creator_id: string;
860
- creator_type: string;
861
- negotiable_quote_template_item_uid: string;
1149
+ creator_id: number;
1150
+ creator_type: number;
1151
+ negotiable_quote_item_uid: string;
862
1152
  note: string;
863
1153
  note_uid: string;
864
1154
  }[];
1155
+ configured_variant?: undefined;
865
1156
  configurable_options?: undefined;
866
1157
  })[];
867
1158
  history: ({
@@ -1015,26 +1306,51 @@ export declare const mockClosedQuoteTemplateData: {
1015
1306
  attachments?: undefined;
1016
1307
  })[];
1017
1308
  items: ({
1309
+ __typename: string;
1018
1310
  uid: string;
1019
1311
  product: {
1020
1312
  name: string;
1021
1313
  sku: string;
1022
1314
  uid: string;
1023
1315
  stock_status: string;
1316
+ thumbnail: {
1317
+ url: string;
1318
+ label: string;
1319
+ };
1320
+ price_range: {
1321
+ maximum_price: {
1322
+ regular_price: {
1323
+ value: number;
1324
+ currency: string;
1325
+ };
1326
+ };
1327
+ };
1024
1328
  };
1025
1329
  prices: {
1026
1330
  price: {
1027
1331
  currency: string;
1028
1332
  value: number;
1029
1333
  };
1334
+ price_including_tax: {
1335
+ currency: string;
1336
+ value: number;
1337
+ };
1030
1338
  original_item_price: {
1031
1339
  currency: string;
1032
1340
  value: number;
1033
1341
  };
1342
+ original_row_total: {
1343
+ currency: string;
1344
+ value: number;
1345
+ };
1034
1346
  row_total: {
1035
1347
  currency: string;
1036
1348
  value: number;
1037
1349
  };
1350
+ row_total_including_tax: {
1351
+ currency: string;
1352
+ value: number;
1353
+ };
1038
1354
  catalog_discount: {
1039
1355
  amount_off: number;
1040
1356
  percent_off: number;
@@ -1049,45 +1365,89 @@ export declare const mockClosedQuoteTemplateData: {
1049
1365
  }[];
1050
1366
  };
1051
1367
  quantity: number;
1368
+ is_available: boolean;
1052
1369
  note_from_buyer: {
1053
1370
  created_at: string;
1054
- creator_id: string;
1055
- creator_type: string;
1056
- negotiable_quote_template_item_uid: string;
1371
+ creator_id: number;
1372
+ creator_type: number;
1373
+ negotiable_quote_item_uid: string;
1057
1374
  note: string;
1058
1375
  note_uid: string;
1059
1376
  }[];
1060
1377
  note_from_seller: {
1061
1378
  created_at: string;
1062
- creator_id: string;
1063
- creator_type: string;
1064
- negotiable_quote_template_item_uid: string;
1379
+ creator_id: number;
1380
+ creator_type: number;
1381
+ negotiable_quote_item_uid: string;
1065
1382
  note: string;
1066
1383
  note_uid: string;
1067
1384
  }[];
1385
+ configured_variant?: undefined;
1068
1386
  configurable_options?: undefined;
1069
1387
  bundle_options?: undefined;
1070
1388
  } | {
1389
+ __typename: string;
1071
1390
  uid: string;
1072
1391
  product: {
1073
1392
  name: string;
1074
1393
  sku: string;
1075
1394
  uid: string;
1076
1395
  stock_status: string;
1396
+ thumbnail: {
1397
+ url: string;
1398
+ label: string;
1399
+ };
1400
+ price_range: {
1401
+ maximum_price: {
1402
+ regular_price: {
1403
+ value: number;
1404
+ currency: string;
1405
+ };
1406
+ };
1407
+ };
1408
+ };
1409
+ configured_variant: {
1410
+ uid: string;
1411
+ sku: string;
1412
+ stock_status: string;
1413
+ thumbnail: {
1414
+ url: string;
1415
+ label: string;
1416
+ };
1417
+ price_range: {
1418
+ maximum_price: {
1419
+ regular_price: {
1420
+ value: number;
1421
+ currency: string;
1422
+ };
1423
+ };
1424
+ };
1077
1425
  };
1078
1426
  prices: {
1079
1427
  price: {
1080
1428
  currency: string;
1081
1429
  value: number;
1082
1430
  };
1431
+ price_including_tax: {
1432
+ currency: string;
1433
+ value: number;
1434
+ };
1083
1435
  original_item_price: {
1084
1436
  currency: string;
1085
1437
  value: number;
1086
1438
  };
1439
+ original_row_total: {
1440
+ currency: string;
1441
+ value: number;
1442
+ };
1087
1443
  row_total: {
1088
1444
  currency: string;
1089
1445
  value: number;
1090
1446
  };
1447
+ row_total_including_tax: {
1448
+ currency: string;
1449
+ value: number;
1450
+ };
1091
1451
  catalog_discount: {
1092
1452
  amount_off: number;
1093
1453
  percent_off: number;
@@ -1102,41 +1462,67 @@ export declare const mockClosedQuoteTemplateData: {
1102
1462
  }[];
1103
1463
  };
1104
1464
  quantity: number;
1465
+ is_available: boolean;
1105
1466
  configurable_options: {
1106
1467
  option_label: string;
1107
1468
  value_label: string;
1108
1469
  }[];
1109
1470
  note_from_buyer: {
1110
1471
  created_at: string;
1111
- creator_id: string;
1112
- creator_type: string;
1113
- negotiable_quote_template_item_uid: string;
1472
+ creator_id: number;
1473
+ creator_type: number;
1474
+ negotiable_quote_item_uid: string;
1114
1475
  note: string;
1115
1476
  note_uid: string;
1116
1477
  }[];
1117
1478
  note_from_seller: never[];
1118
1479
  bundle_options?: undefined;
1119
1480
  } | {
1481
+ __typename: string;
1120
1482
  uid: string;
1121
1483
  product: {
1122
1484
  name: string;
1123
1485
  sku: string;
1124
1486
  uid: string;
1125
1487
  stock_status: string;
1488
+ thumbnail: {
1489
+ url: string;
1490
+ label: string;
1491
+ };
1492
+ price_range: {
1493
+ maximum_price: {
1494
+ regular_price: {
1495
+ value: number;
1496
+ currency: string;
1497
+ };
1498
+ };
1499
+ };
1126
1500
  };
1127
1501
  prices: {
1128
1502
  price: {
1129
1503
  currency: string;
1130
1504
  value: number;
1131
1505
  };
1506
+ price_including_tax: {
1507
+ currency: string;
1508
+ value: number;
1509
+ };
1132
1510
  original_item_price: {
1133
1511
  currency: string;
1134
1512
  value: number;
1135
1513
  };
1514
+ original_row_total: {
1515
+ currency: string;
1516
+ value: number;
1517
+ };
1136
1518
  row_total: {
1137
1519
  currency: string;
1138
1520
  value: number;
1139
1521
  };
1522
+ row_total_including_tax: {
1523
+ currency: string;
1524
+ value: number;
1525
+ };
1140
1526
  catalog_discount: {
1141
1527
  amount_off: number;
1142
1528
  percent_off: number;
@@ -1151,6 +1537,7 @@ export declare const mockClosedQuoteTemplateData: {
1151
1537
  }[];
1152
1538
  };
1153
1539
  quantity: number;
1540
+ is_available: boolean;
1154
1541
  bundle_options: {
1155
1542
  label: string;
1156
1543
  values: {
@@ -1168,20 +1555,21 @@ export declare const mockClosedQuoteTemplateData: {
1168
1555
  }[];
1169
1556
  note_from_buyer: {
1170
1557
  created_at: string;
1171
- creator_id: string;
1172
- creator_type: string;
1173
- negotiable_quote_template_item_uid: string;
1558
+ creator_id: number;
1559
+ creator_type: number;
1560
+ negotiable_quote_item_uid: string;
1174
1561
  note: string;
1175
1562
  note_uid: string;
1176
1563
  }[];
1177
1564
  note_from_seller: {
1178
1565
  created_at: string;
1179
- creator_id: string;
1180
- creator_type: string;
1181
- negotiable_quote_template_item_uid: string;
1566
+ creator_id: number;
1567
+ creator_type: number;
1568
+ negotiable_quote_item_uid: string;
1182
1569
  note: string;
1183
1570
  note_uid: string;
1184
1571
  }[];
1572
+ configured_variant?: undefined;
1185
1573
  configurable_options?: undefined;
1186
1574
  })[];
1187
1575
  history: ({
@@ -1335,26 +1723,51 @@ export declare const mockInactiveQuoteTemplateData: {
1335
1723
  attachments?: undefined;
1336
1724
  })[];
1337
1725
  items: ({
1726
+ __typename: string;
1338
1727
  uid: string;
1339
1728
  product: {
1340
1729
  name: string;
1341
1730
  sku: string;
1342
1731
  uid: string;
1343
1732
  stock_status: string;
1733
+ thumbnail: {
1734
+ url: string;
1735
+ label: string;
1736
+ };
1737
+ price_range: {
1738
+ maximum_price: {
1739
+ regular_price: {
1740
+ value: number;
1741
+ currency: string;
1742
+ };
1743
+ };
1744
+ };
1344
1745
  };
1345
1746
  prices: {
1346
1747
  price: {
1347
1748
  currency: string;
1348
1749
  value: number;
1349
1750
  };
1751
+ price_including_tax: {
1752
+ currency: string;
1753
+ value: number;
1754
+ };
1350
1755
  original_item_price: {
1351
1756
  currency: string;
1352
1757
  value: number;
1353
1758
  };
1759
+ original_row_total: {
1760
+ currency: string;
1761
+ value: number;
1762
+ };
1354
1763
  row_total: {
1355
1764
  currency: string;
1356
1765
  value: number;
1357
1766
  };
1767
+ row_total_including_tax: {
1768
+ currency: string;
1769
+ value: number;
1770
+ };
1358
1771
  catalog_discount: {
1359
1772
  amount_off: number;
1360
1773
  percent_off: number;
@@ -1369,45 +1782,89 @@ export declare const mockInactiveQuoteTemplateData: {
1369
1782
  }[];
1370
1783
  };
1371
1784
  quantity: number;
1785
+ is_available: boolean;
1372
1786
  note_from_buyer: {
1373
1787
  created_at: string;
1374
- creator_id: string;
1375
- creator_type: string;
1376
- negotiable_quote_template_item_uid: string;
1788
+ creator_id: number;
1789
+ creator_type: number;
1790
+ negotiable_quote_item_uid: string;
1377
1791
  note: string;
1378
1792
  note_uid: string;
1379
1793
  }[];
1380
1794
  note_from_seller: {
1381
1795
  created_at: string;
1382
- creator_id: string;
1383
- creator_type: string;
1384
- negotiable_quote_template_item_uid: string;
1796
+ creator_id: number;
1797
+ creator_type: number;
1798
+ negotiable_quote_item_uid: string;
1385
1799
  note: string;
1386
1800
  note_uid: string;
1387
1801
  }[];
1802
+ configured_variant?: undefined;
1388
1803
  configurable_options?: undefined;
1389
1804
  bundle_options?: undefined;
1390
1805
  } | {
1806
+ __typename: string;
1391
1807
  uid: string;
1392
1808
  product: {
1393
1809
  name: string;
1394
1810
  sku: string;
1395
1811
  uid: string;
1396
1812
  stock_status: string;
1813
+ thumbnail: {
1814
+ url: string;
1815
+ label: string;
1816
+ };
1817
+ price_range: {
1818
+ maximum_price: {
1819
+ regular_price: {
1820
+ value: number;
1821
+ currency: string;
1822
+ };
1823
+ };
1824
+ };
1825
+ };
1826
+ configured_variant: {
1827
+ uid: string;
1828
+ sku: string;
1829
+ stock_status: string;
1830
+ thumbnail: {
1831
+ url: string;
1832
+ label: string;
1833
+ };
1834
+ price_range: {
1835
+ maximum_price: {
1836
+ regular_price: {
1837
+ value: number;
1838
+ currency: string;
1839
+ };
1840
+ };
1841
+ };
1397
1842
  };
1398
1843
  prices: {
1399
1844
  price: {
1400
1845
  currency: string;
1401
1846
  value: number;
1402
1847
  };
1848
+ price_including_tax: {
1849
+ currency: string;
1850
+ value: number;
1851
+ };
1403
1852
  original_item_price: {
1404
1853
  currency: string;
1405
1854
  value: number;
1406
1855
  };
1856
+ original_row_total: {
1857
+ currency: string;
1858
+ value: number;
1859
+ };
1407
1860
  row_total: {
1408
1861
  currency: string;
1409
1862
  value: number;
1410
1863
  };
1864
+ row_total_including_tax: {
1865
+ currency: string;
1866
+ value: number;
1867
+ };
1411
1868
  catalog_discount: {
1412
1869
  amount_off: number;
1413
1870
  percent_off: number;
@@ -1422,41 +1879,67 @@ export declare const mockInactiveQuoteTemplateData: {
1422
1879
  }[];
1423
1880
  };
1424
1881
  quantity: number;
1882
+ is_available: boolean;
1425
1883
  configurable_options: {
1426
1884
  option_label: string;
1427
1885
  value_label: string;
1428
1886
  }[];
1429
1887
  note_from_buyer: {
1430
1888
  created_at: string;
1431
- creator_id: string;
1432
- creator_type: string;
1433
- negotiable_quote_template_item_uid: string;
1889
+ creator_id: number;
1890
+ creator_type: number;
1891
+ negotiable_quote_item_uid: string;
1434
1892
  note: string;
1435
1893
  note_uid: string;
1436
1894
  }[];
1437
1895
  note_from_seller: never[];
1438
1896
  bundle_options?: undefined;
1439
1897
  } | {
1898
+ __typename: string;
1440
1899
  uid: string;
1441
1900
  product: {
1442
1901
  name: string;
1443
1902
  sku: string;
1444
1903
  uid: string;
1445
1904
  stock_status: string;
1905
+ thumbnail: {
1906
+ url: string;
1907
+ label: string;
1908
+ };
1909
+ price_range: {
1910
+ maximum_price: {
1911
+ regular_price: {
1912
+ value: number;
1913
+ currency: string;
1914
+ };
1915
+ };
1916
+ };
1446
1917
  };
1447
1918
  prices: {
1448
1919
  price: {
1449
1920
  currency: string;
1450
1921
  value: number;
1451
1922
  };
1923
+ price_including_tax: {
1924
+ currency: string;
1925
+ value: number;
1926
+ };
1452
1927
  original_item_price: {
1453
1928
  currency: string;
1454
1929
  value: number;
1455
1930
  };
1931
+ original_row_total: {
1932
+ currency: string;
1933
+ value: number;
1934
+ };
1456
1935
  row_total: {
1457
1936
  currency: string;
1458
1937
  value: number;
1459
1938
  };
1939
+ row_total_including_tax: {
1940
+ currency: string;
1941
+ value: number;
1942
+ };
1460
1943
  catalog_discount: {
1461
1944
  amount_off: number;
1462
1945
  percent_off: number;
@@ -1471,6 +1954,7 @@ export declare const mockInactiveQuoteTemplateData: {
1471
1954
  }[];
1472
1955
  };
1473
1956
  quantity: number;
1957
+ is_available: boolean;
1474
1958
  bundle_options: {
1475
1959
  label: string;
1476
1960
  values: {
@@ -1488,20 +1972,21 @@ export declare const mockInactiveQuoteTemplateData: {
1488
1972
  }[];
1489
1973
  note_from_buyer: {
1490
1974
  created_at: string;
1491
- creator_id: string;
1492
- creator_type: string;
1493
- negotiable_quote_template_item_uid: string;
1975
+ creator_id: number;
1976
+ creator_type: number;
1977
+ negotiable_quote_item_uid: string;
1494
1978
  note: string;
1495
1979
  note_uid: string;
1496
1980
  }[];
1497
1981
  note_from_seller: {
1498
1982
  created_at: string;
1499
- creator_id: string;
1500
- creator_type: string;
1501
- negotiable_quote_template_item_uid: string;
1983
+ creator_id: number;
1984
+ creator_type: number;
1985
+ negotiable_quote_item_uid: string;
1502
1986
  note: string;
1503
1987
  note_uid: string;
1504
1988
  }[];
1989
+ configured_variant?: undefined;
1505
1990
  configurable_options?: undefined;
1506
1991
  })[];
1507
1992
  history: ({