hookwright 2.3.1 → 2.3.2
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/dist/cli.js +6 -6
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -24,7 +24,7 @@ var init_package = __esm({
|
|
|
24
24
|
"package.json"() {
|
|
25
25
|
package_default = {
|
|
26
26
|
name: "hookwright",
|
|
27
|
-
version: "2.3.
|
|
27
|
+
version: "2.3.2",
|
|
28
28
|
description: "Build real, signed e-commerce webhooks from a live Shopify catalogue \u2014 interactive terminal UI, no backend",
|
|
29
29
|
keywords: [
|
|
30
30
|
"webhook",
|
|
@@ -1826,12 +1826,12 @@ var COMMON_FIELDS3 = [
|
|
|
1826
1826
|
{ source: "request.smart_exchange", target: "smartExchange" },
|
|
1827
1827
|
{ source: "request.order.name", target: "order.name" },
|
|
1828
1828
|
{ source: "request.order.id", target: "order.id" },
|
|
1829
|
-
{ source: "request.line_items[].original_product.title", target: "
|
|
1830
|
-
{ source: "request.line_items[].original_product.image.src", target: "
|
|
1831
|
-
{ source: "request.line_items[].original_product.price", target: "
|
|
1832
|
-
{ source: "request.line_items[].original_product.sku", target: "
|
|
1829
|
+
{ source: "request.line_items[].original_product.title", target: "returnProduct.details", required: true, note: "the first PAID line names the caption; freebies rank last" },
|
|
1830
|
+
{ source: "request.line_items[].original_product.image.src", target: "returnProduct.image" },
|
|
1831
|
+
{ source: "request.line_items[].original_product.price", target: "returnProduct.totalPrice", note: "summed across the lines, times quantity; a zero marks a freebie" },
|
|
1832
|
+
{ source: "request.line_items[].original_product.sku", target: "returnProduct.sku" },
|
|
1833
1833
|
{ source: "request.line_items[].reason", target: "reason" },
|
|
1834
|
-
{ source: "request.line_items[].quantity", target: "
|
|
1834
|
+
{ source: "request.line_items[].quantity", target: "returnProduct.quantity" },
|
|
1835
1835
|
{ source: "request.line_items[].presentment_price.actual_amount", target: "pricing.totalPrice" },
|
|
1836
1836
|
{ source: "request.line_items[].presentment_price.currency", target: "pricing.currency" },
|
|
1837
1837
|
{ source: "request.line_items[].return_fee.price_set.presentment_money.amount", target: "pricing.returnFee" },
|