@flowio/api-prop-types 10.16.64 → 10.16.66

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-prop-types",
3
- "version": "10.16.64",
3
+ "version": "10.16.66",
4
4
  "description": "PropType validators that work with Flow API",
5
5
  "keywords": [
6
6
  "flow",
@@ -29,5 +29,5 @@
29
29
  "peerDependencies": {
30
30
  "prop-types": "^15.7.0"
31
31
  },
32
- "gitHead": "69a80797baeb34690859818e5db7ef87aa6082a5"
32
+ "gitHead": "7fddfd86678e7921d92493bec5b3bec759769d5f"
33
33
  }
package/src/api.d.ts CHANGED
@@ -2181,7 +2181,7 @@ declare namespace io.flow.v0.enums {
2181
2181
  type MerchantRejectedReason = 'merchant_ubo_is_pep' | 'merchant_catalog_is_unsupportable' | 'merchant_failed_kyb_review';
2182
2182
  type Method = 'post';
2183
2183
  type OnboardingApplicationStatus = 'to_do' | 'in_progress' | 'on_hold' | 'rejected' | 'accepted';
2184
- type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box';
2184
+ type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant';
2185
2185
  type OnboardingTradeSector = 'accessories' | 'animals_and_pet_supplies' | 'apparel' | 'apparel_and_accessories' | 'arts_and_entertainment' | 'baby_and_toddler' | 'business_and_industrial' | 'cameras_and_optics' | 'electronics' | 'food_beverages_and_tobacco' | 'furniture' | 'gift_cards' | 'hardware' | 'health_and_beauty' | 'home_and_garden' | 'jewelry' | 'luggage_and_bags' | 'mature' | 'media' | 'office_supplies' | 'paper_and_art' | 'religious_and_ceremonial' | 'software' | 'sporting_goods' | 'sports_and_fitness' | 'toys_and_games' | 'toys_hobbies_gifts' | 'vehicles_and_parts' | 'other';
2186
2186
  type OptinResponseType = 'not_shown' | 'opted_in' | 'opted_out';
2187
2187
  type OrderChangeSource = 'consumer' | 'retailer' | 'fulfillment' | 'flow' | 'carrier';
@@ -2228,7 +2228,7 @@ declare namespace io.flow.v0.enums {
2228
2228
  type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
2229
2229
  type PriceFacetBoundary = 'min' | 'max';
2230
2230
  type PricingLevySetting = 'included' | 'displayed' | 'ignored';
2231
- type ProductRestrictionRule = 'Adult Products' | 'Alcohol' | 'Anti Money Laundering' | 'Collagen' | 'Consumer Safety' | 'Cosmetics' | 'DG - Batteries' | 'DG - Hazmat' | 'Drugs' | 'Dual Use' | 'Fine Art' | 'Fish & Wildlife - CITES' | 'Fish & Wildlife - Plant' | 'Fish & Wildlife - USFWS' | 'Food' | 'Gambling' | 'Health' | 'Human hair' | 'Insufficient Details' | 'Intangible' | 'Jewelry' | 'Jewelry & Watches Over 5000' | 'Knives' | 'Liquids' | 'Oversized' | 'Supplements' | 'Weapon' | 'Wood';
2231
+ type ProductRestrictionRule = 'Adult Products' | 'Alcohol' | 'Anti Money Laundering' | 'Collagen' | 'Consumer Safety' | 'Cosmetics' | 'DG - Batteries' | 'DG - Hazmat' | 'Drugs' | 'Dual Use' | 'Fine Art' | 'Fish & Wildlife - CITES' | 'Fish & Wildlife - Plant' | 'Fish & Wildlife - USFWS' | 'Food' | 'Gambling' | 'Health' | 'Human hair' | 'Insufficient Details' | 'Intangible' | 'Jewelry' | 'Jewelry & Watches Over 5000' | 'Knives' | 'Liquids' | 'Oversized' | 'Restrict by Default' | 'Supplements' | 'Weapon' | 'Wood';
2232
2232
  type PromotionTriggerType = 'automatic' | 'order_subtotal';
2233
2233
  type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
2234
2234
  type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
@@ -9658,7 +9658,7 @@ declare namespace io.flow.v0.models {
9658
9658
  readonly 'prohibited_regions': string[];
9659
9659
  readonly 'review_status'?: io.flow.v0.enums.ReviewStatus;
9660
9660
  readonly 'rules'?: io.flow.v0.enums.ProductRestrictionRule[];
9661
- readonly 'updated_by_user_id'?: string;
9661
+ readonly 'updated_by'?: string;
9662
9662
  }
9663
9663
 
9664
9664
  interface ProductRestrictionResultDeleted {
package/src/api.js CHANGED
@@ -3447,6 +3447,7 @@ T['io.flow.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
3447
3447
  'street_address_is_po_box_3pl',
3448
3448
  'business_street_address_is_blank',
3449
3449
  'business_street_address_is_po_box',
3450
+ 'exception_merchant',
3450
3451
  ]);
3451
3452
 
3452
3453
  T['io.flow.v0.models.session_experiment_variant_form'] = PropTypes.exact({
@@ -3724,6 +3725,7 @@ T['io.flow.v0.enums.product_restriction_rule'] = PropTypes.oneOf([
3724
3725
  'Knives',
3725
3726
  'Liquids',
3726
3727
  'Oversized',
3728
+ 'Restrict by Default',
3727
3729
  'Supplements',
3728
3730
  'Weapon',
3729
3731
  'Wood',
@@ -3738,7 +3740,7 @@ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
3738
3740
  prohibited_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
3739
3741
  review_status: T['io.flow.v0.enums.review_status'],
3740
3742
  rules: PropTypes.arrayOf(T['io.flow.v0.enums.product_restriction_rule']),
3741
- updated_by_user_id: PropTypes.string,
3743
+ updated_by: PropTypes.string,
3742
3744
  });
3743
3745
 
3744
3746
  T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({