@flowio/api-internal-prop-types 9.24.88 → 9.24.89

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.
@@ -95,6 +95,8 @@ T['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'] = P
95
95
  'merchant_failed_kyb_review',
96
96
  ]);
97
97
 
98
+ T['io.flow.organization.onboarding.state.v0.enums.merchant_disabled_reason'] = PropTypes.oneOf(['merchant_deactivated', 'merchant_rejected']);
99
+
98
100
  T['io.flow.checkout.v0.models.checkout_urls'] = PropTypes.exact({
99
101
  continue_shopping: PropTypes.string,
100
102
  confirmation: PropTypes.string,
@@ -704,6 +706,12 @@ T['io.flow.billing.internal.v0.models.account_origin'] = PropTypes.exact({
704
706
  country: PropTypes.string.isRequired,
705
707
  });
706
708
 
709
+ T['io.flow.billing.internal.v0.enums.account_status'] = PropTypes.oneOf(['active', 'inactive']);
710
+
711
+ T['io.flow.billing.internal.v0.models.flow_account_status_form'] = PropTypes.exact({
712
+ status: T['io.flow.billing.internal.v0.enums.account_status'].isRequired,
713
+ });
714
+
707
715
  T['io.flow.billing.internal.v0.models.carrier_charge_reference'] = PropTypes.exact({
708
716
  id: PropTypes.string.isRequired,
709
717
  });
@@ -5107,6 +5115,7 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exa
5107
5115
  channel_id: PropTypes.string.isRequired,
5108
5116
  external_order_reference: PropTypes.string.isRequired,
5109
5117
  payment_request_id: PropTypes.string,
5118
+ order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
5110
5119
  status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
5111
5120
  reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
5112
5121
  next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
@@ -6430,6 +6439,16 @@ T['io.flow.stripe.v0.models.plan'] = PropTypes.exact({
6430
6439
  type: PropTypes.string,
6431
6440
  });
6432
6441
 
6442
+ T['io.flow.stripe.v0.models.klarna_dob_form'] = PropTypes.exact({
6443
+ day: PropTypes.number.isRequired,
6444
+ month: PropTypes.number.isRequired,
6445
+ year: PropTypes.number.isRequired,
6446
+ });
6447
+
6448
+ T['io.flow.stripe.v0.models.payment_method_klarna_form'] = PropTypes.exact({
6449
+ dob: T['io.flow.stripe.v0.models.klarna_dob_form'],
6450
+ });
6451
+
6433
6452
  T['io.flow.stripe.v0.models.payment_method_card_form'] = PropTypes.exact({
6434
6453
  exp_month: PropTypes.string.isRequired,
6435
6454
  exp_year: PropTypes.string.isRequired,
@@ -6453,10 +6472,6 @@ T['io.flow.stripe.v0.models.payment_method_options_card_form'] = PropTypes.exact
6453
6472
  mcc: PropTypes.string,
6454
6473
  });
6455
6474
 
6456
- T['io.flow.stripe.v0.models.payment_method_options_form'] = PropTypes.exact({
6457
- card: T['io.flow.stripe.v0.models.payment_method_options_card_form'],
6458
- });
6459
-
6460
6475
  T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
6461
6476
  network: PropTypes.string,
6462
6477
  request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
@@ -6476,11 +6491,6 @@ T['io.flow.stripe.v0.enums.payment_intent_status'] = PropTypes.oneOf([
6476
6491
  ]);
6477
6492
 
6478
6493
  T['io.flow.stripe.v0.enums.setup_future_usage'] = PropTypes.oneOf(['on_session', 'off_session']);
6479
-
6480
- T['io.flow.stripe.v0.models.payment_method_options'] = PropTypes.exact({
6481
- card: T['io.flow.stripe.v0.models.payment_method_options_card'],
6482
- });
6483
-
6484
6494
  T['io.flow.stripe.v0.enums.confirmation_method'] = PropTypes.oneOf(['automatic', 'manual']);
6485
6495
  T['io.flow.stripe.v0.enums.capture_method'] = PropTypes.oneOf(['automatic', 'manual']);
6486
6496
 
@@ -6498,6 +6508,40 @@ T['io.flow.stripe.v0.models.payment_intent_cancellation_form'] = PropTypes.exact
6498
6508
  cancellation_reason: T['io.flow.stripe.v0.enums.cancellation_reason'],
6499
6509
  });
6500
6510
 
6511
+ T['io.flow.stripe.v0.models.marketplace_seller_info'] = PropTypes.exact({
6512
+ name: PropTypes.string.isRequired,
6513
+ id: PropTypes.string,
6514
+ product_category: PropTypes.string,
6515
+ });
6516
+
6517
+ T['io.flow.stripe.v0.models.payment_details'] = PropTypes.exact({
6518
+ marketplace_seller_info: T['io.flow.stripe.v0.models.marketplace_seller_info'],
6519
+ });
6520
+
6521
+ T['io.flow.stripe.v0.models.payment_method_options_klarna_form'] = PropTypes.exact({
6522
+ capture_method: T['io.flow.stripe.v0.enums.capture_method'],
6523
+ preferred_locale: T['io.flow.stripe.v0.enums.preferred_locale_klarna'],
6524
+ setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
6525
+ payment_details: T['io.flow.stripe.v0.models.payment_details'],
6526
+ });
6527
+
6528
+ T['io.flow.stripe.v0.models.payment_method_options_form'] = PropTypes.exact({
6529
+ card: T['io.flow.stripe.v0.models.payment_method_options_card_form'],
6530
+ klarna: T['io.flow.stripe.v0.models.payment_method_options_klarna_form'],
6531
+ });
6532
+
6533
+ T['io.flow.stripe.v0.models.payment_method_options_klarna'] = PropTypes.exact({
6534
+ capture_method: T['io.flow.stripe.v0.enums.capture_method'],
6535
+ preferred_locale: T['io.flow.stripe.v0.enums.preferred_locale_klarna'],
6536
+ setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
6537
+ payment_details: T['io.flow.stripe.v0.models.payment_details'],
6538
+ });
6539
+
6540
+ T['io.flow.stripe.v0.models.payment_method_options'] = PropTypes.exact({
6541
+ card: T['io.flow.stripe.v0.models.payment_method_options_card'],
6542
+ klarna: T['io.flow.stripe.v0.models.payment_method_options_klarna'],
6543
+ });
6544
+
6501
6545
  T['io.flow.stripe.v0.enums.order_item_type'] = PropTypes.oneOf(['sku', 'tax', 'shipping', 'discount']);
6502
6546
 
6503
6547
  T['io.flow.stripe.v0.models.order_item_request'] = PropTypes.exact({
@@ -6561,6 +6605,13 @@ T['io.flow.stripe.v0.models.payment_method_billing_details'] = PropTypes.exact({
6561
6605
  phone: PropTypes.string,
6562
6606
  });
6563
6607
 
6608
+ T['io.flow.stripe.v0.models.payment_method_form_klarna'] = PropTypes.exact({
6609
+ type: PropTypes.oneOf(['klarna']).isRequired,
6610
+ billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
6611
+ metadata: PropTypes.object,
6612
+ klarna: T['io.flow.stripe.v0.models.payment_method_klarna_form'].isRequired,
6613
+ });
6614
+
6564
6615
  T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
6565
6616
  type: PropTypes.oneOf(['card']).isRequired,
6566
6617
  billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
@@ -6568,7 +6619,17 @@ T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
6568
6619
  card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
6569
6620
  });
6570
6621
 
6571
- T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_form_card']]);
6622
+ T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([
6623
+ T['io.flow.stripe.v0.models.payment_method_form_card'],
6624
+ T['io.flow.stripe.v0.models.payment_method_form_klarna'],
6625
+ ]);
6626
+
6627
+ T['io.flow.stripe.v0.models.payment_method_data_klarna'] = PropTypes.exact({
6628
+ type: PropTypes.oneOf(['klarna']).isRequired,
6629
+ billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
6630
+ metadata: PropTypes.object,
6631
+ klarna: T['io.flow.stripe.v0.models.payment_method_klarna_form'].isRequired,
6632
+ });
6572
6633
 
6573
6634
  T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
6574
6635
  type: PropTypes.oneOf(['card']).isRequired,
@@ -6577,7 +6638,10 @@ T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
6577
6638
  card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
6578
6639
  });
6579
6640
 
6580
- T['io.flow.stripe.v0.unions.payment_method_data'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_data_card']]);
6641
+ T['io.flow.stripe.v0.unions.payment_method_data'] = PropTypes.oneOfType([
6642
+ T['io.flow.stripe.v0.models.payment_method_data_card'],
6643
+ T['io.flow.stripe.v0.models.payment_method_data_klarna'],
6644
+ ]);
6581
6645
 
6582
6646
  T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact({
6583
6647
  off_session: PropTypes.bool,
@@ -7078,6 +7142,7 @@ T['io.flow.stripe.v0.models.payment_method'] = PropTypes.exact({
7078
7142
  billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
7079
7143
  card: T['io.flow.stripe.v0.models.payment_method_card_details'],
7080
7144
  card_present: PropTypes.object,
7145
+ klarna: PropTypes.object,
7081
7146
  created: PropTypes.number.isRequired,
7082
7147
  customer: PropTypes.string,
7083
7148
  livemode: PropTypes.bool.isRequired,
@@ -8689,6 +8754,7 @@ T['io.flow.billing.internal.v0.models.billing_organization_settings'] = PropType
8689
8754
  b2b_tax_remittance_days: PropTypes.number,
8690
8755
  mor_fee: PropTypes.number,
8691
8756
  duty_guarantee_fee: PropTypes.number,
8757
+ negative_balance_fee: PropTypes.number,
8692
8758
  order_service_fee: T['io.flow.billing.internal.v0.models.tiered_fee'],
8693
8759
  label_fee: T['io.flow.billing.internal.v0.models.tiered_fee'],
8694
8760
  });
@@ -8706,7 +8772,7 @@ T['io.flow.billing.internal.v0.models.account_settings'] = PropTypes.exact({
8706
8772
  merchant_of_record_fee: PropTypes.number,
8707
8773
  duty_guarantee_fee: PropTypes.number,
8708
8774
  transfer_fee: PropTypes.number,
8709
- negative_balance_guarantee_fee: PropTypes.number,
8775
+ negative_balance_fee: PropTypes.number,
8710
8776
  order_service_fee: T['io.flow.billing.internal.v0.models.tiered_fee'],
8711
8777
  label_fees: T['io.flow.billing.internal.v0.models.account_setting_label_fees'],
8712
8778
  charge_label_cost_directly: PropTypes.bool.isRequired,
@@ -8830,6 +8896,7 @@ T['io.flow.permission.v0.enums.flow_role'] = PropTypes.oneOf([
8830
8896
  'organization_fulfillment',
8831
8897
  'organization_marketing',
8832
8898
  'organization_finance',
8899
+ 'organization_classification',
8833
8900
  'flow_operations',
8834
8901
  'channel_admin',
8835
8902
  'channel_organization_admin',
@@ -9796,6 +9863,13 @@ T['io.flow.internal.v0.models.shruti_demo_item_deleted'] = PropTypes.exact({
9796
9863
  id: PropTypes.string.isRequired,
9797
9864
  });
9798
9865
 
9866
+ T['io.flow.internal.v0.models.matias_item_deleted'] = PropTypes.exact({
9867
+ discriminator: PropTypes.oneOf(['matias_item_deleted']).isRequired,
9868
+ event_id: PropTypes.string.isRequired,
9869
+ timestamp: PropTypes.string.isRequired,
9870
+ id: PropTypes.string.isRequired,
9871
+ });
9872
+
9799
9873
  T['io.flow.internal.v0.models.colm_item_deleted'] = PropTypes.exact({
9800
9874
  discriminator: PropTypes.oneOf(['colm_item_deleted']).isRequired,
9801
9875
  event_id: PropTypes.string.isRequired,
@@ -10745,6 +10819,11 @@ T['io.flow.internal.v0.unions.channel_rate_metadata'] = PropTypes.oneOfType([
10745
10819
  T['io.flow.internal.v0.models.channel_rate_metadata_rate'],
10746
10820
  ]);
10747
10821
 
10822
+ T['io.flow.internal.v0.models.message_stamp'] = PropTypes.exact({
10823
+ discriminator: PropTypes.oneOf(['message_stamp']).isRequired,
10824
+ message: PropTypes.string.isRequired,
10825
+ });
10826
+
10748
10827
  T['io.flow.internal.v0.models.blaze_payment_auth_complete_message'] = PropTypes.exact({
10749
10828
  discriminator: PropTypes.oneOf(['payment_auth_complete']).isRequired,
10750
10829
  });
@@ -11848,6 +11927,7 @@ T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] =
11848
11927
  'business_street_address_is_blank',
11849
11928
  'business_street_address_is_po_box',
11850
11929
  'exception_merchant',
11930
+ 'application_missing',
11851
11931
  ]);
11852
11932
 
11853
11933
  T['io.flow.internal.v0.models.setup_block_put_form'] = PropTypes.exact({
@@ -13357,6 +13437,11 @@ T['io.flow.internal.v0.models.shipping_method_reference'] = PropTypes.exact({
13357
13437
  id: PropTypes.string.isRequired,
13358
13438
  });
13359
13439
 
13440
+ T['io.flow.organization.onboarding.state.v0.models.merchant_disabled'] = PropTypes.exact({
13441
+ discriminator: PropTypes.oneOf(['merchant_disabled']).isRequired,
13442
+ reason: T['io.flow.organization.onboarding.state.v0.enums.merchant_disabled_reason'].isRequired,
13443
+ });
13444
+
13360
13445
  T['io.flow.organization.onboarding.state.v0.models.merchant_deactivated'] = PropTypes.exact({
13361
13446
  discriminator: PropTypes.oneOf(['merchant_deactivated']).isRequired,
13362
13447
  reason: PropTypes.string.isRequired,
@@ -13405,6 +13490,7 @@ T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'] = PropType
13405
13490
  T['io.flow.organization.onboarding.state.v0.models.setup_completed'],
13406
13491
  T['io.flow.organization.onboarding.state.v0.models.merchant_activated'],
13407
13492
  T['io.flow.organization.onboarding.state.v0.models.merchant_deactivated'],
13493
+ T['io.flow.organization.onboarding.state.v0.models.merchant_disabled'],
13408
13494
  ]);
13409
13495
 
13410
13496
  T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'] = PropTypes.exact({
@@ -13505,6 +13591,8 @@ T['io.flow.internal.v0.models.merchant_upserted'] = PropTypes.exact({
13505
13591
  merchant: T['io.flow.internal.v0.models.merchant'].isRequired,
13506
13592
  });
13507
13593
 
13594
+ T['io.flow.internal.v0.enums.matias_item_type'] = PropTypes.oneOf(['physical', 'digital']);
13595
+
13508
13596
  T['io.flow.shopify.markets.v0.models.shopify_order_metafield'] = PropTypes.exact({
13509
13597
  id: PropTypes.number.isRequired,
13510
13598
  key: PropTypes.string.isRequired,
@@ -14521,6 +14609,10 @@ T['io.flow.trueup.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
14521
14609
  'emergency',
14522
14610
  'peak',
14523
14611
  'address_correction',
14612
+ 'security_ratecard_fee',
14613
+ 'eei_filing_ratecard_fee',
14614
+ 'fixed_ddp_ratecard_fee',
14615
+ 'fixed_currency_conversion_ratecard_fee',
14524
14616
  ]);
14525
14617
 
14526
14618
  T['io.flow.billing.v0.models.trueup_label_surcharge'] = PropTypes.exact({
@@ -14629,6 +14721,7 @@ T['io.flow.billing.accounting.v0.models.item_summary'] = PropTypes.exact({
14629
14721
  number: PropTypes.string.isRequired,
14630
14722
  fulfillment_method: T['io.flow.catalog.v0.enums.fulfillment_method_value'].isRequired,
14631
14723
  country_of_origin: PropTypes.string,
14724
+ tarriff_code: PropTypes.string,
14632
14725
  inferred: PropTypes.bool,
14633
14726
  });
14634
14727
 
@@ -14661,6 +14754,7 @@ T['io.flow.internal.v0.models.item_summary'] = PropTypes.exact({
14661
14754
  number: PropTypes.string.isRequired,
14662
14755
  fulfillment_method: T['io.flow.catalog.v0.enums.fulfillment_method_value'].isRequired,
14663
14756
  country_of_origin: PropTypes.string,
14757
+ tarriff_code: PropTypes.string,
14664
14758
  inferred: PropTypes.bool,
14665
14759
  });
14666
14760
 
@@ -16501,6 +16595,9 @@ T['io.flow.internal.v0.models.erp_flow_vendor'] = PropTypes.exact({
16501
16595
  bank_code: PropTypes.string.isRequired,
16502
16596
  id: PropTypes.string.isRequired,
16503
16597
  tax_code: PropTypes.string,
16598
+ tax_code_2: PropTypes.string,
16599
+ debit_entry_code: PropTypes.string,
16600
+ credit_entry_code: PropTypes.string,
16504
16601
  vat_flag: PropTypes.string,
16505
16602
  w_tax_percent: PropTypes.string,
16506
16603
  iban: PropTypes.string,
@@ -17065,6 +17162,9 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
17065
17162
  'negative_balance_total_with_order_in_past_30_days',
17066
17163
  'negative_balance_total_without_order_in_past_30_days',
17067
17164
  'negative_balance_single_account_max',
17165
+ 'inactive_accounts_count',
17166
+ 'inactive_account_pending_payment_promise_count',
17167
+ 'inactive_account_pending_payment_promise_total',
17068
17168
  ]);
17069
17169
 
17070
17170
  T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
@@ -17544,6 +17644,12 @@ T['io.flow.internal.v0.models.invoice_line_item'] = PropTypes.exact({
17544
17644
  export_control_classification_number: PropTypes.string.isRequired,
17545
17645
  });
17546
17646
 
17647
+ T['io.flow.internal.v0.models.commercial_invoice_summary'] = PropTypes.exact({
17648
+ id: PropTypes.string.isRequired,
17649
+ label_id: PropTypes.string.isRequired,
17650
+ line_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.invoice_line_item']).isRequired,
17651
+ });
17652
+
17547
17653
  T['io.flow.internal.v0.enums.colm_item_type'] = PropTypes.oneOf(['physical', 'digital']);
17548
17654
 
17549
17655
  T['io.flow.internal.v0.enums.item_classification_status'] = PropTypes.oneOf([
@@ -22214,6 +22320,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
22214
22320
  channel_id: PropTypes.string.isRequired,
22215
22321
  external_order_reference: PropTypes.string.isRequired,
22216
22322
  payment_request_id: PropTypes.string,
22323
+ order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
22217
22324
  status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
22218
22325
  reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
22219
22326
  next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'],
@@ -22394,6 +22501,7 @@ T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_charge
22394
22501
  label_created_at: PropTypes.string.isRequired,
22395
22502
  carrier_id: PropTypes.string.isRequired,
22396
22503
  carrier_tracking_number: PropTypes.string.isRequired,
22504
+ revenue_share_percentage: PropTypes.number.isRequired,
22397
22505
  outbound_transaction_id: PropTypes.string,
22398
22506
  });
22399
22507
 
@@ -22732,6 +22840,18 @@ T['io.flow.internal.v0.models.calculator_dtce_post_body'] = PropTypes.exact({
22732
22840
  provinceCode: PropTypes.string,
22733
22841
  });
22734
22842
 
22843
+ T['io.flow.internal.v0.models.calculation_stamping_shipping_line'] = PropTypes.exact({
22844
+ first_ship_from: PropTypes.string,
22845
+ duty: PropTypes.number,
22846
+ duty_rate: PropTypes.number,
22847
+ tax: PropTypes.number,
22848
+ tax_rate: PropTypes.number,
22849
+ price: PropTypes.number,
22850
+ duty_rate_on_shipping: PropTypes.number,
22851
+ tax_rate_on_shipping: PropTypes.number,
22852
+ import_fee: PropTypes.number,
22853
+ });
22854
+
22735
22855
  T['io.flow.internal.v0.models.product_labels'] = PropTypes.exact({
22736
22856
  item_type: PropTypes.string.isRequired,
22737
22857
  gender: T['io.flow.internal.v0.models.attribute_label'],
@@ -23608,6 +23728,7 @@ T['io.flow.billing.csv.v0.models.billing_csv_transaction_fees'] = PropTypes.exac
23608
23728
  processing: PropTypes.number.isRequired,
23609
23729
  rate_lock: PropTypes.number.isRequired,
23610
23730
  transfer: PropTypes.number.isRequired,
23731
+ negative_balance: PropTypes.number.isRequired,
23611
23732
  });
23612
23733
 
23613
23734
  T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
@@ -25973,6 +26094,21 @@ T['io.flow.internal.v0.models.channel_debug_transaction'] = PropTypes.exact({
25973
26094
  queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
25974
26095
  });
25975
26096
 
26097
+ T['io.flow.internal.v0.enums.address_configuration_setting_province_code'] = PropTypes.oneOf(['iso_3166_2', 'name']);
26098
+
26099
+ T['io.flow.internal.v0.models.address_configuration_setting_form'] = PropTypes.exact({
26100
+ province_code: T['io.flow.internal.v0.enums.address_configuration_setting_province_code'].isRequired,
26101
+ });
26102
+
26103
+ T['io.flow.internal.v0.models.address_configuration_province_setting'] = PropTypes.exact({
26104
+ code: T['io.flow.internal.v0.enums.address_configuration_setting_province_code'].isRequired,
26105
+ });
26106
+
26107
+ T['io.flow.internal.v0.models.address_configuration_setting'] = PropTypes.exact({
26108
+ id: PropTypes.string.isRequired,
26109
+ province: T['io.flow.internal.v0.models.address_configuration_province_setting'].isRequired,
26110
+ });
26111
+
25976
26112
  T['io.flow.common.v0.models.money'] = PropTypes.exact({
25977
26113
  amount: PropTypes.number.isRequired,
25978
26114
  currency: PropTypes.string.isRequired,
@@ -26230,6 +26366,17 @@ T['io.flow.tracking.v0.models.tracking_label_form'] = PropTypes.exact({
26230
26366
  ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
26231
26367
  });
26232
26368
 
26369
+ T['io.flow.ratecard.v0.models.security_service_fee'] = PropTypes.exact({
26370
+ discriminator: PropTypes.oneOf(['security_service_fee']).isRequired,
26371
+ amount: T['io.flow.common.v0.models.money'].isRequired,
26372
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
26373
+ });
26374
+
26375
+ T['io.flow.ratecard.v0.models.security_ratecard_fee'] = PropTypes.exact({
26376
+ discriminator: PropTypes.oneOf(['security_ratecard_fee']).isRequired,
26377
+ amount: T['io.flow.common.v0.models.money'].isRequired,
26378
+ });
26379
+
26233
26380
  T['io.flow.ratecard.v0.models.remote_area_service_fee'] = PropTypes.exact({
26234
26381
  discriminator: PropTypes.oneOf(['remote_area_service_fee']).isRequired,
26235
26382
  amount: T['io.flow.common.v0.models.money'].isRequired,
@@ -26240,6 +26387,12 @@ T['io.flow.ratecard.v0.models.remote_area_ratecard_fee'] = PropTypes.exact({
26240
26387
  amount: T['io.flow.common.v0.models.money'].isRequired,
26241
26388
  });
26242
26389
 
26390
+ T['io.flow.ratecard.v0.models.remote_area_by_weight_service_fee'] = PropTypes.exact({
26391
+ discriminator: PropTypes.oneOf(['remote_area_by_weight_service_fee']).isRequired,
26392
+ amount: T['io.flow.common.v0.models.money'].isRequired,
26393
+ weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
26394
+ });
26395
+
26243
26396
  T['io.flow.ratecard.v0.models.peak_surcharge_service_fee'] = PropTypes.exact({
26244
26397
  discriminator: PropTypes.oneOf(['peak_surcharge_service_fee']).isRequired,
26245
26398
  amount: T['io.flow.common.v0.models.money'].isRequired,
@@ -26281,6 +26434,15 @@ T['io.flow.ratecard.v0.models.oversize_piece_surcharge_ratecard_fee'] = PropType
26281
26434
  amount: T['io.flow.common.v0.models.money'].isRequired,
26282
26435
  });
26283
26436
 
26437
+ T['io.flow.ratecard.v0.models.large_package_service_fee'] = PropTypes.exact({
26438
+ discriminator: PropTypes.oneOf(['large_package_service_fee']).isRequired,
26439
+ length_girth_threshold: PropTypes.number,
26440
+ dimensional_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
26441
+ weight_threshold: PropTypes.number,
26442
+ weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
26443
+ amount: T['io.flow.common.v0.models.money'].isRequired,
26444
+ });
26445
+
26284
26446
  T['io.flow.ratecard.v0.models.fuel_surcharge_ratecard_fee'] = PropTypes.exact({
26285
26447
  discriminator: PropTypes.oneOf(['fuel_surcharge_ratecard_fee']).isRequired,
26286
26448
  amount: T['io.flow.common.v0.models.money'].isRequired,
@@ -26296,6 +26458,31 @@ T['io.flow.ratecard.v0.models.fuel_surcharge_amount_by_weight_service_fee'] = Pr
26296
26458
  ends_at: PropTypes.string,
26297
26459
  });
26298
26460
 
26461
+ T['io.flow.ratecard.v0.models.fixed_ddp_ratecard_fee'] = PropTypes.exact({
26462
+ discriminator: PropTypes.oneOf(['fixed_ddp_ratecard_fee']).isRequired,
26463
+ amount: T['io.flow.common.v0.models.money'].isRequired,
26464
+ });
26465
+
26466
+ T['io.flow.ratecard.v0.models.fixed_fee_condition'] = PropTypes.exact({
26467
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
26468
+ amount: T['io.flow.common.v0.models.money'].isRequired,
26469
+ });
26470
+
26471
+ T['io.flow.ratecard.v0.models.fixed_ddp_service_fee'] = PropTypes.exact({
26472
+ discriminator: PropTypes.oneOf(['fixed_ddp_service_fee']).isRequired,
26473
+ conditions: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.fixed_fee_condition']).isRequired,
26474
+ });
26475
+
26476
+ T['io.flow.ratecard.v0.models.fixed_currency_conversion_service_fee'] = PropTypes.exact({
26477
+ discriminator: PropTypes.oneOf(['fixed_currency_conversion_service_fee']).isRequired,
26478
+ conditions: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.fixed_fee_condition']).isRequired,
26479
+ });
26480
+
26481
+ T['io.flow.ratecard.v0.models.fixed_currency_conversion_ratecard_fee'] = PropTypes.exact({
26482
+ discriminator: PropTypes.oneOf(['fixed_currency_conversion_ratecard_fee']).isRequired,
26483
+ amount: T['io.flow.common.v0.models.money'].isRequired,
26484
+ });
26485
+
26299
26486
  T['io.flow.ratecard.v0.models.emergency_situation_surcharge_service_fee'] = PropTypes.exact({
26300
26487
  discriminator: PropTypes.oneOf(['emergency_situation_surcharge_service_fee']).isRequired,
26301
26488
  amount: T['io.flow.common.v0.models.money'].isRequired,
@@ -26309,50 +26496,22 @@ T['io.flow.ratecard.v0.models.emergency_situation_surcharge_ratecard_fee'] = Pro
26309
26496
  amount: T['io.flow.common.v0.models.money'].isRequired,
26310
26497
  });
26311
26498
 
26312
- T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'] = PropTypes.exact({
26313
- discriminator: PropTypes.oneOf(['duties_taxes_paid_surcharge_service_fee']).isRequired,
26499
+ T['io.flow.ratecard.v0.models.eei_filing_service_fee'] = PropTypes.exact({
26500
+ discriminator: PropTypes.oneOf(['eei_filing_service_fee']).isRequired,
26314
26501
  amount: T['io.flow.common.v0.models.money'].isRequired,
26315
- starts_at: PropTypes.string,
26316
- ends_at: PropTypes.string,
26502
+ value_threshold: T['io.flow.common.v0.models.money'].isRequired,
26317
26503
  });
26318
26504
 
26319
- T['io.flow.ratecard.v0.unions.service_fee'] = PropTypes.oneOfType([
26320
- T['io.flow.ratecard.v0.models.fuel_surcharge_service_fee'],
26321
- T['io.flow.ratecard.v0.models.fuel_surcharge_amount_by_weight_service_fee'],
26322
- T['io.flow.ratecard.v0.models.remote_area_service_fee'],
26323
- T['io.flow.ratecard.v0.models.emergency_situation_surcharge_service_fee'],
26324
- T['io.flow.ratecard.v0.models.peak_surcharge_service_fee'],
26325
- T['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'],
26326
- T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'],
26327
- T['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'],
26328
- ]);
26329
-
26330
- T['io.flow.internal.v0.models.ratecard_service_fees_override_form'] = PropTypes.exact({
26331
- service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
26332
- });
26333
-
26334
- T['io.flow.internal.v0.models.ratecard_internal_service_fee'] = PropTypes.exact({
26335
- id: PropTypes.string.isRequired,
26336
- service_id: PropTypes.string.isRequired,
26337
- created_at: PropTypes.string.isRequired,
26338
- updated_at: PropTypes.string.isRequired,
26339
- fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
26340
- });
26341
-
26342
- T['io.flow.internal.v0.models.ratecard_service_fee_upserted'] = PropTypes.exact({
26343
- discriminator: PropTypes.oneOf(['ratecard_service_fee_upserted']).isRequired,
26344
- event_id: PropTypes.string.isRequired,
26345
- timestamp: PropTypes.string.isRequired,
26346
- organization: PropTypes.string.isRequired,
26347
- fee: T['io.flow.internal.v0.models.ratecard_internal_service_fee'].isRequired,
26505
+ T['io.flow.ratecard.v0.models.eei_filing_ratecard_fee'] = PropTypes.exact({
26506
+ discriminator: PropTypes.oneOf(['eei_filing_ratecard_fee']).isRequired,
26507
+ amount: T['io.flow.common.v0.models.money'].isRequired,
26348
26508
  });
26349
26509
 
26350
- T['io.flow.internal.v0.models.ratecard_service_fee_deleted'] = PropTypes.exact({
26351
- discriminator: PropTypes.oneOf(['ratecard_service_fee_deleted']).isRequired,
26352
- event_id: PropTypes.string.isRequired,
26353
- timestamp: PropTypes.string.isRequired,
26354
- organization: PropTypes.string.isRequired,
26355
- fee: T['io.flow.internal.v0.models.ratecard_internal_service_fee'].isRequired,
26510
+ T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'] = PropTypes.exact({
26511
+ discriminator: PropTypes.oneOf(['duties_taxes_paid_surcharge_service_fee']).isRequired,
26512
+ amount: T['io.flow.common.v0.models.money'].isRequired,
26513
+ starts_at: PropTypes.string,
26514
+ ends_at: PropTypes.string,
26356
26515
  });
26357
26516
 
26358
26517
  T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_ratecard_fee'] = PropTypes.exact({
@@ -26377,6 +26536,10 @@ T['io.flow.ratecard.v0.unions.ratecard_fee'] = PropTypes.oneOfType([
26377
26536
  T['io.flow.ratecard.v0.models.emergency_situation_surcharge_ratecard_fee'],
26378
26537
  T['io.flow.ratecard.v0.models.peak_surcharge_ratecard_fee'],
26379
26538
  T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_ratecard_fee'],
26539
+ T['io.flow.ratecard.v0.models.security_ratecard_fee'],
26540
+ T['io.flow.ratecard.v0.models.eei_filing_ratecard_fee'],
26541
+ T['io.flow.ratecard.v0.models.fixed_ddp_ratecard_fee'],
26542
+ T['io.flow.ratecard.v0.models.fixed_currency_conversion_ratecard_fee'],
26380
26543
  ]);
26381
26544
 
26382
26545
  T['io.flow.ratecard.v0.models.ratecard_lane_form'] = PropTypes.exact({
@@ -26492,6 +26655,63 @@ T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'] = PropTypes.exac
26492
26655
  ratecard_aggregate: T['io.flow.internal.v0.models.ratecard_lane_aggregate'].isRequired,
26493
26656
  });
26494
26657
 
26658
+ T['io.flow.ratecard.v0.models.additional_handling_service_fee'] = PropTypes.exact({
26659
+ discriminator: PropTypes.oneOf(['additional_handling_service_fee']).isRequired,
26660
+ length_girth_threshold: PropTypes.number,
26661
+ length_threshold: PropTypes.number,
26662
+ width_threshold: PropTypes.number,
26663
+ dimensional_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
26664
+ weight_threshold: PropTypes.number,
26665
+ weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
26666
+ amount: T['io.flow.common.v0.models.money'].isRequired,
26667
+ });
26668
+
26669
+ T['io.flow.ratecard.v0.unions.service_fee'] = PropTypes.oneOfType([
26670
+ T['io.flow.ratecard.v0.models.fuel_surcharge_service_fee'],
26671
+ T['io.flow.ratecard.v0.models.fuel_surcharge_amount_by_weight_service_fee'],
26672
+ T['io.flow.ratecard.v0.models.remote_area_service_fee'],
26673
+ T['io.flow.ratecard.v0.models.emergency_situation_surcharge_service_fee'],
26674
+ T['io.flow.ratecard.v0.models.peak_surcharge_service_fee'],
26675
+ T['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'],
26676
+ T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'],
26677
+ T['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'],
26678
+ T['io.flow.ratecard.v0.models.remote_area_by_weight_service_fee'],
26679
+ T['io.flow.ratecard.v0.models.additional_handling_service_fee'],
26680
+ T['io.flow.ratecard.v0.models.large_package_service_fee'],
26681
+ T['io.flow.ratecard.v0.models.security_service_fee'],
26682
+ T['io.flow.ratecard.v0.models.fixed_ddp_service_fee'],
26683
+ T['io.flow.ratecard.v0.models.fixed_currency_conversion_service_fee'],
26684
+ T['io.flow.ratecard.v0.models.eei_filing_service_fee'],
26685
+ ]);
26686
+
26687
+ T['io.flow.internal.v0.models.ratecard_service_fees_override_form'] = PropTypes.exact({
26688
+ service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
26689
+ });
26690
+
26691
+ T['io.flow.internal.v0.models.ratecard_internal_service_fee'] = PropTypes.exact({
26692
+ id: PropTypes.string.isRequired,
26693
+ service_id: PropTypes.string.isRequired,
26694
+ created_at: PropTypes.string.isRequired,
26695
+ updated_at: PropTypes.string.isRequired,
26696
+ fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
26697
+ });
26698
+
26699
+ T['io.flow.internal.v0.models.ratecard_service_fee_upserted'] = PropTypes.exact({
26700
+ discriminator: PropTypes.oneOf(['ratecard_service_fee_upserted']).isRequired,
26701
+ event_id: PropTypes.string.isRequired,
26702
+ timestamp: PropTypes.string.isRequired,
26703
+ organization: PropTypes.string.isRequired,
26704
+ fee: T['io.flow.internal.v0.models.ratecard_internal_service_fee'].isRequired,
26705
+ });
26706
+
26707
+ T['io.flow.internal.v0.models.ratecard_service_fee_deleted'] = PropTypes.exact({
26708
+ discriminator: PropTypes.oneOf(['ratecard_service_fee_deleted']).isRequired,
26709
+ event_id: PropTypes.string.isRequired,
26710
+ timestamp: PropTypes.string.isRequired,
26711
+ organization: PropTypes.string.isRequired,
26712
+ fee: T['io.flow.internal.v0.models.ratecard_internal_service_fee'].isRequired,
26713
+ });
26714
+
26495
26715
  T['io.flow.payment.internal.v0.models.chargeback'] = PropTypes.exact({
26496
26716
  id: PropTypes.string.isRequired,
26497
26717
  key: PropTypes.string.isRequired,
@@ -27520,6 +27740,18 @@ T['io.flow.internal.v0.models.label_creation_request_form'] = PropTypes.exact({
27520
27740
  reference_id: PropTypes.string,
27521
27741
  });
27522
27742
 
27743
+ T['io.flow.internal.v0.models.calculation_stamping_line_item'] = PropTypes.exact({
27744
+ id: PropTypes.string,
27745
+ hs_code: PropTypes.string,
27746
+ duty: T['io.flow.common.v0.models.money'].isRequired,
27747
+ duty_rate: PropTypes.number.isRequired,
27748
+ sales_tax: T['io.flow.common.v0.models.money'].isRequired,
27749
+ sales_tax_rate: PropTypes.number.isRequired,
27750
+ additional_tax: T['io.flow.common.v0.models.money'],
27751
+ additional_tax_rate: PropTypes.number,
27752
+ total: T['io.flow.common.v0.models.money'].isRequired,
27753
+ });
27754
+
27523
27755
  T['io.flow.internal.v0.models.adjustment_details_amount_fixed'] = PropTypes.exact({
27524
27756
  amount: T['io.flow.common.v0.models.money'].isRequired,
27525
27757
  });
@@ -27577,21 +27809,38 @@ T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
27577
27809
  details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
27578
27810
  });
27579
27811
 
27580
- T['io.flow.internal.v0.enums.address_configuration_setting_province_code'] = PropTypes.oneOf(['iso_3166_2', 'name']);
27581
-
27582
- T['io.flow.internal.v0.models.address_configuration_setting_form'] = PropTypes.exact({
27583
- province_code: T['io.flow.internal.v0.enums.address_configuration_setting_province_code'].isRequired,
27812
+ T['io.flow.internal.v0.models.additional_import_tax'] = PropTypes.exact({
27813
+ name: PropTypes.string,
27814
+ additional_import_tax_value: T['io.flow.common.v0.models.money'],
27815
+ rate: PropTypes.number,
27584
27816
  });
27585
27817
 
27586
- T['io.flow.internal.v0.models.address_configuration_province_setting'] = PropTypes.exact({
27587
- code: T['io.flow.internal.v0.enums.address_configuration_setting_province_code'].isRequired,
27818
+ T['io.flow.internal.v0.models.calculation_total'] = PropTypes.exact({
27819
+ customs_value_name: PropTypes.string.isRequired,
27820
+ customs_value_amount: T['io.flow.common.v0.models.money'].isRequired,
27821
+ additional_import_included: PropTypes.bool,
27822
+ additional_import_value: T['io.flow.common.v0.models.money'],
27823
+ duty: T['io.flow.common.v0.models.money'].isRequired,
27824
+ sales_tax: T['io.flow.common.v0.models.money'].isRequired,
27825
+ additional_tax_import_included: PropTypes.bool.isRequired,
27826
+ additional_tax: T['io.flow.common.v0.models.money'],
27827
+ additional_import_tax: PropTypes.arrayOf(T['io.flow.internal.v0.models.additional_import_tax']),
27588
27828
  });
27589
27829
 
27590
- T['io.flow.internal.v0.models.address_configuration_setting'] = PropTypes.exact({
27591
- id: PropTypes.string.isRequired,
27592
- province: T['io.flow.internal.v0.models.address_configuration_province_setting'].isRequired,
27830
+ T['io.flow.internal.v0.models.calculation_step'] = PropTypes.exact({
27831
+ discriminator: PropTypes.oneOf(['calculation_step']).isRequired,
27832
+ primary_identifier: PropTypes.string.isRequired,
27833
+ line_item: PropTypes.arrayOf(T['io.flow.internal.v0.models.calculation_stamping_line_item']).isRequired,
27834
+ shipping_line_item: T['io.flow.internal.v0.models.calculation_stamping_shipping_line'].isRequired,
27835
+ total: T['io.flow.internal.v0.models.calculation_total'].isRequired,
27836
+ explanation: PropTypes.string,
27593
27837
  });
27594
27838
 
27839
+ T['io.flow.internal.v0.unions.calculator_stamp'] = PropTypes.oneOfType([
27840
+ T['io.flow.internal.v0.models.message_stamp'],
27841
+ T['io.flow.internal.v0.models.calculation_step'],
27842
+ ]);
27843
+
27595
27844
  T['io.flow.internal.v0.enums.item_quantity_action'] = PropTypes.oneOf(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']);
27596
27845
 
27597
27846
  T['io.flow.internal.v0.models.action_quantity'] = PropTypes.exact({
@@ -27653,6 +27902,12 @@ T['io.flow.internal.v0.models.account_origin'] = PropTypes.exact({
27653
27902
  country: PropTypes.string.isRequired,
27654
27903
  });
27655
27904
 
27905
+ T['io.flow.internal.v0.enums.account_status'] = PropTypes.oneOf(['active', 'inactive']);
27906
+
27907
+ T['io.flow.internal.v0.models.flow_account_status_form'] = PropTypes.exact({
27908
+ status: T['io.flow.internal.v0.enums.account_status'].isRequired,
27909
+ });
27910
+
27656
27911
  T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
27657
27912
  discriminator: PropTypes.oneOf(['organization_reference']).isRequired,
27658
27913
  id: PropTypes.string.isRequired,
@@ -28772,6 +29027,14 @@ T['io.flow.billing.internal.v0.models.organization_billing_statement'] = PropTyp
28772
29027
  attachments: PropTypes.arrayOf(T['io.flow.billing.internal.v0.models.billing_statement_attachment']).isRequired,
28773
29028
  });
28774
29029
 
29030
+ T['io.flow.billing.internal.v0.models.flow_billing_statement'] = PropTypes.exact({
29031
+ id: PropTypes.string.isRequired,
29032
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
29033
+ period: T['io.flow.common.v0.models.datetime_range'].isRequired,
29034
+ totals: T['io.flow.billing.internal.v0.models.billing_statement_totals'].isRequired,
29035
+ attachments: PropTypes.arrayOf(T['io.flow.billing.internal.v0.models.billing_statement_attachment']).isRequired,
29036
+ });
29037
+
28775
29038
  T['io.flow.billing.internal.v0.models.channel_billing_statement'] = PropTypes.exact({
28776
29039
  id: PropTypes.string.isRequired,
28777
29040
  account: T['io.flow.billing.v0.models.account_reference'].isRequired,
@@ -28810,6 +29073,7 @@ T['io.flow.billing.internal.v0.models.organization_account'] = PropTypes.exact({
28810
29073
  organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
28811
29074
  id: PropTypes.string.isRequired,
28812
29075
  key: PropTypes.string,
29076
+ status: T['io.flow.billing.internal.v0.enums.account_status'].isRequired,
28813
29077
  origin: T['io.flow.billing.internal.v0.models.account_origin'],
28814
29078
  currency: PropTypes.string.isRequired,
28815
29079
  updated_at: PropTypes.string.isRequired,
@@ -28828,6 +29092,7 @@ T['io.flow.billing.internal.v0.models.flow_account'] = PropTypes.exact({
28828
29092
  source: T['io.flow.billing.internal.v0.models.account_source'].isRequired,
28829
29093
  id: PropTypes.string.isRequired,
28830
29094
  key: PropTypes.string,
29095
+ status: T['io.flow.billing.internal.v0.enums.account_status'].isRequired,
28831
29096
  origin: T['io.flow.billing.internal.v0.models.account_origin'],
28832
29097
  currency: PropTypes.string.isRequired,
28833
29098
  updated_at: PropTypes.string.isRequired,
@@ -28846,6 +29111,7 @@ T['io.flow.billing.internal.v0.models.channel_account'] = PropTypes.exact({
28846
29111
  channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
28847
29112
  id: PropTypes.string.isRequired,
28848
29113
  key: PropTypes.string,
29114
+ status: T['io.flow.billing.internal.v0.enums.account_status'].isRequired,
28849
29115
  origin: T['io.flow.billing.internal.v0.models.account_origin'],
28850
29116
  currency: PropTypes.string.isRequired,
28851
29117
  updated_at: PropTypes.string.isRequired,
@@ -29441,6 +29707,30 @@ T['io.flow.internal.v0.models.order_revenue_region_chart'] = PropTypes.exact({
29441
29707
  data: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_revenue_region_data_point']).isRequired,
29442
29708
  });
29443
29709
 
29710
+ T['io.flow.internal.v0.models.matias_item_form'] = PropTypes.exact({
29711
+ number: PropTypes.string.isRequired,
29712
+ amount: T['io.flow.common.v0.models.price'].isRequired,
29713
+ description: PropTypes.string,
29714
+ type: T['io.flow.internal.v0.enums.matias_item_type'].isRequired,
29715
+ added_on: PropTypes.string.isRequired,
29716
+ });
29717
+
29718
+ T['io.flow.internal.v0.models.matias_item'] = PropTypes.exact({
29719
+ id: PropTypes.string.isRequired,
29720
+ number: PropTypes.string.isRequired,
29721
+ amount: T['io.flow.common.v0.models.price'].isRequired,
29722
+ description: PropTypes.string,
29723
+ type: T['io.flow.internal.v0.enums.matias_item_type'].isRequired,
29724
+ added_on: PropTypes.string.isRequired,
29725
+ });
29726
+
29727
+ T['io.flow.internal.v0.models.matias_item_upserted'] = PropTypes.exact({
29728
+ discriminator: PropTypes.oneOf(['matias_item_upserted']).isRequired,
29729
+ event_id: PropTypes.string.isRequired,
29730
+ timestamp: PropTypes.string.isRequired,
29731
+ item: T['io.flow.internal.v0.models.matias_item'].isRequired,
29732
+ });
29733
+
29444
29734
  T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
29445
29735
  id: PropTypes.string.isRequired,
29446
29736
  description: PropTypes.string.isRequired,
@@ -29754,6 +30044,7 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
29754
30044
  fx: T['io.flow.internal.v0.models.fee'],
29755
30045
  duty_guarantee: T['io.flow.internal.v0.models.fee'],
29756
30046
  transfer: T['io.flow.internal.v0.models.fee'],
30047
+ negative_balance: T['io.flow.internal.v0.models.fee'],
29757
30048
  });
29758
30049
 
29759
30050
  T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
@@ -29847,6 +30138,7 @@ T['io.flow.internal.v0.models.channel_order'] = PropTypes.exact({
29847
30138
  tracking_numbers: PropTypes.arrayOf(PropTypes.string),
29848
30139
  carrier: T['io.flow.reference.v0.models.carrier_service'],
29849
30140
  duty_paid: PropTypes.bool.isRequired,
30141
+ shop_id: PropTypes.string,
29850
30142
  });
29851
30143
 
29852
30144
  T['io.flow.internal.v0.models.next_billing_statement'] = PropTypes.exact({
@@ -29890,6 +30182,14 @@ T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact
29890
30182
  attachments: PropTypes.arrayOf(T['io.flow.internal.v0.models.billing_statement_attachment']).isRequired,
29891
30183
  });
29892
30184
 
30185
+ T['io.flow.internal.v0.models.flow_billing_statement'] = PropTypes.exact({
30186
+ id: PropTypes.string.isRequired,
30187
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
30188
+ period: T['io.flow.common.v0.models.datetime_range'].isRequired,
30189
+ totals: T['io.flow.internal.v0.models.billing_statement_totals'].isRequired,
30190
+ attachments: PropTypes.arrayOf(T['io.flow.internal.v0.models.billing_statement_attachment']).isRequired,
30191
+ });
30192
+
29893
30193
  T['io.flow.internal.v0.models.channel_billing_statement'] = PropTypes.exact({
29894
30194
  id: PropTypes.string.isRequired,
29895
30195
  account: T['io.flow.billing.v0.models.account_reference'].isRequired,
@@ -30850,6 +31150,7 @@ T['io.flow.internal.v0.models.channel_account'] = PropTypes.exact({
30850
31150
  channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
30851
31151
  id: PropTypes.string.isRequired,
30852
31152
  key: PropTypes.string,
31153
+ status: T['io.flow.internal.v0.enums.account_status'].isRequired,
30853
31154
  origin: T['io.flow.internal.v0.models.account_origin'],
30854
31155
  currency: PropTypes.string.isRequired,
30855
31156
  updated_at: PropTypes.string.isRequired,
@@ -30875,6 +31176,7 @@ T['io.flow.internal.v0.models.organization_account'] = PropTypes.exact({
30875
31176
  organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
30876
31177
  id: PropTypes.string.isRequired,
30877
31178
  key: PropTypes.string,
31179
+ status: T['io.flow.internal.v0.enums.account_status'].isRequired,
30878
31180
  origin: T['io.flow.internal.v0.models.account_origin'],
30879
31181
  currency: PropTypes.string.isRequired,
30880
31182
  updated_at: PropTypes.string.isRequired,
@@ -30935,6 +31237,7 @@ T['io.flow.internal.v0.models.flow_account'] = PropTypes.exact({
30935
31237
  source: T['io.flow.internal.v0.models.account_source'].isRequired,
30936
31238
  id: PropTypes.string.isRequired,
30937
31239
  key: PropTypes.string,
31240
+ status: T['io.flow.internal.v0.enums.account_status'].isRequired,
30938
31241
  origin: T['io.flow.internal.v0.models.account_origin'],
30939
31242
  currency: PropTypes.string.isRequired,
30940
31243
  updated_at: PropTypes.string.isRequired,
@@ -31121,6 +31424,7 @@ T['io.flow.internal.v0.models.billing_organization_settings'] = PropTypes.exact(
31121
31424
  b2b_tax_remittance_days: PropTypes.number,
31122
31425
  mor_fee: PropTypes.number,
31123
31426
  duty_guarantee_fee: PropTypes.number,
31427
+ negative_balance_fee: PropTypes.number,
31124
31428
  order_service_fee: T['io.flow.internal.v0.models.tiered_fee'],
31125
31429
  label_fee: T['io.flow.internal.v0.models.tiered_fee'],
31126
31430
  });
@@ -31151,7 +31455,7 @@ T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
31151
31455
  merchant_of_record_fee: PropTypes.number,
31152
31456
  duty_guarantee_fee: PropTypes.number,
31153
31457
  transfer_fee: PropTypes.number,
31154
- negative_balance_guarantee_fee: PropTypes.number,
31458
+ negative_balance_fee: PropTypes.number,
31155
31459
  order_service_fee: T['io.flow.internal.v0.models.tiered_fee'],
31156
31460
  label_fees: T['io.flow.internal.v0.models.account_setting_label_fees'],
31157
31461
  charge_label_cost_directly: PropTypes.bool.isRequired,
@@ -32183,6 +32487,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
32183
32487
  T['io.flow.internal.v0.models.svitlana_item_deleted'],
32184
32488
  T['io.flow.internal.v0.models.colm_item_upserted'],
32185
32489
  T['io.flow.internal.v0.models.colm_item_deleted'],
32490
+ T['io.flow.internal.v0.models.matias_item_upserted'],
32491
+ T['io.flow.internal.v0.models.matias_item_deleted'],
32186
32492
  T['io.flow.internal.v0.models.shruti_demo_item_upserted'],
32187
32493
  T['io.flow.internal.v0.models.shruti_demo_item_deleted'],
32188
32494
  T['io.flow.internal.v0.models.tam_item_upserted'],
@@ -32659,6 +32965,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
32659
32965
  'svitlana_item_deleted',
32660
32966
  'colm_item_upserted',
32661
32967
  'colm_item_deleted',
32968
+ 'matias_item_upserted',
32969
+ 'matias_item_deleted',
32662
32970
  'shruti_demo_item_upserted',
32663
32971
  'shruti_demo_item_deleted',
32664
32972
  'tam_item_upserted',
@@ -33095,6 +33403,9 @@ T['io.flow.internal.v0.models.erp_priority_vendor'] = PropTypes.exact({
33095
33403
  id: PropTypes.string.isRequired,
33096
33404
  acc_des: PropTypes.string,
33097
33405
  tax_code: PropTypes.string,
33406
+ tax_code_2: PropTypes.string,
33407
+ debit_entry_code: PropTypes.string,
33408
+ credit_entry_code: PropTypes.string,
33098
33409
  vat_flag: PropTypes.string,
33099
33410
  country_name: PropTypes.string,
33100
33411
  w_tax_percent: PropTypes.string,
@@ -34029,7 +34340,7 @@ T['io.flow.stripe.v0.enums.klarna_payment_method_category_type'] = PropTypes.one
34029
34340
  'pay_over_time',
34030
34341
  ]);
34031
34342
 
34032
- T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present']);
34343
+ T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present', 'klarna']);
34033
34344
 
34034
34345
  T['io.flow.stripe.v0.models.card_request'] = PropTypes.exact({
34035
34346
  object: PropTypes.string.isRequired,
@@ -35000,7 +35311,7 @@ T['io.flow.billing.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf(
35000
35311
  ]);
35001
35312
 
35002
35313
  T['io.flow.billing.internal.v0.enums.billing_statement_batch_file_key'] = PropTypes.oneOf(['summary']);
35003
- T['io.flow.billing.internal.v0.enums.carrier_charge_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'charge']);
35314
+ T['io.flow.billing.internal.v0.enums.carrier_charge_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'charge', 'revenue_share']);
35004
35315
  T['io.flow.billing.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
35005
35316
  T['io.flow.billing.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing']);
35006
35317
  T['io.flow.billing.internal.v0.enums.dispute_transaction_type'] = PropTypes.oneOf(['adjustment', 'dispute']);
@@ -35317,12 +35628,14 @@ export const accountSettingsDeleted = T['io.flow.internal.v0.models.account_sett
35317
35628
  export const accountSettingsUpserted = T['io.flow.internal.v0.models.account_settings_upserted'];
35318
35629
  export const accountSource = T['io.flow.internal.v0.models.account_source'];
35319
35630
  export const accountStatistics = T['io.flow.internal.v0.models.account_statistics'];
35631
+ export const accountStatus = T['io.flow.internal.v0.enums.account_status'];
35320
35632
  export const accountSummary = T['io.flow.internal.v0.models.account_summary'];
35321
35633
  export const accountTransactionsExportRequest = T['io.flow.internal.v0.models.account_transactions_export_request'];
35322
35634
  export const accountType = T['io.flow.internal.v0.enums.account_type'];
35323
35635
  export const accountUpserted = T['io.flow.internal.v0.models.account_upserted'];
35324
35636
  export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_v2'];
35325
35637
  export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
35638
+ export const additionalImportTax = T['io.flow.internal.v0.models.additional_import_tax'];
35326
35639
  export const addressConfigurationProvinceSetting = T['io.flow.internal.v0.models.address_configuration_province_setting'];
35327
35640
  export const addressConfigurationSetting = T['io.flow.internal.v0.models.address_configuration_setting'];
35328
35641
  export const addressConfigurationSettingForm = T['io.flow.internal.v0.models.address_configuration_setting_form'];
@@ -35513,6 +35826,10 @@ export const browserBundlePaymentMethods = T['io.flow.internal.v0.models.browser
35513
35826
  export const bulkClassificationAction = T['io.flow.internal.v0.models.bulk_classification_action'];
35514
35827
  export const byRuleSnapshot = T['io.flow.internal.v0.models.by_rule_snapshot'];
35515
35828
  export const calculatedTaxAmount = T['io.flow.internal.v0.models.calculated_tax_amount'];
35829
+ export const calculationStampingLineItem = T['io.flow.internal.v0.models.calculation_stamping_line_item'];
35830
+ export const calculationStampingShippingLine = T['io.flow.internal.v0.models.calculation_stamping_shipping_line'];
35831
+ export const calculationStep = T['io.flow.internal.v0.models.calculation_step'];
35832
+ export const calculationTotal = T['io.flow.internal.v0.models.calculation_total'];
35516
35833
  export const calculatorDtcePostBody = T['io.flow.internal.v0.models.calculator_dtce_post_body'];
35517
35834
  export const calculatorDtceProduct = T['io.flow.internal.v0.models.calculator_dtce_product'];
35518
35835
  export const calculatorEngine = T['io.flow.internal.v0.enums.calculator_engine'];
@@ -35520,6 +35837,7 @@ export const calculatorOrganizationSettings = T['io.flow.internal.v0.models.calc
35520
35837
  export const calculatorOrganizationSettingsDeleted = T['io.flow.internal.v0.models.calculator_organization_settings_deleted'];
35521
35838
  export const calculatorOrganizationSettingsForm = T['io.flow.internal.v0.models.calculator_organization_settings_form'];
35522
35839
  export const calculatorOrganizationSettingsUpserted = T['io.flow.internal.v0.models.calculator_organization_settings_upserted'];
35840
+ export const calculatorStamp = T['io.flow.internal.v0.unions.calculator_stamp'];
35523
35841
  export const carrierAccount = T['io.flow.internal.v0.models.carrier_account'];
35524
35842
  export const carrierAccountDeleted = T['io.flow.internal.v0.models.carrier_account_deleted'];
35525
35843
  export const carrierAccountForm = T['io.flow.internal.v0.models.carrier_account_form'];
@@ -36188,6 +36506,7 @@ export const commercialInvoiceComparison = T['io.flow.internal.v0.models.commerc
36188
36506
  export const commercialInvoiceInternal = T['io.flow.internal.v0.models.commercial_invoice_internal'];
36189
36507
  export const commercialInvoiceInternalDeleted = T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'];
36190
36508
  export const commercialInvoiceInternalUpserted = T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'];
36509
+ export const commercialInvoiceSummary = T['io.flow.internal.v0.models.commercial_invoice_summary'];
36191
36510
  export const companyReference = T['io.flow.internal.v0.models.company_reference'];
36192
36511
  export const compliance = T['io.flow.internal.v0.models.compliance'];
36193
36512
  export const complianceData = T['io.flow.internal.v0.unions.compliance_data'];
@@ -36466,7 +36785,9 @@ export const fiservMerchant = T['io.flow.internal.v0.models.fiserv_merchant'];
36466
36785
  export const fiservMerchantModificationForm = T['io.flow.internal.v0.models.fiserv_merchant_modification_form'];
36467
36786
  export const fiservMerchantPutForm = T['io.flow.internal.v0.models.fiserv_merchant_put_form'];
36468
36787
  export const flowAccount = T['io.flow.internal.v0.models.flow_account'];
36788
+ export const flowAccountStatusForm = T['io.flow.internal.v0.models.flow_account_status_form'];
36469
36789
  export const flowApp = T['io.flow.internal.v0.enums.flow_app'];
36790
+ export const flowBillingStatement = T['io.flow.internal.v0.models.flow_billing_statement'];
36470
36791
  export const flowChannelOrganization = T['io.flow.internal.v0.models.flow_channel_organization'];
36471
36792
  export const flowLabProject = T['io.flow.internal.v0.models.flow_lab_project'];
36472
36793
  export const flowLabProjectPostForm = T['io.flow.internal.v0.models.flow_lab_project_post_form'];
@@ -36860,6 +37181,11 @@ export const marketingGatewaySchemaSummary = T['io.flow.internal.v0.models.marke
36860
37181
  export const marketingGatewaySourceSummary = T['io.flow.internal.v0.unions.marketing_gateway_source_summary'];
36861
37182
  export const marketingGatewaySupportedChannelDetails = T['io.flow.internal.v0.models.marketing_gateway_supported_channel_details'];
36862
37183
  export const marketsOrder = T['io.flow.internal.v0.models.markets_order'];
37184
+ export const matiasItem = T['io.flow.internal.v0.models.matias_item'];
37185
+ export const matiasItemDeleted = T['io.flow.internal.v0.models.matias_item_deleted'];
37186
+ export const matiasItemForm = T['io.flow.internal.v0.models.matias_item_form'];
37187
+ export const matiasItemType = T['io.flow.internal.v0.enums.matias_item_type'];
37188
+ export const matiasItemUpserted = T['io.flow.internal.v0.models.matias_item_upserted'];
36863
37189
  export const merchant = T['io.flow.internal.v0.models.merchant'];
36864
37190
  export const merchantApplicationSummaries = T['io.flow.internal.v0.models.merchant_application_summaries'];
36865
37191
  export const merchantApplicationSummary = T['io.flow.internal.v0.models.merchant_application_summary'];
@@ -36875,6 +37201,7 @@ export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidie
36875
37201
  export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
36876
37202
  export const merchantTransactions = T['io.flow.internal.v0.models.merchant_transactions'];
36877
37203
  export const merchantUpserted = T['io.flow.internal.v0.models.merchant_upserted'];
37204
+ export const messageStamp = T['io.flow.internal.v0.models.message_stamp'];
36878
37205
  export const metadataProposition = T['io.flow.internal.v0.models.metadata_proposition'];
36879
37206
  export const metadataRatecard = T['io.flow.internal.v0.models.metadata_ratecard'];
36880
37207
  export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];