@flowio/api-internal-prop-types 9.24.81 → 9.24.82

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-internal-prop-types",
3
- "version": "9.24.81",
3
+ "version": "9.24.82",
4
4
  "description": "PropType validators that work with internal Flow API",
5
5
  "keywords": [
6
6
  "flow",
@@ -30,5 +30,5 @@
30
30
  "peerDependencies": {
31
31
  "prop-types": "^15.7.0"
32
32
  },
33
- "gitHead": "2430172d05199bd940ad6b8a39eaf47a9efcea8c"
33
+ "gitHead": "7fddfd86678e7921d92493bec5b3bec759769d5f"
34
34
  }
@@ -6474,6 +6474,7 @@ declare namespace io.flow.shopify.markets.v0.models {
6474
6474
  readonly 'metafields'?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
6475
6475
  readonly 'merchant_of_record_app_id'?: number;
6476
6476
  readonly 'total_shipping_price_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
6477
+ readonly 'total_tip_received'?: string;
6477
6478
  }
6478
6479
 
6479
6480
  interface ShopifyOrderAddress {
@@ -15552,7 +15553,7 @@ declare namespace io.flow.checkout.v0.unions {
15552
15553
 
15553
15554
  declare namespace io.flow.organization.onboarding.state.v0.enums {
15554
15555
  type MerchantRejectedReason = 'merchant_ubo_is_pep' | 'merchant_catalog_is_unsupportable' | 'merchant_failed_kyb_review';
15555
- type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box';
15556
+ 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';
15556
15557
  }
15557
15558
 
15558
15559
  declare namespace io.flow.organization.onboarding.state.v0.models {
@@ -23816,6 +23817,10 @@ declare namespace io.flow.internal.v0.models {
23816
23817
  readonly 'actual_action'?: io.flow.payment.gateway.v0.unions.Action;
23817
23818
  }
23818
23819
 
23820
+ interface InternalPaymentRequestVerification {
23821
+ readonly 'placeholder'?: string;
23822
+ }
23823
+
23819
23824
  interface InternalPaypalAuthorizationDetails {
23820
23825
  readonly 'discriminator': 'internal_paypal_authorization_details';
23821
23826
  readonly 'paypal_authentication_data': io.flow.internal.v0.models.PaypalAccountReference;
@@ -31331,6 +31336,7 @@ export const internalFiservAuthorizationDetails: PropTypes.Requireable<io.flow.i
31331
31336
  export const internalItemForm: PropTypes.Requireable<io.flow.internal.v0.models.InternalItemForm>;
31332
31337
  export const internalOrder: PropTypes.Requireable<io.flow.internal.v0.models.InternalOrder>;
31333
31338
  export const internalPaymentRequest: PropTypes.Requireable<io.flow.internal.v0.models.InternalPaymentRequest>;
31339
+ export const internalPaymentRequestVerification: PropTypes.Requireable<io.flow.internal.v0.models.InternalPaymentRequestVerification>;
31334
31340
  export const internalPaypalAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalPaypalAuthorizationDetails>;
31335
31341
  export const internalStripeAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalStripeAuthorizationDetails>;
31336
31342
  export const internalTransactionDetailsCard: PropTypes.Requireable<io.flow.internal.v0.models.InternalTransactionDetailsCard>;
@@ -11588,6 +11588,7 @@ T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] =
11588
11588
  'street_address_is_po_box_3pl',
11589
11589
  'business_street_address_is_blank',
11590
11590
  'business_street_address_is_po_box',
11591
+ 'exception_merchant',
11591
11592
  ]);
11592
11593
 
11593
11594
  T['io.flow.internal.v0.models.setup_block_put_form'] = PropTypes.exact({
@@ -13513,6 +13514,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order'] = PropTypes.exact({
13513
13514
  metafields: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_metafield']),
13514
13515
  merchant_of_record_app_id: PropTypes.number,
13515
13516
  total_shipping_price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
13517
+ total_tip_received: PropTypes.string,
13516
13518
  });
13517
13519
 
13518
13520
  T['io.flow.shopify.markets.v0.models.shopify_orders_wrapper'] = PropTypes.exact({
@@ -32638,6 +32640,10 @@ T['io.flow.internal.v0.models.install_form'] = PropTypes.exact({
32638
32640
  token: PropTypes.string.isRequired,
32639
32641
  });
32640
32642
 
32643
+ T['io.flow.internal.v0.models.internal_payment_request_verification'] = PropTypes.exact({
32644
+ placeholder: PropTypes.string,
32645
+ });
32646
+
32641
32647
  T['io.flow.internal.v0.models.invoice_info_form'] = PropTypes.exact({
32642
32648
  invoice_number: PropTypes.string.isRequired,
32643
32649
  invoice_date: PropTypes.string.isRequired,
@@ -35947,6 +35953,7 @@ export const internalHarmonizationStatistic = T['io.flow.internal.v0.unions.inte
35947
35953
  export const internalItemForm = T['io.flow.internal.v0.models.internal_item_form'];
35948
35954
  export const internalOrder = T['io.flow.internal.v0.models.internal_order'];
35949
35955
  export const internalPaymentRequest = T['io.flow.internal.v0.models.internal_payment_request'];
35956
+ export const internalPaymentRequestVerification = T['io.flow.internal.v0.models.internal_payment_request_verification'];
35950
35957
  export const internalPaypalAuthorizationDetails = T['io.flow.internal.v0.models.internal_paypal_authorization_details'];
35951
35958
  export const internalRefundForm = T['io.flow.internal.v0.unions.internal_refund_form'];
35952
35959
  export const internalStripeAuthorizationDetails = T['io.flow.internal.v0.models.internal_stripe_authorization_details'];