hookwright 2.3.3 → 2.3.6
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 +11 -5
- 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.6",
|
|
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",
|
|
@@ -1830,10 +1830,13 @@ var COMMON_FIELDS3 = [
|
|
|
1830
1830
|
{ source: "request.line_items[].original_product.image.src", target: "returnProduct.image" },
|
|
1831
1831
|
{ source: "request.line_items[].original_product.price", target: "returnProduct.totalPrice", note: "summed across the lines, times quantity; a zero marks a freebie" },
|
|
1832
1832
|
{ source: "request.line_items[].original_product.sku", target: "returnProduct.sku" },
|
|
1833
|
+
{ source: "request.line_items[].original_product.product_id", target: "returnProduct.productId" },
|
|
1834
|
+
{ source: "request.line_items[].original_product.variant_id", target: "returnProduct.variantId" },
|
|
1833
1835
|
{ source: "request.line_items[].reason", target: "reason" },
|
|
1834
1836
|
{ source: "request.line_items[].quantity", target: "returnProduct.quantity" },
|
|
1835
1837
|
{ source: "request.line_items[].presentment_price.actual_amount", target: "pricing.totalPrice" },
|
|
1836
1838
|
{ source: "request.line_items[].presentment_price.currency", target: "pricing.currency" },
|
|
1839
|
+
{ source: "request.line_items[].presentment_price.total_tax", target: "pricing.totalTax" },
|
|
1837
1840
|
{ source: "request.line_items[].return_fee.price_set.presentment_money.amount", target: "pricing.returnFee" },
|
|
1838
1841
|
{ source: "request.line_items[].refund.status", target: "refund.status" },
|
|
1839
1842
|
{ source: "request.line_items[].refund.requested_mode", target: "refund.requestedMode" },
|
|
@@ -1844,10 +1847,12 @@ var COMMON_FIELDS3 = [
|
|
|
1844
1847
|
{ source: "request.created_at", target: "createdAt" }
|
|
1845
1848
|
];
|
|
1846
1849
|
var EXCHANGE_FIELDS = [
|
|
1847
|
-
{ source: "request.line_items[].exchange_product.title", target: "exchangeProduct.
|
|
1850
|
+
{ source: "request.line_items[].exchange_product.title", target: "exchangeProduct.details", note: "exchanges only \u2014 returns never carry it" },
|
|
1848
1851
|
{ source: "request.line_items[].exchange_product.price", target: "exchangeProduct.totalPrice + pricing.priceDifference", note: "both summed across the lines, times quantity; the difference is signed, positive means the shopper owes more" },
|
|
1849
1852
|
{ source: "request.line_items[].exchange_product.image.src", target: "exchangeProduct.image" },
|
|
1850
|
-
{ source: "request.line_items[].exchange_product.sku", target: "exchangeProduct.sku" }
|
|
1853
|
+
{ source: "request.line_items[].exchange_product.sku", target: "exchangeProduct.sku" },
|
|
1854
|
+
{ source: "request.line_items[].exchange_product.product_id", target: "exchangeProduct.productId" },
|
|
1855
|
+
{ source: "request.line_items[].exchange_product.variant_id", target: "exchangeProduct.variantId" }
|
|
1851
1856
|
];
|
|
1852
1857
|
var fieldMap6 = COMMON_FIELDS3;
|
|
1853
1858
|
function fieldMapFor2(eventName) {
|
|
@@ -1895,6 +1900,7 @@ function buildPayload6(ctx) {
|
|
|
1895
1900
|
const qty = def.requestType === "exchange" ? repl?.quantity ?? sel?.quantity ?? 1 : sel?.quantity ?? 1;
|
|
1896
1901
|
const originalPrice = money2(sel?.variant?.price ?? 0);
|
|
1897
1902
|
const exchangePrice = money2(repl?.variant?.price ?? 0);
|
|
1903
|
+
const lineTotal = money2(originalPrice * qty);
|
|
1898
1904
|
const refundedAmount = def.requestType === "exchange" ? Math.max(money2((originalPrice - exchangePrice) * qty), 0) : money2(originalPrice * qty);
|
|
1899
1905
|
return {
|
|
1900
1906
|
id: Number(sel?.variant?.id ?? sel?.product?.id ?? 0),
|
|
@@ -1962,7 +1968,7 @@ function buildPayload6(ctx) {
|
|
|
1962
1968
|
quantity: qty,
|
|
1963
1969
|
reason: ctx.reason ?? "Size of Fit Issues",
|
|
1964
1970
|
shop_price: {
|
|
1965
|
-
actual_amount:
|
|
1971
|
+
actual_amount: lineTotal,
|
|
1966
1972
|
total_tax: 0,
|
|
1967
1973
|
return_quantity: qty,
|
|
1968
1974
|
total_discount: 0,
|
|
@@ -1972,7 +1978,7 @@ function buildPayload6(ctx) {
|
|
|
1972
1978
|
do_not_carry_forward_discount: true
|
|
1973
1979
|
},
|
|
1974
1980
|
presentment_price: {
|
|
1975
|
-
actual_amount:
|
|
1981
|
+
actual_amount: lineTotal,
|
|
1976
1982
|
total_tax: 0,
|
|
1977
1983
|
return_quantity: qty,
|
|
1978
1984
|
total_discount: 0,
|