@flowio/api-constants 2.13.26 → 2.13.27

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 CHANGED
@@ -1403,6 +1403,8 @@ export declare enum TransactionSource {
1403
1403
  SHIPPING_LABEL_SERVICE = "shipping_label_service",
1404
1404
  SHIPPING_LABEL_REVENUE_SHARE = "shipping_label_revenue_share",
1405
1405
  PLATFORM_FEE = "platform_fee",
1406
+ TAX = "tax",
1407
+ DUTIES = "duties",
1406
1408
  OTHER_ADJUSTMENT = "other_adjustment",
1407
1409
  TAX_ADJUSTMENT = "tax_adjustment",
1408
1410
  CHANNEL = "channel",
package/dist/api.js CHANGED
@@ -1597,6 +1597,8 @@ var TransactionSource;
1597
1597
  TransactionSource["SHIPPING_LABEL_SERVICE"] = "shipping_label_service";
1598
1598
  TransactionSource["SHIPPING_LABEL_REVENUE_SHARE"] = "shipping_label_revenue_share";
1599
1599
  TransactionSource["PLATFORM_FEE"] = "platform_fee";
1600
+ TransactionSource["TAX"] = "tax";
1601
+ TransactionSource["DUTIES"] = "duties";
1600
1602
  TransactionSource["OTHER_ADJUSTMENT"] = "other_adjustment";
1601
1603
  TransactionSource["TAX_ADJUSTMENT"] = "tax_adjustment";
1602
1604
  TransactionSource["CHANNEL"] = "channel";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-constants",
3
- "version": "2.13.26",
3
+ "version": "2.13.27",
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": "475458c8e90ba7ef707144894938180f4237ff3f"
29
+ "gitHead": "8ef6920818b0be7ae2d7a09650625e64315b173b"
30
30
  }
package/src/api.ts CHANGED
@@ -1590,6 +1590,8 @@ export enum TransactionSource {
1590
1590
  SHIPPING_LABEL_SERVICE = 'shipping_label_service',
1591
1591
  SHIPPING_LABEL_REVENUE_SHARE = 'shipping_label_revenue_share',
1592
1592
  PLATFORM_FEE = 'platform_fee',
1593
+ TAX = 'tax',
1594
+ DUTIES = 'duties',
1593
1595
  OTHER_ADJUSTMENT = 'other_adjustment',
1594
1596
  TAX_ADJUSTMENT = 'tax_adjustment',
1595
1597
  CHANNEL = 'channel',