@mercurjs/core 2.2.0-canary.7 → 2.2.0-canary.9

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 (166) hide show
  1. package/.medusa/server/src/api/admin/products/[id]/attributes/[attribute_id]/route.d.ts +9 -0
  2. package/.medusa/server/src/api/admin/products/[id]/attributes/[attribute_id]/route.js +27 -2
  3. package/.medusa/server/src/api/admin/products/validators.d.ts +18 -0
  4. package/.medusa/server/src/api/admin/products/validators.js +8 -2
  5. package/.medusa/server/src/api/utils/format-product-attributes.js +3 -1
  6. package/.medusa/server/src/api/vendor/claims/[id]/cancel/route.d.ts +4 -0
  7. package/.medusa/server/src/api/vendor/claims/[id]/cancel/route.js +17 -0
  8. package/.medusa/server/src/api/vendor/claims/[id]/claim-items/[action_id]/route.d.ts +9 -0
  9. package/.medusa/server/src/api/vendor/claims/[id]/claim-items/[action_id]/route.js +32 -0
  10. package/.medusa/server/src/api/vendor/claims/[id]/claim-items/route.d.ts +6 -0
  11. package/.medusa/server/src/api/vendor/claims/[id]/claim-items/route.js +15 -0
  12. package/.medusa/server/src/api/vendor/claims/[id]/inbound/items/[action_id]/route.d.ts +9 -0
  13. package/.medusa/server/src/api/vendor/claims/[id]/inbound/items/[action_id]/route.js +46 -0
  14. package/.medusa/server/src/api/vendor/claims/[id]/inbound/items/route.d.ts +6 -0
  15. package/.medusa/server/src/api/vendor/claims/[id]/inbound/items/route.js +26 -0
  16. package/.medusa/server/src/api/vendor/claims/[id]/inbound/shipping-method/[action_id]/route.d.ts +9 -0
  17. package/.medusa/server/src/api/vendor/claims/[id]/inbound/shipping-method/[action_id]/route.js +39 -0
  18. package/.medusa/server/src/api/vendor/claims/[id]/inbound/shipping-method/route.d.ts +6 -0
  19. package/.medusa/server/src/api/vendor/claims/[id]/inbound/shipping-method/route.js +26 -0
  20. package/.medusa/server/src/api/vendor/claims/[id]/outbound/items/[action_id]/route.d.ts +9 -0
  21. package/.medusa/server/src/api/vendor/claims/[id]/outbound/items/[action_id]/route.js +32 -0
  22. package/.medusa/server/src/api/vendor/claims/[id]/outbound/items/route.d.ts +12 -0
  23. package/.medusa/server/src/api/vendor/claims/[id]/outbound/items/route.js +47 -0
  24. package/.medusa/server/src/api/vendor/claims/[id]/outbound/shipping-method/[action_id]/route.d.ts +9 -0
  25. package/.medusa/server/src/api/vendor/claims/[id]/outbound/shipping-method/[action_id]/route.js +32 -0
  26. package/.medusa/server/src/api/vendor/claims/[id]/outbound/shipping-method/route.d.ts +6 -0
  27. package/.medusa/server/src/api/vendor/claims/[id]/outbound/shipping-method/route.js +15 -0
  28. package/.medusa/server/src/api/vendor/claims/[id]/request/route.d.ts +6 -0
  29. package/.medusa/server/src/api/vendor/claims/[id]/request/route.js +34 -0
  30. package/.medusa/server/src/api/vendor/claims/[id]/route.d.ts +3 -0
  31. package/.medusa/server/src/api/vendor/claims/[id]/route.js +19 -0
  32. package/.medusa/server/src/api/vendor/claims/helpers.d.ts +2 -0
  33. package/.medusa/server/src/api/vendor/claims/helpers.js +19 -0
  34. package/.medusa/server/src/api/vendor/claims/middlewares.d.ts +2 -0
  35. package/.medusa/server/src/api/vendor/claims/middlewares.js +184 -0
  36. package/.medusa/server/src/api/vendor/claims/query-config.d.ts +12 -0
  37. package/.medusa/server/src/api/vendor/claims/query-config.js +31 -0
  38. package/.medusa/server/src/api/vendor/claims/route.d.ts +5 -0
  39. package/.medusa/server/src/api/vendor/claims/route.js +35 -0
  40. package/.medusa/server/src/api/vendor/claims/validators.d.ts +378 -0
  41. package/.medusa/server/src/api/vendor/claims/validators.js +89 -0
  42. package/.medusa/server/src/api/vendor/exchanges/[id]/cancel/route.d.ts +4 -0
  43. package/.medusa/server/src/api/vendor/exchanges/[id]/cancel/route.js +17 -0
  44. package/.medusa/server/src/api/vendor/exchanges/[id]/inbound/items/[action_id]/route.d.ts +9 -0
  45. package/.medusa/server/src/api/vendor/exchanges/[id]/inbound/items/[action_id]/route.js +46 -0
  46. package/.medusa/server/src/api/vendor/exchanges/[id]/inbound/items/route.d.ts +6 -0
  47. package/.medusa/server/src/api/vendor/exchanges/[id]/inbound/items/route.js +26 -0
  48. package/.medusa/server/src/api/vendor/exchanges/[id]/inbound/shipping-method/[action_id]/route.d.ts +9 -0
  49. package/.medusa/server/src/api/vendor/exchanges/[id]/inbound/shipping-method/[action_id]/route.js +45 -0
  50. package/.medusa/server/src/api/vendor/exchanges/[id]/inbound/shipping-method/route.d.ts +6 -0
  51. package/.medusa/server/src/api/vendor/exchanges/[id]/inbound/shipping-method/route.js +26 -0
  52. package/.medusa/server/src/api/vendor/exchanges/[id]/outbound/items/[action_id]/route.d.ts +9 -0
  53. package/.medusa/server/src/api/vendor/exchanges/[id]/outbound/items/[action_id]/route.js +32 -0
  54. package/.medusa/server/src/api/vendor/exchanges/[id]/outbound/items/route.d.ts +12 -0
  55. package/.medusa/server/src/api/vendor/exchanges/[id]/outbound/items/route.js +47 -0
  56. package/.medusa/server/src/api/vendor/exchanges/[id]/outbound/shipping-method/[action_id]/route.d.ts +9 -0
  57. package/.medusa/server/src/api/vendor/exchanges/[id]/outbound/shipping-method/[action_id]/route.js +32 -0
  58. package/.medusa/server/src/api/vendor/exchanges/[id]/outbound/shipping-method/route.d.ts +6 -0
  59. package/.medusa/server/src/api/vendor/exchanges/[id]/outbound/shipping-method/route.js +15 -0
  60. package/.medusa/server/src/api/vendor/exchanges/[id]/request/route.d.ts +6 -0
  61. package/.medusa/server/src/api/vendor/exchanges/[id]/request/route.js +34 -0
  62. package/.medusa/server/src/api/vendor/exchanges/helpers.d.ts +2 -0
  63. package/.medusa/server/src/api/vendor/exchanges/helpers.js +19 -0
  64. package/.medusa/server/src/api/vendor/exchanges/middlewares.d.ts +2 -0
  65. package/.medusa/server/src/api/vendor/exchanges/middlewares.js +155 -0
  66. package/.medusa/server/src/api/vendor/exchanges/query-config.d.ts +7 -0
  67. package/.medusa/server/src/api/vendor/exchanges/query-config.js +23 -0
  68. package/.medusa/server/src/api/vendor/exchanges/route.d.ts +5 -0
  69. package/.medusa/server/src/api/vendor/exchanges/route.js +35 -0
  70. package/.medusa/server/src/api/vendor/exchanges/validators.d.ts +313 -0
  71. package/.medusa/server/src/api/vendor/exchanges/validators.js +71 -0
  72. package/.medusa/server/src/api/vendor/middlewares.js +77 -67
  73. package/.medusa/server/src/api/vendor/order-edits/[id]/confirm/route.d.ts +9 -0
  74. package/.medusa/server/src/api/vendor/order-edits/[id]/confirm/route.js +24 -0
  75. package/.medusa/server/src/api/vendor/order-edits/[id]/items/[action_id]/route.d.ts +14 -0
  76. package/.medusa/server/src/api/vendor/order-edits/[id]/items/[action_id]/route.js +41 -0
  77. package/.medusa/server/src/api/vendor/order-edits/[id]/items/item/[item_id]/route.d.ts +10 -0
  78. package/.medusa/server/src/api/vendor/order-edits/[id]/items/item/[item_id]/route.js +30 -0
  79. package/.medusa/server/src/api/vendor/order-edits/[id]/items/route.d.ts +16 -0
  80. package/.medusa/server/src/api/vendor/order-edits/[id]/items/route.js +45 -0
  81. package/.medusa/server/src/api/vendor/order-edits/[id]/request/route.d.ts +10 -0
  82. package/.medusa/server/src/api/vendor/order-edits/[id]/request/route.js +25 -0
  83. package/.medusa/server/src/api/vendor/order-edits/[id]/route.d.ts +10 -0
  84. package/.medusa/server/src/api/vendor/order-edits/[id]/route.js +26 -0
  85. package/.medusa/server/src/api/vendor/order-edits/[id]/shipping-method/[action_id]/route.d.ts +14 -0
  86. package/.medusa/server/src/api/vendor/order-edits/[id]/shipping-method/[action_id]/route.js +41 -0
  87. package/.medusa/server/src/api/vendor/order-edits/[id]/shipping-method/route.d.ts +9 -0
  88. package/.medusa/server/src/api/vendor/order-edits/[id]/shipping-method/route.js +20 -0
  89. package/.medusa/server/src/api/vendor/order-edits/middlewares.d.ts +2 -0
  90. package/.medusa/server/src/api/vendor/order-edits/middlewares.js +106 -0
  91. package/.medusa/server/src/api/vendor/order-edits/route.d.ts +10 -0
  92. package/.medusa/server/src/api/vendor/order-edits/route.js +21 -0
  93. package/.medusa/server/src/api/vendor/order-edits/validators.d.ts +166 -0
  94. package/.medusa/server/src/api/vendor/order-edits/validators.js +50 -0
  95. package/.medusa/server/src/api/vendor/orders/apply-request-filter.d.ts +2 -0
  96. package/.medusa/server/src/api/vendor/orders/apply-request-filter.js +99 -0
  97. package/.medusa/server/src/api/vendor/orders/middlewares.js +3 -1
  98. package/.medusa/server/src/api/vendor/orders/query-config.js +34 -11
  99. package/.medusa/server/src/api/vendor/orders/resolve-offer-items.d.ts +34 -0
  100. package/.medusa/server/src/api/vendor/orders/resolve-offer-items.js +66 -0
  101. package/.medusa/server/src/api/vendor/orders/validators.d.ts +5 -2
  102. package/.medusa/server/src/api/vendor/orders/validators.js +7 -1
  103. package/.medusa/server/src/api/vendor/payment-collections/[id]/mark-as-paid/route.d.ts +3 -0
  104. package/.medusa/server/src/api/vendor/payment-collections/[id]/mark-as-paid/route.js +25 -0
  105. package/.medusa/server/src/api/vendor/payment-collections/helpers.d.ts +3 -0
  106. package/.medusa/server/src/api/vendor/payment-collections/helpers.js +30 -0
  107. package/.medusa/server/src/api/vendor/payment-collections/middlewares.d.ts +2 -0
  108. package/.medusa/server/src/api/vendor/payment-collections/middlewares.js +17 -0
  109. package/.medusa/server/src/api/vendor/payment-collections/query-config.d.ts +7 -0
  110. package/.medusa/server/src/api/vendor/payment-collections/query-config.js +26 -0
  111. package/.medusa/server/src/api/vendor/payment-collections/validators.d.ts +17 -0
  112. package/.medusa/server/src/api/vendor/payment-collections/validators.js +12 -0
  113. package/.medusa/server/src/api/vendor/payments/helpers.d.ts +9 -0
  114. package/.medusa/server/src/api/vendor/payments/helpers.js +23 -8
  115. package/.medusa/server/src/api/vendor/product-categories/[id]/products/route.d.ts +4 -0
  116. package/.medusa/server/src/api/vendor/product-categories/[id]/products/route.js +36 -0
  117. package/.medusa/server/src/api/vendor/product-categories/middlewares.js +9 -1
  118. package/.medusa/server/src/api/vendor/product-categories/validators.d.ts +17 -0
  119. package/.medusa/server/src/api/vendor/product-categories/validators.js +7 -2
  120. package/.medusa/server/src/api/vendor/products/[id]/attributes/[attribute_id]/route.d.ts +12 -0
  121. package/.medusa/server/src/api/vendor/products/[id]/attributes/[attribute_id]/route.js +39 -4
  122. package/.medusa/server/src/api/vendor/products/[id]/attributes/batch/route.d.ts +12 -0
  123. package/.medusa/server/src/api/vendor/products/[id]/attributes/batch/route.js +46 -0
  124. package/.medusa/server/src/api/vendor/products/[id]/attributes/route.js +1 -3
  125. package/.medusa/server/src/api/vendor/products/[id]/cancel/route.js +1 -3
  126. package/.medusa/server/src/api/vendor/products/[id]/route.js +1 -4
  127. package/.medusa/server/src/api/vendor/products/[id]/variants/[variant_id]/route.js +1 -4
  128. package/.medusa/server/src/api/vendor/products/[id]/variants/route.js +1 -3
  129. package/.medusa/server/src/api/vendor/products/helpers.js +1 -1
  130. package/.medusa/server/src/api/vendor/products/middlewares.js +18 -1
  131. package/.medusa/server/src/api/vendor/products/validators.d.ts +86 -1
  132. package/.medusa/server/src/api/vendor/products/validators.js +39 -2
  133. package/.medusa/server/src/api/vendor/reservations/[id]/route.d.ts +5 -0
  134. package/.medusa/server/src/api/vendor/reservations/[id]/route.js +39 -0
  135. package/.medusa/server/src/api/vendor/reservations/helpers.d.ts +2 -0
  136. package/.medusa/server/src/api/vendor/reservations/helpers.js +21 -0
  137. package/.medusa/server/src/api/vendor/reservations/middlewares.d.ts +2 -0
  138. package/.medusa/server/src/api/vendor/reservations/middlewares.js +61 -0
  139. package/.medusa/server/src/api/vendor/reservations/query-config.d.ts +19 -0
  140. package/.medusa/server/src/api/vendor/reservations/query-config.js +48 -0
  141. package/.medusa/server/src/api/vendor/reservations/route.d.ts +4 -0
  142. package/.medusa/server/src/api/vendor/reservations/route.js +35 -0
  143. package/.medusa/server/src/api/vendor/reservations/validators.d.ts +296 -0
  144. package/.medusa/server/src/api/vendor/reservations/validators.js +40 -0
  145. package/.medusa/server/src/api/vendor/shipping-options/middlewares.js +13 -1
  146. package/.medusa/server/src/api/vendor/shipping-options/validators.d.ts +3 -0
  147. package/.medusa/server/src/api/vendor/shipping-options/validators.js +2 -1
  148. package/.medusa/server/src/links/cart-line-item-offer-link.js +9 -2
  149. package/.medusa/server/src/links/order-line-item-offer-link.js +10 -2
  150. package/.medusa/server/src/subscribers/link-order-line-items-to-offers.d.ts +6 -0
  151. package/.medusa/server/src/subscribers/link-order-line-items-to-offers.js +94 -0
  152. package/.medusa/server/src/subscribers/order-edit-confirmed.d.ts +5 -0
  153. package/.medusa/server/src/subscribers/order-edit-confirmed.js +22 -0
  154. package/.medusa/server/src/workflows/cart/utils/fields.js +29 -1
  155. package/.medusa/server/src/workflows/cart/workflows/complete-cart-with-split-orders.js +29 -3
  156. package/.medusa/server/src/workflows/order/workflows/confirm-claim-request.d.ts +7 -0
  157. package/.medusa/server/src/workflows/order/workflows/confirm-claim-request.js +151 -0
  158. package/.medusa/server/src/workflows/order/workflows/confirm-exchange-request.d.ts +7 -0
  159. package/.medusa/server/src/workflows/order/workflows/confirm-exchange-request.js +159 -0
  160. package/.medusa/server/src/workflows/order/workflows/index.d.ts +2 -0
  161. package/.medusa/server/src/workflows/order/workflows/index.js +3 -1
  162. package/.medusa/server/src/workflows/product-attribute/workflows/index.d.ts +1 -0
  163. package/.medusa/server/src/workflows/product-attribute/workflows/index.js +2 -1
  164. package/.medusa/server/src/workflows/product-attribute/workflows/update-product-attribute.d.ts +23 -0
  165. package/.medusa/server/src/workflows/product-attribute/workflows/update-product-attribute.js +67 -0
  166. package/package.json +1 -1
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.updateProductAttributeWorkflow = exports.updateProductAttributeWorkflowId = void 0;
4
+ const workflows_sdk_1 = require("@medusajs/framework/workflows-sdk");
5
+ const core_flows_1 = require("@medusajs/medusa/core-flows");
6
+ const add_product_attribute_1 = require("./add-product-attribute");
7
+ const detach_product_attribute_1 = require("./detach-product-attribute");
8
+ exports.updateProductAttributeWorkflowId = "update-product-attribute";
9
+ /**
10
+ * Replaces the value set of a single attribute on a product. Composes
11
+ * `detachProductAttributeWorkflow` (drops the existing value links) +
12
+ * `addProductAttributeWorkflow` (links the new value set) in one
13
+ * workflow run so a failure in the add path rolls back the detach.
14
+ * Re-reads the product's attribute values at the end and returns the
15
+ * refreshed `product_attribute` shape, so route handlers can ship the
16
+ * response directly without a second query + ad-hoc filtering.
17
+ */
18
+ exports.updateProductAttributeWorkflow = (0, workflows_sdk_1.createWorkflow)(exports.updateProductAttributeWorkflowId, function (input) {
19
+ detach_product_attribute_1.detachProductAttributeWorkflow.runAsStep({
20
+ input: (0, workflows_sdk_1.transform)({ input }, ({ input }) => ({
21
+ product_id: input.product_id,
22
+ attribute_id: input.attribute_id,
23
+ })),
24
+ });
25
+ add_product_attribute_1.addProductAttributeWorkflow.runAsStep({
26
+ input: (0, workflows_sdk_1.transform)({ input }, ({ input }) => ({
27
+ product_id: input.product_id,
28
+ attribute_id: input.attribute_id,
29
+ value_ids: input.value_ids,
30
+ values: input.values,
31
+ })),
32
+ });
33
+ const { data: products } = (0, core_flows_1.useQueryGraphStep)({
34
+ entity: "product",
35
+ fields: [
36
+ "attribute_values.id",
37
+ "attribute_values.name",
38
+ "attribute_values.attribute.id",
39
+ "attribute_values.attribute.name",
40
+ "attribute_values.attribute.type",
41
+ "attribute_values.attribute.handle",
42
+ "attribute_values.attribute.description",
43
+ "attribute_values.attribute.is_required",
44
+ "attribute_values.attribute.is_filterable",
45
+ "attribute_values.attribute.is_variant_axis",
46
+ "attribute_values.attribute.rank",
47
+ "attribute_values.attribute.is_active",
48
+ ],
49
+ filters: { id: input.product_id },
50
+ }).config({ name: "update-pa-load-product" });
51
+ const product_attribute = (0, workflows_sdk_1.transform)({ products, input }, ({ products, input }) => {
52
+ const product = products[0];
53
+ const matched = (product?.attribute_values ?? []).filter((v) => v.attribute?.id === input.attribute_id);
54
+ if (matched.length === 0) {
55
+ return null;
56
+ }
57
+ const attr = matched[0].attribute ?? {};
58
+ return {
59
+ ...attr,
60
+ values: matched.map((v) => ({ id: v.id, name: v.name })),
61
+ };
62
+ });
63
+ return new workflows_sdk_1.WorkflowResponse((0, workflows_sdk_1.transform)({ product_attribute }, ({ product_attribute }) => ({
64
+ product_attribute,
65
+ })));
66
+ });
67
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXBkYXRlLXByb2R1Y3QtYXR0cmlidXRlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL3dvcmtmbG93cy9wcm9kdWN0LWF0dHJpYnV0ZS93b3JrZmxvd3MvdXBkYXRlLXByb2R1Y3QtYXR0cmlidXRlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLHFFQUkwQztBQUMxQyw0REFBK0Q7QUFHL0QsbUVBQXFFO0FBQ3JFLHlFQUEyRTtBQTJCOUQsUUFBQSxnQ0FBZ0MsR0FBRywwQkFBMEIsQ0FBQTtBQUUxRTs7Ozs7Ozs7R0FRRztBQUNVLFFBQUEsOEJBQThCLEdBQUcsSUFBQSw4QkFBYyxFQUMxRCx3Q0FBZ0MsRUFDaEMsVUFBVSxLQUEwQztJQUNsRCx5REFBOEIsQ0FBQyxTQUFTLENBQUM7UUFDdkMsS0FBSyxFQUFFLElBQUEseUJBQVMsRUFBQyxFQUFFLEtBQUssRUFBRSxFQUFFLENBQUMsRUFBRSxLQUFLLEVBQUUsRUFBRSxFQUFFLENBQUMsQ0FBQztZQUMxQyxVQUFVLEVBQUUsS0FBSyxDQUFDLFVBQVU7WUFDNUIsWUFBWSxFQUFFLEtBQUssQ0FBQyxZQUFZO1NBQ2pDLENBQUMsQ0FBQztLQUNKLENBQUMsQ0FBQTtJQUVGLG1EQUEyQixDQUFDLFNBQVMsQ0FBQztRQUNwQyxLQUFLLEVBQUUsSUFBQSx5QkFBUyxFQUFDLEVBQUUsS0FBSyxFQUFFLEVBQUUsQ0FBQyxFQUFFLEtBQUssRUFBRSxFQUFFLEVBQUUsQ0FBQyxDQUFDO1lBQzFDLFVBQVUsRUFBRSxLQUFLLENBQUMsVUFBVTtZQUM1QixZQUFZLEVBQUUsS0FBSyxDQUFDLFlBQVk7WUFDaEMsU0FBUyxFQUFFLEtBQUssQ0FBQyxTQUFTO1lBQzFCLE1BQU0sRUFBRSxLQUFLLENBQUMsTUFBTTtTQUNyQixDQUFDLENBQUM7S0FDSixDQUFDLENBQUE7SUFFRixNQUFNLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxHQUFHLElBQUEsOEJBQWlCLEVBQUM7UUFDM0MsTUFBTSxFQUFFLFNBQVM7UUFDakIsTUFBTSxFQUFFO1lBQ04scUJBQXFCO1lBQ3JCLHVCQUF1QjtZQUN2QiwrQkFBK0I7WUFDL0IsaUNBQWlDO1lBQ2pDLGlDQUFpQztZQUNqQyxtQ0FBbUM7WUFDbkMsd0NBQXdDO1lBQ3hDLHdDQUF3QztZQUN4QywwQ0FBMEM7WUFDMUMsNENBQTRDO1lBQzVDLGlDQUFpQztZQUNqQyxzQ0FBc0M7U0FDdkM7UUFDRCxPQUFPLEVBQUUsRUFBRSxFQUFFLEVBQUUsS0FBSyxDQUFDLFVBQVUsRUFBRTtLQUNsQyxDQUFDLENBQUMsTUFBTSxDQUFDLEVBQUUsSUFBSSxFQUFFLHdCQUF3QixFQUFFLENBQUMsQ0FBQTtJQUU3QyxNQUFNLGlCQUFpQixHQUFHLElBQUEseUJBQVMsRUFDakMsRUFBRSxRQUFRLEVBQUUsS0FBSyxFQUFFLEVBQ25CLENBQUMsRUFBRSxRQUFRLEVBQUUsS0FBSyxFQUFFLEVBQUUsRUFBRTtRQUN0QixNQUFNLE9BQU8sR0FBSSxRQUE0QixDQUFDLENBQUMsQ0FBQyxDQUFBO1FBQ2hELE1BQU0sT0FBTyxHQUFHLENBQUMsT0FBTyxFQUFFLGdCQUFnQixJQUFJLEVBQUUsQ0FBQyxDQUFDLE1BQU0sQ0FDdEQsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxTQUFTLEVBQUUsRUFBRSxLQUFLLEtBQUssQ0FBQyxZQUFZLENBQzlDLENBQUE7UUFFRCxJQUFJLE9BQU8sQ0FBQyxNQUFNLEtBQUssQ0FBQyxFQUFFLENBQUM7WUFDekIsT0FBTyxJQUFJLENBQUE7UUFDYixDQUFDO1FBRUQsTUFBTSxJQUFJLEdBQUcsT0FBTyxDQUFDLENBQUMsQ0FBQyxDQUFDLFNBQVMsSUFBSSxFQUFFLENBQUE7UUFFdkMsT0FBTztZQUNMLEdBQUcsSUFBSTtZQUNQLE1BQU0sRUFBRSxPQUFPLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDO1NBQ2xDLENBQUE7SUFDMUIsQ0FBQyxDQUNGLENBQUE7SUFFRCxPQUFPLElBQUksZ0NBQWdCLENBQ3pCLElBQUEseUJBQVMsRUFBQyxFQUFFLGlCQUFpQixFQUFFLEVBQUUsQ0FBQyxFQUFFLGlCQUFpQixFQUFFLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFDM0QsaUJBQWlCO0tBQ2xCLENBQUMsQ0FBQyxDQUNKLENBQUE7QUFDSCxDQUFDLENBQ0YsQ0FBQSJ9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mercurjs/core",
3
- "version": "2.2.0-canary.7",
3
+ "version": "2.2.0-canary.9",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/mercurjs/mercur",