@flowio/api-constants 2.13.80 → 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 +9 -1
- package/dist/api.js +8 -0
- package/package.json +2 -2
- package/src/api.ts +8 -0
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",
|
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) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-constants",
|
|
3
|
-
"version": "2.13.
|
|
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": "
|
|
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 {
|