@flowio/api-constants 2.13.79 → 2.13.81

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
@@ -562,6 +562,11 @@ export declare enum FeeDeductionType {
562
562
  DUTY_GUARANTEE = "duty_guarantee",
563
563
  MOR = "mor",
564
564
  FRAUD = "fraud",
565
+ TAX = "tax",
566
+ DUTY = "duty",
567
+ TAX_AND_DUTY = "tax_and_duty",
568
+ PRODUCT = "product",
569
+ TAX_AND_DUTY_FX_DIFF = "tax_and_duty_fx_diff",
565
570
  FX = "fx",
566
571
  PROCESSING = "processing",
567
572
  RATE_LOCK = "rate_lock",
@@ -576,7 +581,10 @@ export declare enum FlowEntity {
576
581
  FLOW_USA = "flow-usa",
577
582
  FLOW_IRL = "flow-irl",
578
583
  FLOW_CAN = "flow-can",
579
- GE_USA = "ge-usa"
584
+ GE_USA = "ge-usa",
585
+ GE_CAN = "ge-can",
586
+ GE_GBR = "ge-gbr",
587
+ GE_IRL = "ge-irl"
580
588
  }
581
589
  export declare enum FlowRole {
582
590
  ORGANIZATION_ADMIN = "organization_admin",
@@ -1608,7 +1616,8 @@ export declare enum TransactionSource {
1608
1616
  NON_L_4_L_TAX_DUTY_FX = "non_l4l_tax_duty_fx",
1609
1617
  MERCHANT_PAYOUT = "merchant_payout",
1610
1618
  MERCHANT_REFUND = "merchant_refund",
1611
- GE_REVENUE_SHARE = "ge_revenue_share"
1619
+ GE_REVENUE_SHARE = "ge_revenue_share",
1620
+ MERCHANT_FEE = "merchant_fee"
1612
1621
  }
1613
1622
  export declare enum TransferStatus {
1614
1623
  SUCCEEDED = "succeeded",
package/dist/api.js CHANGED
@@ -634,6 +634,11 @@ var FeeDeductionType;
634
634
  FeeDeductionType["DUTY_GUARANTEE"] = "duty_guarantee";
635
635
  FeeDeductionType["MOR"] = "mor";
636
636
  FeeDeductionType["FRAUD"] = "fraud";
637
+ FeeDeductionType["TAX"] = "tax";
638
+ FeeDeductionType["DUTY"] = "duty";
639
+ FeeDeductionType["TAX_AND_DUTY"] = "tax_and_duty";
640
+ FeeDeductionType["PRODUCT"] = "product";
641
+ FeeDeductionType["TAX_AND_DUTY_FX_DIFF"] = "tax_and_duty_fx_diff";
637
642
  FeeDeductionType["FX"] = "fx";
638
643
  FeeDeductionType["PROCESSING"] = "processing";
639
644
  FeeDeductionType["RATE_LOCK"] = "rate_lock";
@@ -651,6 +656,9 @@ var FlowEntity;
651
656
  FlowEntity["FLOW_IRL"] = "flow-irl";
652
657
  FlowEntity["FLOW_CAN"] = "flow-can";
653
658
  FlowEntity["GE_USA"] = "ge-usa";
659
+ FlowEntity["GE_CAN"] = "ge-can";
660
+ FlowEntity["GE_GBR"] = "ge-gbr";
661
+ FlowEntity["GE_IRL"] = "ge-irl";
654
662
  })(FlowEntity = exports.FlowEntity || (exports.FlowEntity = {}));
655
663
  var FlowRole;
656
664
  (function (FlowRole) {
@@ -1828,6 +1836,7 @@ var TransactionSource;
1828
1836
  TransactionSource["MERCHANT_PAYOUT"] = "merchant_payout";
1829
1837
  TransactionSource["MERCHANT_REFUND"] = "merchant_refund";
1830
1838
  TransactionSource["GE_REVENUE_SHARE"] = "ge_revenue_share";
1839
+ TransactionSource["MERCHANT_FEE"] = "merchant_fee";
1831
1840
  })(TransactionSource = exports.TransactionSource || (exports.TransactionSource = {}));
1832
1841
  var TransferStatus;
1833
1842
  (function (TransferStatus) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-constants",
3
- "version": "2.13.79",
3
+ "version": "2.13.81",
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": "2632f6e2c71eb30e4e61bee087ba63be6ae0f4bc"
29
+ "gitHead": "e6ab4a371f4a5b27785d522dc32505277757198d"
30
30
  }
package/src/api.ts CHANGED
@@ -626,6 +626,11 @@ export enum FeeDeductionType {
626
626
  DUTY_GUARANTEE = 'duty_guarantee',
627
627
  MOR = 'mor',
628
628
  FRAUD = 'fraud',
629
+ TAX = 'tax',
630
+ DUTY = 'duty',
631
+ TAX_AND_DUTY = 'tax_and_duty',
632
+ PRODUCT = 'product',
633
+ TAX_AND_DUTY_FX_DIFF = 'tax_and_duty_fx_diff',
629
634
  FX = 'fx',
630
635
  PROCESSING = 'processing',
631
636
  RATE_LOCK = 'rate_lock',
@@ -643,6 +648,9 @@ export enum FlowEntity {
643
648
  FLOW_IRL = 'flow-irl',
644
649
  FLOW_CAN = 'flow-can',
645
650
  GE_USA = 'ge-usa',
651
+ GE_CAN = 'ge-can',
652
+ GE_GBR = 'ge-gbr',
653
+ GE_IRL = 'ge-irl',
646
654
  }
647
655
 
648
656
  export enum FlowRole {
@@ -1820,6 +1828,7 @@ export enum TransactionSource {
1820
1828
  MERCHANT_PAYOUT = 'merchant_payout',
1821
1829
  MERCHANT_REFUND = 'merchant_refund',
1822
1830
  GE_REVENUE_SHARE = 'ge_revenue_share',
1831
+ MERCHANT_FEE = 'merchant_fee',
1823
1832
  }
1824
1833
 
1825
1834
  export enum TransferStatus {