@flowio/api-prop-types 10.16.109 → 10.16.110

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.109",
3
+ "version": "10.16.110",
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": "135ffbb6c863d1ed7a34a1f2aecefa6495a9a4d7"
32
+ "gitHead": "2db30f8eba758d78a8a5f36c767fbddd2b9f4f94"
33
33
  }
package/src/api.d.ts CHANGED
@@ -3416,7 +3416,7 @@ declare namespace io.flow.v0.enums {
3416
3416
  type PaymentActionType = 'redirect' | 'redirect_get' | 'redirect_post' | 'select_payment_option' | 'use_sdk_klarna_v1' | 'use_sdk_applepay_js' | 'use_sdk_googlepay' | 'use_sdk_paypal' | 'use_sdk_stripe_v3' | 'use_sdk_adyen_v3' | 'use_sdk_adyen_v4' | 'execute_script' | 'display_inline_window';
3417
3417
  type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
3418
3418
  type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
3419
- type PaymentFeeType = 'fx' | 'mor' | 'sp';
3419
+ type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
3420
3420
  type PaymentMethodCapability = 'credit' | 'debit';
3421
3421
  type PaymentMethodDataOptionType = 'ideal_issuer_option';
3422
3422
  type PaymentMethodRuleContentKey = 'description';
@@ -3441,6 +3441,7 @@ declare namespace io.flow.v0.enums {
3441
3441
  type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
3442
3442
  type PriceFacetBoundary = 'min' | 'max';
3443
3443
  type PricingLevySetting = 'included' | 'displayed' | 'ignored';
3444
+ type PricingType = 'inclusive_pricing';
3444
3445
  type PromotionTriggerType = 'automatic' | 'order_subtotal';
3445
3446
  type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
3446
3447
  type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
@@ -4348,6 +4349,18 @@ declare namespace io.flow.v0.models {
4348
4349
  readonly 'iban': string;
4349
4350
  }
4350
4351
 
4352
+ interface BankAccountInfoKor {
4353
+ readonly 'discriminator': 'kor';
4354
+ readonly 'name'?: string;
4355
+ readonly 'address'?: io.flow.v0.models.Address;
4356
+ readonly 'phone'?: string;
4357
+ readonly 'email'?: string;
4358
+ readonly 'bank_account_number': string;
4359
+ readonly 'bank_routing_number'?: string;
4360
+ readonly 'bank_name'?: string;
4361
+ readonly 'bank_address'?: io.flow.v0.models.Address;
4362
+ }
4363
+
4351
4364
  interface BankAccountInfoUsa {
4352
4365
  readonly 'discriminator': 'usa';
4353
4366
  readonly 'routing_number': string;
@@ -8630,6 +8643,7 @@ declare namespace io.flow.v0.models {
8630
8643
  readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
8631
8644
  readonly 'edits'?: io.flow.v0.models.EditSummary[];
8632
8645
  readonly 'rates'?: io.flow.v0.models.OrderRate[];
8646
+ readonly 'pricing_type'?: io.flow.v0.enums.PricingType;
8633
8647
  }
8634
8648
 
8635
8649
  interface OrderAddress {
@@ -10730,6 +10744,7 @@ declare namespace io.flow.v0.models {
10730
10744
  readonly 'merchant_id'?: string;
10731
10745
  readonly 'product_id': string;
10732
10746
  readonly 'restricted_regions': io.flow.v0.models.SellabilityRestrictedRegion[];
10747
+ readonly 'restricted_reasons': io.flow.v0.models.SellabilityRestrictedReason[];
10733
10748
  readonly 'needs_action_attributes'?: io.flow.v0.models.SellabilityNeedsActionAttributes[];
10734
10749
  readonly 'request_id'?: string;
10735
10750
  readonly 'hs6_code'?: string;
@@ -11716,6 +11731,11 @@ declare namespace io.flow.v0.models {
11716
11731
  readonly 'require_msds'?: boolean;
11717
11732
  }
11718
11733
 
11734
+ interface SellabilityReasonWithRegions {
11735
+ readonly 'reason': string;
11736
+ readonly 'regions': string[];
11737
+ }
11738
+
11719
11739
  interface SellabilityRegionResult {
11720
11740
  readonly 'type': io.flow.v0.enums.RuleEffectType;
11721
11741
  readonly 'regions': string[];
@@ -11726,14 +11746,19 @@ declare namespace io.flow.v0.models {
11726
11746
  readonly 'reasons': string[];
11727
11747
  }
11728
11748
 
11749
+ interface SellabilityRestrictedReason {
11750
+ readonly 'type': io.flow.v0.enums.RuleEffectType;
11751
+ readonly 'reasons_with_regions': io.flow.v0.models.SellabilityReasonWithRegions[];
11752
+ }
11753
+
11729
11754
  interface SellabilityRestrictedRegion {
11730
11755
  readonly 'type': io.flow.v0.enums.RuleEffectType;
11731
- readonly 'regions_with_reasons': io.flow.v0.models.SellabilityRegionWithReasons[];
11756
+ readonly 'regions': string[];
11732
11757
  }
11733
11758
 
11734
11759
  interface SellabilityScreening {
11735
11760
  readonly 'discriminator': 'sellability_screening';
11736
- readonly 'sellability_result'?: io.flow.v0.models.ProductSellabilityResult;
11761
+ readonly 'product_sellability_result'?: io.flow.v0.models.ProductSellabilityResult;
11737
11762
  readonly 'request_id': string;
11738
11763
  readonly 'status': io.flow.v0.enums.SellabilityResultStatus;
11739
11764
  readonly 'error_code'?: io.flow.v0.enums.SellabilityResultErrorCode;
@@ -13762,7 +13787,7 @@ declare namespace io.flow.v0.unions {
13762
13787
  type AuthorizationResultActionDetails = (io.flow.v0.models.AdyenNativeActionDetails | io.flow.v0.models.StripeAuthorizationResultActionDetails | io.flow.v0.models.ThreedsIdentifyActionDetails | io.flow.v0.models.ThreedsChallengeActionDetails | io.flow.v0.models.ApplepaySdkCreateResultActionDetails | io.flow.v0.models.ApplepaySdkValidateResultActionDetails | io.flow.v0.models.KlarnaSdkAuthorizationResultActionDetails | io.flow.v0.models.SelectIssuerOptionActionDetails);
13763
13788
  type AvailableFilter = (io.flow.v0.models.AvailableFilterStructured | io.flow.v0.models.AvailableFilterUnstructured);
13764
13789
  type BankAccountForm = (io.flow.v0.models.BankAccountFormInfo | io.flow.v0.models.BankAccountFormSimple);
13765
- type BankAccountInfo = (io.flow.v0.models.BankAccountInfoUsa | io.flow.v0.models.BankAccountInfoCan | io.flow.v0.models.BankAccountInfoGbr | io.flow.v0.models.BankAccountInfoFra | io.flow.v0.models.BankAccountInfoIta);
13790
+ type BankAccountInfo = (io.flow.v0.models.BankAccountInfoUsa | io.flow.v0.models.BankAccountInfoCan | io.flow.v0.models.BankAccountInfoGbr | io.flow.v0.models.BankAccountInfoFra | io.flow.v0.models.BankAccountInfoIta | io.flow.v0.models.BankAccountInfoKor);
13766
13791
  type BrowserActionConfiguration = (io.flow.v0.models.CardBrowserActionConfiguration);
13767
13792
  type CardAuthorizationActionResult = (io.flow.v0.models.AuthorizationActionResultAdyenV3 | io.flow.v0.models.AuthorizationActionResultAdyenV4);
13768
13793
  type CardNumber = (io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher);
@@ -14032,6 +14057,7 @@ export const priceDetailComponentKey: PropTypes.Requireable<io.flow.v0.enums.Pri
14032
14057
  export const priceDetailKey: PropTypes.Requireable<io.flow.v0.enums.PriceDetailKey>;
14033
14058
  export const priceFacetBoundary: PropTypes.Requireable<io.flow.v0.enums.PriceFacetBoundary>;
14034
14059
  export const pricingLevySetting: PropTypes.Requireable<io.flow.v0.enums.PricingLevySetting>;
14060
+ export const pricingType: PropTypes.Requireable<io.flow.v0.enums.PricingType>;
14035
14061
  export const promotionTriggerType: PropTypes.Requireable<io.flow.v0.enums.PromotionTriggerType>;
14036
14062
  export const provinceType: PropTypes.Requireable<io.flow.v0.enums.ProvinceType>;
14037
14063
  export const quoteErrorCode: PropTypes.Requireable<io.flow.v0.enums.QuoteErrorCode>;
@@ -14222,6 +14248,7 @@ export const bankAccountInfoCan: PropTypes.Requireable<io.flow.v0.models.BankAcc
14222
14248
  export const bankAccountInfoFra: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoFra>;
14223
14249
  export const bankAccountInfoGbr: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoGbr>;
14224
14250
  export const bankAccountInfoIta: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoIta>;
14251
+ export const bankAccountInfoKor: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoKor>;
14225
14252
  export const bankAccountInfoUsa: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoUsa>;
14226
14253
  export const bankAccountReference: PropTypes.Requireable<io.flow.v0.models.BankAccountReference>;
14227
14254
  export const bankAccountSummary: PropTypes.Requireable<io.flow.v0.models.BankAccountSummary>;
@@ -15248,8 +15275,10 @@ export const selectIssuerOptionActionDetails: PropTypes.Requireable<io.flow.v0.m
15248
15275
  export const selfBillingAgreement: PropTypes.Requireable<io.flow.v0.models.SelfBillingAgreement>;
15249
15276
  export const sellabilityError: PropTypes.Requireable<io.flow.v0.models.SellabilityError>;
15250
15277
  export const sellabilityNeedsActionAttributes: PropTypes.Requireable<io.flow.v0.models.SellabilityNeedsActionAttributes>;
15278
+ export const sellabilityReasonWithRegions: PropTypes.Requireable<io.flow.v0.models.SellabilityReasonWithRegions>;
15251
15279
  export const sellabilityRegionResult: PropTypes.Requireable<io.flow.v0.models.SellabilityRegionResult>;
15252
15280
  export const sellabilityRegionWithReasons: PropTypes.Requireable<io.flow.v0.models.SellabilityRegionWithReasons>;
15281
+ export const sellabilityRestrictedReason: PropTypes.Requireable<io.flow.v0.models.SellabilityRestrictedReason>;
15253
15282
  export const sellabilityRestrictedRegion: PropTypes.Requireable<io.flow.v0.models.SellabilityRestrictedRegion>;
15254
15283
  export const sellabilityScreening: PropTypes.Requireable<io.flow.v0.models.SellabilityScreening>;
15255
15284
  export const sellabilityScreeningForm: PropTypes.Requireable<io.flow.v0.models.SellabilityScreeningForm>;
package/src/api.js CHANGED
@@ -4965,9 +4965,9 @@ T['io.flow.v0.models.query_filter_structured'] = PropTypes.exact({
4965
4965
  values: PropTypes.arrayOf(PropTypes.string).isRequired,
4966
4966
  });
4967
4967
 
4968
- T['io.flow.v0.models.sellability_region_with_reasons'] = PropTypes.exact({
4969
- region: PropTypes.string.isRequired,
4970
- reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
4968
+ T['io.flow.v0.models.sellability_reason_with_regions'] = PropTypes.exact({
4969
+ reason: PropTypes.string.isRequired,
4970
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
4971
4971
  });
4972
4972
 
4973
4973
  T['io.flow.v0.models.sellability_needs_action_attributes'] = PropTypes.exact({
@@ -4984,15 +4984,21 @@ T['io.flow.v0.models.sellablility_region_result'] = PropTypes.exact({
4984
4984
  regions: PropTypes.arrayOf(PropTypes.string).isRequired,
4985
4985
  });
4986
4986
 
4987
+ T['io.flow.v0.models.sellability_restricted_reason'] = PropTypes.exact({
4988
+ type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
4989
+ reasons_with_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellability_reason_with_regions']).isRequired,
4990
+ });
4991
+
4987
4992
  T['io.flow.v0.models.sellability_restricted_region'] = PropTypes.exact({
4988
4993
  type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
4989
- regions_with_reasons: PropTypes.arrayOf(T['io.flow.v0.models.sellability_region_with_reasons']).isRequired,
4994
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
4990
4995
  });
4991
4996
 
4992
4997
  T['io.flow.v0.models.product_sellability_result'] = PropTypes.exact({
4993
4998
  merchant_id: PropTypes.string,
4994
4999
  product_id: PropTypes.string.isRequired,
4995
5000
  restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellability_restricted_region']).isRequired,
5001
+ restricted_reasons: PropTypes.arrayOf(T['io.flow.v0.models.sellability_restricted_reason']).isRequired,
4996
5002
  needs_action_attributes: PropTypes.arrayOf(T['io.flow.v0.models.sellability_needs_action_attributes']),
4997
5003
  request_id: PropTypes.string,
4998
5004
  hs6_code: PropTypes.string,
@@ -5000,7 +5006,7 @@ T['io.flow.v0.models.product_sellability_result'] = PropTypes.exact({
5000
5006
 
5001
5007
  T['io.flow.v0.models.sellability_screening'] = PropTypes.exact({
5002
5008
  discriminator: PropTypes.oneOf(['sellability_screening']).isRequired,
5003
- sellability_result: T['io.flow.v0.models.product_sellability_result'],
5009
+ product_sellability_result: T['io.flow.v0.models.product_sellability_result'],
5004
5010
  request_id: PropTypes.string.isRequired,
5005
5011
  status: T['io.flow.v0.enums.sellability_result_status'].isRequired,
5006
5012
  error_code: T['io.flow.v0.enums.sellability_result_error_code'],
@@ -5859,6 +5865,8 @@ T['io.flow.v0.models.order_rule_reference'] = PropTypes.exact({
5859
5865
  key: PropTypes.string.isRequired,
5860
5866
  });
5861
5867
 
5868
+ T['io.flow.v0.enums.pricing_type'] = PropTypes.oneOf(['inclusive_pricing']);
5869
+
5862
5870
  T['io.flow.v0.models.order_rate'] = PropTypes.exact({
5863
5871
  from: PropTypes.string.isRequired,
5864
5872
  to: PropTypes.string.isRequired,
@@ -9103,7 +9111,7 @@ T['io.flow.v0.models.capture_error'] = PropTypes.exact({
9103
9111
  decline_code: T['io.flow.v0.enums.capture_decline_code'].isRequired,
9104
9112
  });
9105
9113
 
9106
- T['io.flow.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor', 'sp']);
9114
+ T['io.flow.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor', 'sp', 'mor_tax']);
9107
9115
  T['io.flow.v0.enums.capture_status'] = PropTypes.oneOf(['initiated', 'pending', 'succeeded', 'failed', 'canceled']);
9108
9116
 
9109
9117
  T['io.flow.v0.models.payment_capture_status'] = PropTypes.exact({
@@ -9548,24 +9556,6 @@ T['io.flow.v0.models.bank_account_info_usa'] = PropTypes.exact({
9548
9556
  account_number: PropTypes.string.isRequired,
9549
9557
  });
9550
9558
 
9551
- T['io.flow.v0.unions.bank_account_info'] = PropTypes.oneOfType([
9552
- T['io.flow.v0.models.bank_account_info_usa'],
9553
- T['io.flow.v0.models.bank_account_info_can'],
9554
- T['io.flow.v0.models.bank_account_info_gbr'],
9555
- T['io.flow.v0.models.bank_account_info_fra'],
9556
- T['io.flow.v0.models.bank_account_info_ita'],
9557
- ]);
9558
-
9559
- T['io.flow.v0.models.bank_account_form_info'] = PropTypes.exact({
9560
- discriminator: PropTypes.oneOf(['info']).isRequired,
9561
- info: T['io.flow.v0.unions.bank_account_info'].isRequired,
9562
- });
9563
-
9564
- T['io.flow.v0.unions.bank_account_form'] = PropTypes.oneOfType([
9565
- T['io.flow.v0.models.bank_account_form_info'],
9566
- T['io.flow.v0.models.bank_account_form_simple'],
9567
- ]);
9568
-
9569
9559
  T['io.flow.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
9570
9560
  T['io.flow.v0.enums.consumer_invoice_document_type'] = PropTypes.oneOf(['pdf']);
9571
9561
 
@@ -11448,6 +11438,37 @@ T['io.flow.v0.models.merchant_onboarding_beneficiary_details'] = PropTypes.exact
11448
11438
  bank_address: T['io.flow.v0.models.address'],
11449
11439
  });
11450
11440
 
11441
+ T['io.flow.v0.models.bank_account_info_kor'] = PropTypes.exact({
11442
+ discriminator: PropTypes.oneOf(['kor']).isRequired,
11443
+ name: PropTypes.string,
11444
+ address: T['io.flow.v0.models.address'],
11445
+ phone: PropTypes.string,
11446
+ email: PropTypes.string,
11447
+ bank_account_number: PropTypes.string.isRequired,
11448
+ bank_routing_number: PropTypes.string,
11449
+ bank_name: PropTypes.string,
11450
+ bank_address: T['io.flow.v0.models.address'],
11451
+ });
11452
+
11453
+ T['io.flow.v0.unions.bank_account_info'] = PropTypes.oneOfType([
11454
+ T['io.flow.v0.models.bank_account_info_usa'],
11455
+ T['io.flow.v0.models.bank_account_info_can'],
11456
+ T['io.flow.v0.models.bank_account_info_gbr'],
11457
+ T['io.flow.v0.models.bank_account_info_fra'],
11458
+ T['io.flow.v0.models.bank_account_info_ita'],
11459
+ T['io.flow.v0.models.bank_account_info_kor'],
11460
+ ]);
11461
+
11462
+ T['io.flow.v0.models.bank_account_form_info'] = PropTypes.exact({
11463
+ discriminator: PropTypes.oneOf(['info']).isRequired,
11464
+ info: T['io.flow.v0.unions.bank_account_info'].isRequired,
11465
+ });
11466
+
11467
+ T['io.flow.v0.unions.bank_account_form'] = PropTypes.oneOfType([
11468
+ T['io.flow.v0.models.bank_account_form_info'],
11469
+ T['io.flow.v0.models.bank_account_form_simple'],
11470
+ ]);
11471
+
11451
11472
  T['io.flow.v0.models.consumer_invoice_center_reference'] = PropTypes.exact({
11452
11473
  id: PropTypes.string.isRequired,
11453
11474
  key: PropTypes.string.isRequired,
@@ -14063,6 +14084,7 @@ T['io.flow.v0.models.order'] = PropTypes.exact({
14063
14084
  payment_source: T['io.flow.v0.enums.order_payment_source_type'],
14064
14085
  edits: PropTypes.arrayOf(T['io.flow.v0.models.edit_summary']),
14065
14086
  rates: PropTypes.arrayOf(T['io.flow.v0.models.order_rate']),
14087
+ pricing_type: T['io.flow.v0.enums.pricing_type'],
14066
14088
  });
14067
14089
 
14068
14090
  T['io.flow.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
@@ -15898,6 +15920,11 @@ T['io.flow.v0.models.reversal_put_form'] = PropTypes.exact({
15898
15920
  attributes: PropTypes.objectOf(PropTypes.string),
15899
15921
  });
15900
15922
 
15923
+ T['io.flow.v0.models.sellability_region_with_reasons'] = PropTypes.exact({
15924
+ region: PropTypes.string.isRequired,
15925
+ reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
15926
+ });
15927
+
15901
15928
  T['io.flow.v0.models.session_authorization_form'] = PropTypes.exact({
15902
15929
  session: PropTypes.string.isRequired,
15903
15930
  });
@@ -16506,6 +16533,7 @@ export const bankAccountInfoCan = T['io.flow.v0.models.bank_account_info_can'];
16506
16533
  export const bankAccountInfoFra = T['io.flow.v0.models.bank_account_info_fra'];
16507
16534
  export const bankAccountInfoGbr = T['io.flow.v0.models.bank_account_info_gbr'];
16508
16535
  export const bankAccountInfoIta = T['io.flow.v0.models.bank_account_info_ita'];
16536
+ export const bankAccountInfoKor = T['io.flow.v0.models.bank_account_info_kor'];
16509
16537
  export const bankAccountInfoUsa = T['io.flow.v0.models.bank_account_info_usa'];
16510
16538
  export const bankAccountReference = T['io.flow.v0.models.bank_account_reference'];
16511
16539
  export const bankAccountSummary = T['io.flow.v0.models.bank_account_summary'];
@@ -17602,6 +17630,7 @@ export const priceWithBaseAndDetails = T['io.flow.v0.models.price_with_base_and_
17602
17630
  export const pricing = T['io.flow.v0.models.pricing'];
17603
17631
  export const pricingLevySetting = T['io.flow.v0.enums.pricing_levy_setting'];
17604
17632
  export const pricingSettings = T['io.flow.v0.models.pricing_settings'];
17633
+ export const pricingType = T['io.flow.v0.enums.pricing_type'];
17605
17634
  export const pricingVersion = T['io.flow.v0.models.pricing_version'];
17606
17635
  export const processingEstimate = T['io.flow.v0.models.processing_estimate'];
17607
17636
  export const product = T['io.flow.v0.models.product'];
@@ -17776,11 +17805,13 @@ export const selfBillingAgreement = T['io.flow.v0.models.self_billing_agreement'
17776
17805
  export const sellabilityError = T['io.flow.v0.models.sellability_error'];
17777
17806
  export const sellabilityErrorCode = T['io.flow.v0.enums.sellability_error_code'];
17778
17807
  export const sellabilityNeedsActionAttributes = T['io.flow.v0.models.sellability_needs_action_attributes'];
17808
+ export const sellabilityReasonWithRegions = T['io.flow.v0.models.sellability_reason_with_regions'];
17779
17809
  export const sellabilityRegionResult = T['io.flow.v0.models.sellability_region_result'];
17780
17810
  export const sellabilityRegionWithReasons = T['io.flow.v0.models.sellability_region_with_reasons'];
17781
17811
  export const sellabilityRequest = T['io.flow.v0.unions.sellability_request'];
17782
17812
  export const sellabilityRequestStatus = T['io.flow.v0.enums.sellability_request_status'];
17783
17813
  export const sellabilityResponse = T['io.flow.v0.unions.sellability_response'];
17814
+ export const sellabilityRestrictedReason = T['io.flow.v0.models.sellability_restricted_reason'];
17784
17815
  export const sellabilityRestrictedRegion = T['io.flow.v0.models.sellability_restricted_region'];
17785
17816
  export const sellabilityResultErrorCode = T['io.flow.v0.enums.sellability_result_error_code'];
17786
17817
  export const sellabilityResultStatus = T['io.flow.v0.enums.sellability_result_status'];