@dropins/storefront-quote-management 0.0.1-alpha29 → 0.0.1-alpha30

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 (95) hide show
  1. package/api/graphql/NegotiableQuoteTemplateFragment.d.ts +1 -1
  2. package/api/sendForReview/index.d.ts +1 -1
  3. package/api/sendForReview/sendForReview.d.ts +3 -0
  4. package/api/sendQuoteTemplateForReview/sendQuoteTemplateForReview.d.ts +7 -0
  5. package/api.js +8 -56
  6. package/api.js.map +1 -1
  7. package/chunks/AttachedFilesList.js +4 -0
  8. package/chunks/AttachedFilesList.js.map +1 -0
  9. package/chunks/ChevronDown.js +1 -1
  10. package/chunks/ChevronDown.js.map +1 -1
  11. package/chunks/ConfirmationModal.js +1 -1
  12. package/chunks/ConfirmationModal.js.map +1 -1
  13. package/chunks/ItemsQuoted.js +1 -1
  14. package/chunks/ItemsQuoted.js.map +1 -1
  15. package/chunks/ItemsQuotedTemplate.js +1 -1
  16. package/chunks/ItemsQuotedTemplate.js.map +1 -1
  17. package/chunks/LineItemNoteModal.js +4 -0
  18. package/chunks/LineItemNoteModal.js.map +1 -0
  19. package/chunks/NegotiableQuoteTemplateFragment.js +6 -0
  20. package/chunks/NegotiableQuoteTemplateFragment.js.map +1 -1
  21. package/chunks/OrderSummaryLine.js +1 -1
  22. package/chunks/OrderSummaryLine.js.map +1 -1
  23. package/chunks/QuoteCommentsList.js +1 -1
  24. package/chunks/QuoteCommentsList.js.map +1 -1
  25. package/chunks/QuoteCommentsList3.js +1 -1
  26. package/chunks/QuoteCommentsList3.js.map +1 -1
  27. package/chunks/RenameQuoteModal.js +4 -0
  28. package/chunks/RenameQuoteModal.js.map +1 -0
  29. package/chunks/ShippingAddressDisplay.js +1 -1
  30. package/chunks/ShippingAddressDisplay.js.map +1 -1
  31. package/chunks/addQuoteTemplateLineItemNote.js +33 -0
  32. package/chunks/addQuoteTemplateLineItemNote.js.map +1 -0
  33. package/chunks/duplicateNegotiableQuote.js +8 -8
  34. package/chunks/duplicateNegotiableQuote.js.map +1 -1
  35. package/chunks/openQuoteTemplate.js +28 -8
  36. package/chunks/openQuoteTemplate.js.map +1 -1
  37. package/chunks/requestNegotiableQuote.js +25 -0
  38. package/chunks/requestNegotiableQuote.js.map +1 -0
  39. package/chunks/setLineItemNote.js +1 -1
  40. package/chunks/transform-quote-template.js +1 -1
  41. package/chunks/transform-quote-template.js.map +1 -1
  42. package/chunks/transform-quote.js +1 -1
  43. package/chunks/uploadFile.js +2 -23
  44. package/chunks/uploadFile.js.map +1 -1
  45. package/components/AttachedFilesList/AttachedFilesList.d.ts +16 -0
  46. package/components/AttachedFilesList/index.d.ts +11 -0
  47. package/components/LineItemNoteModal/LineItemNoteModal.d.ts +1 -0
  48. package/components/ManageNegotiableQuote/ManageNegotiableQuote.d.ts +2 -0
  49. package/components/ManageNegotiableQuoteTemplate/ManageNegotiableQuoteTemplate.d.ts +3 -2
  50. package/components/ProductListTable/ProductListTable.d.ts +1 -0
  51. package/components/QuoteCommentsList/QuoteCommentsList.d.ts +4 -0
  52. package/components/ReferenceDocumentFormModal/ReferenceDocumentFormModal.d.ts +30 -0
  53. package/components/ReferenceDocumentFormModal/index.d.ts +11 -0
  54. package/components/ReferenceDocumentsList/ReferenceDocumentsList.d.ts +18 -0
  55. package/components/ReferenceDocumentsList/index.d.ts +11 -0
  56. package/components/RequestNegotiableQuoteForm/RequestNegotiableQuoteForm.d.ts +1 -0
  57. package/components/index.d.ts +3 -0
  58. package/containers/ItemsQuoted.js +1 -1
  59. package/containers/ItemsQuotedTemplate/ItemsQuotedTemplate.d.ts +6 -0
  60. package/containers/ItemsQuotedTemplate.js +1 -1
  61. package/containers/ManageNegotiableQuote/ManageNegotiableQuote.d.ts +22 -0
  62. package/containers/ManageNegotiableQuote.js +1 -1
  63. package/containers/ManageNegotiableQuote.js.map +1 -1
  64. package/containers/ManageNegotiableQuoteTemplate/ManageNegotiableQuoteTemplate.d.ts +28 -5
  65. package/containers/ManageNegotiableQuoteTemplate.js +3 -1
  66. package/containers/ManageNegotiableQuoteTemplate.js.map +1 -1
  67. package/containers/OrderSummary.js +1 -1
  68. package/containers/OrderSummary.js.map +1 -1
  69. package/containers/OrderSummaryLine.js +1 -1
  70. package/containers/QuoteSummaryList.js +1 -1
  71. package/containers/QuoteSummaryList.js.map +1 -1
  72. package/containers/QuoteTemplatesListTable.js +1 -1
  73. package/containers/QuoteTemplatesListTable.js.map +1 -1
  74. package/containers/QuotesListTable.js +1 -1
  75. package/containers/QuotesListTable.js.map +1 -1
  76. package/containers/RequestNegotiableQuoteForm/RequestNegotiableQuoteForm.d.ts +10 -0
  77. package/containers/RequestNegotiableQuoteForm.js +1 -1
  78. package/containers/RequestNegotiableQuoteForm.js.map +1 -1
  79. package/containers/ShippingAddressDisplay/ShippingAddressDisplay.d.ts +2 -2
  80. package/data/models/negotiable-quote-template-model.d.ts +2 -0
  81. package/data/transforms/__fixtures__/negotiableQuoteTemplateData.d.ts +55 -0
  82. package/hooks/useItemsQuotedTemplate.d.ts +16 -0
  83. package/hooks/useReferenceDocumentLinks.d.ts +34 -0
  84. package/hooks/useRemoveTemplateItems.d.ts +25 -0
  85. package/hooks/useRenameTemplate.d.ts +71 -0
  86. package/hooks/useUpdateTemplateQuantities.d.ts +27 -0
  87. package/i18n/en_US.json.d.ts +102 -3
  88. package/package.json +1 -1
  89. package/render.js +5 -5
  90. package/render.js.map +1 -1
  91. package/utils/fileUtils.d.ts +46 -0
  92. package/chunks/QuotePricesSummary.js +0 -4
  93. package/chunks/QuotePricesSummary.js.map +0 -1
  94. package/chunks/TabbedContent.js +0 -4
  95. package/chunks/TabbedContent.js.map +0 -1
