@flowio/api-constants 2.13.79 → 2.13.80
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 +1 -0
- package/package.json +2 -2
- package/src/api.ts +1 -0
package/dist/api.d.ts
CHANGED
|
@@ -1608,7 +1608,8 @@ export declare enum TransactionSource {
|
|
|
1608
1608
|
NON_L_4_L_TAX_DUTY_FX = "non_l4l_tax_duty_fx",
|
|
1609
1609
|
MERCHANT_PAYOUT = "merchant_payout",
|
|
1610
1610
|
MERCHANT_REFUND = "merchant_refund",
|
|
1611
|
-
GE_REVENUE_SHARE = "ge_revenue_share"
|
|
1611
|
+
GE_REVENUE_SHARE = "ge_revenue_share",
|
|
1612
|
+
MERCHANT_FEE = "merchant_fee"
|
|
1612
1613
|
}
|
|
1613
1614
|
export declare enum TransferStatus {
|
|
1614
1615
|
SUCCEEDED = "succeeded",
|
package/dist/api.js
CHANGED
|
@@ -1828,6 +1828,7 @@ var TransactionSource;
|
|
|
1828
1828
|
TransactionSource["MERCHANT_PAYOUT"] = "merchant_payout";
|
|
1829
1829
|
TransactionSource["MERCHANT_REFUND"] = "merchant_refund";
|
|
1830
1830
|
TransactionSource["GE_REVENUE_SHARE"] = "ge_revenue_share";
|
|
1831
|
+
TransactionSource["MERCHANT_FEE"] = "merchant_fee";
|
|
1831
1832
|
})(TransactionSource = exports.TransactionSource || (exports.TransactionSource = {}));
|
|
1832
1833
|
var TransferStatus;
|
|
1833
1834
|
(function (TransferStatus) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-constants",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.80",
|
|
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": "3006280bce074215dc46ad9c937db245d67d2783"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED