@flowio/api-constants 2.13.46 → 2.13.48

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
@@ -741,6 +741,7 @@ export declare enum LabelRequestMethod {
741
741
  BRIDGE_API_SYNC = "bridge_api_sync",
742
742
  PARTNER_API_SYNC = "partner_api_sync",
743
743
  NOTIFICATION_REQUIRING_CROSSDOCK = "notification_requiring_crossdock",
744
+ FLOW_SIMULATION_SYNC = "flow_simulation_sync",
744
745
  AUTOGENERATED = "autogenerated"
745
746
  }
746
747
  export declare enum LabelTriggerMethod {
@@ -826,7 +827,8 @@ export declare enum OnboardingBlockedReason {
826
827
  STREET_ADDRESS_IS_BLANK_3_PL = "street_address_is_blank_3pl",
827
828
  STREET_ADDRESS_IS_PO_BOX_3_PL = "street_address_is_po_box_3pl",
828
829
  BUSINESS_STREET_ADDRESS_IS_BLANK = "business_street_address_is_blank",
829
- BUSINESS_STREET_ADDRESS_IS_PO_BOX = "business_street_address_is_po_box"
830
+ BUSINESS_STREET_ADDRESS_IS_PO_BOX = "business_street_address_is_po_box",
831
+ EXCEPTION_MERCHANT = "exception_merchant"
830
832
  }
831
833
  export declare enum OnboardingTradeSector {
832
834
  ACCESSORIES = "accessories",
package/dist/api.js CHANGED
@@ -838,6 +838,7 @@ var LabelRequestMethod;
838
838
  LabelRequestMethod["BRIDGE_API_SYNC"] = "bridge_api_sync";
839
839
  LabelRequestMethod["PARTNER_API_SYNC"] = "partner_api_sync";
840
840
  LabelRequestMethod["NOTIFICATION_REQUIRING_CROSSDOCK"] = "notification_requiring_crossdock";
841
+ LabelRequestMethod["FLOW_SIMULATION_SYNC"] = "flow_simulation_sync";
841
842
  LabelRequestMethod["AUTOGENERATED"] = "autogenerated";
842
843
  })(LabelRequestMethod = exports.LabelRequestMethod || (exports.LabelRequestMethod = {}));
843
844
  var LabelTriggerMethod;
@@ -941,6 +942,7 @@ var OnboardingBlockedReason;
941
942
  OnboardingBlockedReason["STREET_ADDRESS_IS_PO_BOX_3_PL"] = "street_address_is_po_box_3pl";
942
943
  OnboardingBlockedReason["BUSINESS_STREET_ADDRESS_IS_BLANK"] = "business_street_address_is_blank";
943
944
  OnboardingBlockedReason["BUSINESS_STREET_ADDRESS_IS_PO_BOX"] = "business_street_address_is_po_box";
945
+ OnboardingBlockedReason["EXCEPTION_MERCHANT"] = "exception_merchant";
944
946
  })(OnboardingBlockedReason = exports.OnboardingBlockedReason || (exports.OnboardingBlockedReason = {}));
945
947
  var OnboardingTradeSector;
946
948
  (function (OnboardingTradeSector) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-constants",
3
- "version": "2.13.46",
3
+ "version": "2.13.48",
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": "2430172d05199bd940ad6b8a39eaf47a9efcea8c"
29
+ "gitHead": "71ee41ffd96a582387a4d438378c1ae949b08c92"
30
30
  }
package/src/api.ts CHANGED
@@ -830,6 +830,7 @@ export enum LabelRequestMethod {
830
830
  BRIDGE_API_SYNC = 'bridge_api_sync',
831
831
  PARTNER_API_SYNC = 'partner_api_sync',
832
832
  NOTIFICATION_REQUIRING_CROSSDOCK = 'notification_requiring_crossdock',
833
+ FLOW_SIMULATION_SYNC = 'flow_simulation_sync',
833
834
  AUTOGENERATED = 'autogenerated',
834
835
  }
835
836
 
@@ -933,6 +934,7 @@ export enum OnboardingBlockedReason {
933
934
  STREET_ADDRESS_IS_PO_BOX_3_PL = 'street_address_is_po_box_3pl',
934
935
  BUSINESS_STREET_ADDRESS_IS_BLANK = 'business_street_address_is_blank',
935
936
  BUSINESS_STREET_ADDRESS_IS_PO_BOX = 'business_street_address_is_po_box',
937
+ EXCEPTION_MERCHANT = 'exception_merchant',
936
938
  }
937
939
 
938
940
  export enum OnboardingTradeSector {