@flowio/api-internal-prop-types 9.24.77 → 9.24.79

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.
@@ -1764,6 +1764,10 @@ T['io.flow.billing.reporting.csv.v0.models.reporting_debug_missing_subsidies'] =
1764
1764
  duty: PropTypes.bool,
1765
1765
  });
1766
1766
 
1767
+ T['io.flow.billing.reporting.csv.v0.models.reporting_return'] = PropTypes.exact({
1768
+ placeholder: PropTypes.string.isRequired,
1769
+ });
1770
+
1767
1771
  T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'] = PropTypes.exact({
1768
1772
  transaction: PropTypes.number.isRequired,
1769
1773
  merchant: PropTypes.number.isRequired,
@@ -5014,6 +5018,11 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exa
5014
5018
  order_updated_at: PropTypes.string,
5015
5019
  });
5016
5020
 
5021
+ T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
5022
+ order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
5023
+ external_order: PropTypes.object.isRequired,
5024
+ });
5025
+
5017
5026
  T['io.flow.shopify.markets.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
5018
5027
  message: PropTypes.string.isRequired,
5019
5028
  reason: PropTypes.string.isRequired,
@@ -6341,11 +6350,23 @@ T['io.flow.stripe.v0.models.card_networks'] = PropTypes.exact({
6341
6350
  preferred: PropTypes.string,
6342
6351
  });
6343
6352
 
6353
+ T['io.flow.stripe.v0.models.payment_method_options_card_form'] = PropTypes.exact({
6354
+ network: PropTypes.string,
6355
+ request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
6356
+ stored_credential_transaction_type: T['io.flow.stripe.v0.enums.stored_credential_transaction_type'],
6357
+ mcc: PropTypes.string,
6358
+ });
6359
+
6360
+ T['io.flow.stripe.v0.models.payment_method_options_form'] = PropTypes.exact({
6361
+ card: T['io.flow.stripe.v0.models.payment_method_options_card_form'],
6362
+ });
6363
+
6344
6364
  T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
6345
6365
  network: PropTypes.string,
6346
6366
  request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
6347
6367
  stored_credential_transaction_type: T['io.flow.stripe.v0.enums.stored_credential_transaction_type'],
6348
6368
  mcc: PropTypes.string,
6369
+ capture_before: PropTypes.number,
6349
6370
  });
6350
6371
 
