@flowio/api-constants 2.13.31 → 2.13.32
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/api.d.ts +2 -1
- package/dist/api.js +2 -1
- package/package.json +2 -2
- package/src/api.ts +2 -1
package/dist/api.d.ts
CHANGED
|
@@ -1427,12 +1427,13 @@ export declare enum TransactionSource {
|
|
|
1427
1427
|
REFUND = "refund",
|
|
1428
1428
|
DISPUTE = "dispute",
|
|
1429
1429
|
ADJUSTMENT = "adjustment",
|
|
1430
|
+
REVERSAL = "reversal",
|
|
1430
1431
|
SHIPPING_LABEL = "shipping_label",
|
|
1431
1432
|
SHIPPING_LABEL_SERVICE = "shipping_label_service",
|
|
1432
1433
|
SHIPPING_LABEL_REVENUE_SHARE = "shipping_label_revenue_share",
|
|
1433
1434
|
PLATFORM_FEE = "platform_fee",
|
|
1434
1435
|
TAX = "tax",
|
|
1435
|
-
|
|
1436
|
+
DUTY = "duty",
|
|
1436
1437
|
OTHER_ADJUSTMENT = "other_adjustment",
|
|
1437
1438
|
TAX_ADJUSTMENT = "tax_adjustment",
|
|
1438
1439
|
CHANNEL = "channel",
|
package/dist/api.js
CHANGED
|
@@ -1626,12 +1626,13 @@ var TransactionSource;
|
|
|
1626
1626
|
TransactionSource["REFUND"] = "refund";
|
|
1627
1627
|
TransactionSource["DISPUTE"] = "dispute";
|
|
1628
1628
|
TransactionSource["ADJUSTMENT"] = "adjustment";
|
|
1629
|
+
TransactionSource["REVERSAL"] = "reversal";
|
|
1629
1630
|
TransactionSource["SHIPPING_LABEL"] = "shipping_label";
|
|
1630
1631
|
TransactionSource["SHIPPING_LABEL_SERVICE"] = "shipping_label_service";
|
|
1631
1632
|
TransactionSource["SHIPPING_LABEL_REVENUE_SHARE"] = "shipping_label_revenue_share";
|
|
1632
1633
|
TransactionSource["PLATFORM_FEE"] = "platform_fee";
|
|
1633
1634
|
TransactionSource["TAX"] = "tax";
|
|
1634
|
-
TransactionSource["
|
|
1635
|
+
TransactionSource["DUTY"] = "duty";
|
|
1635
1636
|
TransactionSource["OTHER_ADJUSTMENT"] = "other_adjustment";
|
|
1636
1637
|
TransactionSource["TAX_ADJUSTMENT"] = "tax_adjustment";
|
|
1637
1638
|
TransactionSource["CHANNEL"] = "channel";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-constants",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.32",
|
|
4
4
|
"description": "Definitions for enumerations found in the Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"postgenerate": "npm run format",
|
|
27
27
|
"prepublish": "npm run clean && npm run build"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "b751c3c9b00a0488e9efcb77d8677c9711711a87"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED
|
@@ -1618,12 +1618,13 @@ export enum TransactionSource {
|
|
|
1618
1618
|
REFUND = 'refund',
|
|
1619
1619
|
DISPUTE = 'dispute',
|
|
1620
1620
|
ADJUSTMENT = 'adjustment',
|
|
1621
|
+
REVERSAL = 'reversal',
|
|
1621
1622
|
SHIPPING_LABEL = 'shipping_label',
|
|
1622
1623
|
SHIPPING_LABEL_SERVICE = 'shipping_label_service',
|
|
1623
1624
|
SHIPPING_LABEL_REVENUE_SHARE = 'shipping_label_revenue_share',
|
|
1624
1625
|
PLATFORM_FEE = 'platform_fee',
|
|
1625
1626
|
TAX = 'tax',
|
|
1626
|
-
|
|
1627
|
+
DUTY = 'duty',
|
|
1627
1628
|
OTHER_ADJUSTMENT = 'other_adjustment',
|
|
1628
1629
|
TAX_ADJUSTMENT = 'tax_adjustment',
|
|
1629
1630
|
CHANNEL = 'channel',
|