@flowio/api-constants 2.13.48 → 2.13.49

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
@@ -594,7 +594,8 @@ export declare enum FeeDeductionType {
594
594
  FX = "fx",
595
595
  PROCESSING = "processing",
596
596
  RATE_LOCK = "rate_lock",
597
- TRANSFER = "transfer"
597
+ TRANSFER = "transfer",
598
+ NEGATIVE_BALANCE_GUARANTEE = "negative_balance_guarantee"
598
599
  }
599
600
  export declare enum FlowBehavior {
600
601
  VIEW_CONSUMER_DATA = "view_consumer_data"
@@ -932,7 +933,8 @@ export declare enum OrderPriceDetailComponentKey {
932
933
  FUEL_SURCHARGE = "fuel_surcharge",
933
934
  EMERGENCY_SITUATION_SURCHARGE = "emergency_situation_surcharge",
934
935
  PEAK_SURCHARGE = "peak_surcharge",
935
- DUTIES_TAXES_PAID_SURCHARGE = "duties_taxes_paid_surcharge"
936
+ DUTIES_TAXES_PAID_SURCHARGE = "duties_taxes_paid_surcharge",
937
+ TIP = "tip"
936
938
  }
937
939
  export declare enum OrderPriceDetailKey {
938
940
  ADJUSTMENT = "adjustment",
@@ -942,7 +944,8 @@ export declare enum OrderPriceDetailKey {
942
944
  SHIPPING = "shipping",
943
945
  INSURANCE = "insurance",
944
946
  DISCOUNT = "discount",
945
- SURCHARGES = "surcharges"
947
+ SURCHARGES = "surcharges",
948
+ TIP = "tip"
946
949
  }
947
950
  export declare enum OrderQuoteAddressType {
948
951
  SHIPPING = "shipping"
package/dist/api.js CHANGED
@@ -667,6 +667,7 @@ var FeeDeductionType;
667
667
  FeeDeductionType["PROCESSING"] = "processing";
668
668
  FeeDeductionType["RATE_LOCK"] = "rate_lock";
669
669
  FeeDeductionType["TRANSFER"] = "transfer";
670
+ FeeDeductionType["NEGATIVE_BALANCE_GUARANTEE"] = "negative_balance_guarantee";
670
671
  })(FeeDeductionType = exports.FeeDeductionType || (exports.FeeDeductionType = {}));
671
672
  var FlowBehavior;
672
673
  (function (FlowBehavior) {
@@ -1054,6 +1055,7 @@ var OrderPriceDetailComponentKey;
1054
1055
  OrderPriceDetailComponentKey["EMERGENCY_SITUATION_SURCHARGE"] = "emergency_situation_surcharge";
1055
1056
  OrderPriceDetailComponentKey["PEAK_SURCHARGE"] = "peak_surcharge";
1056
1057
  OrderPriceDetailComponentKey["DUTIES_TAXES_PAID_SURCHARGE"] = "duties_taxes_paid_surcharge";
1058
+ OrderPriceDetailComponentKey["TIP"] = "tip";
1057
1059
  })(OrderPriceDetailComponentKey = exports.OrderPriceDetailComponentKey || (exports.OrderPriceDetailComponentKey = {}));
1058
1060
  var OrderPriceDetailKey;
1059
1061
  (function (OrderPriceDetailKey) {
@@ -1065,6 +1067,7 @@ var OrderPriceDetailKey;
1065
1067
  OrderPriceDetailKey["INSURANCE"] = "insurance";
1066
1068
  OrderPriceDetailKey["DISCOUNT"] = "discount";
1067
1069
  OrderPriceDetailKey["SURCHARGES"] = "surcharges";
1070
+ OrderPriceDetailKey["TIP"] = "tip";
1068
1071
  })(OrderPriceDetailKey = exports.OrderPriceDetailKey || (exports.OrderPriceDetailKey = {}));
1069
1072
  var OrderQuoteAddressType;
1070
1073
  (function (OrderQuoteAddressType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-constants",
3
- "version": "2.13.48",
3
+ "version": "2.13.49",
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": "71ee41ffd96a582387a4d438378c1ae949b08c92"
29
+ "gitHead": "4ae49474a1813e8aac634c65824b9b915a4b31d5"
30
30
  }
package/src/api.ts CHANGED
@@ -659,6 +659,7 @@ export enum FeeDeductionType {
659
659
  PROCESSING = 'processing',
660
660
  RATE_LOCK = 'rate_lock',
661
661
  TRANSFER = 'transfer',
662
+ NEGATIVE_BALANCE_GUARANTEE = 'negative_balance_guarantee',
662
663
  }
663
664
 
664
665
  export enum FlowBehavior {
@@ -1046,6 +1047,7 @@ export enum OrderPriceDetailComponentKey {
1046
1047
  EMERGENCY_SITUATION_SURCHARGE = 'emergency_situation_surcharge',
1047
1048
  PEAK_SURCHARGE = 'peak_surcharge',
1048
1049
  DUTIES_TAXES_PAID_SURCHARGE = 'duties_taxes_paid_surcharge',
1050
+ TIP = 'tip',
1049
1051
  }
1050
1052
 
1051
1053
  export enum OrderPriceDetailKey {
@@ -1057,6 +1059,7 @@ export enum OrderPriceDetailKey {
1057
1059
  INSURANCE = 'insurance',
1058
1060
  DISCOUNT = 'discount',
1059
1061
  SURCHARGES = 'surcharges',
1062
+ TIP = 'tip',
1060
1063
  }
1061
1064
 
1062
1065
  export enum OrderQuoteAddressType {