@flowio/api-constants 2.13.45 → 2.13.47

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
@@ -826,7 +826,8 @@ export declare enum OnboardingBlockedReason {
826
826
  STREET_ADDRESS_IS_BLANK_3_PL = "street_address_is_blank_3pl",
827
827
  STREET_ADDRESS_IS_PO_BOX_3_PL = "street_address_is_po_box_3pl",
828
828
  BUSINESS_STREET_ADDRESS_IS_BLANK = "business_street_address_is_blank",
829
- BUSINESS_STREET_ADDRESS_IS_PO_BOX = "business_street_address_is_po_box"
829
+ BUSINESS_STREET_ADDRESS_IS_PO_BOX = "business_street_address_is_po_box",
830
+ EXCEPTION_MERCHANT = "exception_merchant"
830
831
  }
831
832
  export declare enum OnboardingTradeSector {
832
833
  ACCESSORIES = "accessories",
@@ -1230,6 +1231,7 @@ export declare enum ProductRestrictionRule {
1230
1231
  KNIVES = "Knives",
1231
1232
  LIQUIDS = "Liquids",
1232
1233
  OVERSIZED = "Oversized",
1234
+ RESTRICT_BY_DEFAULT = "Restrict by Default",
1233
1235
  SUPPLEMENTS = "Supplements",
1234
1236
  WEAPON = "Weapon",
1235
1237
  WOOD = "Wood"
package/dist/api.js CHANGED
@@ -941,6 +941,7 @@ var OnboardingBlockedReason;
941
941
  OnboardingBlockedReason["STREET_ADDRESS_IS_PO_BOX_3_PL"] = "street_address_is_po_box_3pl";
942
942
  OnboardingBlockedReason["BUSINESS_STREET_ADDRESS_IS_BLANK"] = "business_street_address_is_blank";
943
943
  OnboardingBlockedReason["BUSINESS_STREET_ADDRESS_IS_PO_BOX"] = "business_street_address_is_po_box";
944
+ OnboardingBlockedReason["EXCEPTION_MERCHANT"] = "exception_merchant";
944
945
  })(OnboardingBlockedReason = exports.OnboardingBlockedReason || (exports.OnboardingBlockedReason = {}));
945
946
  var OnboardingTradeSector;
946
947
  (function (OnboardingTradeSector) {
@@ -1391,6 +1392,7 @@ var ProductRestrictionRule;
1391
1392
  ProductRestrictionRule["KNIVES"] = "Knives";
1392
1393
  ProductRestrictionRule["LIQUIDS"] = "Liquids";
1393
1394
  ProductRestrictionRule["OVERSIZED"] = "Oversized";
1395
+ ProductRestrictionRule["RESTRICT_BY_DEFAULT"] = "Restrict by Default";
1394
1396
  ProductRestrictionRule["SUPPLEMENTS"] = "Supplements";
1395
1397
  ProductRestrictionRule["WEAPON"] = "Weapon";
1396
1398
  ProductRestrictionRule["WOOD"] = "Wood";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-constants",
3
- "version": "2.13.45",
3
+ "version": "2.13.47",
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": "69a80797baeb34690859818e5db7ef87aa6082a5"
29
+ "gitHead": "7fddfd86678e7921d92493bec5b3bec759769d5f"
30
30
  }
package/src/api.ts CHANGED
@@ -933,6 +933,7 @@ export enum OnboardingBlockedReason {
933
933
  STREET_ADDRESS_IS_PO_BOX_3_PL = 'street_address_is_po_box_3pl',
934
934
  BUSINESS_STREET_ADDRESS_IS_BLANK = 'business_street_address_is_blank',
935
935
  BUSINESS_STREET_ADDRESS_IS_PO_BOX = 'business_street_address_is_po_box',
936
+ EXCEPTION_MERCHANT = 'exception_merchant',
936
937
  }
937
938
 
938
939
  export enum OnboardingTradeSector {
@@ -1383,6 +1384,7 @@ export enum ProductRestrictionRule {
1383
1384
  KNIVES = 'Knives',
1384
1385
  LIQUIDS = 'Liquids',
1385
1386
  OVERSIZED = 'Oversized',
1387
+ RESTRICT_BY_DEFAULT = 'Restrict by Default',
1386
1388
  SUPPLEMENTS = 'Supplements',
1387
1389
  WEAPON = 'Weapon',
1388
1390
  WOOD = 'Wood',