@@ -314,6 +314,17 @@ export declare const mockQuoteTemplateData: {
314
314
  };
315
315
  telephone: string;
316
316
  }[];
317
+ reference_document_links: ({
318
+ link_id: string;
319
+ document_name: string;
320
+ document_identifier: string;
321
+ reference_document_url: string;
322
+ } | {
323
+ link_id: string;
324
+ document_name: string;
325
+ reference_document_url: string;
326
+ document_identifier?: undefined;
327
+ })[];
317
328
  };
318
329
  export declare const mockMinimalQuoteTemplateData: {
319
330
  template_id: string;
@@ -636,6 +647,17 @@ export declare const mockSubmittedQuoteTemplateData: {
636
647
  };
637
648
  telephone: string;
638
649
  }[];
650
+ reference_document_links: ({
651
+ link_id: string;
652
+ document_name: string;
653
+ document_identifier: string;
654
+ reference_document_url: string;
655
+ } | {
656
+ link_id: string;
657
+ document_name: string;
658
+ reference_document_url: string;
659
+ document_identifier?: undefined;
660
+ })[];
639
661
  };
640
662
  export declare const mockInReviewQuoteTemplateData: {
641
663
  template_id: string;
@@ -945,6 +967,17 @@ export declare const mockInReviewQuoteTemplateData: {
945
967
  };
946
968
  telephone: string;
947
969
  }[];
