@flowio/api-constants 2.13.47 → 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"
@@ -741,6 +742,7 @@ export declare enum LabelRequestMethod {
741
742
  BRIDGE_API_SYNC = "bridge_api_sync",
742
743
  PARTNER_API_SYNC = "partner_api_sync",
743
744
  NOTIFICATION_REQUIRING_CROSSDOCK = "notification_requiring_crossdock",
745
+ FLOW_SIMULATION_SYNC = "flow_simulation_sync",
744
746
  AUTOGENERATED = "autogenerated"
745
747
  }
746
748
  export declare enum LabelTriggerMethod {
@@ -931,7 +933,8 @@ export declare enum OrderPriceDetailComponentKey {
931
933
  FUEL_SURCHARGE = "fuel_surcharge",
932
934
  EMERGENCY_SITUATION_SURCHARGE = "emergency_situation_surcharge",
933
935
  PEAK_SURCHARGE = "peak_surcharge",
934
- DUTIES_TAXES_PAID_SURCHARGE = "duties_taxes_paid_surcharge"
936
+ DUTIES_TAXES_PAID_SURCHARGE = "duties_taxes_paid_surcharge",
937
+ TIP = "tip"
935
938
  }
936
939
  export declare enum OrderPriceDetailKey {
937
940
  ADJUSTMENT = "adjustment",
@@ -941,7 +944,8 @@ export declare enum OrderPriceDetailKey {
941
944
  SHIPPING = "shipping",
942
945
  INSURANCE = "insurance",
943
946
  DISCOUNT = "discount",
944
- SURCHARGES = "surcharges"
947
+ SURCHARGES = "surcharges",
948
+ TIP = "tip"
945
949
  }
946
950
  export declare enum OrderQuoteAddressType {
947
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) {
@@ -838,6 +839,7 @@ var LabelRequestMethod;
838
839
  LabelRequestMethod["BRIDGE_API_SYNC"] = "bridge_api_sync";
839
840
  LabelRequestMethod["PARTNER_API_SYNC"] = "partner_api_sync";
840
841
  LabelRequestMethod["NOTIFICATION_REQUIRING_CROSSDOCK"] = "notification_requiring_crossdock";
842
+ LabelRequestMethod["FLOW_SIMULATION_SYNC"] = "flow_simulation_sync";
841
843
  LabelRequestMethod["AUTOGENERATED"] = "autogenerated";
842
844
  })(LabelRequestMethod = exports.LabelRequestMethod || (exports.LabelRequestMethod = {}));
843
845
  var LabelTriggerMethod;
@@ -1053,6 +1055,7 @@ var OrderPriceDetailComponentKey;
1053
1055
  OrderPriceDetailComponentKey["EMERGENCY_SITUATION_SURCHARGE"] = "emergency_situation_surcharge";
1054
1056
  OrderPriceDetailComponentKey["PEAK_SURCHARGE"] = "peak_surcharge";
1055
1057
  OrderPriceDetailComponentKey["DUTIES_TAXES_PAID_SURCHARGE"] = "duties_taxes_paid_surcharge";
1058
+ OrderPriceDetailComponentKey["TIP"] = "tip";
1056
1059
  })(OrderPriceDetailComponentKey = exports.OrderPriceDetailComponentKey || (exports.OrderPriceDetailComponentKey = {}));
1057
1060
  var OrderPriceDetailKey;
1058
1061
  (function (OrderPriceDetailKey) {
@@ -1064,6 +1067,7 @@ var OrderPriceDetailKey;
1064
1067
  OrderPriceDetailKey["INSURANCE"] = "insurance";
1065
1068
  OrderPriceDetailKey["DISCOUNT"] = "discount";
1066
1069
  OrderPriceDetailKey["SURCHARGES"] = "surcharges";
1070
+ OrderPriceDetailKey["TIP"] = "tip";
1067
1071
  })(OrderPriceDetailKey = exports.OrderPriceDetailKey || (exports.OrderPriceDetailKey = {}));
1068
1072
  var OrderQuoteAddressType;
1069
1073
  (function (OrderQuoteAddressType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-constants",
3
- "version": "2.13.47",
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": "7fddfd86678e7921d92493bec5b3bec759769d5f"
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 {
@@ -830,6 +831,7 @@ export enum LabelRequestMethod {
830
831
  BRIDGE_API_SYNC = 'bridge_api_sync',
831
832
  PARTNER_API_SYNC = 'partner_api_sync',
832
833
  NOTIFICATION_REQUIRING_CROSSDOCK = 'notification_requiring_crossdock',
834
+ FLOW_SIMULATION_SYNC = 'flow_simulation_sync',
833
835
  AUTOGENERATED = 'autogenerated',
834
836
  }
835
837
 
@@ -1045,6 +1047,7 @@ export enum OrderPriceDetailComponentKey {
1045
1047
  EMERGENCY_SITUATION_SURCHARGE = 'emergency_situation_surcharge',
1046
1048
  PEAK_SURCHARGE = 'peak_surcharge',
1047
1049
  DUTIES_TAXES_PAID_SURCHARGE = 'duties_taxes_paid_surcharge',
1050
+ TIP = 'tip',
1048
1051
  }
1049
1052
 
1050
1053
  export enum OrderPriceDetailKey {
@@ -1056,6 +1059,7 @@ export enum OrderPriceDetailKey {
1056
1059
  INSURANCE = 'insurance',
1057
1060
  DISCOUNT = 'discount',
1058
1061
  SURCHARGES = 'surcharges',
1062
+ TIP = 'tip',
1059
1063
  }
1060
1064
 
1061
1065
  export enum OrderQuoteAddressType {