@flowio/api-internal-prop-types 9.24.76 → 9.24.78

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.
@@ -394,42 +394,10 @@ T['io.flow.billing.v0.models.settlement_no_payout'] = PropTypes.exact({
394
394
  placeholder: PropTypes.string,
395
395
  });
396
396
 
397
- T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'] = PropTypes.oneOf([
398
- 'waiting_for_full_refund',
399
- 'waiting_for_fulfillment',
400
- 'waiting_for_in_transit',
401
- 'waiting_for_next_payout_date',
402
- 'waiting_for_tracking_info',
403
- 'waiting_for_positive_account_balance',
404
- ]);
405
-
406
397
  T['io.flow.billing.v0.models.pending_payout_transaction_timeout'] = PropTypes.exact({
407
398
  created_at: PropTypes.string.isRequired,
408
399
  });
409
400
 
410
- T['io.flow.billing.v0.models.pending_payout_transaction_reason'] = PropTypes.exact({
411
- code: T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'].isRequired,
412
- created_at: PropTypes.string.isRequired,
413
- });
414
-
415
- T['io.flow.billing.v0.models.organization_pending_payout_transaction'] = PropTypes.exact({
416
- id: PropTypes.string.isRequired,
417
- reason: T['io.flow.billing.v0.models.pending_payout_transaction_reason'].isRequired,
418
- timeout: T['io.flow.billing.v0.models.pending_payout_transaction_timeout'],
419
- created_at: PropTypes.string.isRequired,
420
- updated_at: PropTypes.string.isRequired,
421
- deleted_at: PropTypes.string,
422
- });
423
-
424
- T['io.flow.billing.v0.models.channel_pending_payout_transaction'] = PropTypes.exact({
425
- id: PropTypes.string.isRequired,
426
- reason: T['io.flow.billing.v0.models.pending_payout_transaction_reason'].isRequired,
427
- timeout: T['io.flow.billing.v0.models.pending_payout_transaction_timeout'],
428
- created_at: PropTypes.string.isRequired,
429
- updated_at: PropTypes.string.isRequired,
430
- deleted_at: PropTypes.string,
431
- });
432
-
433
401
  T['io.flow.billing.v0.enums.payout_attachment_type'] = PropTypes.oneOf(['transactions']);
434
402
 