6351
6372
  T['io.flow.stripe.v0.enums.payment_intent_status'] = PropTypes.oneOf([
@@ -6466,7 +6487,7 @@ T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact
6466
6487
  off_session: PropTypes.bool,
6467
6488
  payment_method: PropTypes.string,
6468
6489
  payment_method_data: T['io.flow.stripe.v0.unions.payment_method_data'],
6469
- payment_method_options: T['io.flow.stripe.v0.models.payment_method_options'],
6490
+ payment_method_options: T['io.flow.stripe.v0.models.payment_method_options_form'],
6470
6491
  payment_method_types: PropTypes.arrayOf(PropTypes.string),
6471
6492
  receipt_email: PropTypes.string,
6472
6493
  save_payment_method: PropTypes.bool,
@@ -6530,6 +6551,27 @@ T['io.flow.stripe.v0.models.klarna_attachment'] = PropTypes.exact({
6530
6551
  marketplace_seller_info: PropTypes.arrayOf(T['io.flow.stripe.v0.models.klarna_marketplace_seller_info']),
6531
6552
  });
6532
6553
 
6554
+ T['io.flow.stripe.v0.enums.feature_availability'] = PropTypes.oneOf(['available', 'unavailable']);
6555
+
6556
+ T['io.flow.stripe.v0.models.overcapture'] = PropTypes.exact({
6557
+ maximum_amount_capturable: PropTypes.number,
6558
+ status: T['io.flow.stripe.v0.enums.feature_availability'],
6559
+ });
6560
+
6561
+ T['io.flow.stripe.v0.models.multicapture'] = PropTypes.exact({
6562
+ status: T['io.flow.stripe.v0.enums.feature_availability'],
6563
+ });
6564
+
6565
+ T['io.flow.stripe.v0.models.incremental_authorization'] = PropTypes.exact({
6566
+ status: T['io.flow.stripe.v0.enums.feature_availability'],
6567
+ });
6568
+
6569
+ T['io.flow.stripe.v0.enums.extended_authorization_status'] = PropTypes.oneOf(['enabled', 'disabled']);
6570
+
6571
+ T['io.flow.stripe.v0.models.extended_authorization'] = PropTypes.exact({
6572
+ status: T['io.flow.stripe.v0.enums.extended_authorization_status'],
6573
+ });
6574
+
6533
6575
  T['io.flow.stripe.v0.enums.decline_code'] = PropTypes.oneOf([
6534
6576
  'approve_with_id',
6535
6577
  'call_issuer',
@@ -6574,6 +6616,9 @@ T['io.flow.stripe.v0.enums.decline_code'] = PropTypes.oneOf([
6574
6616
  'transaction_not_allowed',
6575
6617
  'try_again_later',
6576
6618
  'withdrawal_count_limit_exceeded',
6619
+ 'previously_declined_do_not_retry',
6620
+ 'highest_risk_level',
6621
+ 'requested_block_on_incorrect_cvc',
6577
6622
  ]);
6578
6623
 
6579
6624
  T['io.flow.stripe.v0.enums.error_type'] = PropTypes.oneOf([
@@ -6650,7 +6695,7 @@ T['io.flow.stripe.v0.models.payment_intent_form'] = PropTypes.exact({
6650
6695
  on_behalf_of: PropTypes.string,
6651
6696
  payment_method: PropTypes.string,
6652
6697
  payment_method_data: T['io.flow.stripe.v0.unions.payment_method_data'],
6653
- payment_method_options: T['io.flow.stripe.v0.models.payment_method_options'],
6698
+ payment_method_options: T['io.flow.stripe.v0.models.payment_method_options_form'],
6654
6699
  payment_method_types: PropTypes.arrayOf(PropTypes.string),
6655
6700
  receipt_email: PropTypes.string,
6656
6701
  return_url: PropTypes.string,
@@ -6981,6 +7026,10 @@ T['io.flow.stripe.v0.models.payment_method_details_card_information'] = PropType
6981
7026
  issuer: PropTypes.string,
6982
7027
  wallet: T['io.flow.stripe.v0.unions.card_wallet'],
6983
7028
  network_transaction_id: PropTypes.string,
7029
+ extended_authorization: T['io.flow.stripe.v0.models.extended_authorization'],
7030
+ incremental_authorization: T['io.flow.stripe.v0.models.incremental_authorization'],
7031
+ multicapture: T['io.flow.stripe.v0.models.multicapture'],
7032
+ overcapture: T['io.flow.stripe.v0.models.overcapture'],
6984
7033
  });
6985
7034
 
6986
7035
  T['io.flow.stripe.v0.models.payment_method_details_card'] = PropTypes.exact({
@@ -7053,6 +7102,7 @@ T['io.flow.stripe.v0.models.charge_source_optional'] = PropTypes.exact({
7053
7102
  amount_refunded: PropTypes.number.isRequired,
7054
7103
  authorization_code: PropTypes.string,
7055
7104
  captured: PropTypes.bool.isRequired,
7105
+ disputed: PropTypes.bool,
7056
7106
  created: PropTypes.number.isRequired,
7057
7107
  currency: PropTypes.string.isRequired,
7058
7108
  customer: PropTypes.string,
@@ -7076,6 +7126,7 @@ T['io.flow.stripe.v0.models.charge_source_optional'] = PropTypes.exact({
7076
7126
  calculated_statement_descriptor: PropTypes.string,
7077
7127
  statement_descriptor: PropTypes.string,
7078
7128
  payment_method_details: T['io.flow.stripe.v0.unions.payment_method_details'],
7129
+ payment_method: PropTypes.string,
7079
7130
  });
7080
7131
 
7081
7132
  T['io.flow.stripe.v0.models.payment_intent_charges'] = PropTypes.exact({
@@ -7149,6 +7200,7 @@ T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
7149
7200
  currency: PropTypes.string.isRequired,
7150
7201
  customer: PropTypes.string,
7151
7202
  outcome: T['io.flow.stripe.v0.models.payment_outcome'],
7203
+ disputed: PropTypes.bool,
7152
7204
  paid: PropTypes.bool.isRequired,
7153
7205
  refunded: PropTypes.bool.isRequired,
7154
7206
  refunds: T['io.flow.stripe.v0.models.refunds'],
@@ -7168,6 +7220,7 @@ T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
7168
7220
  calculated_statement_descriptor: PropTypes.string,
7169
7221
  statement_descriptor: PropTypes.string,
7170
7222
  payment_method_details: T['io.flow.stripe.v0.unions.payment_method_details'],
7223
+ payment_method: PropTypes.string,
7171
7224
  });
7172
7225
 
7173
7226
  T['io.flow.stripe.v0.models.tos_acceptance'] = PropTypes.exact({
@@ -7250,6 +7303,12 @@ T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'] = Pro
7250
7303
  original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'].isRequired,
7251
7304
  });
7252
7305
 
7306
+ T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label_revenue_share'] = PropTypes.exact({
7307
+ label_id: PropTypes.string.isRequired,
7308
+ base_amount: PropTypes.number,
7309
+ percentage: PropTypes.number,
7310
+ });
7311
+
7253
7312
  T['io.flow.billing.csv.v0.models.billing_csv_transaction_account_source_summary'] = PropTypes.exact({
7254
7313
  id: PropTypes.string.isRequired,
7255
7314
  type: T['io.flow.billing.internal.v0.enums.account_type'].isRequired,
@@ -11469,6 +11528,32 @@ T['io.flow.payment.v0.unions.expandable_payment_processor'] = PropTypes.oneOfTyp
11469
11528
  T['io.flow.payment.v0.models.payment_processor_reference'],
11470
11529
  ]);
11471
11530
 
11531
+ T['io.flow.billing.reporting.csv.v0.models.marked_as_final'] = PropTypes.exact({
11532
+ products: PropTypes.bool.isRequired,
11533
+ shipping: PropTypes.bool.isRequired,
11534
+ });
11535
+
11536
+ T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance'] = PropTypes.exact({
11537
+ currency: PropTypes.string.isRequired,
11538
+ rate: T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance_rate'].isRequired,
11539
+ });
11540
+
11541
+ T['io.flow.billing.reporting.csv.v0.models.reporting_fulfillment'] = PropTypes.exact({
11542
+ id: PropTypes.string.isRequired,
11543
+ sequence_number: PropTypes.number.isRequired,
11544
+ fulfilled_at: PropTypes.string.isRequired,
11545
+ completes_order: PropTypes.bool.isRequired,
11546
+ payment: T['io.flow.billing.reporting.csv.v0.models.reporting_fulfillment_payment'].isRequired,
11547
+ value: T['io.flow.billing.reporting.csv.v0.models.fulfillment_shopper_breakdown'].isRequired,
11548
+ dispatch_country: T['io.flow.billing.reporting.csv.v0.models.reporting_country'],
11549
+ destination: T['io.flow.billing.reporting.csv.v0.models.reporting_destination'].isRequired,
11550
+ carrier: PropTypes.string,
11551
+ is: T['io.flow.billing.reporting.csv.v0.models.reporting_fulfillment_is'].isRequired,
11552
+ has: T['io.flow.billing.reporting.csv.v0.models.reporting_fulfillment_has'].isRequired,
11553
+ fx: T['io.flow.billing.reporting.csv.v0.models.reporting_fx'].isRequired,
11554
+ business: T['io.flow.billing.reporting.csv.v0.models.reporting_business'],
11555
+ });
11556
+
11472
11557
  T['io.flow.billing.reporting.csv.v0.models.reporting_debug'] = PropTypes.exact({
11473
11558
  console_order_link: PropTypes.string.isRequired,
11474
11559
  allocation_order_totals_delta: PropTypes.number,
@@ -11477,17 +11562,13 @@ T['io.flow.billing.reporting.csv.v0.models.reporting_debug'] = PropTypes.exact({
11477
11562
  missing_shipping_subsidies: T['io.flow.billing.reporting.csv.v0.models.reporting_debug_missing_subsidies'],
11478
11563
  });
11479
11564
 
11480
- T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance'] = PropTypes.exact({
11481
- currency: PropTypes.string.isRequired,
11482
- rate: T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance_rate'].isRequired,
11483
- });
11484
-
11485
11565
  T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_transactions'] = PropTypes.exact({
11486
11566
  adjustment: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
11487
11567
  reversal: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
11488
11568
  tax: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
11489
11569
  duty: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
11490
11570
  freight: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
11571
+ refund: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
11491
11572
  });
11492
11573
 
11493
11574
  T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_fees'] = PropTypes.exact({
@@ -11507,33 +11588,12 @@ T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_subsidies'] = Prop
11507
11588
  ccf: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
11508
11589
  });
11509
11590
 
11510
- T['io.flow.billing.reporting.csv.v0.models.marked_as_final'] = PropTypes.exact({
11511
- products: PropTypes.bool.isRequired,
11512
- shipping: PropTypes.bool.isRequired,
11513
- });
11514
-
11515
11591
  T['io.flow.billing.reporting.csv.v0.models.reporting_reconciliation'] = PropTypes.exact({
11516
11592
  date: PropTypes.string.isRequired,
11517
11593
  month: PropTypes.number.isRequired,
11518
11594
  year: PropTypes.number.isRequired,
11519
11595
  });
11520
11596
 
11521
- T['io.flow.billing.reporting.csv.v0.models.reporting_fulfillment'] = PropTypes.exact({
11522
- id: PropTypes.string.isRequired,
11523
- sequence_number: PropTypes.number.isRequired,
11524
- fulfilled_at: PropTypes.string.isRequired,
11525
- completes_order: PropTypes.bool.isRequired,
11526
- payment: T['io.flow.billing.reporting.csv.v0.models.reporting_fulfillment_payment'].isRequired,
11527
- value: T['io.flow.billing.reporting.csv.v0.models.fulfillment_shopper_breakdown'].isRequired,
11528
- dispatch_country: T['io.flow.billing.reporting.csv.v0.models.reporting_country'],
11529
- destination: T['io.flow.billing.reporting.csv.v0.models.reporting_destination'].isRequired,
11530
- carrier: PropTypes.string,
11531
- is: T['io.flow.billing.reporting.csv.v0.models.reporting_fulfillment_is'].isRequired,
11532
- has: T['io.flow.billing.reporting.csv.v0.models.reporting_fulfillment_has'].isRequired,
11533
- fx: T['io.flow.billing.reporting.csv.v0.models.reporting_fx'].isRequired,
11534
- business: T['io.flow.billing.reporting.csv.v0.models.reporting_business'],
11535
- });
11536
-
11537
11597
  T['io.flow.billing.reporting.csv.v0.models.reporting_conversion_rates'] = PropTypes.exact({
11538
11598
  merchant: PropTypes.number.isRequired,
11539
11599
  entity: PropTypes.number.isRequired,
@@ -11566,27 +11626,44 @@ T['io.flow.billing.reporting.csv.v0.models.reporting_organization_summary'] = Pr
11566
11626
  name: PropTypes.string.isRequired,
11567
11627
  });
11568
11628
 
11569
- T['io.flow.billing.reporting.csv.v0.models.sales_record_reference'] = PropTypes.exact({
11629
+ T['io.flow.billing.reporting.csv.v0.models.record_reference'] = PropTypes.exact({
11630
+ id: PropTypes.string.isRequired,
11631
+ });
11632
+
11633
+ T['io.flow.billing.reporting.csv.v0.models.refund_record'] = PropTypes.exact({
11570
11634
  id: PropTypes.string.isRequired,
11635
+ parent: T['io.flow.billing.reporting.csv.v0.models.record_reference'],
11636
+ merchant: T['io.flow.billing.reporting.csv.v0.models.reporting_organization_summary'].isRequired,
11637
+ order: T['io.flow.billing.reporting.csv.v0.models.reporting_order_summary'].isRequired,
11638
+ entity: T['io.flow.billing.reporting.csv.v0.models.reporting_entity'].isRequired,
11639
+ vendor: T['io.flow.billing.reporting.csv.v0.models.reporting_vendor'].isRequired,
11640
+ currencies: T['io.flow.billing.reporting.csv.v0.models.reporting_currencies'].isRequired,
11641
+ conversion_rate: T['io.flow.billing.reporting.csv.v0.models.reporting_conversion_rates'].isRequired,
11642
+ reconciliation: T['io.flow.billing.reporting.csv.v0.models.reporting_reconciliation'].isRequired,
11643
+ merchant_subsidies: T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_subsidies'].isRequired,
11644
+ merchant_fees: T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_fees'].isRequired,
11645
+ merchant_transactions: T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_transactions'].isRequired,
11646
+ debug: T['io.flow.billing.reporting.csv.v0.models.reporting_debug'].isRequired,
11647
+ 'return': T['io.flow.billing.reporting.csv.v0.models.reporting_return'],
11571
11648
  });
11572
11649
 
11573
11650
  T['io.flow.billing.reporting.csv.v0.models.sales_record'] = PropTypes.exact({
11574
11651
  id: PropTypes.string.isRequired,
11575
- parent: T['io.flow.billing.reporting.csv.v0.models.sales_record_reference'],
11652
+ parent: T['io.flow.billing.reporting.csv.v0.models.record_reference'],
11576
11653
  merchant: T['io.flow.billing.reporting.csv.v0.models.reporting_organization_summary'].isRequired,
11577
11654
  order: T['io.flow.billing.reporting.csv.v0.models.reporting_order_summary'].isRequired,
11578
11655
  entity: T['io.flow.billing.reporting.csv.v0.models.reporting_entity'].isRequired,
11579
11656
  vendor: T['io.flow.billing.reporting.csv.v0.models.reporting_vendor'].isRequired,
11580
11657
  currencies: T['io.flow.billing.reporting.csv.v0.models.reporting_currencies'].isRequired,
11581
11658
  conversion_rate: T['io.flow.billing.reporting.csv.v0.models.reporting_conversion_rates'].isRequired,
11582
- fulfillment: T['io.flow.billing.reporting.csv.v0.models.reporting_fulfillment'].isRequired,
11583
11659
  reconciliation: T['io.flow.billing.reporting.csv.v0.models.reporting_reconciliation'].isRequired,
11584
- marked_as_final: T['io.flow.billing.reporting.csv.v0.models.marked_as_final'].isRequired,
11585
11660
  merchant_subsidies: T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_subsidies'].isRequired,
11586
11661
  merchant_fees: T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_fees'].isRequired,
11587
11662
  merchant_transactions: T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_transactions'].isRequired,
11588
- vat_remittance: T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance'].isRequired,
11589
11663
  debug: T['io.flow.billing.reporting.csv.v0.models.reporting_debug'].isRequired,
11664
+ fulfillment: T['io.flow.billing.reporting.csv.v0.models.reporting_fulfillment'].isRequired,
11665
+ vat_remittance: T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance'].isRequired,
11666
+ marked_as_final: T['io.flow.billing.reporting.csv.v0.models.marked_as_final'].isRequired,
11590
11667
  });
11591
11668
 
11592
11669
  T['io.flow.internal.v0.models.sales_record_upserted'] = PropTypes.exact({
@@ -12304,6 +12381,7 @@ T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'] = Prop
12304
12381
  });
12305
12382
 
12306
12383
  T['io.flow.internal.v0.enums.organization_restriction_risk_level'] = PropTypes.oneOf(['5', '15']);
12384
+ T['io.flow.internal.v0.enums.organization_restriction_review_type'] = PropTypes.oneOf(['all_pending', 'pending_verification']);
12307
12385
  T['io.flow.internal.v0.enums.organization_restriction_screening_status'] = PropTypes.oneOf(['in_review', 'fully_reviewed', 'rejected', 'unscreened']);
12308
12386
  T['io.flow.internal.v0.enums.organization_restriction_approval_status'] = PropTypes.oneOf(['ready', 'not-ready']);
12309
12387
 
@@ -12370,6 +12448,7 @@ T['io.flow.internal.v0.models.organization_restriction_screening_decision_form']
12370
12448
  organization_id: PropTypes.string.isRequired,
12371
12449
  approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'].isRequired,
12372
12450
  screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'].isRequired,
12451
+ review_type: T['io.flow.internal.v0.enums.organization_restriction_review_type'],
12373
12452
  risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
12374
12453
  hs_code: PropTypes.string,
12375
12454
  merchant_category_code: PropTypes.string,
@@ -20494,6 +20573,20 @@ T['io.flow.internal.v0.models.experiment_version'] = PropTypes.exact({
20494
20573
 
20495
20574
  T['io.flow.internal.v0.enums.chargeback_process_status'] = PropTypes.oneOf(['inquiry', 'open', 'closed']);
20496
20575
  T['io.flow.internal.v0.enums.chargeback_payment_status'] = PropTypes.oneOf(['captured', 'refunded']);
20576
+ T['io.flow.internal.v0.enums.charge_estimate_source'] = PropTypes.oneOf(['global-e', 'shopify']);
20577
+
20578
+ T['io.flow.internal.v0.enums.charge_input_type'] = PropTypes.oneOf([
20579
+ 'fuelsc',
20580
+ 'incoterm_ddp',
20581
+ 'delivery_confirmation',
20582
+ 'base_charge',
20583
+ 'package_pickup',
20584
+ 'insurance',
20585
+ 'usps_first_mile',
20586
+ 'oversize_piece',
20587
+ 'incoterm_dap',
20588
+ 'remote_area_delivery',
20589
+ ]);
20497
20590
 
20498
20591
  T['io.flow.internal.v0.models.transaction_reference'] = PropTypes.exact({
20499
20592
  id: PropTypes.string.isRequired,
@@ -21411,6 +21504,11 @@ T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.ex
21411
21504
  channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
21412
21505
  });
21413
21506
 
21507
+ T['io.flow.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
21508
+ order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
21509
+ external_order: PropTypes.object.isRequired,
21510
+ });
21511
+
21414
21512
  T['io.flow.internal.v0.models.channel_order_acceptance_deleted'] = PropTypes.exact({
21415
21513
  discriminator: PropTypes.oneOf(['channel_order_acceptance_deleted']).isRequired,
21416
21514
  event_id: PropTypes.string.isRequired,
@@ -22761,6 +22859,7 @@ T['io.flow.billing.v0.models.parent_transaction_summary'] = PropTypes.exact({
22761
22859
  T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata'] = PropTypes.exact({
22762
22860
  channel: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_channel'],
22763
22861
  shipping_label: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label'],
22862
+ shipping_label_revenue_share: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label_revenue_share'],
22764
22863
  trueup: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'],
22765
22864
  manual: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual'],
22766
22865
  });
@@ -26115,6 +26214,7 @@ T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
26115
26214
  url: PropTypes.string,
26116
26215
  approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'],
26117
26216
  screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'],
26217
+ review_type: T['io.flow.internal.v0.enums.organization_restriction_review_type'],
26118
26218
  risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
26119
26219
  hs_code: PropTypes.string,
26120
26220
  merchant_category_code: PropTypes.string,
@@ -26215,13 +26315,6 @@ T['io.flow.internal.v0.models.liability_item'] = PropTypes.exact({
26215
26315
  no_liability_reason_code: T['io.flow.internal.v0.enums.no_liability_reason_code'],
26216
26316
  });
26217
26317
 
26218
- T['io.flow.internal.v0.models.label_creation_request_form'] = PropTypes.exact({
26219
- organization: PropTypes.string.isRequired,
26220
- shipping_label_form: T['io.flow.label.v0.unions.shipping_label_form'].isRequired,
26221
- shipment_cost: T['io.flow.common.v0.models.money'],
26222
- reference_id: PropTypes.string,
26223
- });
26224
-
26225
26318
  T['io.flow.internal.v0.models.fx_revenue_recognition_source'] = PropTypes.exact({
26226
26319
  id: PropTypes.string.isRequired,
26227
26320
  local: T['io.flow.common.v0.models.money'].isRequired,
@@ -26504,6 +26597,20 @@ T['io.flow.internal.v0.models.chargeback_deleted'] = PropTypes.exact({
26504
26597
  chargeback: T['io.flow.internal.v0.models.chargeback'].isRequired,
26505
26598
  });
26506
26599
 
26600
+ T['io.flow.internal.v0.models.charge_input'] = PropTypes.exact({
26601
+ charge_input_code: T['io.flow.internal.v0.enums.charge_input_type'].isRequired,
26602
+ price: T['io.flow.common.v0.models.money'].isRequired,
26603
+ charge_input_source: T['io.flow.internal.v0.enums.charge_estimate_source'].isRequired,
26604
+ });
26605
+
26606
+ T['io.flow.internal.v0.models.label_creation_request_form'] = PropTypes.exact({
26607
+ organization: PropTypes.string.isRequired,
26608
+ shipping_label_form: T['io.flow.label.v0.unions.shipping_label_form'].isRequired,
26609
+ shipment_cost: T['io.flow.common.v0.models.money'],
26610
+ charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.charge_input']),
26611
+ reference_id: PropTypes.string,
26612
+ });
26613
+
26507
26614
  T['io.flow.internal.v0.models.adjustment_details_amount_fixed'] = PropTypes.exact({
26508
26615
  amount: T['io.flow.common.v0.models.money'].isRequired,
26509
26616
  });
@@ -29679,6 +29786,7 @@ T['io.flow.internal.v0.models.channel_fulfillment'] = PropTypes.exact({
29679
29786
  flow_tracking_status: T['io.flow.tracking.v0.enums.tracking_status'],
29680
29787
  order_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
29681
29788
  label_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
29789
+ carrier: T['io.flow.reference.v0.models.carrier_service'],
29682
29790
  tracking_numbers: PropTypes.arrayOf(PropTypes.string),
29683
29791
  });
29684
29792
 
@@ -31483,6 +31591,7 @@ T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
31483
31591
  'fulfillment_external',
31484
31592
  'fulfillment_order_combined_shipment',
31485
31593
  'fulfillment_order_time',
31594
+ 'return_refund',
31486
31595
  'label_tracking_summary',
31487
31596
  'label_invoice_request',
31488
31597
  'carrier_charge',
@@ -33477,65 +33586,8 @@ T['io.flow.ftp.v0.models.ftp_organization_settings_form'] = PropTypes.exact({
33477
33586
  emails: PropTypes.arrayOf(PropTypes.string).isRequired,
33478
33587
  });
33479
33588
 
33480
- T['io.flow.billing.reporting.csv.v0.models.refund_record'] = PropTypes.exact({
33481
- billing_entity: PropTypes.string.isRequired,
33482
- order_id: PropTypes.string.isRequired,
33483
- order_refund_id: PropTypes.string.isRequired,
33484
- refund_created_at_date: PropTypes.string.isRequired,
33485
- reconciliation_date: PropTypes.string.isRequired,
33486
- reconciliation_month: PropTypes.number.isRequired,
33487
- reconciliation_year: PropTypes.number.isRequired,
33488
- order_created_at_date: PropTypes.string.isRequired,
33489
- order_status: PropTypes.string.isRequired,
33490
- b2b_sale: PropTypes.bool.isRequired,
33491
- a_zero_vat_product_exists: PropTypes.bool.isRequired,
33492
- payment_merchant_reference: PropTypes.string,
33493
- merchant_reference: PropTypes.string,
33494
- merchant_id: PropTypes.string.isRequired,
33495
- merchant_name: PropTypes.string.isRequired,
33496
- destination_country: PropTypes.string.isRequired,
33497
- shopper_country_is_eu: PropTypes.bool.isRequired,
33498
- order_refund_reason_name: PropTypes.string.isRequired,
33499
- order_refund_status_name: PropTypes.string.isRequired,
33500
- original_ccy: PropTypes.string.isRequired,
33501
- transaction_ccy: PropTypes.string.isRequired,
33502
- total_refund_amount_exc_vat_in_transaction_ccy: PropTypes.number,
33503
- refund_vat_in_transaction_ccy: PropTypes.number,
33504
- total_refund_amount_inc_vat_in_transaction_ccy: PropTypes.number,
33505
- merchant_total_products_refund_amount_exc_vat_in_original_ccy: PropTypes.number.isRequired,
33506
- merchant_shipping_refund_amount_exc_vat_in_transaction_ccy: PropTypes.number,
33507
- merchant_shipping_refund_amount_exc_vat_in_original_ccy: PropTypes.number.isRequired,
33508
- total_refund_amount_exc_tax_collected_in_shopper_ccy: PropTypes.number,
33509
- tax_collected_amount_in_shopper_ccy: PropTypes.number.isRequired,
33510
- total_refund_amount_inc_tax_collected_in_shopper_ccy: PropTypes.number,
33511
- payment_gateway: PropTypes.string.isRequired,
33512
- min_product_customer_vat_rate: PropTypes.number,
33513
- is_virtual_order: PropTypes.bool.isRequired,
33514
- is_mixed_virtual_order: PropTypes.bool.isRequired,
33515
- total_refund_amount_exc_tax_collected_in_usd: PropTypes.number.isRequired,
33516
- tax_collected_amount_in_usd: PropTypes.number.isRequired,
33517
- total_refund_amount_inc_tax_collected_in_usd: PropTypes.number.isRequired,
33518
- total_refund_amount_exc_tax_collected_in_eur: PropTypes.number.isRequired,
33519
- tax_collected_amount_in_eur: PropTypes.number.isRequired,
33520
- total_refund_amount_inc_tax_collected_in_eur: PropTypes.number.isRequired,
33521
- is_wyol_order: PropTypes.bool.isRequired,
33522
- is_duties_guaranteed: PropTypes.bool.isRequired,
33523
- invoice_id: PropTypes.string,
33524
- total_refund_amount_exc_vat_in_entity_ccy: PropTypes.number.isRequired,
33525
- refund_vat_in_entity_ccy: PropTypes.number.isRequired,
33526
- total_refund_amount_inc_vat_in_entity_ccy: PropTypes.number.isRequired,
33527
- merchant_total_products_refund_amount_exc_vat_in_entity_ccy: PropTypes.number.isRequired,
33528
- merchant_shipping_refund_amount_exc_vat_in_entity_ccy: PropTypes.number.isRequired,
33529
- merchant_duties_and_taxes_refund_amount_in_entity_ccy: PropTypes.number.isRequired,
33530
- merchant_service_gesture_amount_exc_vat_in_entity_ccy: PropTypes.number.isRequired,
33531
- customer_prepaid_refund_amount_exc_vat_in_entity_ccy: PropTypes.number.isRequired,
33532
- total_refund_amount_exc_tax_collected_in_entity_ccy: PropTypes.number.isRequired,
33533
- tax_collected_amount_in_entity_ccy: PropTypes.number.isRequired,
33534
- total_refund_amount_inc_tax_collected_in_entity_ccy: PropTypes.number.isRequired,
33535
- conversion_rate_transaction_to_entity_ccy: PropTypes.number.isRequired,
33536
- merchant_order_id: PropTypes.string.isRequired,
33537
- transaction_date: PropTypes.string.isRequired,
33538
- debug_console_order_link: PropTypes.string.isRequired,
33589
+ T['io.flow.billing.reporting.csv.v0.models.transaction_reference'] = PropTypes.exact({
33590
+ id: PropTypes.string.isRequired,
33539
33591
  });
33540
33592
 
33541
33593
  T['io.flow.experience.v0.models.checkout_attribute_form'] = PropTypes.exact({
@@ -34390,6 +34442,7 @@ export const channelMembershipPutForm = T['io.flow.internal.v0.models.channel_me
34390
34442
  export const channelOrder = T['io.flow.internal.v0.models.channel_order'];
34391
34443
  export const channelOrderAcceptance = T['io.flow.internal.v0.models.channel_order_acceptance'];
34392
34444
  export const channelOrderAcceptanceDeleted = T['io.flow.internal.v0.models.channel_order_acceptance_deleted'];
34445
+ export const channelOrderAcceptanceDetails = T['io.flow.internal.v0.models.channel_order_acceptance_details'];
34393
34446
  export const channelOrderAcceptanceErrorAction = T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'];
34394
34447
  export const channelOrderAcceptanceForm = T['io.flow.internal.v0.models.channel_order_acceptance_form'];
34395
34448
  export const channelOrderAcceptanceNextActionFrom = T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'];
@@ -34413,6 +34466,9 @@ export const channelTransactionDeleted = T['io.flow.internal.v0.models.channel_t
34413
34466
  export const channelTransactionRate = T['io.flow.internal.v0.models.channel_transaction_rate'];
34414
34467
  export const channelTransactionType = T['io.flow.internal.v0.enums.channel_transaction_type'];
34415
34468
  export const channelTransactionUpserted = T['io.flow.internal.v0.models.channel_transaction_upserted'];
34469
+ export const chargeEstimateSource = T['io.flow.internal.v0.enums.charge_estimate_source'];
34470
+ export const chargeInput = T['io.flow.internal.v0.models.charge_input'];
34471
+ export const chargeInputType = T['io.flow.internal.v0.enums.charge_input_type'];
34416
34472
  export const chargeback = T['io.flow.internal.v0.models.chargeback'];
34417
34473
  export const chargebackDeleted = T['io.flow.internal.v0.models.chargeback_deleted'];
34418
34474
  export const chargebackPaymentStatus = T['io.flow.internal.v0.enums.chargeback_payment_status'];
@@ -35782,6 +35838,7 @@ export const organizationPaymentStatus = T['io.flow.internal.v0.enums.organizati
35782
35838
  export const organizationRestrictionApprovalStatus = T['io.flow.internal.v0.enums.organization_restriction_approval_status'];
35783
35839
  export const organizationRestrictionNoteForm = T['io.flow.internal.v0.models.organization_restriction_note_form'];
35784
35840
  export const organizationRestrictionNoteType = T['io.flow.internal.v0.enums.organization_restriction_note_type'];
35841
+ export const organizationRestrictionReviewType = T['io.flow.internal.v0.enums.organization_restriction_review_type'];
35785
35842
  export const organizationRestrictionRiskLevel = T['io.flow.internal.v0.enums.organization_restriction_risk_level'];
35786
35843
  export const organizationRestrictionScreeningDecisionForm = T['io.flow.internal.v0.models.organization_restriction_screening_decision_form'];
35787
35844
  export const organizationRestrictionScreeningStatus = T['io.flow.internal.v0.enums.organization_restriction_screening_status'];