@dropins/storefront-quote-management 0.0.1-alpha9 → 1.0.0-beta10
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.
- package/LICENSE.md +25 -26
- package/api/acceptQuoteTemplate/acceptQuoteTemplate.d.ts +13 -0
- package/api/{getCustomerData/getCustomerData.d.ts → acceptQuoteTemplate/graphql/acceptQuoteTemplate.d.ts} +2 -2
- package/{data/transforms/__fixtures__/customerData.d.ts → api/acceptQuoteTemplate/index.d.ts} +2 -2
- package/api/addQuoteTemplateLineItemNote/addQuoteTemplateLineItemNote.d.ts +15 -0
- package/api/addQuoteTemplateLineItemNote/graphql/setQuoteTemplateLineItemNote.d.ts +10 -0
- package/api/addQuoteTemplateLineItemNote/index.d.ts +10 -0
- package/api/addQuoteTemplateShippingAddress/addQuoteTemplateShippingAddress.d.ts +37 -0
- package/api/addQuoteTemplateShippingAddress/graphql/setNegotiableQuoteTemplateShippingAddress.d.ts +10 -0
- package/api/addQuoteTemplateShippingAddress/index.d.ts +10 -0
- package/api/cancelQuoteTemplate/cancelQuoteTemplate.d.ts +14 -0
- package/api/cancelQuoteTemplate/graphql/cancelQuoteTemplate.d.ts +10 -0
- package/api/cancelQuoteTemplate/index.d.ts +10 -0
- package/api/closeNegotiableQuote/closeNegotiableQuote.d.ts +31 -0
- package/api/closeNegotiableQuote/graphql/CloseNegotiableQuoteMutation.d.ts +2 -0
- package/api/closeNegotiableQuote/index.d.ts +10 -0
- package/api/createQuoteTemplate/createQuoteTemplate.d.ts +4 -0
- package/api/createQuoteTemplate/graphql/createQuoteTemplate.d.ts +10 -0
- package/api/createQuoteTemplate/index.d.ts +10 -0
- package/api/deleteQuote/deleteQuote.d.ts +28 -0
- package/api/deleteQuote/graphql/DeleteQuoteMutation.d.ts +10 -0
- package/api/{getCustomerData → deleteQuote}/index.d.ts +1 -1
- package/{data/models/customer-model.d.ts → api/deleteQuoteTemplate/deleteQuoteTemplate.d.ts} +6 -8
- package/api/deleteQuoteTemplate/graphql/deleteQuoteTemplate.d.ts +10 -0
- package/api/deleteQuoteTemplate/index.d.ts +10 -0
- package/api/duplicateNegotiableQuote/duplicateNegotiableQuote.d.ts +9 -0
- package/api/duplicateNegotiableQuote/graphql/duplicateNegotiableQuoteMutation.d.ts +10 -0
- package/api/duplicateNegotiableQuote/index.d.ts +10 -0
- package/api/generateQuoteFromTemplate/generateQuoteFromTemplate.d.ts +15 -0
- package/api/generateQuoteFromTemplate/graphql/generateNegotiableQuoteFromTemplate.d.ts +10 -0
- package/api/generateQuoteFromTemplate/index.d.ts +10 -0
- package/api/getQuoteData/getQuoteData.d.ts +10 -0
- package/api/getQuoteData/graphql/QuoteDataQuery.d.ts +2 -0
- package/api/getQuoteData/index.d.ts +10 -0
- package/api/getQuoteTemplateData/getQuoteTemplateData.d.ts +4 -0
- package/api/getQuoteTemplateData/graphql/getQuoteTemplateData.d.ts +10 -0
- package/api/getQuoteTemplateData/index.d.ts +10 -0
- package/api/getQuoteTemplates/getQuoteTemplates.d.ts +34 -0
- package/api/getQuoteTemplates/graphql/getQuoteTemplates.d.ts +10 -0
- package/api/getQuoteTemplates/index.d.ts +10 -0
- package/api/getStoreConfig/getStoreConfig.d.ts +4 -0
- package/api/getStoreConfig/graphql/StoreConfigQuery.d.ts +10 -0
- package/api/getStoreConfig/index.d.ts +10 -0
- package/api/graphql/NegotiableQuoteAddressFragment.d.ts +10 -0
- package/api/graphql/NegotiableQuoteFragment.d.ts +5 -13
- package/api/graphql/NegotiableQuoteListFragment.d.ts +10 -0
- package/api/graphql/NegotiableQuoteTemplateFragment.d.ts +10 -0
- package/api/graphql/SearchResultPageInfoFragment.d.ts +10 -0
- package/api/graphql/ShippingMethodFragment.d.ts +10 -0
- package/api/graphql/SortFieldsFragment.d.ts +10 -0
- package/api/index.d.ts +34 -1
- package/api/initialize/initialize.d.ts +2 -0
- package/api/negotiableQuotes/graphql/NegotiableQuotesQuery.d.ts +10 -0
- package/api/negotiableQuotes/index.d.ts +10 -0
- package/api/negotiableQuotes/negotiableQuotes.d.ts +39 -0
- package/api/openQuoteTemplate/graphql/openQuoteTemplate.d.ts +10 -0
- package/api/openQuoteTemplate/index.d.ts +10 -0
- package/api/openQuoteTemplate/openQuoteTemplate.d.ts +13 -0
- package/api/removeNegotiableQuoteItems/graphql/RemoveNegotiableQuoteItemsMutation.d.ts +10 -0
- package/api/removeNegotiableQuoteItems/index.d.ts +10 -0
- package/api/removeNegotiableQuoteItems/removeNegotiableQuoteItems.d.ts +8 -0
- package/api/removeQuoteTemplateItems/graphql/removeNegotiableQuoteTemplateItems.d.ts +10 -0
- package/api/removeQuoteTemplateItems/index.d.ts +10 -0
- package/api/removeQuoteTemplateItems/removeQuoteTemplateItems.d.ts +14 -0
- package/api/renameNegotiableQuote/graphql/RenameNegotiableQuoteMutation.d.ts +10 -0
- package/api/renameNegotiableQuote/index.d.ts +10 -0
- package/api/renameNegotiableQuote/renameNegotiableQuote.d.ts +9 -0
- package/api/requestNegotiableQuote/graphql/RequestNegotiableQuoteMutation.d.ts +4 -12
- package/api/requestNegotiableQuote/requestNegotiableQuote.d.ts +0 -3
- package/api/sendForReview/graphql/SendNegotiableQuoteForReviewMutation.d.ts +10 -0
- package/api/sendForReview/index.d.ts +10 -0
- package/api/sendForReview/sendForReview.d.ts +11 -0
- package/api/sendQuoteTemplateForReview/graphql/sendQuoteTemplateForReview.d.ts +10 -0
- package/api/sendQuoteTemplateForReview/index.d.ts +10 -0
- package/api/sendQuoteTemplateForReview/sendQuoteTemplateForReview.d.ts +25 -0
- package/api/setLineItemNote/graphql/SetLineItemNoteMutation.d.ts +10 -0
- package/api/setLineItemNote/index.d.ts +10 -0
- package/api/setLineItemNote/setLineItemNote.d.ts +10 -0
- package/api/setShippingAddress/graphql/SetNegotiableQuoteShippingAddressMutation.d.ts +10 -0
- package/api/setShippingAddress/index.d.ts +2 -0
- package/api/setShippingAddress/setShippingAddress.d.ts +110 -0
- package/api/updateQuantities/graphql/UpdateNegotiableQuoteQuantitiesMutation.d.ts +10 -0
- package/api/updateQuantities/index.d.ts +10 -0
- package/api/updateQuantities/updateQuantities.d.ts +36 -0
- package/api/updateQuoteTemplateItemQuantities/graphql/updateNegotiableQuoteTemplateQuantities.d.ts +10 -0
- package/api/updateQuoteTemplateItemQuantities/index.d.ts +10 -0
- package/api/updateQuoteTemplateItemQuantities/updateQuoteTemplateItemQuantities.d.ts +20 -0
- package/api/uploadFile/graphql/FinishUploadMutation.d.ts +10 -0
- package/api/uploadFile/graphql/InitiateUploadMutation.d.ts +10 -0
- package/api/uploadFile/index.d.ts +10 -0
- package/api/uploadFile/uploadFile.d.ts +12 -0
- package/api.js +58 -22
- package/api.js.map +1 -1
- package/chunks/AttachedFilesList.js +4 -0
- package/chunks/AttachedFilesList.js.map +1 -0
- package/chunks/CheckWithCircle.js +4 -0
- package/chunks/CheckWithCircle.js.map +1 -0
- package/chunks/ChevronDown.js +4 -0
- package/chunks/ChevronDown.js.map +1 -0
- package/chunks/ConfirmationModal.js +4 -0
- package/chunks/ConfirmationModal.js.map +1 -0
- package/chunks/ItemsQuoted.js +4 -0
- package/chunks/ItemsQuoted.js.map +1 -0
- package/chunks/ItemsQuotedTemplate.js +4 -0
- package/chunks/ItemsQuotedTemplate.js.map +1 -0
- package/chunks/LineItemNoteModal.js +4 -0
- package/chunks/LineItemNoteModal.js.map +1 -0
- package/chunks/NegotiableQuoteFragment.js +392 -0
- package/chunks/NegotiableQuoteFragment.js.map +1 -0
- package/chunks/NegotiableQuoteTemplateFragment.js +338 -0
- package/chunks/NegotiableQuoteTemplateFragment.js.map +1 -0
- package/chunks/OrderSummaryLine.js +4 -0
- package/chunks/OrderSummaryLine.js.map +1 -0
- package/chunks/QuoteCommentsList.js +4 -0
- package/chunks/QuoteCommentsList.js.map +1 -0
- package/chunks/QuoteCommentsList3.js +4 -0
- package/chunks/QuoteCommentsList3.js.map +1 -0
- package/chunks/QuoteHistoryLog.js +4 -0
- package/chunks/QuoteHistoryLog.js.map +1 -0
- package/chunks/QuoteHistoryLog3.js +4 -0
- package/chunks/QuoteHistoryLog3.js.map +1 -0
- package/chunks/QuoteTemplateCommentsList.js +4 -0
- package/chunks/QuoteTemplateCommentsList.js.map +1 -0
- package/chunks/QuoteTemplateHistoryLog.js +4 -0
- package/chunks/QuoteTemplateHistoryLog.js.map +1 -0
- package/chunks/RenameQuoteModal.js +4 -0
- package/chunks/RenameQuoteModal.js.map +1 -0
- package/chunks/ShippingAddressDisplay.js +4 -0
- package/chunks/ShippingAddressDisplay.js.map +1 -0
- package/chunks/WarningFilled.js +4 -0
- package/chunks/WarningFilled.js.map +1 -0
- package/chunks/addQuoteTemplateLineItemNote.js +33 -0
- package/chunks/addQuoteTemplateLineItemNote.js.map +1 -0
- package/chunks/dateUtils.js +4 -0
- package/chunks/dateUtils.js.map +1 -0
- package/chunks/duplicateNegotiableQuote.js +121 -0
- package/chunks/duplicateNegotiableQuote.js.map +1 -0
- package/chunks/generateQuoteFromTemplate.js +12 -0
- package/chunks/generateQuoteFromTemplate.js.map +1 -0
- package/chunks/getQuoteTemplates.js +52 -0
- package/chunks/getQuoteTemplates.js.map +1 -0
- package/chunks/negotiableQuotes.js +77 -0
- package/chunks/negotiableQuotes.js.map +1 -0
- package/chunks/openQuoteTemplate.js +52 -0
- package/chunks/openQuoteTemplate.js.map +1 -0
- package/chunks/requestNegotiableQuote.js +6 -81
- package/chunks/requestNegotiableQuote.js.map +1 -1
- package/chunks/setLineItemNote.js +47 -0
- package/chunks/setLineItemNote.js.map +1 -0
- package/chunks/state.js +4 -0
- package/chunks/state.js.map +1 -0
- package/chunks/transform-quote-template.js +4 -0
- package/chunks/transform-quote-template.js.map +1 -0
- package/chunks/transform-quote.js +4 -0
- package/chunks/transform-quote.js.map +1 -0
- package/chunks/uploadFile.js +20 -0
- package/chunks/uploadFile.js.map +1 -0
- package/components/ActionsBar/ActionsBar.d.ts +15 -0
- package/components/ActionsBar/index.d.ts +11 -0
- package/components/AttachedFilesList/AttachedFilesList.d.ts +16 -0
- package/components/AttachedFilesList/index.d.ts +11 -0
- package/components/ConfirmationModal/ConfirmationModal.d.ts +17 -0
- package/components/ConfirmationModal/index.d.ts +11 -0
- package/components/ItemsQuoted/ItemsQuoted.d.ts +11 -0
- package/components/ItemsQuoted/index.d.ts +11 -0
- package/components/LineItemNoteModal/LineItemNoteModal.d.ts +17 -0
- package/components/LineItemNoteModal/index.d.ts +11 -0
- package/components/ManageNegotiableQuote/ManageNegotiableQuote.d.ts +22 -0
- package/components/ManageNegotiableQuote/__fixtures__/ManageNegotiableQuoteProps.d.ts +4 -0
- package/components/ManageNegotiableQuote/index.d.ts +11 -0
- package/components/ManageNegotiableQuoteTemplate/ManageNegotiableQuoteTemplate.d.ts +23 -0
- package/components/ManageNegotiableQuoteTemplate/__fixtures__/ManageNegotiableQuoteTemplateProps.d.ts +4 -0
- package/components/ManageNegotiableQuoteTemplate/index.d.ts +11 -0
- package/components/OrderSummary/OrderSummary.d.ts +48 -0
- package/components/OrderSummary/index.d.ts +11 -0
- package/components/OrderSummaryLine/OrderSummaryLine.d.ts +13 -0
- package/components/OrderSummaryLine/index.d.ts +11 -0
- package/components/ProductListTable/ProductListTable.d.ts +17 -0
- package/components/ProductListTable/index.d.ts +11 -0
- package/components/QuoteCommentsList/QuoteCommentsList.d.ts +17 -0
- package/components/QuoteCommentsList/index.d.ts +11 -0
- package/components/QuoteHistoryLog/QuoteHistoryLog.d.ts +77 -0
- package/components/QuoteHistoryLog/index.d.ts +11 -0
- package/components/QuotePricesSummary/QuotePricesSummary.d.ts +16 -0
- package/components/QuotePricesSummary/index.d.ts +11 -0
- package/components/QuoteSummaryList/QuoteSummaryList.d.ts +13 -0
- package/components/QuoteSummaryList/index.d.ts +11 -0
- package/components/QuoteTemplatesListTable/QuoteTemplatesListTable.d.ts +29 -0
- package/components/QuoteTemplatesListTable/index.d.ts +10 -0
- package/components/QuotesListTable/QuotesListTable.d.ts +29 -0
- package/components/QuotesListTable/index.d.ts +11 -0
- package/components/ReferenceDocumentFormModal/ReferenceDocumentFormModal.d.ts +30 -0
- package/components/ReferenceDocumentFormModal/index.d.ts +11 -0
- package/components/ReferenceDocumentsList/ReferenceDocumentsList.d.ts +18 -0
- package/components/ReferenceDocumentsList/index.d.ts +11 -0
- package/components/RenameQuoteModal/RenameQuoteModal.d.ts +18 -0
- package/components/RenameQuoteModal/index.d.ts +11 -0
- package/components/RequestNegotiableQuoteForm/RequestNegotiableQuoteForm.d.ts +1 -0
- package/components/ShippingAddressDisplay/ShippingAddressDisplay.d.ts +12 -0
- package/components/ShippingAddressDisplay/index.d.ts +11 -0
- package/components/TabbedContent/TabbedContent.d.ts +10 -0
- package/components/TabbedContent/index.d.ts +11 -0
- package/components/index.d.ts +30 -0
- package/containers/ItemsQuoted/ItemsQuoted.d.ts +30 -0
- package/containers/ItemsQuoted/index.d.ts +11 -0
- package/containers/ItemsQuoted.d.ts +3 -0
- package/containers/ItemsQuoted.js +4 -0
- package/containers/ItemsQuoted.js.map +1 -0
- package/containers/ItemsQuotedTemplate/ItemsQuotedTemplate.d.ts +25 -0
- package/containers/ItemsQuotedTemplate/index.d.ts +11 -0
- package/containers/ItemsQuotedTemplate.d.ts +3 -0
- package/containers/ItemsQuotedTemplate.js +4 -0
- package/containers/ItemsQuotedTemplate.js.map +1 -0
- package/containers/ManageNegotiableQuote/ManageNegotiableQuote.d.ts +90 -0
- package/containers/ManageNegotiableQuote/index.d.ts +11 -0
- package/containers/ManageNegotiableQuote.d.ts +3 -0
- package/containers/ManageNegotiableQuote.js +4 -0
- package/containers/ManageNegotiableQuote.js.map +1 -0
- package/containers/ManageNegotiableQuoteTemplate/ManageNegotiableQuoteTemplate.d.ts +108 -0
- package/containers/ManageNegotiableQuoteTemplate/index.d.ts +11 -0
- package/containers/ManageNegotiableQuoteTemplate.d.ts +3 -0
- package/containers/ManageNegotiableQuoteTemplate.js +6 -0
- package/containers/ManageNegotiableQuoteTemplate.js.map +1 -0
- package/containers/OrderSummary/OrderSummary.d.ts +11 -0
- package/containers/OrderSummary/index.d.ts +11 -0
- package/containers/OrderSummary.d.ts +3 -0
- package/containers/OrderSummary.js +4 -0
- package/containers/OrderSummary.js.map +1 -0
- package/containers/OrderSummaryLine/OrderSummaryLine.d.ts +14 -0
- package/containers/OrderSummaryLine/index.d.ts +11 -0
- package/containers/OrderSummaryLine.d.ts +3 -0
- package/containers/OrderSummaryLine.js +4 -0
- package/containers/OrderSummaryLine.js.map +1 -0
- package/containers/QuoteCommentsList/QuoteCommentsList.d.ts +9 -0
- package/containers/QuoteCommentsList/index.d.ts +11 -0
- package/containers/QuoteCommentsList.d.ts +3 -0
- package/containers/QuoteCommentsList.js +4 -0
- package/containers/QuoteCommentsList.js.map +1 -0
- package/containers/QuoteHistoryLog/QuoteHistoryLog.d.ts +9 -0
- package/containers/QuoteHistoryLog/index.d.ts +11 -0
- package/containers/QuoteHistoryLog.d.ts +3 -0
- package/containers/QuoteHistoryLog.js +4 -0
- package/containers/QuoteHistoryLog.js.map +1 -0
- package/containers/QuoteSummaryList/QuoteSummaryList.d.ts +51 -0
- package/containers/QuoteSummaryList/index.d.ts +11 -0
- package/containers/QuoteSummaryList.d.ts +3 -0
- package/containers/QuoteSummaryList.js +4 -0
- package/containers/QuoteSummaryList.js.map +1 -0
- package/containers/QuoteTemplateCommentsList/QuoteTemplateCommentsList.d.ts +9 -0
- package/containers/QuoteTemplateCommentsList/index.d.ts +11 -0
- package/containers/QuoteTemplateCommentsList.d.ts +3 -0
- package/containers/QuoteTemplateCommentsList.js +4 -0
- package/containers/QuoteTemplateCommentsList.js.map +1 -0
- package/containers/QuoteTemplateHistoryLog/QuoteTemplateHistoryLog.d.ts +9 -0
- package/containers/QuoteTemplateHistoryLog/index.d.ts +11 -0
- package/containers/QuoteTemplateHistoryLog.d.ts +3 -0
- package/containers/QuoteTemplateHistoryLog.js +4 -0
- package/containers/QuoteTemplateHistoryLog.js.map +1 -0
- package/containers/QuoteTemplatesListTable/QuoteTemplatesListTable.d.ts +74 -0
- package/containers/QuoteTemplatesListTable/index.d.ts +11 -0
- package/containers/QuoteTemplatesListTable.d.ts +3 -0
- package/containers/QuoteTemplatesListTable.js +4 -0
- package/containers/QuoteTemplatesListTable.js.map +1 -0
- package/containers/QuotesListTable/QuotesListTable.d.ts +72 -0
- package/containers/QuotesListTable/index.d.ts +11 -0
- package/containers/QuotesListTable.d.ts +3 -0
- package/containers/QuotesListTable.js +4 -0
- package/containers/QuotesListTable.js.map +1 -0
- package/containers/RequestNegotiableQuoteForm/RequestNegotiableQuoteForm.d.ts +10 -1
- package/containers/RequestNegotiableQuoteForm.js +1 -1
- package/containers/RequestNegotiableQuoteForm.js.map +1 -1
- package/containers/ShippingAddressDisplay/ShippingAddressDisplay.d.ts +10 -0
- package/containers/ShippingAddressDisplay/index.d.ts +11 -0
- package/containers/ShippingAddressDisplay.d.ts +1 -0
- package/containers/ShippingAddressDisplay.js +4 -0
- package/containers/ShippingAddressDisplay.js.map +1 -0
- package/containers/index.d.ts +22 -0
- package/data/models/__fixtures__/negotiableQuoteModel.d.ts +8 -0
- package/data/models/__fixtures__/negotiableQuoteTemplateModel.d.ts +4 -0
- package/data/models/__fixtures__/negotiableQuoteTemplatesListModel.d.ts +5 -0
- package/data/models/__fixtures__/negotiableQuotesListModel.d.ts +5 -0
- package/data/models/__fixtures__/storeConfigModel.d.ts +5 -0
- package/data/models/index.d.ts +11 -1
- package/data/models/negotiable-quote-model.d.ts +263 -27
- package/data/models/negotiable-quote-template-model.d.ts +112 -0
- package/data/models/store-config-model.d.ts +29 -0
- package/data/transforms/__fixtures__/negotiableQuoteData.d.ts +673 -2
- package/data/transforms/__fixtures__/negotiableQuoteTemplateData.d.ts +2151 -0
- package/data/transforms/__fixtures__/storeConfigData.d.ts +35 -0
- package/data/transforms/index.d.ts +6 -13
- package/data/transforms/transform-history.d.ts +15 -0
- package/data/transforms/transform-quote-items.d.ts +15 -0
- package/data/transforms/transform-quote-template.d.ts +5 -0
- package/data/transforms/transform-quote.d.ts +13 -2
- package/data/transforms/transform-store-config.d.ts +4 -0
- package/hooks/useItemsQuotedTemplate.d.ts +15 -0
- package/hooks/useQuoteSummaryData.d.ts +10 -0
- package/hooks/useReferenceDocumentLinks.d.ts +34 -0
- package/hooks/useRemoveTemplateItems.d.ts +25 -0
- package/hooks/useRenameTemplate.d.ts +71 -0
- package/hooks/useUpdateTemplateQuantities.d.ts +27 -0
- package/i18n/en_US.json.d.ts +447 -1
- package/lib/configurationTransformers.d.ts +27 -0
- package/lib/itemFormatters.d.ts +47 -0
- package/lib/priceCalculators.d.ts +41 -0
- package/lib/state.d.ts +6 -0
- package/package.json +1 -1
- package/render.js +6 -2
- package/render.js.map +1 -1
- package/types/state.types.d.ts +13 -0
- package/utils/dateUtils.d.ts +26 -0
- package/utils/fileUtils.d.ts +46 -0
- package/utils/mapAuthPermissions.d.ts +39 -0
- package/api/getCustomerData/graphql/CustomerQuery.d.ts +0 -2
- package/api/graphql/CustomerFragment.d.ts +0 -2
- package/data/models/__fixtures__/customerModel.d.ts +0 -4
- package/data/transforms/transform-customer.d.ts +0 -15
|
@@ -1,16 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { NegotiableQuoteStatus } from '../../models/negotiable-quote-model';
|
|
2
2
|
|
|
3
3
|
export declare const mockGraphQLResponse: {
|
|
4
4
|
data: {
|
|
5
5
|
requestNegotiableQuote: {
|
|
6
6
|
quote: {
|
|
7
7
|
uid: string;
|
|
8
|
+
name: string;
|
|
8
9
|
created_at: string;
|
|
10
|
+
updated_at: string;
|
|
9
11
|
status: string;
|
|
10
12
|
buyer: {
|
|
11
13
|
firstname: string;
|
|
12
14
|
lastname: string;
|
|
13
15
|
};
|
|
16
|
+
email: string;
|
|
14
17
|
comments: {
|
|
15
18
|
uid: string;
|
|
16
19
|
created_at: string;
|
|
@@ -20,10 +23,642 @@ export declare const mockGraphQLResponse: {
|
|
|
20
23
|
};
|
|
21
24
|
}[];
|
|
22
25
|
items: {
|
|
26
|
+
uid: string;
|
|
27
|
+
product: {
|
|
28
|
+
uid: string;
|
|
29
|
+
sku: string;
|
|
30
|
+
name: string;
|
|
31
|
+
price_range: {
|
|
32
|
+
maximum_price: {
|
|
33
|
+
regular_price: {
|
|
34
|
+
value: number;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
thumbnail: {
|
|
39
|
+
url: string;
|
|
40
|
+
label: string;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
quantity: number;
|
|
44
|
+
note_from_buyer: {
|
|
45
|
+
created_at: string;
|
|
46
|
+
creator_id: number;
|
|
47
|
+
creator_type: number;
|
|
48
|
+
negotiable_quote_item_uid: string;
|
|
49
|
+
note: string;
|
|
50
|
+
note_uid: string;
|
|
51
|
+
}[];
|
|
52
|
+
note_from_seller: {
|
|
53
|
+
created_at: string;
|
|
54
|
+
creator_id: number;
|
|
55
|
+
creator_type: number;
|
|
56
|
+
negotiable_quote_item_uid: string;
|
|
57
|
+
note: string;
|
|
58
|
+
note_uid: string;
|
|
59
|
+
}[];
|
|
60
|
+
}[];
|
|
61
|
+
prices: {
|
|
62
|
+
applied_taxes: {
|
|
63
|
+
label: string;
|
|
64
|
+
amount: {
|
|
65
|
+
value: number;
|
|
66
|
+
currency: string;
|
|
67
|
+
};
|
|
68
|
+
}[];
|
|
69
|
+
discounts: {
|
|
70
|
+
label: string;
|
|
71
|
+
amount: {
|
|
72
|
+
value: number;
|
|
73
|
+
currency: string;
|
|
74
|
+
};
|
|
75
|
+
coupon: {
|
|
76
|
+
code: string;
|
|
77
|
+
};
|
|
78
|
+
}[];
|
|
79
|
+
subtotal_excluding_tax: {
|
|
80
|
+
value: number;
|
|
81
|
+
};
|
|
82
|
+
subtotal_including_tax: {
|
|
83
|
+
value: number;
|
|
84
|
+
};
|
|
85
|
+
subtotal_with_discount_excluding_tax: {
|
|
86
|
+
value: number;
|
|
87
|
+
};
|
|
88
|
+
grand_total: {
|
|
89
|
+
value: number;
|
|
90
|
+
currency: string;
|
|
91
|
+
};
|
|
92
|
+
grand_total_excluding_tax: {
|
|
93
|
+
value: number;
|
|
94
|
+
currency: string;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
export declare const mockQuoteData: {
|
|
102
|
+
uid: string;
|
|
103
|
+
name: string;
|
|
104
|
+
created_at: string;
|
|
105
|
+
status: string;
|
|
106
|
+
is_virtual: boolean;
|
|
107
|
+
total_quantity: number;
|
|
108
|
+
sales_rep_name: string;
|
|
109
|
+
expiration_date: string;
|
|
110
|
+
updated_at: string;
|
|
111
|
+
buyer: {
|
|
112
|
+
firstname: string;
|
|
113
|
+
lastname: string;
|
|
114
|
+
};
|
|
115
|
+
email: string;
|
|
116
|
+
comments: {
|
|
117
|
+
uid: string;
|
|
118
|
+
created_at: string;
|
|
119
|
+
author: {
|
|
120
|
+
firstname: string;
|
|
121
|
+
lastname: string;
|
|
122
|
+
};
|
|
123
|
+
text: string;
|
|
124
|
+
}[];
|
|
125
|
+
template_id: null;
|
|
126
|
+
template_name: null;
|
|
127
|
+
items: ({
|
|
128
|
+
__typename: string;
|
|
129
|
+
uid: string;
|
|
130
|
+
product: {
|
|
131
|
+
name: string;
|
|
132
|
+
sku: string;
|
|
133
|
+
uid: string;
|
|
134
|
+
stock_status: string;
|
|
135
|
+
quantity: null;
|
|
136
|
+
thumbnail: {
|
|
137
|
+
url: string;
|
|
138
|
+
label: string;
|
|
139
|
+
};
|
|
140
|
+
price_range: {
|
|
141
|
+
maximum_price: {
|
|
142
|
+
regular_price: {
|
|
143
|
+
currency: string;
|
|
144
|
+
value: number;
|
|
145
|
+
};
|
|
146
|
+
discount: {
|
|
147
|
+
amount_off: number;
|
|
148
|
+
percent_off: number;
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
price_tiers: {
|
|
153
|
+
quantity: number;
|
|
154
|
+
final_price: {
|
|
155
|
+
currency: string;
|
|
156
|
+
value: number;
|
|
157
|
+
};
|
|
158
|
+
discount: {
|
|
159
|
+
amount_off: number;
|
|
160
|
+
percent_off: number;
|
|
161
|
+
};
|
|
162
|
+
}[];
|
|
163
|
+
};
|
|
164
|
+
prices: {
|
|
165
|
+
price: {
|
|
166
|
+
currency: string;
|
|
167
|
+
value: number;
|
|
168
|
+
};
|
|
169
|
+
price_including_tax: {
|
|
170
|
+
currency: string;
|
|
171
|
+
value: number;
|
|
172
|
+
};
|
|
173
|
+
original_item_price: {
|
|
174
|
+
currency: string;
|
|
175
|
+
value: number;
|
|
176
|
+
};
|
|
177
|
+
original_row_total: {
|
|
178
|
+
currency: string;
|
|
179
|
+
value: number;
|
|
180
|
+
};
|
|
181
|
+
row_total: {
|
|
182
|
+
currency: string;
|
|
183
|
+
value: number;
|
|
184
|
+
};
|
|
185
|
+
row_total_including_tax: {
|
|
186
|
+
currency: string;
|
|
187
|
+
value: number;
|
|
188
|
+
};
|
|
189
|
+
catalog_discount: {
|
|
190
|
+
amount_off: number;
|
|
191
|
+
percent_off: number;
|
|
192
|
+
};
|
|
193
|
+
discounts: {
|
|
194
|
+
label: string;
|
|
195
|
+
value: number;
|
|
196
|
+
amount: {
|
|
197
|
+
currency: string;
|
|
198
|
+
value: number;
|
|
199
|
+
};
|
|
200
|
+
}[];
|
|
201
|
+
};
|
|
202
|
+
quantity: number;
|
|
203
|
+
is_available: boolean;
|
|
204
|
+
note_from_buyer: {
|
|
205
|
+
created_at: string;
|
|
206
|
+
creator_id: number;
|
|
207
|
+
creator_type: number;
|
|
208
|
+
negotiable_quote_item_uid: string;
|
|
209
|
+
note: string;
|
|
210
|
+
note_uid: string;
|
|
211
|
+
}[];
|
|
212
|
+
note_from_seller: {
|
|
213
|
+
created_at: string;
|
|
214
|
+
creator_id: number;
|
|
215
|
+
creator_type: number;
|
|
216
|
+
negotiable_quote_item_uid: string;
|
|
217
|
+
note: string;
|
|
218
|
+
note_uid: string;
|
|
219
|
+
}[];
|
|
220
|
+
customizable_options: {
|
|
221
|
+
type: string;
|
|
222
|
+
label: string;
|
|
223
|
+
values: {
|
|
224
|
+
label: string;
|
|
225
|
+
value: string;
|
|
226
|
+
}[];
|
|
227
|
+
}[];
|
|
228
|
+
configurable_options?: undefined;
|
|
229
|
+
configured_variant?: undefined;
|
|
230
|
+
bundle_options?: undefined;
|
|
231
|
+
links?: undefined;
|
|
232
|
+
} | {
|
|
233
|
+
__typename: string;
|
|
234
|
+
uid: string;
|
|
235
|
+
product: {
|
|
236
|
+
name: string;
|
|
237
|
+
sku: string;
|
|
238
|
+
uid: string;
|
|
239
|
+
stock_status: string;
|
|
240
|
+
quantity: null;
|
|
241
|
+
thumbnail: {
|
|
242
|
+
url: string;
|
|
243
|
+
label: string;
|
|
244
|
+
};
|
|
245
|
+
price_range: {
|
|
246
|
+
maximum_price: {
|
|
247
|
+
regular_price: {
|
|
248
|
+
currency: string;
|
|
249
|
+
value: number;
|
|
250
|
+
};
|
|
251
|
+
discount?: undefined;
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
price_tiers?: undefined;
|
|
255
|
+
};
|
|
256
|
+
prices: {
|
|
257
|
+
price: {
|
|
258
|
+
currency: string;
|
|
259
|
+
value: number;
|
|
260
|
+
};
|
|
261
|
+
price_including_tax: {
|
|
262
|
+
currency: string;
|
|
263
|
+
value: number;
|
|
264
|
+
};
|
|
265
|
+
original_item_price: {
|
|
266
|
+
currency: string;
|
|
267
|
+
value: number;
|
|
268
|
+
};
|
|
269
|
+
original_row_total: {
|
|
270
|
+
currency: string;
|
|
271
|
+
value: number;
|
|
272
|
+
};
|
|
273
|
+
row_total: {
|
|
274
|
+
currency: string;
|
|
275
|
+
value: number;
|
|
276
|
+
};
|
|
277
|
+
row_total_including_tax: {
|
|
278
|
+
currency: string;
|
|
279
|
+
value: number;
|
|
280
|
+
};
|
|
281
|
+
catalog_discount: {
|
|
282
|
+
amount_off: number;
|
|
283
|
+
percent_off: number;
|
|
284
|
+
};
|
|
285
|
+
discounts: never[];
|
|
286
|
+
};
|
|
287
|
+
quantity: number;
|
|
288
|
+
is_available: boolean;
|
|
289
|
+
configurable_options: {
|
|
290
|
+
option_label: string;
|
|
291
|
+
value_label: string;
|
|
292
|
+
}[];
|
|
293
|
+
note_from_buyer: {
|
|
294
|
+
created_at: string;
|
|
295
|
+
creator_id: number;
|
|
296
|
+
creator_type: number;
|
|
297
|
+
negotiable_quote_item_uid: string;
|
|
298
|
+
note: string;
|
|
299
|
+
note_uid: string;
|
|
300
|
+
}[];
|
|
301
|
+
note_from_seller: never[];
|
|
302
|
+
configured_variant: {
|
|
303
|
+
stock_status: string;
|
|
304
|
+
thumbnail: {
|
|
305
|
+
label: string;
|
|
306
|
+
url: string;
|
|
307
|
+
};
|
|
308
|
+
price_range: {
|
|
309
|
+
maximum_price: {
|
|
310
|
+
regular_price: {
|
|
311
|
+
currency: string;
|
|
312
|
+
value: number;
|
|
313
|
+
};
|
|
314
|
+
discount: {
|
|
315
|
+
amount_off: number;
|
|
316
|
+
percent_off: number;
|
|
317
|
+
};
|
|
318
|
+
};
|
|
319
|
+
};
|
|
320
|
+
price_tiers: {
|
|
321
|
+
quantity: number;
|
|
322
|
+
final_price: {
|
|
323
|
+
currency: string;
|
|
324
|
+
value: number;
|
|
325
|
+
};
|
|
326
|
+
discount: {
|
|
327
|
+
amount_off: number;
|
|
328
|
+
percent_off: number;
|
|
329
|
+
};
|
|
330
|
+
}[];
|
|
331
|
+
};
|
|
332
|
+
customizable_options: {
|
|
333
|
+
type: string;
|
|
334
|
+
label: string;
|
|
335
|
+
values: {
|
|
336
|
+
label: string;
|
|
337
|
+
value: string;
|
|
338
|
+
}[];
|
|
339
|
+
}[];
|
|
340
|
+
bundle_options?: undefined;
|
|
341
|
+
links?: undefined;
|
|
342
|
+
} | {
|
|
343
|
+
__typename: string;
|
|
344
|
+
uid: string;
|
|
345
|
+
product: {
|
|
346
|
+
name: string;
|
|
347
|
+
sku: string;
|
|
348
|
+
uid: string;
|
|
349
|
+
stock_status: string;
|
|
350
|
+
quantity: null;
|
|
351
|
+
thumbnail: {
|
|
352
|
+
url: string;
|
|
353
|
+
label: string;
|
|
354
|
+
};
|
|
355
|
+
price_range: {
|
|
356
|
+
maximum_price: {
|
|
357
|
+
regular_price: {
|
|
358
|
+
currency: string;
|
|
359
|
+
value: number;
|
|
360
|
+
};
|
|
361
|
+
discount: {
|
|
362
|
+
amount_off: number;
|
|
363
|
+
percent_off: number;
|
|
364
|
+
};
|
|
365
|
+
};
|
|
366
|
+
};
|
|
367
|
+
price_tiers?: undefined;
|
|
368
|
+
};
|
|
369
|
+
prices: {
|
|
370
|
+
price: {
|
|
371
|
+
currency: string;
|
|
372
|
+
value: number;
|
|
373
|
+
};
|
|
374
|
+
price_including_tax: {
|
|
375
|
+
currency: string;
|
|
376
|
+
value: number;
|
|
377
|
+
};
|
|
378
|
+
original_item_price: {
|
|
379
|
+
currency: string;
|
|
380
|
+
value: number;
|
|
381
|
+
};
|
|
382
|
+
original_row_total: {
|
|
383
|
+
currency: string;
|
|
384
|
+
value: number;
|
|
385
|
+
};
|
|
386
|
+
row_total: {
|
|
387
|
+
currency: string;
|
|
388
|
+
value: number;
|
|
389
|
+
};
|
|
390
|
+
row_total_including_tax: {
|
|
391
|
+
currency: string;
|
|
392
|
+
value: number;
|
|
393
|
+
};
|
|
394
|
+
catalog_discount: {
|
|
395
|
+
amount_off: number;
|
|
396
|
+
percent_off: number;
|
|
397
|
+
};
|
|
398
|
+
discounts: {
|
|
399
|
+
label: string;
|
|
400
|
+
value: number;
|
|
401
|
+
amount: {
|
|
402
|
+
currency: string;
|
|
403
|
+
value: number;
|
|
404
|
+
};
|
|
405
|
+
}[];
|
|
406
|
+
};
|
|
407
|
+
quantity: number;
|
|
408
|
+
is_available: boolean;
|
|
409
|
+
bundle_options: {
|
|
410
|
+
label: string;
|
|
411
|
+
values: {
|
|
412
|
+
label: string;
|
|
413
|
+
quantity: number;
|
|
414
|
+
original_price: {
|
|
415
|
+
currency: string;
|
|
416
|
+
value: number;
|
|
417
|
+
};
|
|
418
|
+
priceV2: {
|
|
419
|
+
currency: string;
|
|
420
|
+
value: number;
|
|
421
|
+
};
|
|
422
|
+
}[];
|
|
423
|
+
}[];
|
|
424
|
+
note_from_buyer: {
|
|
425
|
+
created_at: string;
|
|
426
|
+
creator_id: number;
|
|
427
|
+
creator_type: number;
|
|
428
|
+
negotiable_quote_item_uid: string;
|
|
429
|
+
note: string;
|
|
430
|
+
note_uid: string;
|
|
431
|
+
}[];
|
|
432
|
+
note_from_seller: {
|
|
433
|
+
created_at: string;
|
|
434
|
+
creator_id: number;
|
|
435
|
+
creator_type: number;
|
|
436
|
+
negotiable_quote_item_uid: string;
|
|
437
|
+
note: string;
|
|
438
|
+
note_uid: string;
|
|
439
|
+
}[];
|
|
440
|
+
customizable_options?: undefined;
|
|
441
|
+
configurable_options?: undefined;
|
|
442
|
+
configured_variant?: undefined;
|
|
443
|
+
links?: undefined;
|
|
444
|
+
} | {
|
|
445
|
+
__typename: string;
|
|
446
|
+
uid: string;
|
|
447
|
+
product: {
|
|
448
|
+
name: string;
|
|
449
|
+
sku: string;
|
|
450
|
+
uid: string;
|
|
451
|
+
stock_status: string;
|
|
452
|
+
quantity: null;
|
|
453
|
+
thumbnail: {
|
|
454
|
+
url: string;
|
|
455
|
+
label: string;
|
|
456
|
+
};
|
|
457
|
+
price_range: {
|
|
458
|
+
maximum_price: {
|
|
459
|
+
regular_price: {
|
|
460
|
+
currency: string;
|
|
461
|
+
value: number;
|
|
462
|
+
};
|
|
463
|
+
discount: {
|
|
464
|
+
amount_off: number;
|
|
465
|
+
percent_off: number;
|
|
466
|
+
};
|
|
467
|
+
};
|
|
468
|
+
};
|
|
469
|
+
price_tiers: {
|
|
470
|
+
quantity: number;
|
|
471
|
+
final_price: {
|
|
472
|
+
currency: string;
|
|
473
|
+
value: number;
|
|
474
|
+
};
|
|
475
|
+
discount: {
|
|
476
|
+
amount_off: number;
|
|
477
|
+
percent_off: number;
|
|
478
|
+
};
|
|
479
|
+
}[];
|
|
480
|
+
};
|
|
481
|
+
prices: {
|
|
482
|
+
price: {
|
|
483
|
+
currency: string;
|
|
484
|
+
value: number;
|
|
485
|
+
};
|
|
486
|
+
price_including_tax: {
|
|
487
|
+
currency: string;
|
|
488
|
+
value: number;
|
|
489
|
+
};
|
|
490
|
+
original_item_price: {
|
|
491
|
+
currency: string;
|
|
492
|
+
value: number;
|
|
493
|
+
};
|
|
494
|
+
original_row_total: {
|
|
495
|
+
currency: string;
|
|
496
|
+
value: number;
|
|
497
|
+
};
|
|
498
|
+
row_total: {
|
|
499
|
+
currency: string;
|
|
500
|
+
value: number;
|
|
501
|
+
};
|
|
502
|
+
row_total_including_tax: {
|
|
503
|
+
currency: string;
|
|
504
|
+
value: number;
|
|
505
|
+
};
|
|
506
|
+
catalog_discount: {
|
|
507
|
+
amount_off: number;
|
|
508
|
+
percent_off: number;
|
|
509
|
+
};
|
|
510
|
+
discounts: {
|
|
511
|
+
label: string;
|
|
512
|
+
value: number;
|
|
513
|
+
amount: {
|
|
514
|
+
currency: string;
|
|
515
|
+
value: number;
|
|
516
|
+
};
|
|
517
|
+
}[];
|
|
518
|
+
};
|
|
519
|
+
quantity: number;
|
|
520
|
+
is_available: boolean;
|
|
521
|
+
links: {
|
|
522
|
+
sort_order: number;
|
|
523
|
+
title: string;
|
|
524
|
+
}[];
|
|
525
|
+
customizable_options: {
|
|
526
|
+
type: string;
|
|
527
|
+
label: string;
|
|
528
|
+
values: {
|
|
529
|
+
label: string;
|
|
530
|
+
value: string;
|
|
531
|
+
}[];
|
|
532
|
+
}[];
|
|
533
|
+
note_from_buyer?: undefined;
|
|
534
|
+
note_from_seller?: undefined;
|
|
535
|
+
configurable_options?: undefined;
|
|
536
|
+
configured_variant?: undefined;
|
|
537
|
+
bundle_options?: undefined;
|
|
538
|
+
})[];
|
|
539
|
+
history: {
|
|
540
|
+
uid: string;
|
|
541
|
+
created_at: string;
|
|
542
|
+
author: {
|
|
543
|
+
firstname: string;
|
|
544
|
+
lastname: string;
|
|
545
|
+
};
|
|
546
|
+
change_type: string;
|
|
547
|
+
changes: {
|
|
548
|
+
comment_added: {
|
|
549
|
+
comment: string;
|
|
550
|
+
};
|
|
551
|
+
statuses: {
|
|
552
|
+
changes: {
|
|
553
|
+
new_status: string;
|
|
554
|
+
old_status: null;
|
|
555
|
+
}[];
|
|
556
|
+
};
|
|
557
|
+
expiration: {
|
|
558
|
+
new_expiration: null;
|
|
559
|
+
old_expiration: null;
|
|
560
|
+
};
|
|
561
|
+
};
|
|
562
|
+
}[];
|
|
563
|
+
prices: {
|
|
564
|
+
subtotal_excluding_tax: {
|
|
565
|
+
currency: string;
|
|
566
|
+
value: number;
|
|
567
|
+
};
|
|
568
|
+
subtotal_including_tax: {
|
|
569
|
+
currency: string;
|
|
570
|
+
value: number;
|
|
571
|
+
};
|
|
572
|
+
subtotal_with_discount_excluding_tax: {
|
|
573
|
+
currency: string;
|
|
574
|
+
value: number;
|
|
575
|
+
};
|
|
576
|
+
applied_taxes: {
|
|
577
|
+
label: string;
|
|
578
|
+
amount: {
|
|
579
|
+
currency: string;
|
|
580
|
+
value: number;
|
|
581
|
+
};
|
|
582
|
+
}[];
|
|
583
|
+
discounts: {
|
|
584
|
+
label: string;
|
|
585
|
+
amount: {
|
|
586
|
+
currency: string;
|
|
587
|
+
value: number;
|
|
588
|
+
};
|
|
589
|
+
coupon: {
|
|
590
|
+
code: string;
|
|
591
|
+
};
|
|
592
|
+
}[];
|
|
593
|
+
grand_total: {
|
|
594
|
+
currency: string;
|
|
595
|
+
value: number;
|
|
596
|
+
};
|
|
597
|
+
grand_total_excluding_tax: {
|
|
598
|
+
currency: string;
|
|
599
|
+
value: number;
|
|
600
|
+
};
|
|
601
|
+
};
|
|
602
|
+
shipping_addresses: {
|
|
603
|
+
uid: string;
|
|
604
|
+
firstname: string;
|
|
605
|
+
lastname: string;
|
|
606
|
+
company: string;
|
|
607
|
+
street: string[];
|
|
608
|
+
city: string;
|
|
609
|
+
region: {
|
|
610
|
+
code: string;
|
|
611
|
+
label: string;
|
|
612
|
+
region_id: number;
|
|
613
|
+
};
|
|
614
|
+
postcode: string;
|
|
615
|
+
country: {
|
|
616
|
+
code: string;
|
|
617
|
+
label: string;
|
|
618
|
+
};
|
|
619
|
+
telephone: string;
|
|
620
|
+
selected_shipping_method: {
|
|
621
|
+
amount: {
|
|
622
|
+
currency: string;
|
|
623
|
+
value: number;
|
|
624
|
+
};
|
|
625
|
+
carrier_code: string;
|
|
626
|
+
carrier_title: string;
|
|
627
|
+
method_code: string;
|
|
628
|
+
method_title: string;
|
|
629
|
+
price_excl_tax: {
|
|
630
|
+
value: number;
|
|
631
|
+
currency: string;
|
|
632
|
+
};
|
|
633
|
+
price_incl_tax: {
|
|
634
|
+
value: number;
|
|
635
|
+
currency: string;
|
|
636
|
+
};
|
|
637
|
+
};
|
|
638
|
+
}[];
|
|
639
|
+
};
|
|
640
|
+
export declare const mockNegotiableQuotesResponse: {
|
|
641
|
+
data: {
|
|
642
|
+
negotiableQuotes: {
|
|
643
|
+
items: {
|
|
644
|
+
uid: string;
|
|
645
|
+
name: string;
|
|
646
|
+
created_at: string;
|
|
647
|
+
updated_at: string;
|
|
648
|
+
status: NegotiableQuoteStatus;
|
|
649
|
+
buyer: {
|
|
650
|
+
firstname: string;
|
|
651
|
+
lastname: string;
|
|
652
|
+
};
|
|
653
|
+
email: string;
|
|
654
|
+
items: {
|
|
655
|
+
uid: string;
|
|
23
656
|
product: {
|
|
24
657
|
uid: string;
|
|
25
658
|
sku: string;
|
|
26
659
|
name: string;
|
|
660
|
+
template_id: string;
|
|
661
|
+
template_name: string;
|
|
27
662
|
price_range: {
|
|
28
663
|
maximum_price: {
|
|
29
664
|
regular_price: {
|
|
@@ -31,8 +666,21 @@ export declare const mockGraphQLResponse: {
|
|
|
31
666
|
};
|
|
32
667
|
};
|
|
33
668
|
};
|
|
669
|
+
thumbnail: {
|
|
670
|
+
url: string;
|
|
671
|
+
label: string;
|
|
672
|
+
};
|
|
34
673
|
};
|
|
35
674
|
quantity: number;
|
|
675
|
+
note_from_buyer: {
|
|
676
|
+
created_at: string;
|
|
677
|
+
creator_id: number;
|
|
678
|
+
creator_type: number;
|
|
679
|
+
negotiable_quote_item_uid: string;
|
|
680
|
+
note: string;
|
|
681
|
+
note_uid: string;
|
|
682
|
+
}[];
|
|
683
|
+
note_from_seller: never[];
|
|
36
684
|
}[];
|
|
37
685
|
prices: {
|
|
38
686
|
subtotal_excluding_tax: {
|
|
@@ -48,9 +696,32 @@ export declare const mockGraphQLResponse: {
|
|
|
48
696
|
value: number;
|
|
49
697
|
};
|
|
50
698
|
};
|
|
699
|
+
}[];
|
|
700
|
+
page_info: {
|
|
701
|
+
current_page: number;
|
|
702
|
+
page_size: number;
|
|
703
|
+
total_pages: number;
|
|
51
704
|
};
|
|
705
|
+
total_count: number;
|
|
52
706
|
};
|
|
53
707
|
};
|
|
54
708
|
};
|
|
55
|
-
export declare const
|
|
709
|
+
export declare const mockEmptyNegotiableQuotesResponse: {
|
|
710
|
+
data: {
|
|
711
|
+
negotiableQuotes: {
|
|
712
|
+
items: never[];
|
|
713
|
+
page_info: {
|
|
714
|
+
current_page: number;
|
|
715
|
+
page_size: number;
|
|
716
|
+
total_pages: number;
|
|
717
|
+
};
|
|
718
|
+
total_count: number;
|
|
719
|
+
};
|
|
720
|
+
};
|
|
721
|
+
};
|
|
722
|
+
export declare const mockNullNegotiableQuotesResponse: {
|
|
723
|
+
data: {
|
|
724
|
+
negotiableQuotes: null;
|
|
725
|
+
};
|
|
726
|
+
};
|
|
56
727
|
//# sourceMappingURL=negotiableQuoteData.d.ts.map
|