435
403
  T['io.flow.billing.v0.models.payout_attachment'] = PropTypes.exact({
@@ -6324,9 +6292,12 @@ T['io.flow.stripe.v0.enums.three_ds_authentication_flow'] = PropTypes.oneOf(['ch
6324
6292
  T['io.flow.stripe.v0.models.three_d_secure_charge'] = PropTypes.exact({
6325
6293
  authenticated: PropTypes.bool,
6326
6294
  authentication_flow: T['io.flow.stripe.v0.enums.three_ds_authentication_flow'],
6295
+ electronic_commerce_indicator: PropTypes.string,
6296
+ exemption_indicator: PropTypes.string,
6327
6297
  result: T['io.flow.stripe.v0.enums.three_ds_result'],
6328
6298
  result_reason: T['io.flow.stripe.v0.enums.three_ds_result_reason'],
6329
6299
  succeeded: PropTypes.bool,
6300
+ transaction_id: PropTypes.string,
6330
6301
  version: PropTypes.string,
6331
6302
  });
6332
6303
 
@@ -6370,11 +6341,23 @@ T['io.flow.stripe.v0.models.card_networks'] = PropTypes.exact({
6370
6341
  preferred: PropTypes.string,
6371
6342
  });
6372
6343
 
6344
+ T['io.flow.stripe.v0.models.payment_method_options_card_form'] = PropTypes.exact({
6345
+ network: PropTypes.string,
6346
+ request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
6347
+ stored_credential_transaction_type: T['io.flow.stripe.v0.enums.stored_credential_transaction_type'],
6348
+ mcc: PropTypes.string,
6349
+ });
6350
+
6351
+ T['io.flow.stripe.v0.models.payment_method_options_form'] = PropTypes.exact({
6352
+ card: T['io.flow.stripe.v0.models.payment_method_options_card_form'],
6353
+ });
6354
+
6373
6355
  T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
6374
6356
  network: PropTypes.string,
6375
6357
  request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
6376
6358
  stored_credential_transaction_type: T['io.flow.stripe.v0.enums.stored_credential_transaction_type'],
6377
6359
  mcc: PropTypes.string,
6360
+ capture_before: PropTypes.number,
6378
6361
  });
6379
6362
 
6380
6363
  T['io.flow.stripe.v0.enums.payment_intent_status'] = PropTypes.oneOf([
@@ -6466,6 +6449,42 @@ T['io.flow.stripe.v0.models.visa_checkout'] = PropTypes.exact({
6466
6449
  dynamic_last4: PropTypes.string,
6467
6450
  });
6468
6451
 
6452
+ T['io.flow.stripe.v0.models.payment_method_billing_details'] = PropTypes.exact({
6453
+ address: T['io.flow.stripe.v0.models.address'].isRequired,
6454
+ email: PropTypes.string,
6455
+ name: PropTypes.string,
6456
+ phone: PropTypes.string,
6457
+ });
6458
+
6459
+ T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
6460
+ type: PropTypes.oneOf(['card']).isRequired,
6461
+ billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
6462
+ metadata: PropTypes.object,
6463
+ card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
6464
+ });
6465
+
6466
+ T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_form_card']]);
6467
+
6468
+ T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
6469
+ type: PropTypes.oneOf(['card']).isRequired,
6470
+ billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
6471
+ metadata: PropTypes.object,
6472
+ card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
6473
+ });
6474
+
6475
+ T['io.flow.stripe.v0.unions.payment_method_data'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_data_card']]);
6476
+
6477
+ T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact({
6478
+ off_session: PropTypes.bool,
6479
+ payment_method: PropTypes.string,
6480
+ payment_method_data: T['io.flow.stripe.v0.unions.payment_method_data'],
6481
+ payment_method_options: T['io.flow.stripe.v0.models.payment_method_options_form'],
6482
+ payment_method_types: PropTypes.arrayOf(PropTypes.string),
6483
+ receipt_email: PropTypes.string,
6484
+ save_payment_method: PropTypes.bool,
6485
+ setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
6486
+ });
6487
+
6469
6488
  T['io.flow.stripe.v0.models.payment_intent_shipping'] = PropTypes.exact({
6470
6489
  address: T['io.flow.stripe.v0.models.address'].isRequired,
6471
6490
  name: PropTypes.string.isRequired,
@@ -6514,40 +6533,34 @@ T['io.flow.stripe.v0.models.masterpass'] = PropTypes.exact({
6514
6533
  dynamic_last4: PropTypes.string,
6515
6534
  });
6516
6535
 
6517
- T['io.flow.stripe.v0.models.payment_method_billing_details'] = PropTypes.exact({
6518
- address: T['io.flow.stripe.v0.models.address'].isRequired,
6519
- email: PropTypes.string,
6520
- name: PropTypes.string,
6521
- phone: PropTypes.string,
6536
+ T['io.flow.stripe.v0.models.klarna_marketplace_seller_info'] = PropTypes.exact({
6537
+ sub_merchant_id: PropTypes.string,
6538
+ product_category: PropTypes.string,
6522
6539
  });
6523
6540
 
6524
- T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
6525
- type: PropTypes.oneOf(['card']).isRequired,
6526
- billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
6527
- metadata: PropTypes.object,
6528
- card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
6541
+ T['io.flow.stripe.v0.models.klarna_attachment'] = PropTypes.exact({
6542
+ marketplace_seller_info: PropTypes.arrayOf(T['io.flow.stripe.v0.models.klarna_marketplace_seller_info']),
6529
6543
  });
6530
6544
 
6531
- T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_form_card']]);
6545
+ T['io.flow.stripe.v0.enums.feature_availability'] = PropTypes.oneOf(['available', 'unavailable']);
6532
6546
 
6533
- T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
6534
- type: PropTypes.oneOf(['card']).isRequired,
6535
- billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
6536
- metadata: PropTypes.object,
6537
- card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
6547
+ T['io.flow.stripe.v0.models.overcapture'] = PropTypes.exact({
6548
+ maximum_amount_capturable: PropTypes.number,
6549
+ status: T['io.flow.stripe.v0.enums.feature_availability'],
6538
6550
  });
6539
6551
 
6540
- T['io.flow.stripe.v0.unions.payment_method_data'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_data_card']]);
6552
+ T['io.flow.stripe.v0.models.multicapture'] = PropTypes.exact({
6553
+ status: T['io.flow.stripe.v0.enums.feature_availability'],
6554
+ });
6541
6555
 
6542
- T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact({
6543
- off_session: PropTypes.bool,
6544
- payment_method: PropTypes.string,
6545
- payment_method_data: T['io.flow.stripe.v0.unions.payment_method_data'],
6546
- payment_method_options: T['io.flow.stripe.v0.models.payment_method_options'],
6547
- payment_method_types: PropTypes.arrayOf(PropTypes.string),
6548
- receipt_email: PropTypes.string,
6549
- save_payment_method: PropTypes.bool,
6550
- setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
6556
+ T['io.flow.stripe.v0.models.incremental_authorization'] = PropTypes.exact({
6557
+ status: T['io.flow.stripe.v0.enums.feature_availability'],
6558
+ });
6559
+
6560
+ T['io.flow.stripe.v0.enums.extended_authorization_status'] = PropTypes.oneOf(['enabled', 'disabled']);
6561
+
6562
+ T['io.flow.stripe.v0.models.extended_authorization'] = PropTypes.exact({
6563
+ status: T['io.flow.stripe.v0.enums.extended_authorization_status'],
6551
6564
  });
6552
6565
 
6553
6566
  T['io.flow.stripe.v0.enums.decline_code'] = PropTypes.oneOf([
@@ -6570,6 +6583,7 @@ T['io.flow.stripe.v0.enums.decline_code'] = PropTypes.oneOf([
6570
6583
  'invalid_account',
6571
6584
  'invalid_amount',
6572
6585
  'invalid_cvc',
6586
+ 'invalid_expiry_month',
6573
6587
  'invalid_expiry_year',
6574
6588
  'invalid_number',
6575
6589
  'invalid_pin',
@@ -6593,30 +6607,9 @@ T['io.flow.stripe.v0.enums.decline_code'] = PropTypes.oneOf([
6593
6607
  'transaction_not_allowed',
6594
6608
  'try_again_later',
6595
6609
  'withdrawal_count_limit_exceeded',
6596
- ]);
6597
-
6598
- T['io.flow.stripe.v0.models.klarna_marketplace_seller_info'] = PropTypes.exact({
6599
- sub_merchant_id: PropTypes.string,
6600
- product_category: PropTypes.string,
6601
- });
6602
-
6603
- T['io.flow.stripe.v0.models.klarna_attachment'] = PropTypes.exact({
6604
- marketplace_seller_info: PropTypes.arrayOf(T['io.flow.stripe.v0.models.klarna_marketplace_seller_info']),
6605
- });
6606
-
6607
- T['io.flow.stripe.v0.enums.card_error_code'] = PropTypes.oneOf([
6608
- 'invalid_number',
6609
- 'invalid_expiry_month',
6610
- 'invalid_expiry_year',
6611
- 'invalid_cvc',
6612
- 'invalid_swipe_data',
6613
- 'incorrect_number',
6614
- 'expired_card',
6615
- 'incorrect_cvc',
6616
- 'incorrect_zip',
6617
- 'card_declined',
6618
- 'missing',
6619
- 'processing_error',
6610
+ 'previously_declined_do_not_retry',
6611
+ 'highest_risk_level',
6612
+ 'requested_block_on_incorrect_cvc',
6620
6613
  ]);
6621
6614
 
6622
6615
  T['io.flow.stripe.v0.enums.error_type'] = PropTypes.oneOf([
@@ -6693,7 +6686,7 @@ T['io.flow.stripe.v0.models.payment_intent_form'] = PropTypes.exact({
6693
6686
  on_behalf_of: PropTypes.string,
6694
6687
  payment_method: PropTypes.string,
6695
6688
  payment_method_data: T['io.flow.stripe.v0.unions.payment_method_data'],
6696
- payment_method_options: T['io.flow.stripe.v0.models.payment_method_options'],
6689
+ payment_method_options: T['io.flow.stripe.v0.models.payment_method_options_form'],
6697
6690
  payment_method_types: PropTypes.arrayOf(PropTypes.string),
6698
6691
  receipt_email: PropTypes.string,
6699
6692
  return_url: PropTypes.string,
@@ -6833,6 +6826,80 @@ T['io.flow.stripe.v0.enums.network_status'] = PropTypes.oneOf([
6833
6826
  'reversed_after_approval',
6834
6827
  ]);
6835
6828
 
6829
+ T['io.flow.stripe.v0.enums.error_code'] = PropTypes.oneOf([
6830
+ 'invalid_number',
6831
+ 'invalid_expiry_month',
6832
+ 'invalid_expiry_year',
6833
+ 'invalid_cvc',
6834
+ 'invalid_swipe_data',
6835
+ 'country_code_invalid',
6836
+ 'email_invalid',
6837
+ 'postal_code_invalid',
6838
+ 'invalid_characters',
6839
+ 'url_invalid',
6840
+ 'invalid_charge_amount',
6841
+ 'incorrect_number',
6842
+ 'incorrect_address',
6843
+ 'incorrect_cvc',
6844
+ 'incorrect_zip',
6845
+ 'card_declined',
6846
+ 'expired_card',
6847
+ 'missing',
6848
+ 'processing_error',
6849
+ 'account_closed',
6850
+ 'amount_too_small',
6851
+ 'amount_too_large',
6852
+ 'api_key_expired',
6853
+ 'authentication_required',
6854
+ 'capture_charge_authorization_expired',
6855
+ 'capture_unauthorized_payment',
6856
+ 'card_decline_rate_limit_exceeded',
6857
+ 'charge_already_captured',
6858
+ 'charge_already_refunded',
6859
+ 'charge_disputed',
6860
+ 'charge_exceeds_source_limit',
6861
+ 'charge_expired_for_capture',
6862
+ 'charge_invalid_parameter',
6863
+ 'charge_not_refundable',
6864
+ 'insufficient_funds',
6865
+ 'intent_invalid_state',
6866
+ 'livemode_mismatch',
6867
+ 'parameter_invalid_empty',
6868
+ 'parameter_invalid_integer',
6869
+ 'parameter_invalid_string_blank',
6870
+ 'parameter_invalid_string_empty',
6871
+ 'parameter_missing',
6872
+ 'parameter_unknown',
6873
+ 'parameters_exclusive',
6874
+ 'payment_intent_action_required',
6875
+ 'payment_intent_authentication_failure',
6876
+ 'payment_intent_incompatible_payment_method',
6877
+ 'payment_intent_payment_attempt_expired',
6878
+ 'payment_intent_payment_attempt_failed',
6879
+ 'payment_intent_unexpected_state',
6880
+ 'payment_intent_invalid_parameter',
6881
+ 'payment_method_billing_details_address_missing',
6882
+ 'payment_method_customer_decline',
6883
+ 'payment_method_currency_mismatch',
6884
+ 'payment_method_invalid_parameter',
6885
+ 'payment_method_invalid_parameter_testmode',
6886
+ 'payment_method_not_available',
6887
+ 'payment_method_provider_decline',
6888
+ 'payment_method_provider_timeout',
6889
+ 'payment_method_unactivated',
6890
+ 'payment_method_unexpected_state',
6891
+ 'payment_method_unsupported_type',
6892
+ 'platform_api_key_expired',
6893
+ 'refund_disputed_payment',
6894
+ 'testmode_charges_only',
6895
+ 'tls_version_unsupported',
6896
+ 'setup_attempt_failed',
6897
+ 'setup_intent_authentication_failure',
6898
+ 'setup_intent_invalid_parameter',
6899
+ 'setup_intent_setup_attempt_expired',
6900
+ 'setup_intent_unexpected_state',
6901
+ ]);
6902
+
6836
6903
  T['io.flow.stripe.v0.enums.payment_status'] = PropTypes.oneOf(['succeeded', 'pending', 'failed']);
6837
6904
 
6838
6905
  T['io.flow.stripe.v0.models.refunds'] = PropTypes.exact({
@@ -6844,9 +6911,9 @@ T['io.flow.stripe.v0.models.refunds'] = PropTypes.exact({
6844
6911
  });
6845
6912
 
6846
6913
  T['io.flow.stripe.v0.models.payment_outcome'] = PropTypes.exact({
6847
- network_status: T['io.flow.stripe.v0.enums.network_status'].isRequired,
6848
- risk_level: PropTypes.string.isRequired,
6849
- seller_message: PropTypes.string.isRequired,
6914
+ network_status: T['io.flow.stripe.v0.enums.network_status'],
6915
+ risk_level: PropTypes.string,
6916
+ seller_message: PropTypes.string,
6850
6917
  reason: PropTypes.string,
6851
6918
  type: T['io.flow.stripe.v0.enums.payment_outcome_type'],
6852
6919
  });
@@ -6912,17 +6979,6 @@ T['io.flow.stripe.v0.models.payment_method'] = PropTypes.exact({
6912
6979
  type: PropTypes.string,
6913
6980
  });
6914
6981
 
6915
- T['io.flow.stripe.v0.models.last_payment_error'] = PropTypes.exact({
6916
- charge: PropTypes.string,
6917
- code: PropTypes.string,
6918
- decline_code: T['io.flow.stripe.v0.enums.decline_code'],
6919
- doc_url: PropTypes.string,
6920
- message: PropTypes.string,
6921
- param: PropTypes.string,
6922
- payment_method: T['io.flow.stripe.v0.models.payment_method'].isRequired,
6923
- type: T['io.flow.stripe.v0.enums.error_type'].isRequired,
6924
- });
6925
-
6926
6982
  T['io.flow.stripe.v0.enums.apple_pay_type'] = PropTypes.oneOf(['apple_pay', 'apple_pay_later']);
6927
6983
 
6928
6984
  T['io.flow.stripe.v0.models.apple_pay_information'] = PropTypes.exact({
@@ -6961,6 +7017,10 @@ T['io.flow.stripe.v0.models.payment_method_details_card_information'] = PropType
6961
7017
  issuer: PropTypes.string,
6962
7018
  wallet: T['io.flow.stripe.v0.unions.card_wallet'],
6963
7019
  network_transaction_id: PropTypes.string,
7020
+ extended_authorization: T['io.flow.stripe.v0.models.extended_authorization'],
7021
+ incremental_authorization: T['io.flow.stripe.v0.models.incremental_authorization'],
7022
+ multicapture: T['io.flow.stripe.v0.models.multicapture'],
7023
+ overcapture: T['io.flow.stripe.v0.models.overcapture'],
6964
7024
  });
6965
7025
 
6966
7026
  T['io.flow.stripe.v0.models.payment_method_details_card'] = PropTypes.exact({
@@ -7033,6 +7093,7 @@ T['io.flow.stripe.v0.models.charge_source_optional'] = PropTypes.exact({
7033
7093
  amount_refunded: PropTypes.number.isRequired,
7034
7094
  authorization_code: PropTypes.string,
7035
7095
  captured: PropTypes.bool.isRequired,
7096
+ disputed: PropTypes.bool,
7036
7097
  created: PropTypes.number.isRequired,
7037
7098
  currency: PropTypes.string.isRequired,
7038
7099
  customer: PropTypes.string,
@@ -7045,7 +7106,7 @@ T['io.flow.stripe.v0.models.charge_source_optional'] = PropTypes.exact({
7045
7106
  balance_transaction: PropTypes.string,
7046
7107
  destination: PropTypes.string,
7047
7108
  dispute: PropTypes.string,
7048
- failure_code: PropTypes.string,
7109
+ failure_code: T['io.flow.stripe.v0.enums.error_code'],
7049
7110
  failure_message: PropTypes.string,
7050
7111
  on_behalf_of: PropTypes.string,
7051
7112
  review: PropTypes.string,
@@ -7056,6 +7117,7 @@ T['io.flow.stripe.v0.models.charge_source_optional'] = PropTypes.exact({
7056
7117
  calculated_statement_descriptor: PropTypes.string,
7057
7118
  statement_descriptor: PropTypes.string,
7058
7119
  payment_method_details: T['io.flow.stripe.v0.unions.payment_method_details'],
7120
+ payment_method: PropTypes.string,
7059
7121
  });
7060
7122
 
7061
7123
  T['io.flow.stripe.v0.models.payment_intent_charges'] = PropTypes.exact({
@@ -7084,7 +7146,7 @@ T['io.flow.stripe.v0.models.payment_intent'] = PropTypes.exact({
7084
7146
  customer: PropTypes.string,
7085
7147
  description: PropTypes.string,
7086
7148
  invoice: PropTypes.string,
7087
- last_payment_error: T['io.flow.stripe.v0.models.last_payment_error'],
7149
+ last_payment_error: PropTypes.any,
7088
7150
  livemode: PropTypes.bool.isRequired,
7089
7151
  metadata: T['io.flow.stripe.v0.models.metadata'],
7090
7152
  next_action: T['io.flow.stripe.v0.models.next_action'],
@@ -7108,14 +7170,15 @@ T['io.flow.stripe.v0.models.stripe_error'] = PropTypes.exact({
7108
7170
  type: T['io.flow.stripe.v0.enums.error_type'].isRequired,
7109
7171
  charge: PropTypes.string,
7110
7172
  message: PropTypes.string,
7111
- code: T['io.flow.stripe.v0.enums.card_error_code'],
7112
- decline_code: PropTypes.string,
7173
+ code: T['io.flow.stripe.v0.enums.error_code'],
7174
+ decline_code: T['io.flow.stripe.v0.enums.decline_code'],
7113
7175
  param: PropTypes.string,
7114
7176
  payment_intent: T['io.flow.stripe.v0.models.payment_intent'],
7177
+ payment_method: T['io.flow.stripe.v0.models.payment_method'],
7115
7178
  });
7116
7179
 
7117
7180
  T['io.flow.stripe.v0.models.error'] = PropTypes.exact({
7118
- error: T['io.flow.stripe.v0.models.stripe_error'].isRequired,
7181
+ error: PropTypes.any.isRequired,
7119
7182
  });
7120
7183
 
7121
7184
  T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
@@ -7128,6 +7191,7 @@ T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
7128
7191
  currency: PropTypes.string.isRequired,
7129
7192
  customer: PropTypes.string,
7130
7193
  outcome: T['io.flow.stripe.v0.models.payment_outcome'],
7194
+ disputed: PropTypes.bool,
7131
7195
  paid: PropTypes.bool.isRequired,
7132
7196
  refunded: PropTypes.bool.isRequired,
7133
7197
  refunds: T['io.flow.stripe.v0.models.refunds'],
@@ -7136,7 +7200,7 @@ T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
7136
7200
  balance_transaction: PropTypes.string,
7137
7201
  destination: PropTypes.string,
7138
7202
  dispute: PropTypes.string,
7139
- failure_code: PropTypes.string,
7203
+ failure_code: T['io.flow.stripe.v0.enums.error_code'],
7140
7204
  failure_message: PropTypes.string,
7141
7205
  on_behalf_of: PropTypes.string,
7142
7206
  review: PropTypes.string,
@@ -7147,6 +7211,7 @@ T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
7147
7211
  calculated_statement_descriptor: PropTypes.string,
7148
7212
  statement_descriptor: PropTypes.string,
7149
7213
  payment_method_details: T['io.flow.stripe.v0.unions.payment_method_details'],
7214
+ payment_method: PropTypes.string,
7150
7215
  });
7151
7216
 
7152
7217
  T['io.flow.stripe.v0.models.tos_acceptance'] = PropTypes.exact({
@@ -7198,6 +7263,7 @@ T['io.flow.billing.v0.models.transaction_metadata_original_transaction'] = PropT
7198
7263
 
7199
7264
  T['io.flow.billing.v0.models.transaction_metadata_manual'] = PropTypes.exact({
7200
7265
  discriminator: PropTypes.oneOf(['manual']).isRequired,
7266
+ description: PropTypes.string.isRequired,
7201
7267
  original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'],
7202
7268
  url: PropTypes.string,
7203
7269
  });
@@ -7665,19 +7731,6 @@ T['io.flow.payment.v0.models.refund_order_summary'] = PropTypes.exact({
7665
7731
  amounts: T['io.flow.payment.v0.models.refund_order_summary_amounts'].isRequired,
7666
7732
  });
7667
7733
 
7668
- T['io.flow.payment.v0.models.refund_reference'] = PropTypes.exact({
7669
- id: PropTypes.string.isRequired,
7670
- key: PropTypes.string.isRequired,
7671
- });
7672
-
7673
- T['io.flow.payment.v0.models.refund_identifier'] = PropTypes.exact({
7674
- id: PropTypes.string.isRequired,
7675
- refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
7676
- name: PropTypes.string.isRequired,
7677
- identifier: PropTypes.string.isRequired,
7678
- primary: PropTypes.bool.isRequired,
7679
- });
7680
-
7681
7734
  T['io.flow.payment.v0.enums.refund_decline_code'] = PropTypes.oneOf(['expired', 'insufficient_funds', 'unknown']);
7682
7735
  T['io.flow.payment.v0.enums.refund_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed', 'canceled']);
7683
7736
 
@@ -8365,6 +8418,7 @@ T['io.flow.billing.internal.v0.models.account_settings'] = PropTypes.exact({
8365
8418
  round_individual_transactions: PropTypes.bool.isRequired,
8366
8419
  liabilities_method: T['io.flow.billing.internal.v0.enums.account_setting_liabilities_method'].isRequired,
8367
8420
  enable_fee_reversals: PropTypes.bool.isRequired,
8421
+ record_reason_for_transactions_pending_payout: PropTypes.bool.isRequired,
8368
8422
  });
8369
8423
 
8370
8424
  T['io.flow.return.v0.models.return_source_external_vendor'] = PropTypes.exact({
@@ -8377,6 +8431,11 @@ T['io.flow.return.v0.models.return_source_flow'] = PropTypes.exact({
8377
8431
  attributes: PropTypes.objectOf(PropTypes.string),
8378
8432
  });
8379
8433
 
8434
+ T['io.flow.label.v0.models.additional_services_requested'] = PropTypes.exact({
8435
+ name: PropTypes.string.isRequired,
8436
+ description: PropTypes.string,
8437
+ });
8438
+
8380
8439
  T['io.flow.label.v0.enums.package_dimensions_source'] = PropTypes.oneOf(['provided', 'dimensions_estimated']);
8381
8440
 
8382
8441
  T['io.flow.label.v0.models.label_order_summary'] = PropTypes.exact({
@@ -11582,6 +11641,19 @@ T['io.flow.internal.v0.models.sales_record_upserted'] = PropTypes.exact({
11582
11641
  sales_record: T['io.flow.billing.reporting.csv.v0.models.sales_record'].isRequired,
11583
11642
  });
11584
11643
 
11644
+ T['io.flow.payment.v0.models.refund_reference'] = PropTypes.exact({
11645
+ id: PropTypes.string.isRequired,
11646
+ key: PropTypes.string.isRequired,
11647
+ });
11648
+
11649
+ T['io.flow.payment.v0.models.refund_identifier'] = PropTypes.exact({
11650
+ id: PropTypes.string.isRequired,
11651
+ refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
11652
+ name: PropTypes.string.isRequired,
11653
+ identifier: PropTypes.string.isRequired,
11654
+ primary: PropTypes.bool.isRequired,
11655
+ });
11656
+
11585
11657
  T['io.flow.return.v0.models.return_reason'] = PropTypes.exact({
11586
11658
  name: PropTypes.string.isRequired,
11587
11659
  });
@@ -11617,6 +11689,12 @@ T['io.flow.internal.v0.models.return_policy_item_result_deleted'] = PropTypes.ex
11617
11689
  result: T['io.flow.catalog.return.v0.models.return_policy_item_result'].isRequired,
11618
11690
  });
11619
11691
 
11692
+ T['io.flow.internal.v0.models.return_trigger_refund'] = PropTypes.exact({
11693
+ discriminator: PropTypes.oneOf(['by_refund']).isRequired,
11694
+ refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
11695
+ });
11696
+
11697
+ T['io.flow.internal.v0.unions.return_trigger'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.return_trigger_refund']]);
11620
11698
  T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
11621
11699
  T['io.flow.internal.v0.enums.keyword_type'] = PropTypes.oneOf(['positive', 'negative']);
11622
11700
 
@@ -11901,6 +11979,8 @@ T['io.flow.internal.v0.enums.duty_selection_rule'] = PropTypes.oneOf([
11901
11979
  T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
11902
11980
  positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
11903
11981
  negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
11982
+ positive_search_matches: PropTypes.arrayOf(PropTypes.string).isRequired,
11983
+ negative_search_matches: PropTypes.arrayOf(PropTypes.string).isRequired,
11904
11984
  });
11905
11985
 
11906
11986
  T['io.flow.internal.v0.models.restriction_rule_summary'] = PropTypes.exact({
@@ -12268,6 +12348,7 @@ T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'] = Prop
12268
12348
  });
12269
12349
 
12270
12350
  T['io.flow.internal.v0.enums.organization_restriction_risk_level'] = PropTypes.oneOf(['5', '15']);
12351
+ T['io.flow.internal.v0.enums.organization_restriction_review_type'] = PropTypes.oneOf(['all_pending', 'pending_verification']);
12271
12352
  T['io.flow.internal.v0.enums.organization_restriction_screening_status'] = PropTypes.oneOf(['in_review', 'fully_reviewed', 'rejected', 'unscreened']);
12272
12353
  T['io.flow.internal.v0.enums.organization_restriction_approval_status'] = PropTypes.oneOf(['ready', 'not-ready']);
12273
12354
 
@@ -12334,6 +12415,7 @@ T['io.flow.internal.v0.models.organization_restriction_screening_decision_form']
12334
12415
  organization_id: PropTypes.string.isRequired,
12335
12416
  approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'].isRequired,
12336
12417
  screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'].isRequired,
12418
+ review_type: T['io.flow.internal.v0.enums.organization_restriction_review_type'],
12337
12419
  risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
12338
12420
  hs_code: PropTypes.string,
12339
12421
  merchant_category_code: PropTypes.string,
@@ -14785,6 +14867,13 @@ T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
14785
14867
  vat_registration_number: PropTypes.string.isRequired,
14786
14868
  });
14787
14869
 
14870
+ T['io.flow.internal.v0.models.fulfillment_origin'] = PropTypes.exact({
14871
+ country: PropTypes.string.isRequired,
14872
+ province_code: PropTypes.string,
14873
+ });
14874
+
14875
+ T['io.flow.internal.v0.enums.logistics_responsibility'] = PropTypes.oneOf(['organization', 'flow']);
14876
+
14788
14877
  T['io.flow.internal.v0.unions.fulfillment_trigger'] = PropTypes.oneOfType([
14789
14878
  T['io.flow.internal.v0.models.fulfillment_trigger_proof'],
14790
14879
  T['io.flow.internal.v0.models.fulfillment_trigger_time'],
@@ -14798,20 +14887,13 @@ T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
14798
14887
  });
14799
14888
 
14800
14889
  T['io.flow.internal.v0.models.shopper_summary'] = PropTypes.exact({
14801
- fulfilled: T['io.flow.internal.v0.models.shopper_lines'].isRequired,
14890
+ product: T['io.flow.internal.v0.models.shopper_lines'].isRequired,
14802
14891
  fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
14803
14892
  freight: T['io.flow.internal.v0.models.shopper_freight'].isRequired,
14804
14893
  order_discount: PropTypes.number.isRequired,
14805
14894
  total: PropTypes.number.isRequired,
14806
14895
  });
14807
14896
 
14808
- T['io.flow.internal.v0.models.fulfillment_origin'] = PropTypes.exact({
14809
- country: PropTypes.string.isRequired,
14810
- province_code: PropTypes.string,
14811
- });
14812
-
14813
- T['io.flow.internal.v0.enums.logistics_responsibility'] = PropTypes.oneOf(['organization', 'flow']);
14814
-
14815
14897
  T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
14816
14898
  'millimeter',
14817
14899
  'centimeter',
@@ -15342,74 +15424,6 @@ T['io.flow.internal.v0.models.external_fulfillment_proof_tracking'] = PropTypes.
15342
15424
  fulfilled_via_replacement_order: PropTypes.bool,
15343
15425
  });
15344
15426
 
15345
- T['io.flow.tracking.v0.enums.tracking_status'] = PropTypes.oneOf([
15346
- 'label_created',
15347
- 'pending',
15348
- 'info_received',
15349
- 'picked_up',
15350
- 'in_transit',
15351
- 'out_for_delivery',
15352
- 'attempt_fail',
15353
- 'delivered',
15354
- 'exception',
15355
- 'returned',
15356
- 'expired',
15357
- ]);
15358
-
15359
- T['io.flow.tracking.v0.models.tracking_summary'] = PropTypes.exact({
15360
- id: PropTypes.string.isRequired,
15361
- status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
15362
- order_number: PropTypes.string,
15363
- });
15364
-
15365
- T['io.flow.tracking.v0.models.tracking_label_summary'] = PropTypes.exact({
15366
- id: PropTypes.string.isRequired,
15367
- tracking: T['io.flow.tracking.v0.models.tracking_summary'].isRequired,
15368
- status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
15369
- carrier: PropTypes.string.isRequired,
15370
- tracking_number: PropTypes.string.isRequired,
15371
- });
15372
-
15373
- T['io.flow.tracking.v0.models.tracking_event_summary'] = PropTypes.exact({
15374
- id: PropTypes.string.isRequired,
15375
- status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
15376
- timestamp: PropTypes.string.isRequired,
15377
- });
15378
-
15379
- T['io.flow.tracking.v0.models.tracking_event_form'] = PropTypes.exact({
15380
- tracking_label_id: PropTypes.string.isRequired,
15381
- timestamp: PropTypes.string.isRequired,
15382
- status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
15383
- description: PropTypes.string,
15384
- address: PropTypes.string,
15385
- });
15386
-
15387
- T['io.flow.internal.v0.models.export_tracking_label'] = PropTypes.exact({
15388
- id: PropTypes.string.isRequired,
15389
- carrier: PropTypes.string.isRequired,
15390
- carrier_tracking_number: PropTypes.string.isRequired,
15391
- status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
15392
- created_at: PropTypes.string.isRequired,
15393
- delivery_estimate: PropTypes.string,
15394
- description: PropTypes.string,
15395
- });
15396
-
15397
- T['io.flow.internal.v0.models.tracking_label_upserted'] = PropTypes.exact({
15398
- discriminator: PropTypes.oneOf(['tracking_label_upserted']).isRequired,
15399
- event_id: PropTypes.string.isRequired,
15400
- timestamp: PropTypes.string.isRequired,
15401
- organization: PropTypes.string.isRequired,
15402
- tracking_label: T['io.flow.internal.v0.models.export_tracking_label'].isRequired,
15403
- });
15404
-
15405
- T['io.flow.internal.v0.models.tracking_label_deleted'] = PropTypes.exact({
15406
- discriminator: PropTypes.oneOf(['tracking_label_deleted']).isRequired,
15407
- event_id: PropTypes.string.isRequired,
15408
- timestamp: PropTypes.string.isRequired,
15409
- organization: PropTypes.string.isRequired,
15410
- tracking_label: T['io.flow.internal.v0.models.export_tracking_label'].isRequired,
15411
- });
15412
-
15413
15427
  T['io.flow.internal.v0.models.time_with_timezone'] = PropTypes.exact({
15414
15428
  time: PropTypes.string.isRequired,
15415
15429
  timezone: PropTypes.string.isRequired,
@@ -16112,6 +16126,15 @@ T['io.flow.internal.v0.models.debug_transaction_fx_rate'] = PropTypes.exact({
16112
16126
  value: PropTypes.number.isRequired,
16113
16127
  });
16114
16128
 
16129
+ T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'] = PropTypes.oneOf([
16130
+ 'waiting_for_full_refund',
16131
+ 'waiting_for_fulfillment',
16132
+ 'waiting_for_in_transit',
16133
+ 'waiting_for_next_payout_date',
16134
+ 'waiting_for_tracking_info',
16135
+ 'waiting_for_positive_account_balance',
16136
+ ]);
16137
+
16115
16138
  T['io.flow.internal.v0.enums.main_transaction_status'] = PropTypes.oneOf(['scheduled', 'pending_proof']);
16116
16139
 
16117
16140
  T['io.flow.internal.v0.models.debug_order_transaction_form_order_identifier'] = PropTypes.exact({
@@ -16170,6 +16193,13 @@ T['io.flow.internal.v0.models.reporting_details'] = PropTypes.exact({
16170
16193
  refund_records: PropTypes.arrayOf(PropTypes.object),
16171
16194
  });
16172
16195
 
16196
+ T['io.flow.internal.v0.models.debug_order'] = PropTypes.exact({
16197
+ organization_id: PropTypes.string.isRequired,
16198
+ number: PropTypes.string.isRequired,
16199
+ identifiers: PropTypes.objectOf(PropTypes.string),
16200
+ submitted_at: PropTypes.string,
16201
+ });
16202
+
16173
16203
  T['io.flow.internal.v0.models.debug_label_transaction_summary'] = PropTypes.exact({
16174
16204
  id: PropTypes.string.isRequired,
16175
16205
  type: PropTypes.string.isRequired,
@@ -16590,25 +16620,6 @@ T['io.flow.common.v0.models.address'] = PropTypes.exact({
16590
16620
  longitude: PropTypes.string,
16591
16621
  });
16592
16622
 
16593
- T['io.flow.tracking.v0.models.tracking_event'] = PropTypes.exact({
16594
- id: PropTypes.string.isRequired,
16595
- address: T['io.flow.common.v0.models.address'].isRequired,
16596
- status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
16597
- timestamp: PropTypes.string.isRequired,
16598
- description: PropTypes.string,
16599
- });
16600
-
16601
- T['io.flow.tracking.v0.models.tracking_label'] = PropTypes.exact({
16602
- id: PropTypes.string.isRequired,
16603
- carrier: PropTypes.string.isRequired,
16604
- carrier_tracking_number: PropTypes.string.isRequired,
16605
- events: PropTypes.arrayOf(T['io.flow.tracking.v0.models.tracking_event']).isRequired,
16606
- status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
16607
- timestamp: PropTypes.string.isRequired,
16608
- delivery_estimate: PropTypes.string,
16609
- description: PropTypes.string,
16610
- });
16611
-
16612
16623
  T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form'] = PropTypes.exact({
16613
16624
  discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
16614
16625
  primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
@@ -16759,35 +16770,6 @@ T['io.flow.harmonization.v0.models.harmonized_landed_cost_item'] = PropTypes.exa
16759
16770
  source_address: T['io.flow.common.v0.models.address'],
16760
16771
  });
16761
16772
 
16762
- T['io.flow.internal.v0.models.export_tracking_label_event'] = PropTypes.exact({
16763
- id: PropTypes.string.isRequired,
16764
- address: T['io.flow.common.v0.models.address'],
16765
- carrier: PropTypes.string.isRequired,
16766
- carrier_timestamp: PropTypes.string.isRequired,
16767
- carrier_tracking_number: PropTypes.string.isRequired,
16768
- flow_tracking_number: PropTypes.string.isRequired,
16769
- status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
16770
- delivery_estimate: PropTypes.string,
16771
- description: PropTypes.string,
16772
- order_number: PropTypes.string,
16773
- });
16774
-
16775
- T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'] = PropTypes.exact({
16776
- discriminator: PropTypes.oneOf(['tracking_label_event_upserted_v2']).isRequired,
16777
- event_id: PropTypes.string.isRequired,
16778
- timestamp: PropTypes.string.isRequired,
16779
- organization: PropTypes.string.isRequired,
16780
- tracking_label_event: T['io.flow.internal.v0.models.export_tracking_label_event'].isRequired,
16781
- });
16782
-
16783
- T['io.flow.internal.v0.models.tracking_label_event_deleted_v2'] = PropTypes.exact({
16784
- discriminator: PropTypes.oneOf(['tracking_label_event_deleted_v2']).isRequired,
16785
- event_id: PropTypes.string.isRequired,
16786
- timestamp: PropTypes.string.isRequired,
16787
- organization: PropTypes.string.isRequired,
16788
- tracking_label_event: T['io.flow.internal.v0.models.export_tracking_label_event'].isRequired,
16789
- });
16790
-
16791
16773
  T['io.flow.internal.v0.models.destination_error'] = PropTypes.exact({
16792
16774
  id: PropTypes.string.isRequired,
16793
16775
  failed_at: PropTypes.string.isRequired,
@@ -20451,27 +20433,6 @@ T['io.flow.catalog.v0.models.attribute_version'] = PropTypes.exact({
20451
20433
  attribute: T['io.flow.catalog.v0.models.attribute'].isRequired,
20452
20434
  });
20453
20435
 
20454
- T['io.flow.tracking.v0.models.tracking_version'] = PropTypes.exact({
20455
- id: PropTypes.string.isRequired,
20456
- timestamp: PropTypes.string.isRequired,
20457
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
20458
- tracking: T['io.flow.tracking.v0.models.tracking_summary'].isRequired,
20459
- });
20460
-
20461
- T['io.flow.tracking.v0.models.tracking_label_version'] = PropTypes.exact({
20462
- id: PropTypes.string.isRequired,
20463
- timestamp: PropTypes.string.isRequired,
20464
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
20465
- tracking_label: T['io.flow.tracking.v0.models.tracking_label_summary'].isRequired,
20466
- });
20467
-
20468
- T['io.flow.tracking.v0.models.tracking_event_version'] = PropTypes.exact({
20469
- id: PropTypes.string.isRequired,
20470
- timestamp: PropTypes.string.isRequired,
20471
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
20472
- tracking_event: T['io.flow.tracking.v0.models.tracking_event_summary'].isRequired,
20473
- });
20474
-
20475
20436
  T['io.flow.ratecard.v0.models.ratecard_version'] = PropTypes.exact({
20476
20437
  id: PropTypes.string.isRequired,
20477
20438
  timestamp: PropTypes.string.isRequired,
@@ -20698,6 +20659,143 @@ T['io.flow.experience.v0.models.order_service_change'] = PropTypes.exact({
20698
20659
  to: T['io.flow.reference.v0.models.carrier_service'].isRequired,
20699
20660
  });
20700
20661
 
20662
+ T['io.flow.tracking.v0.enums.tracking_status'] = PropTypes.oneOf([
20663
+ 'label_created',
20664
+ 'pending',
20665
+ 'info_received',
20666
+ 'picked_up',
20667
+ 'in_transit',
20668
+ 'out_for_delivery',
20669
+ 'attempt_fail',
20670
+ 'delivered',
20671
+ 'exception',
20672
+ 'returned',
20673
+ 'expired',
20674
+ ]);
20675
+
20676
+ T['io.flow.tracking.v0.models.tracking_summary'] = PropTypes.exact({
20677
+ id: PropTypes.string.isRequired,
20678
+ status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
20679
+ order_number: PropTypes.string,
20680
+ });
20681
+
20682
+ T['io.flow.tracking.v0.models.tracking_version'] = PropTypes.exact({
20683
+ id: PropTypes.string.isRequired,
20684
+ timestamp: PropTypes.string.isRequired,
20685
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
20686
+ tracking: T['io.flow.tracking.v0.models.tracking_summary'].isRequired,
20687
+ });
20688
+
20689
+ T['io.flow.tracking.v0.models.tracking_label_summary'] = PropTypes.exact({
20690
+ id: PropTypes.string.isRequired,
20691
+ tracking: T['io.flow.tracking.v0.models.tracking_summary'].isRequired,
20692
+ status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
20693
+ carrier: PropTypes.string.isRequired,
20694
+ tracking_number: PropTypes.string.isRequired,
20695
+ });
20696
+
20697
+ T['io.flow.tracking.v0.models.tracking_label_version'] = PropTypes.exact({
20698
+ id: PropTypes.string.isRequired,
20699
+ timestamp: PropTypes.string.isRequired,
20700
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
20701
+ tracking_label: T['io.flow.tracking.v0.models.tracking_label_summary'].isRequired,
20702
+ });
20703
+
20704
+ T['io.flow.tracking.v0.models.tracking_event_summary'] = PropTypes.exact({
20705
+ id: PropTypes.string.isRequired,
20706
+ status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
20707
+ timestamp: PropTypes.string.isRequired,
20708
+ });
20709
+
20710
+ T['io.flow.tracking.v0.models.tracking_event_version'] = PropTypes.exact({
20711
+ id: PropTypes.string.isRequired,
20712
+ timestamp: PropTypes.string.isRequired,
20713
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
20714
+ tracking_event: T['io.flow.tracking.v0.models.tracking_event_summary'].isRequired,
20715
+ });
20716
+
20717
+ T['io.flow.tracking.v0.models.tracking_event_form'] = PropTypes.exact({
20718
+ tracking_label_id: PropTypes.string.isRequired,
20719
+ timestamp: PropTypes.string.isRequired,
20720
+ status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
20721
+ description: PropTypes.string,
20722
+ address: PropTypes.string,
20723
+ });
20724
+
20725
+ T['io.flow.tracking.v0.models.tracking_event'] = PropTypes.exact({
20726
+ id: PropTypes.string.isRequired,
20727
+ address: T['io.flow.common.v0.models.address'].isRequired,
20728
+ status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
20729
+ timestamp: PropTypes.string.isRequired,
20730
+ description: PropTypes.string,
20731
+ });
20732
+
20733
+ T['io.flow.tracking.v0.models.tracking_label'] = PropTypes.exact({
20734
+ id: PropTypes.string.isRequired,
20735
+ carrier: PropTypes.string.isRequired,
20736
+ carrier_tracking_number: PropTypes.string.isRequired,
20737
+ events: PropTypes.arrayOf(T['io.flow.tracking.v0.models.tracking_event']).isRequired,
20738
+ status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
20739
+ timestamp: PropTypes.string.isRequired,
20740
+ delivery_estimate: PropTypes.string,
20741
+ description: PropTypes.string,
20742
+ });
20743
+
20744
+ T['io.flow.internal.v0.models.export_tracking_label_event'] = PropTypes.exact({
20745
+ id: PropTypes.string.isRequired,
20746
+ address: T['io.flow.common.v0.models.address'],
20747
+ carrier: PropTypes.string.isRequired,
20748
+ carrier_timestamp: PropTypes.string.isRequired,
20749
+ carrier_tracking_number: PropTypes.string.isRequired,
20750
+ flow_tracking_number: PropTypes.string.isRequired,
20751
+ status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
20752
+ delivery_estimate: PropTypes.string,
20753
+ description: PropTypes.string,
20754
+ order_number: PropTypes.string,
20755
+ });
20756
+
20757
+ T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'] = PropTypes.exact({
20758
+ discriminator: PropTypes.oneOf(['tracking_label_event_upserted_v2']).isRequired,
20759
+ event_id: PropTypes.string.isRequired,
20760
+ timestamp: PropTypes.string.isRequired,
20761
+ organization: PropTypes.string.isRequired,
20762
+ tracking_label_event: T['io.flow.internal.v0.models.export_tracking_label_event'].isRequired,
20763
+ });
20764
+
20765
+ T['io.flow.internal.v0.models.tracking_label_event_deleted_v2'] = PropTypes.exact({
20766
+ discriminator: PropTypes.oneOf(['tracking_label_event_deleted_v2']).isRequired,
20767
+ event_id: PropTypes.string.isRequired,
20768
+ timestamp: PropTypes.string.isRequired,
20769
+ organization: PropTypes.string.isRequired,
20770
+ tracking_label_event: T['io.flow.internal.v0.models.export_tracking_label_event'].isRequired,
20771
+ });
20772
+
20773
+ T['io.flow.internal.v0.models.export_tracking_label'] = PropTypes.exact({
20774
+ id: PropTypes.string.isRequired,
20775
+ carrier: PropTypes.string.isRequired,
20776
+ carrier_tracking_number: PropTypes.string.isRequired,
20777
+ status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
20778
+ created_at: PropTypes.string.isRequired,
20779
+ delivery_estimate: PropTypes.string,
20780
+ description: PropTypes.string,
20781
+ });
20782
+
20783
+ T['io.flow.internal.v0.models.tracking_label_upserted'] = PropTypes.exact({
20784
+ discriminator: PropTypes.oneOf(['tracking_label_upserted']).isRequired,
20785
+ event_id: PropTypes.string.isRequired,
20786
+ timestamp: PropTypes.string.isRequired,
20787
+ organization: PropTypes.string.isRequired,
20788
+ tracking_label: T['io.flow.internal.v0.models.export_tracking_label'].isRequired,
20789
+ });
20790
+
20791
+ T['io.flow.internal.v0.models.tracking_label_deleted'] = PropTypes.exact({
20792
+ discriminator: PropTypes.oneOf(['tracking_label_deleted']).isRequired,
20793
+ event_id: PropTypes.string.isRequired,
20794
+ timestamp: PropTypes.string.isRequired,
20795
+ organization: PropTypes.string.isRequired,
20796
+ tracking_label: T['io.flow.internal.v0.models.export_tracking_label'].isRequired,
20797
+ });
20798
+
20701
20799
  T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
20702
20800
 
20703
20801
  T['io.flow.organization.v0.models.organization_put_form'] = PropTypes.exact({
@@ -20916,45 +21014,37 @@ T['io.flow.internal.v0.models.debug_transaction_fx'] = PropTypes.exact({
20916
21014
  transaction_effective_rate: T['io.flow.internal.v0.models.debug_transaction_fx_rate'],
20917
21015
  });
20918
21016
 
20919
- T['io.flow.internal.v0.models.debug_transaction_details_status'] = PropTypes.exact({
20920
- status: T['io.flow.internal.v0.enums.main_transaction_status'].isRequired,
20921
- description: PropTypes.string.isRequired,
21017
+ T['io.flow.billing.v0.models.pending_payout_transaction_reason'] = PropTypes.exact({
21018
+ code: T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'].isRequired,
21019
+ created_at: PropTypes.string.isRequired,
20922
21020
  });
20923
21021
 
20924
- T['io.flow.internal.v0.models.debug_transaction_queued'] = PropTypes.exact({
21022
+ T['io.flow.billing.v0.models.organization_pending_payout_transaction'] = PropTypes.exact({
20925
21023
  id: PropTypes.string.isRequired,
20926
- reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
20927
- });
20928
-
20929
- T['io.flow.internal.v0.models.debug_order'] = PropTypes.exact({
20930
- organization_id: PropTypes.string.isRequired,
20931
- number: PropTypes.string.isRequired,
20932
- identifiers: PropTypes.objectOf(PropTypes.string),
20933
- submitted_at: PropTypes.string,
21024
+ reason: T['io.flow.billing.v0.models.pending_payout_transaction_reason'].isRequired,
21025
+ timeout: T['io.flow.billing.v0.models.pending_payout_transaction_timeout'],
21026
+ created_at: PropTypes.string.isRequired,
21027
+ updated_at: PropTypes.string.isRequired,
21028
+ deleted_at: PropTypes.string,
20934
21029
  });
20935
21030
 
20936
- T['io.flow.internal.v0.models.debug_transaction_details'] = PropTypes.exact({
21031
+ T['io.flow.billing.v0.models.channel_pending_payout_transaction'] = PropTypes.exact({
20937
21032
  id: PropTypes.string.isRequired,
20938
- status: T['io.flow.internal.v0.models.debug_transaction_details_status'].isRequired,
20939
- fx: T['io.flow.internal.v0.models.debug_transaction_fx'],
20940
- });
20941
-
20942
- T['io.flow.internal.v0.models.organization_debug_transaction'] = PropTypes.exact({
20943
- debug: T['io.flow.internal.v0.models.debug_transaction_details'],
20944
- order: T['io.flow.internal.v0.models.debug_order'],
20945
- queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
21033
+ reason: T['io.flow.billing.v0.models.pending_payout_transaction_reason'].isRequired,
21034
+ timeout: T['io.flow.billing.v0.models.pending_payout_transaction_timeout'],
21035
+ created_at: PropTypes.string.isRequired,
21036
+ updated_at: PropTypes.string.isRequired,
21037
+ deleted_at: PropTypes.string,
20946
21038
  });
20947
21039
 
20948
- T['io.flow.internal.v0.models.internal_debug_transaction'] = PropTypes.exact({
20949
- debug: T['io.flow.internal.v0.models.debug_transaction_details'],
20950
- order: T['io.flow.internal.v0.models.debug_order'],
20951
- queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
21040
+ T['io.flow.internal.v0.models.debug_transaction_details_status'] = PropTypes.exact({
21041
+ status: T['io.flow.internal.v0.enums.main_transaction_status'].isRequired,
21042
+ description: PropTypes.string.isRequired,
20952
21043
  });
20953
21044
 
20954
- T['io.flow.internal.v0.models.channel_debug_transaction'] = PropTypes.exact({
20955
- debug: T['io.flow.internal.v0.models.debug_transaction_details'],
20956
- order: T['io.flow.internal.v0.models.debug_order'],
20957
- queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
21045
+ T['io.flow.internal.v0.models.debug_transaction_queued'] = PropTypes.exact({
21046
+ id: PropTypes.string.isRequired,
21047
+ reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
20958
21048
  });
20959
21049
 
20960
21050
  T['io.flow.common.v0.enums.unit_of_time'] = PropTypes.oneOf(['year', 'month', 'week', 'day', 'hour', 'minute']);
@@ -24901,6 +24991,28 @@ T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
24901
24991
  reporting: T['io.flow.internal.v0.models.reporting_details'].isRequired,
24902
24992
  });
24903
24993
 
24994
+ T['io.flow.internal.v0.models.debug_transaction_details'] = PropTypes.exact({
24995
+ transaction: T['io.flow.billing.v0.models.transaction'].isRequired,
24996
+ status: T['io.flow.internal.v0.models.debug_transaction_details_status'].isRequired,
24997
+ payout: T['io.flow.billing.v0.models.pending_payout_transaction_reason'],
24998
+ fx: T['io.flow.internal.v0.models.debug_transaction_fx'],
24999
+ });
25000
+
25001
+ T['io.flow.internal.v0.models.organization_debug_transaction'] = PropTypes.exact({
25002
+ debug: T['io.flow.internal.v0.models.debug_transaction_details'],
25003
+ queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
25004
+ });
25005
+
25006
+ T['io.flow.internal.v0.models.internal_debug_transaction'] = PropTypes.exact({
25007
+ debug: T['io.flow.internal.v0.models.debug_transaction_details'],
25008
+ queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
25009
+ });
25010
+
25011
+ T['io.flow.internal.v0.models.channel_debug_transaction'] = PropTypes.exact({
25012
+ debug: T['io.flow.internal.v0.models.debug_transaction_details'],
25013
+ queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
25014
+ });
25015
+
24904
25016
  T['io.flow.common.v0.models.money'] = PropTypes.exact({
24905
25017
  amount: PropTypes.number.isRequired,
24906
25018
  currency: PropTypes.string.isRequired,
@@ -26049,6 +26161,7 @@ T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
26049
26161
  url: PropTypes.string,
26050
26162
  approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'],
26051
26163
  screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'],
26164
+ review_type: T['io.flow.internal.v0.enums.organization_restriction_review_type'],
26052
26165
  risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
26053
26166
  hs_code: PropTypes.string,
26054
26167
  merchant_category_code: PropTypes.string,
@@ -27026,22 +27139,36 @@ T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
27026
27139
  id: PropTypes.string.isRequired,
27027
27140
  organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
27028
27141
  number: PropTypes.string.isRequired,
27142
+ type: T['io.flow.experience.v0.enums.order_type'].isRequired,
27143
+ submitted_at: PropTypes.string.isRequired,
27144
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
27145
+ currency: PropTypes.string.isRequired,
27146
+ });
27147
+
27148
+ T['io.flow.internal.v0.models.return'] = PropTypes.exact({
27149
+ id: PropTypes.string.isRequired,
27150
+ order: T['io.flow.internal.v0.models.order_summary'].isRequired,
27151
+ shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
27152
+ merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
27153
+ sequence_number: PropTypes.number.isRequired,
27154
+ posting_cutoff: PropTypes.string.isRequired,
27155
+ trigger: T['io.flow.internal.v0.unions.return_trigger'].isRequired,
27156
+ returned_at: PropTypes.string.isRequired,
27029
27157
  });
27030
27158
 
27031
27159
  T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
27032
27160
  id: PropTypes.string.isRequired,
27033
- fulfilled_at: PropTypes.string.isRequired,
27034
- owner: T['io.flow.internal.v0.enums.logistics_responsibility'].isRequired,
27035
- currency: PropTypes.string.isRequired,
27036
27161
  order: T['io.flow.internal.v0.models.order_summary'].isRequired,
27037
- origin: T['io.flow.internal.v0.models.fulfillment_origin'],
27038
27162
  shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
27039
27163
  merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
27040
- trigger: T['io.flow.internal.v0.unions.fulfillment_trigger'].isRequired,
27041
- completes_order: PropTypes.bool.isRequired,
27042
27164
  sequence_number: PropTypes.number.isRequired,
27043
27165
  posting_cutoff: PropTypes.string.isRequired,
27166
+ trigger: T['io.flow.internal.v0.unions.fulfillment_trigger'].isRequired,
27167
+ fulfilled_at: PropTypes.string.isRequired,
27168
+ owner: T['io.flow.internal.v0.enums.logistics_responsibility'].isRequired,
27169
+ origin: T['io.flow.internal.v0.models.fulfillment_origin'],
27044
27170
  business: T['io.flow.internal.v0.models.fulfillment_business'],
27171
+ completes_order: PropTypes.bool.isRequired,
27045
27172
  });
27046
27173
 
27047
27174
  T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
@@ -28152,6 +28279,7 @@ T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
28152
28279
  shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'].isRequired,
28153
28280
  label_request_method: T['io.flow.label.v0.enums.label_request_method'],
28154
28281
  label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
28282
+ additional_services_requested: PropTypes.arrayOf(T['io.flow.label.v0.models.additional_services_requested']),
28155
28283
  created_at: PropTypes.string,
28156
28284
  updated_at: PropTypes.string,
28157
28285
  });
@@ -29172,6 +29300,100 @@ T['io.flow.catalog.v0.models.local'] = PropTypes.exact({
29172
29300
  price_attributes: PropTypes.objectOf(T['io.flow.common.v0.models.price_with_base']),
29173
29301
  });
29174
29302
 
29303
+ T['io.flow.internal.v0.models.localized_price_book_item'] = PropTypes.exact({
29304
+ id: PropTypes.string.isRequired,
29305
+ item_id: PropTypes.string.isRequired,
29306
+ item_number: PropTypes.string.isRequired,
29307
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
29308
+ local: T['io.flow.catalog.v0.models.local'],
29309
+ price_book_item_id: PropTypes.string.isRequired,
29310
+ price_book_key: PropTypes.string.isRequired,
29311
+ price_book_item_price: T['io.flow.common.v0.models.price'].isRequired,
29312
+ schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
29313
+ });
29314
+
29315
+ T['io.flow.internal.v0.models.localized_price_book_item_upserted'] = PropTypes.exact({
29316
+ discriminator: PropTypes.oneOf(['localized_price_book_item_upserted']).isRequired,
29317
+ event_id: PropTypes.string.isRequired,
29318
+ timestamp: PropTypes.string.isRequired,
29319
+ organization: PropTypes.string.isRequired,
29320
+ item: T['io.flow.internal.v0.models.localized_price_book_item'].isRequired,
29321
+ });
29322
+
29323
+ T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
29324
+ id: PropTypes.string.isRequired,
29325
+ number: PropTypes.string.isRequired,
29326
+ locale: PropTypes.string.isRequired,
29327
+ name: PropTypes.string.isRequired,
29328
+ price: T['io.flow.common.v0.models.price'].isRequired,
29329
+ categories: PropTypes.arrayOf(PropTypes.string).isRequired,
29330
+ description: PropTypes.string,
29331
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
29332
+ dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
29333
+ images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
29334
+ local: T['io.flow.catalog.v0.models.local'],
29335
+ created_at: PropTypes.string,
29336
+ updated_at: PropTypes.string,
29337
+ });
29338
+
29339
+ T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
29340
+ id: PropTypes.string.isRequired,
29341
+ item: T['io.flow.catalog.v0.models.item'].isRequired,
29342
+ status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
29343
+ });
29344
+
29345
+ T['io.flow.catalog.v0.models.subcatalog_item_version'] = PropTypes.exact({
29346
+ id: PropTypes.string.isRequired,
29347
+ timestamp: PropTypes.string.isRequired,
29348
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
29349
+ subcatalog_item: T['io.flow.catalog.v0.models.subcatalog_item'].isRequired,
29350
+ });
29351
+
29352
+ T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
29353
+ id: PropTypes.string.isRequired,
29354
+ timestamp: PropTypes.string.isRequired,
29355
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
29356
+ item: T['io.flow.catalog.v0.models.item'].isRequired,
29357
+ });
29358
+
29359
+ T['io.flow.internal.v0.models.localized_item_upserted_v2'] = PropTypes.exact({
29360
+ discriminator: PropTypes.oneOf(['localized_item_upserted_v2']).isRequired,
29361
+ event_id: PropTypes.string.isRequired,
29362
+ timestamp: PropTypes.string.isRequired,
29363
+ organization: PropTypes.string.isRequired,
29364
+ id: PropTypes.string.isRequired,
29365
+ item: T['io.flow.catalog.v0.models.item'].isRequired,
29366
+ item_schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
29367
+ });
29368
+
29369
+ T['io.flow.internal.v0.models.item_query_response'] = PropTypes.exact({
29370
+ q: PropTypes.string.isRequired,
29371
+ items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
29372
+ });
29373
+
29374
+ T['io.flow.internal.v0.models.item_filter_value_response'] = PropTypes.exact({
29375
+ value: PropTypes.string.isRequired,
29376
+ items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
29377
+ });
29378
+
29379
+ T['io.flow.internal.v0.models.item_filter_response'] = PropTypes.exact({
29380
+ filter: PropTypes.string.isRequired,
29381
+ responses: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_filter_value_response']).isRequired,
29382
+ });
29383
+
29384
+ T['io.flow.experience.v0.models.checkout_item_content'] = PropTypes.exact({
29385
+ item: T['io.flow.catalog.v0.models.item'].isRequired,
29386
+ name: PropTypes.string.isRequired,
29387
+ description: PropTypes.string,
29388
+ attributes: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content_attribute']).isRequired,
29389
+ image: T['io.flow.catalog.v0.models.image'],
29390
+ });
29391
+
29392
+ T['io.flow.internal.v0.models.checkout_content'] = PropTypes.exact({
29393
+ global: T['io.flow.internal.v0.models.checkout_content_summary'],
29394
+ items: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content']).isRequired,
29395
+ });
29396
+
29175
29397
  T['io.flow.experience.v0.models.localized_line_item'] = PropTypes.exact({
29176
29398
  id: PropTypes.string,
29177
29399
  number: PropTypes.string.isRequired,
@@ -29442,115 +29664,6 @@ T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
29442
29664
  errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
29443
29665
  });
29444
29666
 
29445
- T['io.flow.internal.v0.models.checkout_submission'] = PropTypes.exact({
29446
- builder: T['io.flow.experience.v0.models.order_builder'].isRequired,
29447
- action: T['io.flow.payment.v0.unions.authorization_result_action'],
29448
- });
29449
-
29450
- T['io.flow.internal.v0.models.checkout_order_views'] = PropTypes.exact({
29451
- checkout: T['io.flow.internal.v0.unions.checkout_order'].isRequired,
29452
- experience: T['io.flow.experience.v0.models.order'].isRequired,
29453
- });
29454
-
29455
- T['io.flow.internal.v0.models.checkout_order_views_response'] = PropTypes.exact({
29456
- checkout: T['io.flow.internal.v0.models.v2_checkout'].isRequired,
29457
- views: T['io.flow.internal.v0.models.checkout_order_views'].isRequired,
29458
- });
29459
-
29460
- T['io.flow.internal.v0.models.localized_price_book_item'] = PropTypes.exact({
29461
- id: PropTypes.string.isRequired,
29462
- item_id: PropTypes.string.isRequired,
29463
- item_number: PropTypes.string.isRequired,
29464
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
29465
- local: T['io.flow.catalog.v0.models.local'],
29466
- price_book_item_id: PropTypes.string.isRequired,
29467
- price_book_key: PropTypes.string.isRequired,
29468
- price_book_item_price: T['io.flow.common.v0.models.price'].isRequired,
29469
- schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
29470
- });
29471
-
29472
- T['io.flow.internal.v0.models.localized_price_book_item_upserted'] = PropTypes.exact({
29473
- discriminator: PropTypes.oneOf(['localized_price_book_item_upserted']).isRequired,
29474
- event_id: PropTypes.string.isRequired,
29475
- timestamp: PropTypes.string.isRequired,
29476
- organization: PropTypes.string.isRequired,
29477
- item: T['io.flow.internal.v0.models.localized_price_book_item'].isRequired,
29478
- });
29479
-
29480
- T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
29481
- id: PropTypes.string.isRequired,
29482
- number: PropTypes.string.isRequired,
29483
- locale: PropTypes.string.isRequired,
29484
- name: PropTypes.string.isRequired,
29485
- price: T['io.flow.common.v0.models.price'].isRequired,
29486
- categories: PropTypes.arrayOf(PropTypes.string).isRequired,
29487
- description: PropTypes.string,
29488
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
29489
- dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
29490
- images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
29491
- local: T['io.flow.catalog.v0.models.local'],
29492
- created_at: PropTypes.string,
29493
- updated_at: PropTypes.string,
29494
- });
29495
-
29496
- T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
29497
- id: PropTypes.string.isRequired,
29498
- item: T['io.flow.catalog.v0.models.item'].isRequired,
29499
- status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
29500
- });
29501
-
29502
- T['io.flow.catalog.v0.models.subcatalog_item_version'] = PropTypes.exact({
29503
- id: PropTypes.string.isRequired,
29504
- timestamp: PropTypes.string.isRequired,
29505
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
29506
- subcatalog_item: T['io.flow.catalog.v0.models.subcatalog_item'].isRequired,
29507
- });
29508
-
29509
- T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
29510
- id: PropTypes.string.isRequired,
29511
- timestamp: PropTypes.string.isRequired,
29512
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
29513
- item: T['io.flow.catalog.v0.models.item'].isRequired,
29514
- });
29515
-
29516
- T['io.flow.internal.v0.models.localized_item_upserted_v2'] = PropTypes.exact({
29517
- discriminator: PropTypes.oneOf(['localized_item_upserted_v2']).isRequired,
29518
- event_id: PropTypes.string.isRequired,
29519
- timestamp: PropTypes.string.isRequired,
29520
- organization: PropTypes.string.isRequired,
29521
- id: PropTypes.string.isRequired,
29522
- item: T['io.flow.catalog.v0.models.item'].isRequired,
29523
- item_schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
29524
- });
29525
-
29526
- T['io.flow.internal.v0.models.item_query_response'] = PropTypes.exact({
29527
- q: PropTypes.string.isRequired,
29528
- items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
29529
- });
29530
-
29531
- T['io.flow.internal.v0.models.item_filter_value_response'] = PropTypes.exact({
29532
- value: PropTypes.string.isRequired,
29533
- items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
29534
- });
29535
-
29536
- T['io.flow.internal.v0.models.item_filter_response'] = PropTypes.exact({
29537
- filter: PropTypes.string.isRequired,
29538
- responses: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_filter_value_response']).isRequired,
29539
- });
29540
-
29541
- T['io.flow.experience.v0.models.checkout_item_content'] = PropTypes.exact({
29542
- item: T['io.flow.catalog.v0.models.item'].isRequired,
29543
- name: PropTypes.string.isRequired,
29544
- description: PropTypes.string,
29545
- attributes: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content_attribute']).isRequired,
29546
- image: T['io.flow.catalog.v0.models.image'],
29547
- });
29548
-
29549
- T['io.flow.internal.v0.models.checkout_content'] = PropTypes.exact({
29550
- global: T['io.flow.internal.v0.models.checkout_content_summary'],
29551
- items: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content']).isRequired,
29552
- });
29553
-
29554
29667
  T['io.flow.internal.v0.models.v1_checkout'] = PropTypes.exact({
29555
29668
  id: PropTypes.string.isRequired,
29556
29669
  organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
@@ -29571,6 +29684,21 @@ T['io.flow.internal.v0.models.v1_checkout'] = PropTypes.exact({
29571
29684
  customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
29572
29685
  });
29573
29686
 
29687
+ T['io.flow.internal.v0.models.checkout_submission'] = PropTypes.exact({
29688
+ builder: T['io.flow.experience.v0.models.order_builder'].isRequired,
29689
+ action: T['io.flow.payment.v0.unions.authorization_result_action'],
29690
+ });
29691
+
29692
+ T['io.flow.internal.v0.models.checkout_order_views'] = PropTypes.exact({
29693
+ checkout: T['io.flow.internal.v0.unions.checkout_order'].isRequired,
29694
+ experience: T['io.flow.experience.v0.models.order'].isRequired,
29695
+ });
29696
+
29697
+ T['io.flow.internal.v0.models.checkout_order_views_response'] = PropTypes.exact({
29698
+ checkout: T['io.flow.internal.v0.models.v2_checkout'].isRequired,
29699
+ views: T['io.flow.internal.v0.models.checkout_order_views'].isRequired,
29700
+ });
29701
+
29574
29702
  T['io.flow.internal.v0.models.checkout_bundle'] = PropTypes.exact({
29575
29703
  cart: T['io.flow.shopify.v0.models.shopify_cart'],
29576
29704
  order: T['io.flow.experience.v0.models.order'].isRequired,
@@ -29590,6 +29718,18 @@ T['io.flow.internal.v0.models.checkout_bundle'] = PropTypes.exact({
29590
29718
  customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
29591
29719
  });
29592
29720
 
29721
+ T['io.flow.internal.v0.models.channel_fulfillment'] = PropTypes.exact({
29722
+ org_id: PropTypes.string.isRequired,
29723
+ flow_order_number: PropTypes.string.isRequired,
29724
+ shopify_order_number: PropTypes.string.isRequired,
29725
+ legal_name: PropTypes.string,
29726
+ flow_tracking_status: T['io.flow.tracking.v0.enums.tracking_status'],
29727
+ order_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
29728
+ label_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
29729
+ carrier: T['io.flow.reference.v0.models.carrier_service'],
29730
+ tracking_numbers: PropTypes.arrayOf(PropTypes.string),
29731
+ });
29732
+
29593
29733
  T['io.flow.internal.v0.models.shipped_item_value'] = PropTypes.exact({
29594
29734
  item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
29595
29735
  taxes: T['io.flow.common.v0.models.price_with_base'].isRequired,
@@ -29865,6 +30005,7 @@ T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
29865
30005
  round_individual_transactions: PropTypes.bool.isRequired,
29866
30006
  liabilities_method: T['io.flow.internal.v0.enums.account_setting_liabilities_method'].isRequired,
29867
30007
  enable_fee_reversals: PropTypes.bool.isRequired,
30008
+ record_reason_for_transactions_pending_payout: PropTypes.bool.isRequired,
29868
30009
  });
29869
30010
 
29870
30011
  T['io.flow.internal.v0.models.account_settings_upserted'] = PropTypes.exact({
@@ -30936,7 +31077,7 @@ T['io.flow.internal.v0.enums.auto_restrict_rule'] = PropTypes.oneOf([
30936
31077
  'prr-599c6246a1a24752aeb85e8f79030781',
30937
31078
  'prr-79e41878ea564f9c81cc432a0e84703f',
30938
31079
  'prr-f29c26dc09e04536bc77f9c32786ed70',
30939
- 'prr-0522d426a5b741c791ba05496c35297a',
31080
+ 'prr-b186129720f0446eb452a68518437c95',
30940
31081
  ]);
30941
31082
 
30942
31083
  T['io.flow.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf([
@@ -34290,6 +34431,7 @@ export const channelCurrencySettingForm = T['io.flow.internal.v0.models.channel_
34290
34431
  export const channelCurrencySettingUpserted = T['io.flow.internal.v0.models.channel_currency_setting_upserted'];
34291
34432
  export const channelDebugTransaction = T['io.flow.internal.v0.models.channel_debug_transaction'];
34292
34433
  export const channelForm = T['io.flow.internal.v0.models.channel_form'];
34434
+ export const channelFulfillment = T['io.flow.internal.v0.models.channel_fulfillment'];
34293
34435
  export const channelMembership = T['io.flow.internal.v0.models.channel_membership'];
34294
34436
  export const channelMembershipForm = T['io.flow.internal.v0.models.channel_membership_form'];
34295
34437
  export const channelMembershipPutForm = T['io.flow.internal.v0.models.channel_membership_put_form'];
@@ -35688,6 +35830,7 @@ export const organizationPaymentStatus = T['io.flow.internal.v0.enums.organizati
35688
35830
  export const organizationRestrictionApprovalStatus = T['io.flow.internal.v0.enums.organization_restriction_approval_status'];
35689
35831
  export const organizationRestrictionNoteForm = T['io.flow.internal.v0.models.organization_restriction_note_form'];
35690
35832
  export const organizationRestrictionNoteType = T['io.flow.internal.v0.enums.organization_restriction_note_type'];
35833
+ export const organizationRestrictionReviewType = T['io.flow.internal.v0.enums.organization_restriction_review_type'];
35691
35834
  export const organizationRestrictionRiskLevel = T['io.flow.internal.v0.enums.organization_restriction_risk_level'];
35692
35835
  export const organizationRestrictionScreeningDecisionForm = T['io.flow.internal.v0.models.organization_restriction_screening_decision_form'];
35693
35836
  export const organizationRestrictionScreeningStatus = T['io.flow.internal.v0.enums.organization_restriction_screening_status'];
@@ -35942,11 +36085,14 @@ export const resyncByHs6Origin = T['io.flow.internal.v0.models.resync_by_hs6_ori
35942
36085
  export const resyncFallbackRates = T['io.flow.internal.v0.models.resync_fallback_rates'];
35943
36086
  export const retracking = T['io.flow.internal.v0.models.retracking'];
35944
36087
  export const retrackingForm = T['io.flow.internal.v0.models.retracking_form'];
36088
+ export const UNSAFE_return = T['io.flow.internal.v0.models.return'];
35945
36089
  export const returnPolicyDeleted = T['io.flow.internal.v0.models.return_policy_deleted'];
35946
36090
  export const returnPolicyItemResultDeleted = T['io.flow.internal.v0.models.return_policy_item_result_deleted'];
35947
36091
  export const returnPolicyItemResultUpserted = T['io.flow.internal.v0.models.return_policy_item_result_upserted'];
35948
36092
  export const returnPolicyUpserted = T['io.flow.internal.v0.models.return_policy_upserted'];
35949
36093
  export const returnSummary = T['io.flow.internal.v0.models.return_summary'];
36094
+ export const returnTrigger = T['io.flow.internal.v0.unions.return_trigger'];
36095
+ export const returnTriggerRefund = T['io.flow.internal.v0.models.return_trigger_refund'];
35950
36096
  export const riskCheck = T['io.flow.internal.v0.enums.risk_check'];
35951
36097
  export const riskEvaluation = T['io.flow.internal.v0.enums.risk_evaluation'];
35952
36098
  export const routingAccount = T['io.flow.internal.v0.models.routing_account'];