970
+ reference_document_links: ({
971
+ link_id: string;
972
+ document_name: string;
973
+ document_identifier: string;
974
+ reference_document_url: string;
975
+ } | {
976
+ link_id: string;
977
+ document_name: string;
978
+ reference_document_url: string;
979
+ document_identifier?: undefined;
980
+ })[];
948
981
  };
949
982
  export declare const mockClosedQuoteTemplateData: {
950
983
  template_id: string;
@@ -1254,6 +1287,17 @@ export declare const mockClosedQuoteTemplateData: {
1254
1287
  };
1255
1288
  telephone: string;
1256
1289
  }[];
1290
+ reference_document_links: ({
1291
+ link_id: string;
1292
+ document_name: string;
1293
+ document_identifier: string;
1294
+ reference_document_url: string;
1295
+ } | {
1296
+ link_id: string;
1297
+ document_name: string;
1298
+ reference_document_url: string;
1299
+ document_identifier?: undefined;
1300
+ })[];
1257
1301
  };
1258
1302
  export declare const mockInactiveQuoteTemplateData: {
1259
1303
  template_id: string;
@@ -1563,6 +1607,17 @@ export declare const mockInactiveQuoteTemplateData: {
1563
1607
  };
1564
1608
  telephone: string;
1565
1609
  }[];
1610
+ reference_document_links: ({
1611
+ link_id: string;
1612
+ document_name: string;
1613
+ document_identifier: string;
1614
+ reference_document_url: string;
1615
+ } | {
1616
+ link_id: string;
1617
+ document_name: string;
1618
+ reference_document_url: string;
1619
+ document_identifier?: undefined;
1620
+ })[];
1566
1621
  };
1567
1622
  export declare const mockQuoteTemplateListData: {
1568
1623
  items: {
@@ -0,0 +1,16 @@
1
+ import { ProductListTableItem } from '../components';
2
+ import { QuoteTemplateCartItem } from '../data/models/negotiable-quote-template-model';
3
+
4
+ export interface UseItemsQuotedTemplateReturn {
5
+ dropdownSelections: Record<string, string | undefined>;
6
+ handleItemDropdownChange: (item: ProductListTableItem, action: string) => void;
7
+ handleDismissRemoveBanner: () => void;
8
+ }
9
+ export interface UseItemsQuotedTemplateParams {
10
+ handleRemoveItems: (items: QuoteTemplateCartItem[]) => void;
11
+ }
12
+ /**
13
+ * Custom hook to manage dropdown selections and item actions for quote template items
14
+ */
15
+ export declare const useItemsQuotedTemplate: (params: UseItemsQuotedTemplateParams) => UseItemsQuotedTemplateReturn;
16
+ //# sourceMappingURL=useItemsQuotedTemplate.d.ts.map
@@ -0,0 +1,34 @@
1
+ import { ReferenceDocument } from '../components';
2
+ import { ReferenceDocumentLinkInput } from '../api/sendQuoteTemplateForReview/sendQuoteTemplateForReview';
3
+
4
+ export interface UseReferenceDocumentLinksParams {
5
+ templateReferenceDocuments?: ReferenceDocument[];
6
+ localReferenceDocuments: ReferenceDocument[];
7
+ }
8
+ export interface UseReferenceDocumentLinksReturn {
9
+ /**
10
+ * Checks if a document exists in the template reference documents.
11
+ * Matches by uid if both documents have it, otherwise matches by url.
12
+ */
13
+ isDocumentInTemplateData: (document: ReferenceDocument) => boolean;
14
+ /**
15
+ * Returns documents from localReferenceDocuments that are not in templateReferenceDocuments.
16
+ */
17
+ getNewDocuments: () => ReferenceDocument[];
18
+ /**
19
+ * Transforms all reference documents to API format.
20
+ */
21
+ getReferenceDocumentLinks: () => ReferenceDocumentLinkInput[];
22
+ /**
23
+ * Indicates if there are unsaved changes (new documents, removed documents, or modified documents).
24
+ */
25
+ hasUnsavedChanges: boolean;
26
+ }
27
+ /**
28
+ * Custom hook to manage reference document links logic.
29
+ * Handles document matching, filtering new documents, transformation to API format,
30
+ * and detection of unsaved changes (new, removed, or modified documents).
31
+ * Note: getReferenceDocumentLinks() returns all local reference documents, not just new ones.
32
+ */
33
+ export declare const useReferenceDocumentLinks: (params: UseReferenceDocumentLinksParams) => UseReferenceDocumentLinksReturn;
34
+ //# sourceMappingURL=useReferenceDocumentLinks.d.ts.map
@@ -0,0 +1,25 @@
1
+ import { QuoteTemplateCartItem } from '../data/models/negotiable-quote-template-model';
2
+
3
+ export interface UseRemoveTemplateItemsReturn {
4
+ handleRemoveItems: (items: QuoteTemplateCartItem[]) => void;
5
+ handleConfirmRemove: () => Promise<void>;
6
+ handleCancelRemove: () => void;
7
+ isRemoveModalOpen: boolean;
8
+ itemsToRemove: QuoteTemplateCartItem[];
9
+ isRemoving: boolean;
10
+ removeNotificationState: {
11
+ type: 'success' | 'error' | null;
12
+ message: string;
13
+ };
14
+ }
15
+ export interface UseRemoveTemplateItemsParams {
16
+ templateId?: string;
17
+ onRemoveModalStateChange?: (isOpen: boolean) => void;
18
+ removeSuccessMessage: string;
19
+ removeErrorMessage: string;
20
+ }
21
+ /**
22
+ * Custom hook to manage removing items from a quote template
23
+ */
24
+ export declare const useRemoveTemplateItems: (params: UseRemoveTemplateItemsParams) => UseRemoveTemplateItemsReturn;
25
+ //# sourceMappingURL=useRemoveTemplateItems.d.ts.map
@@ -0,0 +1,71 @@
1
+ /********************************************************************
2
+ * Copyright 2025 Adobe
3
+ * All Rights Reserved.
4
+ *
5
+ * NOTICE: Adobe permits you to use, modify, and distribute this
6
+ * file in accordance with the terms of the Adobe license agreement
7
+ * accompanying it.
8
+ *******************************************************************/
9
+ export interface UseRenameTemplateParams {
10
+ initialTemplateName?: string;
11
+ templateNameRequiredErrorMessage?: string;
12
+ }
13
+ export interface UseRenameTemplateReturn {
14
+ /**
15
+ * Whether the rename modal is currently open.
16
+ */
17
+ isRenameModalOpen: boolean;
18
+ /**
19
+ * The new template name entered by the user.
20
+ */
21
+ renameTemplateName: string;
22
+ /**
23
+ * The reason for renaming the template.
24
+ */
25
+ renameReason: string;
26
+ /**
27
+ * Error message for rename operation.
28
+ */
29
+ renameError: string;
30
+ /**
31
+ * Error message for template name validation.
32
+ */
33
+ renameTemplateNameError: string;
34
+ /**
35
+ * Success message for rename operation.
36
+ */
37
+ renameSuccess: string;
38
+ /**
39
+ * Opens the rename modal and initializes state with the current template name.
40
+ */
41
+ handleRenameClick: (currentTemplateName?: string) => void;
42
+ /**
43
+ * Closes the rename modal and resets all state.
44
+ */
45
+ handleRenameClose: () => void;
46
+ /**
47
+ * Updates the template name and clears any name-related errors.
48
+ */
49
+ handleRenameTemplateNameChange: (value: string) => void;
50
+ /**
51
+ * Updates the rename reason.
52
+ */
53
+ handleRenameReasonChange: (value: string) => void;
54
+ /**
55
+ * Validates and saves the rename. Closes the modal if validation passes.
56
+ * Does not make an API call - rename is tracked locally and included when submitting for review.
57
+ */
58
+ handleRenameSave: () => boolean;
59
+ /**
60
+ * Resets rename state (useful after successful submission).
61
+ */
62
+ resetRenameState: () => void;
63
+ }
64
+ /**
65
+ * Custom hook to manage quote template rename functionality.
66
+ * Handles state management for the rename modal, validation, and tracking rename changes.
67
+ * Note: This hook does not make API calls. The rename is tracked locally and should be
68
+ * included when calling sendQuoteTemplateForReview.
69
+ */
70
+ export declare const useRenameTemplate: (params?: UseRenameTemplateParams) => UseRenameTemplateReturn;
71
+ //# sourceMappingURL=useRenameTemplate.d.ts.map
@@ -0,0 +1,27 @@
1
+ import { ProductListTableItem } from '../components';
2
+
3
+ export interface UseUpdateTemplateQuantitiesReturn {
4
+ quantityChanges: Record<string, number>;
5
+ handleQuantityChange: (item: ProductListTableItem, newQuantity: number) => void;
6
+ handleUpdate: (e: SubmitEvent) => void;
7
+ handleConfirmUpdate: () => Promise<void>;
8
+ handleCancelUpdate: () => void;
9
+ handleDismissBanner: () => void;
10
+ isUpdateModalOpen: boolean;
11
+ isUpdating: boolean;
12
+ updateNotificationState: {
13
+ type: 'success' | 'error' | null;
14
+ message: string;
15
+ };
16
+ }
17
+ export interface UseUpdateTemplateQuantitiesParams {
18
+ templateId?: string;
19
+ onUpdateModalStateChange?: (isOpen: boolean) => void;
20
+ updateSuccessMessage: string;
21
+ updateErrorMessage: string;
22
+ }
23
+ /**
24
+ * Custom hook to manage updating quantities of items in a quote template
25
+ */
26
+ export declare const useUpdateTemplateQuantities: (params: UseUpdateTemplateQuantitiesParams) => UseUpdateTemplateQuantitiesReturn;
27
+ //# sourceMappingURL=useUpdateTemplateQuantities.d.ts.map
@@ -11,6 +11,13 @@ declare const _default: {
11
11
  "quoteName": "Quote name",
12
12
  "quoteNameError": "Please add a quote name",
13
13
  "attachmentsError": "Error uploading attachments",
14
+ "maxFilesExceeded": "Maximum {maxFiles} file(s) allowed",
15
+ "maxFileSizeExceeded": "File size exceeds maximum limit of {maxSize}",
16
+ "invalidFileType": "File type not accepted",
17
+ "removeFile": "Remove file",
18
+ "uploading": "Uploading...",
19
+ "uploadSuccess": "Upload complete",
20
+ "uploadError": "Upload failed",
14
21
  "requestCta": "Request a Quote",
15
22
  "saveDraftCta": "Save as draft",
16
23
  "error": {
@@ -33,6 +40,16 @@ declare const _default: {
33
40
  "actions": {
34
41
  "remove": "Remove"
35
42
  },
43
+ "attachFile": "Attach File",
44
+ "attachFiles": "Attach Files",
45
+ "fileUploadError": "Failed to upload file. Please try again.",
46
+ "maxFilesExceeded": "Maximum {maxFiles} file(s) allowed",
47
+ "maxFileSizeExceeded": "File size exceeds maximum limit of {maxSize}",
48
+ "invalidFileType": "File type not accepted",
49
+ "removeFile": "Remove file",
50
+ "uploading": "Uploading...",
51
+ "uploadSuccess": "Upload complete",
52
+ "uploadError": "Upload failed",
36
53
  "bannerTitle": "Alert",
37
54
  "bannerStatusMessages": {
38
55
  "submitted": "This quote is currently locked for editing. It will become available once released by the Merchant.",
@@ -99,7 +116,8 @@ declare const _default: {
99
116
  "title": "Quote Comments",
100
117
  "placeholder": "Add your comment",
101
118
  "emptyState": "No comments yet",
102
- "by": "by"
119
+ "by": "by",
120
+ "attachments": "Attachments:"
103
121
  },
104
122
  "productListTable": {
105
123
  "headers": {
@@ -249,8 +267,31 @@ declare const _default: {
249
267
  "createdLabel": "Created:",
250
268
  "salesRepLabel": "Sales Rep:",
251
269
  "expiresLabel": "Expires:",
270
+ "templateIdLabel": "Template ID:",
252
271
  "referenceDocuments": {
253
- "title": "Reference Documents"
272
+ "title": "Reference Documents",
273
+ "add": "Add",
274
+ "edit": "Edit",
275
+ "remove": "Remove",
276
+ "noReferenceDocuments": "No reference documents",
277
+ "form": {
278
+ "title": "Document Information",
279
+ "documentNameLabel": "Document name",
280
+ "documentIdentifierLabel": "Document identifier",
281
+ "referenceUrlLabel": "Reference URL",
282
+ "addButton": "Add to Quote Template",
283
+ "updateButton": "Update Document",
284
+ "cancelButton": "Cancel",
285
+ "documentNameRequired": "Document name is required",
286
+ "documentIdentifierRequired": "Document identifier is required",
287
+ "referenceUrlRequired": "Reference URL is required",
288
+ "invalidUrl": "Please enter a valid URL",
289
+ "errorHeading": "Error",
290
+ "duplicateUidError": "A document with this identifier already exists in the template. Please use a different identifier."
291
+ }
292
+ },
293
+ "shippingInformation": {
294
+ "title": "Shipping Information"
254
295
  },
255
296
  "comments": {
256
297
  "title": "Comments"
@@ -270,11 +311,52 @@ declare const _default: {
270
311
  "actionsLabel": "Actions",
271
312
  "actionButtons": {
272
313
  "sendForReview": "Send for review",
314
+ "delete": "Delete template",
315
+ "cancel": "Cancel template",
273
316
  "accept": "Accept",
274
317
  "generateQuote": "Generate quote"
275
318
  },
319
+ "removeItemsModal": {
320
+ "title": "Change Quote Template Items",
321
+ "description": "Making changes to any quote template item changes the terms of the template. After you update the template, return it to the seller for review and approval.",
322
+ "cancelButton": "Cancel",
323
+ "confirmButton": "Remove",
324
+ "confirmButtonRemoving": "Removing...",
325
+ "successHeading": "Success",
326
+ "successMessage": "Quote template items have been successfully removed.",
327
+ "errorHeading": "Error",
328
+ "errorMessage": "Failed to remove quote template items. Please try again."
329
+ },
330
+ "updateQuantitiesModal": {
331
+ "title": "Change Quote Template Items",
332
+ "description": "Making changes to any quote template item changes the terms of the template. After you update the template, return it to the seller for review and approval.",
333
+ "cancelButton": "Cancel",
334
+ "updateButton": "Apply Changes",
335
+ "successHeading": "Success",
336
+ "successMessage": "Quote template quantities have been successfully updated.",
337
+ "errorHeading": "Error",
338
+ "errorMessage": "Failed to update quote template quantities. Please try again."
339
+ },
276
340
  "confirmationModal": {
277
341
  "cancel": "Cancel",
342
+ "delete": {
343
+ "title": "Delete Quote Template",
344
+ "message": "Are you sure you want to delete this quote template?",
345
+ "confirm": "Delete",
346
+ "errorHeading": "Error",
347
+ "errorFallback": "Failed to delete quote template",
348
+ "successHeading": "Success",
349
+ "successDescription": "Quote template has been successfully deleted"
350
+ },
351
+ "cancelTemplate": {
352
+ "title": "Cancel Quote Template",
353
+ "message": "Are you sure you want to cancel this quote template?",
354
+ "confirm": "Cancel Template",
355
+ "errorHeading": "Error",
356
+ "errorFallback": "Failed to cancel quote template",
357
+ "successHeading": "Success",
358
+ "successDescription": "Quote template has been successfully cancelled"
359
+ },
278
360
  "accept": {
279
361
  "title": "Accept Quote Template",
280
362
  "message": "Are you sure you want to accept this quote template?",
@@ -303,7 +385,24 @@ declare const _default: {
303
385
  "grandTotal": {
304
386
  "includingTax": "Quote Template Grand Total (including tax)"
305
387
  }
306
- }
388
+ },
389
+ "lineItemNoteModal": {
390
+ "errorHeading": "Error"
391
+ },
392
+ "rename": {
393
+ "title": "Rename Quote Template",
394
+ "templateNameLabel": "Template name",
395
+ "reasonLabel": "Reason for change",
396
+ "renameButton": "Rename",
397
+ "cancelButton": "Cancel",
398
+ "errorHeading": "Error",
399
+ "templateNameRequired": "Template name is required",
400
+ "errorDefault": "Failed to rename quote template. Please try again.",
401
+ "successHeading": "Success",
402
+ "successMessage": "Quote template renamed successfully!"
403
+ },
404
+ "unsavedChangesWarningHeading": "Unsaved Changes",
405
+ "unsavedChangesWarningMessage": "The quote template must be submitted for review to save the changes."
307
406
  }
308
407
  },
309
408
  "historyLog": {
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name": "@dropins/storefront-quote-management", "version": "0.0.1-alpha29", "@dropins/tools": "1.6.0-beta2", "license": "SEE LICENSE IN LICENSE.md"}
1
+ {"name": "@dropins/storefront-quote-management", "version": "0.0.1-alpha30", "@dropins/tools": "1.6.0-beta3", "license": "SEE LICENSE IN LICENSE.md"}