@flowio/api-internal-prop-types 9.24.52 → 9.24.53

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.
@@ -379,14 +379,16 @@ T['io.flow.billing.v0.models.organization_default_bank_account'] = PropTypes.exa
379
379
  bank_account: T['io.flow.billing.v0.models.bank_account_reference'].isRequired,
380
380
  });
381
381
 
382
- T['io.flow.billing.v0.models.no_payout'] = PropTypes.exact({
382
+ T['io.flow.billing.v0.models.settlement_no_payout'] = PropTypes.exact({
383
383
  discriminator: PropTypes.oneOf(['no_payout']).isRequired,
384
384
  placeholder: PropTypes.string,
385
385
  });
386
386
 
387
- T['io.flow.billing.v0.models.account_reference'] = PropTypes.exact({
388
- id: PropTypes.string.isRequired,
389
- currency: PropTypes.string.isRequired,
387
+ T['io.flow.billing.v0.enums.payout_attachment_type'] = PropTypes.oneOf(['transactions']);
388
+
389
+ T['io.flow.billing.v0.models.payout_attachment'] = PropTypes.exact({
390
+ type: T['io.flow.billing.v0.enums.payout_attachment_type'].isRequired,
391
+ url: PropTypes.string.isRequired,
390
392
  });
391
393
 
392
394
  T['io.flow.billing.v0.models.billing_channel_organization_summary'] = PropTypes.exact({
@@ -406,10 +408,10 @@ T['io.flow.billing.v0.models.bank_account_form'] = PropTypes.exact({
406
408
  info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
407
409
  });
408
410
 
409
- T['io.flow.billing.v0.enums.attachment_type'] = PropTypes.oneOf(['csv']);
411
+ T['io.flow.billing.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv']);
410
412
 
411
413
  T['io.flow.billing.v0.models.attachment'] = PropTypes.exact({
412
- type: T['io.flow.billing.v0.enums.attachment_type'].isRequired,
414
+ type: T['io.flow.billing.v0.enums.statement_attachment_type'].isRequired,
413
415
  url: PropTypes.string.isRequired,
414
416
  });
415
417
 
@@ -1535,7 +1537,7 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_contact'] = PropTypes.exact({
1535
1537
  country_code: PropTypes.string,
1536
1538
  });
1537
1539
 
1538
- T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', 'postal_address', 'phonetic_name']);
1540
+ T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', 'postalAddress', 'phoneticName']);
1539
1541
 
1540
1542
  T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks'] = PropTypes.oneOf([
1541
1543
  'amex',
@@ -1552,7 +1554,7 @@ T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'] = PropTypes.oneOf(['ship
1552
1554
  T['io.flow.apple.pay.v0.models.apple_pay_shipping_method'] = PropTypes.exact({
1553
1555
  label: PropTypes.string.isRequired,
1554
1556
  detail: PropTypes.string.isRequired,
1555
- amount: PropTypes.number.isRequired,
1557
+ amount: PropTypes.string.isRequired,
1556
1558
  identifier: PropTypes.string.isRequired,
1557
1559
  });
1558
1560
 
@@ -1561,7 +1563,7 @@ T['io.flow.apple.pay.v0.enums.apple_pay_merchant_capability'] = PropTypes.oneOf(
1561
1563
  T['io.flow.apple.pay.v0.models.apple_pay_line_item'] = PropTypes.exact({
1562
1564
  label: PropTypes.string.isRequired,
1563
1565
  type: T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'].isRequired,
1564
- amount: PropTypes.number.isRequired,
1566
+ amount: PropTypes.string.isRequired,
1565
1567
  });
1566
1568
 
1567
1569
  T['io.flow.apple.pay.v0.models.apple_pay_payment_info'] = PropTypes.exact({
@@ -2011,17 +2013,6 @@ T['io.flow.shopify.markets.v0.models.shopify_payment_schedules'] = PropTypes.exa
2011
2013
  expected_payment_method: PropTypes.string,
2012
2014
  });
2013
2015
 
2014
- T['io.flow.shopify.markets.v0.models.shopify_order_origin_location'] = PropTypes.exact({
2015
- id: PropTypes.number.isRequired,
2016
- country_code: PropTypes.string.isRequired,
2017
- province_code: PropTypes.string.isRequired,
2018
- name: PropTypes.string.isRequired,
2019
- address1: PropTypes.string.isRequired,
2020
- address2: PropTypes.string.isRequired,
2021
- city: PropTypes.string.isRequired,
2022
- zip: PropTypes.string.isRequired,
2023
- });
2024
-
2025
2016
  T['io.flow.shopify.markets.v0.models.shopify_order_property'] = PropTypes.exact({
2026
2017
  name: PropTypes.string.isRequired,
2027
2018
  value: PropTypes.string.isRequired,
@@ -2504,7 +2495,6 @@ T['io.flow.shopify.external.v0.models.shopify_shipping_line'] = PropTypes.exact(
2504
2495
  title: PropTypes.string.isRequired,
2505
2496
  tax_lines: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_tax_line']).isRequired,
2506
2497
  carrier_identifier: PropTypes.string,
2507
- requested_fulfillment_service_id: PropTypes.string,
2508
2498
  });
2509
2499
 
2510
2500
  T['io.flow.shopify.external.v0.enums.shopify_processing_method_type'] = PropTypes.oneOf(['checkout', 'direct', 'manual', 'offsite', 'express']);
@@ -2532,7 +2522,6 @@ T['io.flow.shopify.external.v0.models.shopify_webhook_order'] = PropTypes.exact(
2532
2522
 
2533
2523
  T['io.flow.shopify.external.v0.models.shopify_line_item_form'] = PropTypes.exact({
2534
2524
  fulfillable_quantity: PropTypes.number,
2535
- fulfillment_service: PropTypes.string.isRequired,
2536
2525
  fulfillment_status: T['io.flow.shopify.external.v0.enums.fulfillment_status_type'],
2537
2526
  grams: PropTypes.number,
2538
2527
  price: PropTypes.string,
@@ -2557,7 +2546,6 @@ T['io.flow.shopify.external.v0.models.shopify_line_item'] = PropTypes.exact({
2557
2546
  id: PropTypes.number.isRequired,
2558
2547
  quantity: PropTypes.number.isRequired,
2559
2548
  fulfillable_quantity: PropTypes.number,
2560
- fulfillment_service: PropTypes.string.isRequired,
2561
2549
  fulfillment_status: T['io.flow.shopify.external.v0.enums.fulfillment_status_type'],
2562
2550
  grams: PropTypes.number,
2563
2551
  price: PropTypes.string,
@@ -4470,8 +4458,6 @@ T['io.flow.label.v0.models.shipping_label_summary'] = PropTypes.exact({
4470
4458
  carrier_tracking_number: PropTypes.string.isRequired,
4471
4459
  });
4472
4460
 
4473
- T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
4474
-
4475
4461
  T['io.flow.experience.v0.enums.order_payment_type'] = PropTypes.oneOf([
4476
4462
  'card',
4477
4463
  'online',
@@ -6417,6 +6403,7 @@ T['io.flow.google.pay.v0.models.encrypted_message'] = PropTypes.exact({
6417
6403
  paymentMethodDetails: T['io.flow.google.pay.v0.models.payment_method_details'].isRequired,
6418
6404
  });
6419
6405
 
6406
+ T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
6420
6407
  T['io.flow.fulfillment.v0.enums.item_availability_status'] = PropTypes.oneOf(['available', 'low', 'out_of_stock']);
6421
6408
 
6422
6409
  T['io.flow.fulfillment.v0.models.country_availability'] = PropTypes.exact({
@@ -7940,6 +7927,14 @@ T['io.flow.internal.v0.models.account_deleted_v2'] = PropTypes.exact({
7940
7927
  id: PropTypes.string.isRequired,
7941
7928
  });
7942
7929
 
7930
+ T['io.flow.internal.v0.models.test_deleted'] = PropTypes.exact({
7931
+ discriminator: PropTypes.oneOf(['test_deleted']).isRequired,
7932
+ event_id: PropTypes.string.isRequired,
7933
+ timestamp: PropTypes.string.isRequired,
7934
+ organization: PropTypes.string.isRequired,
7935
+ id: PropTypes.string.isRequired,
7936
+ });
7937
+
7943
7938
  T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'] = PropTypes.exact({
7944
7939
  discriminator: PropTypes.oneOf(['weee']).isRequired,
7945
7940
  label: PropTypes.string.isRequired,
@@ -8245,6 +8240,19 @@ T['io.flow.internal.v0.models.time_to_classify_aggregated_deleted'] = PropTypes.
8245
8240
  time_to_classify_aggregated: T['io.flow.internal.v0.models.time_to_classify_aggregated'].isRequired,
8246
8241
  });
8247
8242
 
8243
+ T['io.flow.internal.v0.models.test'] = PropTypes.exact({
8244
+ id: PropTypes.string.isRequired,
8245
+ name: PropTypes.string.isRequired,
8246
+ });
8247
+
8248
+ T['io.flow.internal.v0.models.test_upserted'] = PropTypes.exact({
8249
+ discriminator: PropTypes.oneOf(['test_upserted']).isRequired,
8250
+ event_id: PropTypes.string.isRequired,
8251
+ timestamp: PropTypes.string.isRequired,
8252
+ organization: PropTypes.string.isRequired,
8253
+ test: T['io.flow.internal.v0.models.test'].isRequired,
8254
+ });
8255
+
8248
8256
  T['io.flow.internal.v0.models.taxonomy_node'] = PropTypes.exact({
8249
8257
  id: PropTypes.string.isRequired,
8250
8258
  children: PropTypes.arrayOf(PropTypes.any),
@@ -8773,6 +8781,7 @@ T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
8773
8781
  'locations/create',
8774
8782
  'locations/update',
8775
8783
  'locations/delete',
8784
+ 'order_transactions/create',
8776
8785
  'orders/cancelled',
8777
8786
  'orders/create',
8778
8787
  'orders/fulfilled',
@@ -9093,6 +9102,68 @@ T['io.flow.internal.v0.models.ratecard_standard_settings'] = PropTypes.exact({
9093
9102
  margin: PropTypes.number.isRequired,
9094
9103
  });
9095
9104
 
9105
+ T['io.flow.internal.v0.models.rate_level_ratecard'] = PropTypes.exact({
9106
+ id: PropTypes.string.isRequired,
9107
+ ratecard_id: PropTypes.string.isRequired,
9108
+ rate_level_id: PropTypes.string.isRequired,
9109
+ });
9110
+
9111
+ T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_upserted'] = PropTypes.exact({
9112
+ discriminator: PropTypes.oneOf(['ratecard_rate_level_ratecard_upserted']).isRequired,
9113
+ event_id: PropTypes.string.isRequired,
9114
+ timestamp: PropTypes.string.isRequired,
9115
+ rate_level_ratecard: T['io.flow.internal.v0.models.rate_level_ratecard'].isRequired,
9116
+ });
9117
+
9118
+ T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_deleted'] = PropTypes.exact({
9119
+ discriminator: PropTypes.oneOf(['ratecard_rate_level_ratecard_deleted']).isRequired,
9120
+ event_id: PropTypes.string.isRequired,
9121
+ timestamp: PropTypes.string.isRequired,
9122
+ rate_level_ratecard: T['io.flow.internal.v0.models.rate_level_ratecard'].isRequired,
9123
+ });
9124
+
9125
+ T['io.flow.internal.v0.models.rate_level_organization'] = PropTypes.exact({
9126
+ id: PropTypes.string.isRequired,
9127
+ organization_id: PropTypes.string.isRequired,
9128
+ rate_level_id: PropTypes.string.isRequired,
9129
+ effective_at: PropTypes.string.isRequired,
9130
+ });
9131
+
9132
+ T['io.flow.internal.v0.models.ratecard_rate_level_organization_upserted'] = PropTypes.exact({
9133
+ discriminator: PropTypes.oneOf(['ratecard_rate_level_organization_upserted']).isRequired,
9134
+ event_id: PropTypes.string.isRequired,
9135
+ timestamp: PropTypes.string.isRequired,
9136
+ organization: PropTypes.string.isRequired,
9137
+ rate_level_organization: T['io.flow.internal.v0.models.rate_level_organization'].isRequired,
9138
+ });
9139
+
9140
+ T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'] = PropTypes.exact({
9141
+ discriminator: PropTypes.oneOf(['ratecard_rate_level_organization_deleted']).isRequired,
9142
+ event_id: PropTypes.string.isRequired,
9143
+ timestamp: PropTypes.string.isRequired,
9144
+ organization: PropTypes.string.isRequired,
9145
+ rate_level_organization: T['io.flow.internal.v0.models.rate_level_organization'].isRequired,
9146
+ });
9147
+
9148
+ T['io.flow.internal.v0.models.rate_level'] = PropTypes.exact({
9149
+ id: PropTypes.string.isRequired,
9150
+ name: PropTypes.string.isRequired,
9151
+ });
9152
+
9153
+ T['io.flow.internal.v0.models.ratecard_rate_level_upserted'] = PropTypes.exact({
9154
+ discriminator: PropTypes.oneOf(['ratecard_rate_level_upserted']).isRequired,
9155
+ event_id: PropTypes.string.isRequired,
9156
+ timestamp: PropTypes.string.isRequired,
9157
+ rate_level: T['io.flow.internal.v0.models.rate_level'].isRequired,
9158
+ });
9159
+
9160
+ T['io.flow.internal.v0.models.ratecard_rate_level_deleted'] = PropTypes.exact({
9161
+ discriminator: PropTypes.oneOf(['ratecard_rate_level_deleted']).isRequired,
9162
+ event_id: PropTypes.string.isRequired,
9163
+ timestamp: PropTypes.string.isRequired,
9164
+ rate_level: T['io.flow.internal.v0.models.rate_level'].isRequired,
9165
+ });
9166
+
9096
9167
  T['io.flow.ratecard.v0.models.ratecard_lanes_import_request_data'] = PropTypes.exact({
9097
9168
  id: PropTypes.string.isRequired,
9098
9169
  source_url: PropTypes.string.isRequired,
@@ -9678,6 +9749,33 @@ T['io.flow.payment.gateway.v0.models.payment_capture_option_automatic_immediate'
9678
9749
 
9679
9750
  T['io.flow.internal.v0.enums.organization_payment_status'] = PropTypes.oneOf(['active', 'archived']);
9680
9751
 
9752
+ T['io.flow.internal.v0.models.organization_business_entity'] = PropTypes.exact({
9753
+ id: PropTypes.string.isRequired,
9754
+ name: PropTypes.string.isRequired,
9755
+ streets: PropTypes.arrayOf(PropTypes.string).isRequired,
9756
+ city: PropTypes.string.isRequired,
9757
+ province: PropTypes.string,
9758
+ postal: PropTypes.string,
9759
+ country: PropTypes.string.isRequired,
9760
+ });
9761
+
9762
+ T['io.flow.internal.v0.models.organization_business_entity_upserted'] = PropTypes.exact({
9763
+ discriminator: PropTypes.oneOf(['organization_business_entity_upserted']).isRequired,
9764
+ event_id: PropTypes.string.isRequired,
9765
+ timestamp: PropTypes.string.isRequired,
9766
+ organization: PropTypes.string.isRequired,
9767
+ business_entity: T['io.flow.internal.v0.models.organization_business_entity'].isRequired,
9768
+ });
9769
+
9770
+ T['io.flow.internal.v0.models.organization_business_entity_deleted'] = PropTypes.exact({
9771
+ discriminator: PropTypes.oneOf(['organization_business_entity_deleted']).isRequired,
9772
+ event_id: PropTypes.string.isRequired,
9773
+ timestamp: PropTypes.string.isRequired,
9774
+ organization: PropTypes.string.isRequired,
9775
+ business_entity: T['io.flow.internal.v0.models.organization_business_entity'].isRequired,
9776
+ id: PropTypes.string.isRequired,
9777
+ });
9778
+
9681
9779
  T['io.flow.internal.v0.models.feature_id_reference'] = PropTypes.exact({
9682
9780
  id: PropTypes.string.isRequired,
9683
9781
  });
@@ -9801,7 +9899,7 @@ T['io.flow.organization.onboarding.state.v0.models.merchant_activated'] = PropTy
9801
9899
 
9802
9900
  T['io.flow.organization.onboarding.state.v0.models.setup_completed'] = PropTypes.exact({
9803
9901
  discriminator: PropTypes.oneOf(['setup_completed']).isRequired,
9804
- placeholder: PropTypes.bool,
9902
+ third_party_logistics_guid: PropTypes.string.isRequired,
9805
9903
  });
9806
9904
 
9807
9905
  T['io.flow.organization.onboarding.state.v0.models.setup_blocked'] = PropTypes.exact({
@@ -9950,7 +10048,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_transaction'] = PropTypes.exa
9950
10048
  currency: PropTypes.string.isRequired,
9951
10049
  status: T['io.flow.shopify.markets.v0.enums.shopify_order_transaction_status'],
9952
10050
  payment_details: T['io.flow.shopify.markets.v0.models.shopify_order_payment_detail'],
9953
- receipt: PropTypes.object.isRequired,
10051
+ receipt: PropTypes.object,
9954
10052
  authorization: PropTypes.string,
9955
10053
  created_at: PropTypes.string.isRequired,
9956
10054
  device_id: PropTypes.number,
@@ -10036,14 +10134,12 @@ T['io.flow.shopify.markets.v0.models.shopify_order_shipping_line'] = PropTypes.e
10036
10134
  title: PropTypes.string.isRequired,
10037
10135
  tax_lines: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_tax_line']).isRequired,
10038
10136
  carrier_identifier: PropTypes.string,
10039
- requested_fulfillment_service_id: PropTypes.string,
10040
10137
  price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'].isRequired,
10041
10138
  discounted_price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'].isRequired,
10042
10139
  });
10043
10140
 
10044
10141
  T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact({
10045
10142
  fulfillable_quantity: PropTypes.number,
10046
- fulfillment_service: PropTypes.string.isRequired,
10047
10143
  fulfillment_status: T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_status_type'],
10048
10144
  grams: PropTypes.number,
10049
10145
  id: PropTypes.number.isRequired,
@@ -10067,7 +10163,6 @@ T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact
10067
10163
  total_discount: PropTypes.string,
10068
10164
  total_discount_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
10069
10165
  discount_allocations: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_discount_allocation']),
10070
- origin_location: T['io.flow.shopify.markets.v0.models.shopify_order_origin_location'],
10071
10166
  variant_inventory_management: PropTypes.string,
10072
10167
  product_exists: PropTypes.bool,
10073
10168
  duties: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_duty']).isRequired,
@@ -10164,10 +10259,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_customer'] = PropTypes.exact(
10164
10259
  updated_at: PropTypes.string,
10165
10260
  first_name: PropTypes.string,
10166
10261
  last_name: PropTypes.string,
10167
- orders_count: PropTypes.number,
10168
10262
  state: PropTypes.string,
10169
- total_spent: PropTypes.string,
10170
- last_order_id: PropTypes.number,
10171
10263
  note: PropTypes.string,
10172
10264
  verified_email: PropTypes.bool,
10173
10265
  multipass_identifier: PropTypes.string,
@@ -10175,7 +10267,6 @@ T['io.flow.shopify.markets.v0.models.shopify_order_customer'] = PropTypes.exact(
10175
10267
  tax_exemptions: PropTypes.arrayOf(PropTypes.string),
10176
10268
  phone: PropTypes.string,
10177
10269
  tags: PropTypes.string,
10178
- last_order_name: PropTypes.string,
10179
10270
  currency: PropTypes.string,
10180
10271
  addresses: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
10181
10272
  default_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
@@ -12741,6 +12832,19 @@ T['io.flow.internal.v0.models.delivered_duty_option_message'] = PropTypes.exact(
12741
12832
  text: PropTypes.string.isRequired,
12742
12833
  });
12743
12834
 
12835
+ T['io.flow.internal.v0.enums.rejection_reason'] = PropTypes.oneOf([
12836
+ 'suspicious_behavior',
12837
+ 'suspicious_past_activity',
12838
+ 'risky_velocity',
12839
+ 'previous_chargebacks',
12840
+ 'restricted_party_screening',
12841
+ ]);
12842
+
12843
+ T['io.flow.internal.v0.models.decline_reason_fraud'] = PropTypes.exact({
12844
+ discriminator: PropTypes.oneOf(['fraud']).isRequired,
12845
+ rejection_reason: T['io.flow.internal.v0.enums.rejection_reason'].isRequired,
12846
+ });
12847
+
12744
12848
  T['io.flow.internal.v0.models.debug_transaction_fx_rate'] = PropTypes.exact({
12745
12849
  base: PropTypes.string.isRequired,
12746
12850
  target: PropTypes.string.isRequired,
@@ -12791,13 +12895,14 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
12791
12895
  'virtual_card_refund',
12792
12896
  ]);
12793
12897
 
12794
- T['io.flow.billing.v0.models.billing_channel_payment_request_reference'] = PropTypes.exact({
12898
+ T['io.flow.billing.v0.models.parent_transaction_summary'] = PropTypes.exact({
12795
12899
  id: PropTypes.string.isRequired,
12796
- reference: PropTypes.string,
12900
+ source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
12797
12901
  });
12798
12902
 
12799
- T['io.flow.billing.v0.models.billing_channel_statement_reference'] = PropTypes.exact({
12903
+ T['io.flow.billing.v0.models.billing_channel_payment_request_reference'] = PropTypes.exact({
12800
12904
  id: PropTypes.string.isRequired,
12905
+ reference: PropTypes.string,
12801
12906
  });
12802
12907
 
12803
12908
  T['io.flow.billing.v0.models.billing_channel_order_summary'] = PropTypes.exact({
@@ -12806,6 +12911,10 @@ T['io.flow.billing.v0.models.billing_channel_order_summary'] = PropTypes.exact({
12806
12911
  identifiers: PropTypes.objectOf(PropTypes.string),
12807
12912
  });
12808
12913
 
12914
+ T['io.flow.billing.v0.models.billing_channel_statement_reference'] = PropTypes.exact({
12915
+ id: PropTypes.string.isRequired,
12916
+ });
12917
+
12809
12918
  T['io.flow.internal.v0.models.debug_label_transaction_summary'] = PropTypes.exact({
12810
12919
  id: PropTypes.string.isRequired,
12811
12920
  type: PropTypes.string.isRequired,
@@ -16945,10 +17054,11 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
16945
17054
  'missing_order_information',
16946
17055
  'unsupported_payment_information',
16947
17056
  'unsupported_shop_currency',
16948
- 'invalid_rate',
17057
+ 'unsupported_free_order',
16949
17058
  'extracting_distribution_info_failed',
16950
17059
  'shipping_estimation_failed',
16951
17060
  'payment_authorization_failed',
17061
+ 'unsupported_subsidized_order',
16952
17062
  ]);
16953
17063
 
16954
17064
  T['io.flow.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
@@ -16961,7 +17071,11 @@ T['io.flow.internal.v0.models.decline_reason_channel_order_acceptance'] = PropTy
16961
17071
  decline_reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
16962
17072
  });
16963
17073
 
16964
- T['io.flow.internal.v0.unions.decline_reason'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.decline_reason_channel_order_acceptance']]);
17074
+ T['io.flow.internal.v0.unions.decline_reason'] = PropTypes.oneOfType([
17075
+ T['io.flow.internal.v0.models.decline_reason_channel_order_acceptance'],
17076
+ T['io.flow.internal.v0.models.decline_reason_fraud'],
17077
+ ]);
17078
+
16965
17079
  T['io.flow.internal.v0.enums.channel_order_acceptance_status'] = PropTypes.oneOf(['accepted', 'rejected', 'review']);
16966
17080
 
16967
17081
  T['io.flow.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact({
@@ -18548,358 +18662,111 @@ T['io.flow.internal.v0.models.billing_organization_processing_rates_upserted'] =
18548
18662
  rates: T['io.flow.internal.v0.models.billing_organization_processing_rates'].isRequired,
18549
18663
  });
18550
18664
 
18551
- T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
18552
- discriminator: PropTypes.oneOf(['organization_reference']).isRequired,
18553
- id: PropTypes.string.isRequired,
18665
+ T['io.flow.internal.v0.models.billing_order_destination'] = PropTypes.exact({
18666
+ city: PropTypes.string,
18667
+ province: PropTypes.string,
18668
+ postal: PropTypes.string,
18669
+ country: PropTypes.string.isRequired,
18554
18670
  });
18555
18671
 
18556
- T['io.flow.session.v0.models.organization_session_authorization'] = PropTypes.exact({
18557
- discriminator: PropTypes.oneOf(['organization_session_authorization']).isRequired,
18558
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
18559
- environment: T['io.flow.common.v0.enums.environment'].isRequired,
18672
+ T['io.flow.internal.v0.models.billing_order_summary'] = PropTypes.exact({
18673
+ number: PropTypes.string.isRequired,
18674
+ submitted_at: PropTypes.string.isRequired,
18675
+ primary_identifier: PropTypes.string,
18676
+ identifiers: PropTypes.objectOf(PropTypes.string),
18677
+ destination: T['io.flow.internal.v0.models.billing_order_destination'],
18560
18678
  });
18561
18679
 
18562
- T['io.flow.session.v0.unions.session_authorization'] = PropTypes.oneOfType([T['io.flow.session.v0.models.organization_session_authorization']]);
18563
-
18564
- T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
18565
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
18566
-
18567
- transitions: PropTypes.arrayOf(
18568
- T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'],
18569
- ).isRequired,
18680
+ T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'could_not_process']);
18681
+ T['io.flow.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['sent', 'failed']);
18570
18682
 
18571
- current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
18683
+ T['io.flow.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
18684
+ code: T['io.flow.internal.v0.enums.bank_payment_status_code'].isRequired,
18685
+ failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
18572
18686
  });
18573
18687
 
18574
- T['io.flow.checkout.v0.models.checkout_token'] = PropTypes.exact({
18575
- id: PropTypes.string.isRequired,
18576
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
18577
- checkout: T['io.flow.common.v0.models.checkout_reference'].isRequired,
18578
- order: T['io.flow.experience.v0.models.order_number_reference'].isRequired,
18579
- urls: T['io.flow.checkout.v0.models.checkout_urls'].isRequired,
18580
- expires_at: PropTypes.string.isRequired,
18581
- session: T['io.flow.common.v0.models.session_reference'].isRequired,
18582
- customer: T['io.flow.common.v0.models.customer_reference'],
18688
+ T['io.flow.billing.v0.models.payout_status_failed'] = PropTypes.exact({
18689
+ code: PropTypes.oneOf(['failed']).isRequired,
18690
+ timestamp: PropTypes.string.isRequired,
18691
+ reason: T['io.flow.billing.v0.enums.payout_status_failure_code'].isRequired,
18583
18692
  });
18584
18693
 
18585
- T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
18586
- discriminator: PropTypes.oneOf(['organization_token_v2_reference']).isRequired,
18587
- id: PropTypes.string.isRequired,
18588
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
18694
+ T['io.flow.billing.v0.models.payout_status_sent'] = PropTypes.exact({
18695
+ code: PropTypes.oneOf(['sent']).isRequired,
18696
+ timestamp: PropTypes.string.isRequired,
18589
18697
  });
18590
18698
 
18591
- T['io.flow.export.v0.models.marketing_feeds_export_type'] = PropTypes.exact({
18592
- discriminator: PropTypes.oneOf(['marketing_feeds_export_type']).isRequired,
18593
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
18594
- feed_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
18699
+ T['io.flow.billing.v0.models.payout_status_scheduled'] = PropTypes.exact({
18700
+ code: PropTypes.oneOf(['scheduled']).isRequired,
18701
+ placeholder: PropTypes.string,
18595
18702
  });
18596
18703
 
18597
- T['io.flow.export.v0.unions.export_type'] = PropTypes.oneOfType([
18598
- T['io.flow.export.v0.models.account_transactions_export_type'],
18599
- T['io.flow.export.v0.models.account_orders_export_type'],
18600
- T['io.flow.export.v0.models.analytics_export_type'],
18601
- T['io.flow.export.v0.models.catalog_item_export_type'],
18602
- T['io.flow.export.v0.models.experience_export_type'],
18603
- T['io.flow.export.v0.models.harmonization_overview_export_type'],
18604
- T['io.flow.export.v0.models.harmonization_hs6_export_type'],
18605
- T['io.flow.export.v0.models.harmonization_hs10_export_type'],
18606
- T['io.flow.export.v0.models.harmonization_tariff_codes_export_type'],
18607
- T['io.flow.export.v0.models.unharmonized_item_export_type'],
18608
- T['io.flow.export.v0.models.order_export_type'],
18609
- T['io.flow.export.v0.models.price_book_item_export_type'],
18610
- T['io.flow.export.v0.models.solidus_product_export_type'],
18611
- T['io.flow.export.v0.models.solidus_variant_export_type'],
18612
- T['io.flow.export.v0.models.localized_item_prices_export_type'],
18613
- T['io.flow.export.v0.models.marketing_feeds_export_type'],
18614
- T['io.flow.export.v0.models.exclusion_rules_export_type'],
18704
+ T['io.flow.billing.v0.unions.payout_status'] = PropTypes.oneOfType([
18705
+ T['io.flow.billing.v0.models.payout_status_scheduled'],
18706
+ T['io.flow.billing.v0.models.payout_status_sent'],
18707
+ T['io.flow.billing.v0.models.payout_status_failed'],
18615
18708
  ]);
18616
18709
 
18617
- T['io.flow.export.v0.models.scheduled_export_form'] = PropTypes.exact({
18618
- user_id: PropTypes.string.isRequired,
18619
- organization_q: PropTypes.string.isRequired,
18620
- hour: PropTypes.number.isRequired,
18621
- minute: PropTypes.number.isRequired,
18622
- timezone: PropTypes.string.isRequired,
18623
- types: PropTypes.arrayOf(T['io.flow.export.v0.unions.export_type']).isRequired,
18710
+ T['io.flow.billing.v0.models.settlement_payout'] = PropTypes.exact({
18711
+ discriminator: PropTypes.oneOf(['payout']).isRequired,
18712
+ status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
18713
+ amount: PropTypes.number.isRequired,
18714
+ sent_on: PropTypes.string,
18624
18715
  });
18625
18716
 
18626
- T['io.flow.export.v0.models.export_form'] = PropTypes.exact({
18627
- type: T['io.flow.export.v0.unions.export_type'].isRequired,
18628
- emails: PropTypes.arrayOf(PropTypes.string),
18629
- organization_q: PropTypes.string,
18717
+ T['io.flow.billing.v0.unions.settlement'] = PropTypes.oneOfType([
18718
+ T['io.flow.billing.v0.models.settlement_no_payout'],
18719
+ T['io.flow.billing.v0.models.settlement_payout'],
18720
+ ]);
18721
+
18722
+ T['io.flow.billing.v0.models.account_reference'] = PropTypes.exact({
18723
+ id: PropTypes.string.isRequired,
18724
+ currency: PropTypes.string.isRequired,
18630
18725
  });
18631
18726
 
18632
- T['io.flow.export.v0.models.export'] = PropTypes.exact({
18727
+ T['io.flow.billing.v0.models.statement'] = PropTypes.exact({
18633
18728
  id: PropTypes.string.isRequired,
18634
- type: T['io.flow.export.v0.unions.export_type'].isRequired,
18635
- status: T['io.flow.export.v0.enums.export_status'].isRequired,
18636
- organization_q: PropTypes.string.isRequired,
18729
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
18730
+ ending_balance: PropTypes.number.isRequired,
18731
+ settlement: T['io.flow.billing.v0.unions.settlement'].isRequired,
18732
+ attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.attachment']).isRequired,
18637
18733
  created_at: PropTypes.string.isRequired,
18638
- started_at: PropTypes.string,
18639
- completed_at: PropTypes.string,
18640
- url: PropTypes.string,
18641
- deliveries: PropTypes.arrayOf(T['io.flow.export.v0.unions.export_delivery']).isRequired,
18642
18734
  });
18643
18735
 
18644
- T['io.flow.export.v0.models.export_version'] = PropTypes.exact({
18736
+ T['io.flow.billing.v0.models.organization_payout'] = PropTypes.exact({
18645
18737
  id: PropTypes.string.isRequired,
18646
- timestamp: PropTypes.string.isRequired,
18647
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
18648
- 'export': T['io.flow.export.v0.models.export'].isRequired,
18738
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
18739
+ status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
18740
+ amount: PropTypes.number.isRequired,
18741
+ attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.payout_attachment']).isRequired,
18742
+ created_at: PropTypes.string.isRequired,
18743
+ updated_at: PropTypes.string.isRequired,
18649
18744
  });
18650
18745
 
18651
- T['io.flow.internal.v0.models.store_connection'] = PropTypes.exact({
18652
- organization: T['io.flow.common.v0.models.organization_reference'],
18746
+ T['io.flow.billing.v0.models.channel_statement'] = PropTypes.exact({
18653
18747
  id: PropTypes.string.isRequired,
18654
- domain: PropTypes.string.isRequired,
18748
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
18749
+ ending_balance: PropTypes.number.isRequired,
18750
+ settlement: T['io.flow.billing.v0.unions.settlement'].isRequired,
18751
+ attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.attachment']).isRequired,
18752
+ created_at: PropTypes.string.isRequired,
18655
18753
  });
18656
18754
 
18657
- T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'] = PropTypes.exact({
18755
+ T['io.flow.billing.v0.models.channel_payout'] = PropTypes.exact({
18658
18756
  id: PropTypes.string.isRequired,
18659
- organization_reference: T['io.flow.common.v0.models.organization_reference'].isRequired,
18660
- order_number: PropTypes.string.isRequired,
18661
- monitor: T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'].isRequired,
18757
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
18758
+ status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
18759
+ amount: PropTypes.number.isRequired,
18760
+ attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.payout_attachment']).isRequired,
18761
+ created_at: PropTypes.string.isRequired,
18762
+ updated_at: PropTypes.string.isRequired,
18662
18763
  });
18663
18764
 
18664
- T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review'] = PropTypes.exact({
18765
+ T['io.flow.internal.v0.enums.order_charge_trigger'] = PropTypes.oneOf(['first_shipment', 'last_shipment', 'shipment_exhausted']);
18766
+
18767
+ T['io.flow.common.v0.models.catalog_item_reference'] = PropTypes.exact({
18665
18768
  id: PropTypes.string.isRequired,
18666
- order_monitor: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'].isRequired,
18667
- status: T['io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status'].isRequired,
18668
- });
18669
-
18670
- T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'] = PropTypes.exact({
18671
- discriminator: PropTypes.oneOf(['shopify_monitoring_order_monitor_event_upserted']).isRequired,
18672
- event_id: PropTypes.string.isRequired,
18673
- timestamp: PropTypes.string.isRequired,
18674
- organization: PropTypes.string.isRequired,
18675
- order_monitor: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'].isRequired,
18676
- });
18677
-
18678
- T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'] = PropTypes.exact({
18679
- discriminator: PropTypes.oneOf(['shopify_monitoring_order_monitor_event_deleted']).isRequired,
18680
- event_id: PropTypes.string.isRequired,
18681
- timestamp: PropTypes.string.isRequired,
18682
- organization: PropTypes.string.isRequired,
18683
- order_monitor: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'].isRequired,
18684
- });
18685
-
18686
- T['io.flow.internal.v0.models.shop'] = PropTypes.exact({
18687
- id: PropTypes.string.isRequired,
18688
- organization: T['io.flow.common.v0.models.organization_reference'],
18689
- myshopify_domain: PropTypes.string.isRequired,
18690
- domain: PropTypes.string,
18691
- });
18692
-
18693
- T['io.flow.internal.v0.models.shopify_shop_upserted'] = PropTypes.exact({
18694
- discriminator: PropTypes.oneOf(['shopify_shop_upserted']).isRequired,
18695
- event_id: PropTypes.string.isRequired,
18696
- timestamp: PropTypes.string.isRequired,
18697
- shop: T['io.flow.internal.v0.models.shop'].isRequired,
18698
- });
18699
-
18700
- T['io.flow.internal.v0.models.shop_version'] = PropTypes.exact({
18701
- id: PropTypes.string.isRequired,
18702
- timestamp: PropTypes.string.isRequired,
18703
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
18704
- shop: T['io.flow.internal.v0.models.shop'].isRequired,
18705
- });
18706
-
18707
- T['io.flow.internal.v0.models.ratecard_internal_summary'] = PropTypes.exact({
18708
- id: PropTypes.string.isRequired,
18709
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
18710
- number: PropTypes.string.isRequired,
18711
- });
18712
-
18713
- T['io.flow.internal.v0.models.ratecard_standard_configuration'] = PropTypes.exact({
18714
- id: PropTypes.string.isRequired,
18715
- key: PropTypes.string.isRequired,
18716
- source_ratecard: T['io.flow.internal.v0.models.ratecard_internal_summary'].isRequired,
18717
- settings: T['io.flow.internal.v0.models.ratecard_standard_settings'].isRequired,
18718
- });
18719
-
18720
- T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'] = PropTypes.exact({
18721
- discriminator: PropTypes.oneOf(['ratecard_standard_configuration_upserted']).isRequired,
18722
- event_id: PropTypes.string.isRequired,
18723
- timestamp: PropTypes.string.isRequired,
18724
- organization: PropTypes.string.isRequired,
18725
- configuration: T['io.flow.internal.v0.models.ratecard_standard_configuration'].isRequired,
18726
- });
18727
-
18728
- T['io.flow.internal.v0.models.organization_boolean_value'] = PropTypes.exact({
18729
- id: PropTypes.string.isRequired,
18730
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
18731
- feature: T['io.flow.internal.v0.models.feature_id_reference'].isRequired,
18732
- value: PropTypes.bool.isRequired,
18733
- });
18734
-
18735
- T['io.flow.internal.v0.models.organization_boolean_value_upserted'] = PropTypes.exact({
18736
- discriminator: PropTypes.oneOf(['organization_boolean_value_upserted']).isRequired,
18737
- event_id: PropTypes.string.isRequired,
18738
- timestamp: PropTypes.string.isRequired,
18739
- value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
18740
- });
18741
-
18742
- T['io.flow.internal.v0.models.organization_boolean_value_deleted'] = PropTypes.exact({
18743
- discriminator: PropTypes.oneOf(['organization_boolean_value_deleted']).isRequired,
18744
- event_id: PropTypes.string.isRequired,
18745
- timestamp: PropTypes.string.isRequired,
18746
- value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
18747
- });
18748
-
18749
- T['io.flow.common.v0.models.organization'] = PropTypes.exact({
18750
- discriminator: PropTypes.oneOf(['organization']).isRequired,
18751
- id: PropTypes.string.isRequired,
18752
- name: PropTypes.string.isRequired,
18753
- environment: T['io.flow.common.v0.enums.environment'].isRequired,
18754
- parent: T['io.flow.common.v0.models.organization_reference'],
18755
- defaults: T['io.flow.common.v0.models.organization_defaults'],
18756
- created_at: PropTypes.string,
18757
- status: T['io.flow.common.v0.enums.organization_status'],
18758
- type: T['io.flow.common.v0.enums.organization_type'],
18759
- });
18760
-
18761
- T['io.flow.organization.v0.models.organization_version'] = PropTypes.exact({
18762
- id: PropTypes.string.isRequired,
18763
- timestamp: PropTypes.string.isRequired,
18764
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
18765
- organization: T['io.flow.common.v0.models.organization'].isRequired,
18766
- });
18767
-
18768
- T['io.flow.common.v0.unions.expandable_organization'] = PropTypes.oneOfType([
18769
- T['io.flow.common.v0.models.organization'],
18770
- T['io.flow.common.v0.models.organization_reference'],
18771
- ]);
18772
-
18773
- T['io.flow.internal.v0.models.onboarding_audit_report'] = PropTypes.exact({
18774
- organization: T['io.flow.common.v0.models.organization'].isRequired,
18775
- result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
18776
- theme_reports: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_theme_report']).isRequired,
18777
- });
18778
-
18779
- T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
18780
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
18781
- name: PropTypes.string.isRequired,
18782
- vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
18783
- identifiers: PropTypes.arrayOf(T['io.flow.common.v0.models.entity_identifier']),
18784
- streets: PropTypes.arrayOf(PropTypes.string).isRequired,
18785
- city: PropTypes.string.isRequired,
18786
- province: PropTypes.string,
18787
- postal: PropTypes.string,
18788
- country: PropTypes.string.isRequired,
18789
- phone: PropTypes.string,
18790
- email: PropTypes.string,
18791
- });
18792
-
18793
- T['io.flow.internal.v0.models.merchant_of_record_entity_settings'] = PropTypes.exact({
18794
- id: PropTypes.string.isRequired,
18795
- merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
18796
- starts_at: PropTypes.string.isRequired,
18797
- ends_at: PropTypes.string,
18798
- center: PropTypes.string,
18799
- currency: PropTypes.string,
18800
- });
18801
-
18802
- T['io.flow.internal.v0.models.checkout_error'] = PropTypes.exact({
18803
- code: T['io.flow.internal.v0.enums.checkout_error_code'].isRequired,
18804
- messages: PropTypes.arrayOf(PropTypes.string).isRequired,
18805
- organization: T['io.flow.common.v0.models.organization_reference'],
18806
- redirect: T['io.flow.internal.v0.models.checkout_redirect'],
18807
- });
18808
-
18809
- T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
18810
- id: PropTypes.string.isRequired,
18811
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
18812
- key: PropTypes.string.isRequired,
18813
- channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
18814
- name: PropTypes.string.isRequired,
18815
- slug: PropTypes.string,
18816
- defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
18817
- attributes: PropTypes.objectOf(PropTypes.string),
18818
- });
18819
-
18820
- T['io.flow.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
18821
- organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
18822
- tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_channel_organization_tokens']).isRequired,
18823
- });
18824
-
18825
- T['io.flow.internal.v0.models.billing_order_transaction_order_reference'] = PropTypes.exact({
18826
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
18827
- number: PropTypes.string.isRequired,
18828
- });
18829
-
18830
- T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
18831
- id: PropTypes.string.isRequired,
18832
- order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
18833
- evidence: T['io.flow.internal.v0.unions.order_cancellation_evidence'].isRequired,
18834
- });
18835
-
18836
- T['io.flow.internal.v0.models.billing_order_destination'] = PropTypes.exact({
18837
- city: PropTypes.string,
18838
- province: PropTypes.string,
18839
- postal: PropTypes.string,
18840
- country: PropTypes.string.isRequired,
18841
- });
18842
-
18843
- T['io.flow.internal.v0.models.billing_order_summary'] = PropTypes.exact({
18844
- number: PropTypes.string.isRequired,
18845
- submitted_at: PropTypes.string.isRequired,
18846
- primary_identifier: PropTypes.string,
18847
- identifiers: PropTypes.objectOf(PropTypes.string),
18848
- destination: T['io.flow.internal.v0.models.billing_order_destination'],
18849
- });
18850
-
18851
- T['io.flow.billing.v0.enums.payout_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'cancelled', 'failed', 'succeeded']);
18852
-
18853
- T['io.flow.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
18854
- code: T['io.flow.billing.v0.enums.payout_status_code'].isRequired,
18855
- reason: PropTypes.string,
18856
- });
18857
-
18858
- T['io.flow.billing.v0.models.payout_status'] = PropTypes.exact({
18859
- code: T['io.flow.billing.v0.enums.payout_status_code'].isRequired,
18860
- reason: PropTypes.string,
18861
- });
18862
-
18863
- T['io.flow.billing.v0.models.payout'] = PropTypes.exact({
18864
- discriminator: PropTypes.oneOf(['payout']).isRequired,
18865
- status: T['io.flow.billing.v0.models.payout_status'].isRequired,
18866
- amount: PropTypes.number.isRequired,
18867
- sent_on: PropTypes.string,
18868
- });
18869
-
18870
- T['io.flow.billing.v0.unions.settlement'] = PropTypes.oneOfType([
18871
- T['io.flow.billing.v0.models.no_payout'],
18872
- T['io.flow.billing.v0.models.payout'],
18873
- ]);
18874
-
18875
- T['io.flow.billing.v0.models.statement'] = PropTypes.exact({
18876
- id: PropTypes.string.isRequired,
18877
- account: T['io.flow.billing.v0.models.account_reference'].isRequired,
18878
- ending_balance: PropTypes.number.isRequired,
18879
- settlement: T['io.flow.billing.v0.unions.settlement'].isRequired,
18880
- attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.attachment']).isRequired,
18881
- created_at: PropTypes.string.isRequired,
18882
- });
18883
-
18884
- T['io.flow.billing.v0.models.channel_statement'] = PropTypes.exact({
18885
- id: PropTypes.string.isRequired,
18886
- account: T['io.flow.billing.v0.models.account_reference'].isRequired,
18887
- ending_balance: PropTypes.number.isRequired,
18888
- settlement: T['io.flow.billing.v0.unions.settlement'].isRequired,
18889
- attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.attachment']).isRequired,
18890
- created_at: PropTypes.string.isRequired,
18891
- });
18892
-
18893
- T['io.flow.internal.v0.models.account_reference'] = PropTypes.exact({
18894
- id: PropTypes.string.isRequired,
18895
- currency: PropTypes.string.isRequired,
18896
- });
18897
-
18898
- T['io.flow.internal.v0.enums.order_charge_trigger'] = PropTypes.oneOf(['first_shipment', 'last_shipment', 'shipment_exhausted']);
18899
-
18900
- T['io.flow.common.v0.models.catalog_item_reference'] = PropTypes.exact({
18901
- id: PropTypes.string.isRequired,
18902
- number: PropTypes.string.isRequired,
18769
+ number: PropTypes.string.isRequired,
18903
18770
  });
18904
18771
 
18905
18772
  T['io.flow.common.v0.models.name'] = PropTypes.exact({
@@ -19029,15 +18896,6 @@ T['io.flow.internal.v0.models.order_note'] = PropTypes.exact({
19029
18896
  updated_at: PropTypes.string.isRequired,
19030
18897
  });
19031
18898
 
19032
- T['io.flow.internal.v0.models.onboarding_audit_snapshot'] = PropTypes.exact({
19033
- id: PropTypes.string.isRequired,
19034
- organization: T['io.flow.common.v0.models.organization'].isRequired,
19035
- result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
19036
- theme_reports: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_theme_report']).isRequired,
19037
- requested_by: T['io.flow.common.v0.models.user'].isRequired,
19038
- requested_at: PropTypes.string.isRequired,
19039
- });
19040
-
19041
18899
  T['io.flow.customer.v0.models.customer_form'] = PropTypes.exact({
19042
18900
  number: PropTypes.string.isRequired,
19043
18901
  email: PropTypes.string,
@@ -19924,23 +19782,6 @@ T['io.flow.organization.v0.models.invitation_form'] = PropTypes.exact({
19924
19782
  roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
19925
19783
  });
19926
19784
 
19927
- T['io.flow.organization.v0.models.invitation'] = PropTypes.exact({
19928
- id: PropTypes.string.isRequired,
19929
- organization: T['io.flow.common.v0.unions.expandable_organization'].isRequired,
19930
- email: PropTypes.string.isRequired,
19931
- name: T['io.flow.common.v0.models.name'].isRequired,
19932
- role: T['io.flow.common.v0.enums.role'],
19933
- roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
19934
- expiration: PropTypes.string.isRequired,
19935
- });
19936
-
19937
- T['io.flow.organization.v0.models.invitation_version'] = PropTypes.exact({
19938
- id: PropTypes.string.isRequired,
19939
- timestamp: PropTypes.string.isRequired,
19940
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
19941
- invitation: T['io.flow.organization.v0.models.invitation'].isRequired,
19942
- });
19943
-
19944
19785
  T['io.flow.internal.v0.models.partner_membership_put_form'] = PropTypes.exact({
19945
19786
  role: T['io.flow.common.v0.enums.role'].isRequired,
19946
19787
  });
@@ -20792,13 +20633,13 @@ T['io.flow.billing.v0.models.withholding_deduction'] = PropTypes.exact({
20792
20633
  description: PropTypes.string,
20793
20634
  });
20794
20635
 
20795
- T['io.flow.billing.v0.models.channel_transaction'] = PropTypes.exact({
20636
+ T['io.flow.billing.v0.models.payout_transaction'] = PropTypes.exact({
20796
20637
  id: PropTypes.string.isRequired,
20797
20638
  order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
20798
- statement: T['io.flow.billing.v0.models.billing_channel_statement_reference'],
20799
20639
  payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
20800
20640
  currency: PropTypes.string.isRequired,
20801
20641
  source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
20642
+ parent: T['io.flow.billing.v0.models.parent_transaction_summary'],
20802
20643
  gross: PropTypes.number.isRequired,
20803
20644
  fees: PropTypes.arrayOf(T['io.flow.billing.v0.models.fee_deduction']).isRequired,
20804
20645
  withholdings: PropTypes.arrayOf(T['io.flow.billing.v0.models.withholding_deduction']).isRequired,
@@ -20806,15 +20647,17 @@ T['io.flow.billing.v0.models.channel_transaction'] = PropTypes.exact({
20806
20647
  net: PropTypes.number.isRequired,
20807
20648
  identifiers: PropTypes.objectOf(PropTypes.string).isRequired,
20808
20649
  created_at: PropTypes.string.isRequired,
20650
+ updated_at: PropTypes.string.isRequired,
20809
20651
  });
20810
20652
 
20811
- T['io.flow.billing.v0.models.transaction'] = PropTypes.exact({
20653
+ T['io.flow.billing.v0.models.channel_transaction'] = PropTypes.exact({
20654
+ statement: T['io.flow.billing.v0.models.billing_channel_statement_reference'],
20812
20655
  id: PropTypes.string.isRequired,
20813
20656
  order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
20814
- statement: T['io.flow.billing.v0.models.billing_channel_statement_reference'],
20815
20657
  payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
20816
20658
  currency: PropTypes.string.isRequired,
20817
20659
  source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
20660
+ parent: T['io.flow.billing.v0.models.parent_transaction_summary'],
20818
20661
  gross: PropTypes.number.isRequired,
20819
20662
  fees: PropTypes.arrayOf(T['io.flow.billing.v0.models.fee_deduction']).isRequired,
20820
20663
  withholdings: PropTypes.arrayOf(T['io.flow.billing.v0.models.withholding_deduction']).isRequired,
@@ -20822,6 +20665,25 @@ T['io.flow.billing.v0.models.transaction'] = PropTypes.exact({
20822
20665
  net: PropTypes.number.isRequired,
20823
20666
  identifiers: PropTypes.objectOf(PropTypes.string).isRequired,
20824
20667
  created_at: PropTypes.string.isRequired,
20668
+ updated_at: PropTypes.string.isRequired,
20669
+ });
20670
+
20671
+ T['io.flow.billing.v0.models.transaction'] = PropTypes.exact({
20672
+ statement: T['io.flow.billing.v0.models.billing_channel_statement_reference'],
20673
+ id: PropTypes.string.isRequired,
20674
+ order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
20675
+ payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
20676
+ currency: PropTypes.string.isRequired,
20677
+ source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
20678
+ parent: T['io.flow.billing.v0.models.parent_transaction_summary'],
20679
+ gross: PropTypes.number.isRequired,
20680
+ fees: PropTypes.arrayOf(T['io.flow.billing.v0.models.fee_deduction']).isRequired,
20681
+ withholdings: PropTypes.arrayOf(T['io.flow.billing.v0.models.withholding_deduction']).isRequired,
20682
+ discounts: PropTypes.arrayOf(T['io.flow.billing.v0.models.billing_discount']).isRequired,
20683
+ net: PropTypes.number.isRequired,
20684
+ identifiers: PropTypes.objectOf(PropTypes.string).isRequired,
20685
+ created_at: PropTypes.string.isRequired,
20686
+ updated_at: PropTypes.string.isRequired,
20825
20687
  });
20826
20688
 
20827
20689
  T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
@@ -21030,16 +20892,6 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
21030
20892
 
21031
20893
  T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application']]);
21032
20894
 
21033
- T['io.flow.internal.v0.models.merchant_application_summary'] = PropTypes.exact({
21034
- merchant_application: T['io.flow.merchant.onboarding.v0.unions.merchant_application'].isRequired,
21035
- organization_reference: T['io.flow.common.v0.models.organization'].isRequired,
21036
- });
21037
-
21038
- T['io.flow.internal.v0.models.merchant_application_summaries'] = PropTypes.exact({
21039
- summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.merchant_application_summary']).isRequired,
21040
- total: PropTypes.number.isRequired,
21041
- });
21042
-
21043
20895
  T['io.flow.tracking.v0.models.tracking_label_form'] = PropTypes.exact({
21044
20896
  tracking_id: PropTypes.string.isRequired,
21045
20897
  status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
@@ -21134,11 +20986,6 @@ T['io.flow.internal.v0.models.ratecard_service_fees_override_form'] = PropTypes.
21134
20986
  service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
21135
20987
  });
21136
20988
 
21137
- T['io.flow.internal.v0.models.ratecard_service_fees_override'] = PropTypes.exact({
21138
- ratecard: T['io.flow.internal.v0.models.ratecard_internal_summary'].isRequired,
21139
- service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
21140
- });
21141
-
21142
20989
  T['io.flow.internal.v0.models.ratecard_internal_service_fee'] = PropTypes.exact({
21143
20990
  id: PropTypes.string.isRequired,
21144
20991
  service_id: PropTypes.string.isRequired,
@@ -21873,54 +21720,6 @@ T['io.flow.internal.v0.models.liability_item'] = PropTypes.exact({
21873
21720
  no_liability_reason_code: T['io.flow.internal.v0.enums.no_liability_reason_code'],
21874
21721
  });
21875
21722
 
21876
- T['io.flow.internal.v0.models.liability'] = PropTypes.exact({
21877
- delivery_key: PropTypes.string.isRequired,
21878
- tax_jurisdiction: PropTypes.string.isRequired,
21879
- liability_type: T['io.flow.internal.v0.enums.liability_type'].isRequired,
21880
- reporting_scheme: T['io.flow.internal.v0.enums.reporting_scheme'].isRequired,
21881
- nature_of_sale: T['io.flow.internal.v0.enums.nature_of_sale'].isRequired,
21882
- liable_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
21883
- funding_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
21884
- reporting_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
21885
- remitting_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
21886
- seller: T['io.flow.common.v0.models.merchant_of_record_entity'],
21887
- buyer: T['io.flow.common.v0.models.merchant_of_record_entity'],
21888
- importer: T['io.flow.internal.v0.models.liability_party_details'],
21889
- exporter: T['io.flow.internal.v0.models.liability_party_details'],
21890
- amount: T['io.flow.internal.v0.models.liability_money'].isRequired,
21891
- rate: PropTypes.number.isRequired,
21892
- name: PropTypes.string.isRequired,
21893
- basis: T['io.flow.internal.v0.models.liability_money'].isRequired,
21894
- items: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability_item']).isRequired,
21895
- tax_number_short_name: PropTypes.string.isRequired,
21896
- });
21897
-
21898
- T['io.flow.internal.v0.models.liability_remittance_plan'] = PropTypes.exact({
21899
- id: PropTypes.string.isRequired,
21900
- organization: PropTypes.string.isRequired,
21901
- order_number: PropTypes.string.isRequired,
21902
- liabilities: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability']).isRequired,
21903
- total_tax: T['io.flow.common.v0.models.money_with_base'].isRequired,
21904
- });
21905
-
21906
- T['io.flow.internal.v0.models.liability_remittance_plan_upserted'] = PropTypes.exact({
21907
- discriminator: PropTypes.oneOf(['liability_remittance_plan_upserted']).isRequired,
21908
- event_id: PropTypes.string.isRequired,
21909
- timestamp: PropTypes.string.isRequired,
21910
- organization: PropTypes.string.isRequired,
21911
- order_number: PropTypes.string.isRequired,
21912
- liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
21913
- });
21914
-
21915
- T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.exact({
21916
- discriminator: PropTypes.oneOf(['liability_remittance_plan_deleted']).isRequired,
21917
- event_id: PropTypes.string.isRequired,
21918
- timestamp: PropTypes.string.isRequired,
21919
- organization: PropTypes.string.isRequired,
21920
- order_number: PropTypes.string.isRequired,
21921
- liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
21922
- });
21923
-
21924
21723
  T['io.flow.internal.v0.models.label_creation_request_form'] = PropTypes.exact({
21925
21724
  organization: PropTypes.string.isRequired,
21926
21725
  shipping_label_form: T['io.flow.label.v0.unions.shipping_label_form'].isRequired,
@@ -22315,347 +22114,509 @@ T['io.flow.internal.v0.unions.order_action_form'] = PropTypes.oneOfType([
22315
22114
  T['io.flow.internal.v0.models.fulfillment_action_form'],
22316
22115
  ]);
22317
22116
 
22318
- T['io.flow.internal.v0.enums.account_type'] = PropTypes.oneOf(['channel', 'organization']);
22319
-
22320
- T['io.flow.internal.v0.models.account_source'] = PropTypes.exact({
22321
- id: PropTypes.string.isRequired,
22322
- type: T['io.flow.internal.v0.enums.account_type'].isRequired,
22117
+ T['io.flow.internal.v0.models.account_deposit_rule'] = PropTypes.exact({
22118
+ target: PropTypes.number.isRequired,
22119
+ rate: PropTypes.number.isRequired,
22323
22120
  });
22324
22121
 
22325
- T['io.flow.internal.v0.enums.account_setting_liabilities_method'] = PropTypes.oneOf(['withholding', 'transaction']);
22326
- T['io.flow.internal.v0.enums.fees_source'] = PropTypes.oneOf(['settings', 'authorization_bundle']);
22327
- T['io.flow.internal.v0.enums.statement_transfer_transaction_location'] = PropTypes.oneOf(['transactions_file', 'summary']);
22328
- T['io.flow.internal.v0.enums.transaction_posting_method'] = PropTypes.oneOf(['time', 'proof']);
22329
- T['io.flow.internal.v0.enums.transfer_method'] = PropTypes.oneOf(['ach']);
22330
- T['io.flow.internal.v0.enums.payment_term'] = PropTypes.oneOf(['net7', 'net15', 'net30']);
22331
- T['io.flow.internal.v0.enums.responsible_party'] = PropTypes.oneOf(['flow', 'organization']);
22332
-
22333
- T['io.flow.internal.v0.models.external_fulfillment_proof_form'] = PropTypes.exact({
22334
- responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
22335
- tracking: PropTypes.arrayOf(T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form']),
22122
+ T['io.flow.reference.v0.models.timezone'] = PropTypes.exact({
22123
+ name: PropTypes.string.isRequired,
22124
+ description: PropTypes.string.isRequired,
22125
+ offset: PropTypes.number.isRequired,
22336
22126
  });
22337
22127
 
22338
- T['io.flow.internal.v0.models.external_fulfillment_proof'] = PropTypes.exact({
22128
+ T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
22129
+ discriminator: PropTypes.oneOf(['organization_reference']).isRequired,
22339
22130
  id: PropTypes.string.isRequired,
22340
- order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
22341
- responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
22342
- tracking: PropTypes.arrayOf(T['io.flow.internal.v0.models.external_fulfillment_proof_tracking']).isRequired,
22343
22131
  });
22344
22132
 
22345
- T['io.flow.internal.v0.models.tiered_fee_tier'] = PropTypes.exact({
22346
- count: PropTypes.number.isRequired,
22347
- amount: PropTypes.number.isRequired,
22133
+ T['io.flow.session.v0.models.organization_session_authorization'] = PropTypes.exact({
22134
+ discriminator: PropTypes.oneOf(['organization_session_authorization']).isRequired,
22135
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22136
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
22348
22137
  });
22349
22138
 
22350
- T['io.flow.internal.v0.models.tiered_fee'] = PropTypes.exact({
22351
- currency: PropTypes.string.isRequired,
22352
- tiers: PropTypes.arrayOf(T['io.flow.internal.v0.models.tiered_fee_tier']).isRequired,
22139
+ T['io.flow.session.v0.unions.session_authorization'] = PropTypes.oneOfType([T['io.flow.session.v0.models.organization_session_authorization']]);
22140
+
22141
+ T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
22142
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22143
+
22144
+ transitions: PropTypes.arrayOf(
22145
+ T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'],
22146
+ ).isRequired,
22147
+
22148
+ current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
22353
22149
  });
22354
22150
 
22355
- T['io.flow.internal.v0.models.billing_organization_settings'] = PropTypes.exact({
22151
+ T['io.flow.checkout.v0.models.checkout_token'] = PropTypes.exact({
22356
22152
  id: PropTypes.string.isRequired,
22357
- days_until_posted: PropTypes.number.isRequired,
22358
- logistics: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
22359
- include_transaction_created_at: PropTypes.bool.isRequired,
22360
- include_order_exchange_rate: PropTypes.bool.isRequired,
22361
- send_statements_to_flow_ftp_server: PropTypes.bool.isRequired,
22362
- invoicing_terms: T['io.flow.internal.v0.enums.payment_term'],
22363
- transfer_method: T['io.flow.internal.v0.enums.transfer_method'],
22364
- b2b_tax_remittance_days: PropTypes.number,
22365
- mor_fee: PropTypes.number,
22366
- duty_guarantee_fee: PropTypes.number,
22367
- order_service_fee: T['io.flow.internal.v0.models.tiered_fee'],
22368
- label_fee: T['io.flow.internal.v0.models.tiered_fee'],
22153
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22154
+ checkout: T['io.flow.common.v0.models.checkout_reference'].isRequired,
22155
+ order: T['io.flow.experience.v0.models.order_number_reference'].isRequired,
22156
+ urls: T['io.flow.checkout.v0.models.checkout_urls'].isRequired,
22157
+ expires_at: PropTypes.string.isRequired,
22158
+ session: T['io.flow.common.v0.models.session_reference'].isRequired,
22159
+ customer: T['io.flow.common.v0.models.customer_reference'],
22369
22160
  });
22370
22161
 
22371
- T['io.flow.internal.v0.models.billing_organization_settings_upserted'] = PropTypes.exact({
22372
- discriminator: PropTypes.oneOf(['billing_organization_settings_upserted']).isRequired,
22373
- event_id: PropTypes.string.isRequired,
22374
- timestamp: PropTypes.string.isRequired,
22375
- organization: PropTypes.string.isRequired,
22376
- settings: T['io.flow.internal.v0.models.billing_organization_settings'].isRequired,
22162
+ T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
22163
+ discriminator: PropTypes.oneOf(['organization_token_v2_reference']).isRequired,
22164
+ id: PropTypes.string.isRequired,
22165
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22377
22166
  });
22378
22167
 
22379
- T['io.flow.internal.v0.models.account_setting_label_fees'] = PropTypes.exact({
22380
- flow: T['io.flow.internal.v0.models.tiered_fee'],
22381
- organization: T['io.flow.internal.v0.models.tiered_fee'],
22382
- revenue_share: PropTypes.number,
22168
+ T['io.flow.export.v0.models.marketing_feeds_export_type'] = PropTypes.exact({
22169
+ discriminator: PropTypes.oneOf(['marketing_feeds_export_type']).isRequired,
22170
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22171
+ feed_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
22383
22172
  });
22384
22173
 
22385
- T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
22386
- id: PropTypes.string.isRequired,
22387
- days_until_posted: PropTypes.number.isRequired,
22388
- logistics: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
22389
- include_transaction_created_at: PropTypes.bool.isRequired,
22390
- include_order_exchange_rate: PropTypes.bool.isRequired,
22391
- send_statements_to_flow_ftp_server: PropTypes.bool.isRequired,
22392
- invoicing_terms: T['io.flow.internal.v0.enums.payment_term'],
22393
- transfer_method: T['io.flow.internal.v0.enums.transfer_method'],
22394
- b2b_tax_remittance_days: PropTypes.number,
22395
- merchant_of_record_fee: PropTypes.number,
22396
- duty_guarantee_fee: PropTypes.number,
22397
- transfer_fee: PropTypes.number,
22398
- order_service_fee: T['io.flow.internal.v0.models.tiered_fee'],
22399
- label_fees: T['io.flow.internal.v0.models.account_setting_label_fees'],
22400
- charge_label_cost_directly: PropTypes.bool.isRequired,
22401
- transaction_posting_method: T['io.flow.internal.v0.enums.transaction_posting_method'].isRequired,
22402
- statement_transfer_transaction_location: T['io.flow.internal.v0.enums.statement_transfer_transaction_location'].isRequired,
22403
- fees_source: T['io.flow.internal.v0.enums.fees_source'].isRequired,
22404
- require_payment_request: PropTypes.bool.isRequired,
22405
- round_individual_transactions: PropTypes.bool.isRequired,
22406
- liabilities_method: T['io.flow.internal.v0.enums.account_setting_liabilities_method'].isRequired,
22407
- enable_fee_reversals: PropTypes.bool.isRequired,
22174
+ T['io.flow.export.v0.unions.export_type'] = PropTypes.oneOfType([
22175
+ T['io.flow.export.v0.models.account_transactions_export_type'],
22176
+ T['io.flow.export.v0.models.account_orders_export_type'],
22177
+ T['io.flow.export.v0.models.analytics_export_type'],
22178
+ T['io.flow.export.v0.models.catalog_item_export_type'],
22179
+ T['io.flow.export.v0.models.experience_export_type'],
22180
+ T['io.flow.export.v0.models.harmonization_overview_export_type'],
22181
+ T['io.flow.export.v0.models.harmonization_hs6_export_type'],
22182
+ T['io.flow.export.v0.models.harmonization_hs10_export_type'],
22183
+ T['io.flow.export.v0.models.harmonization_tariff_codes_export_type'],
22184
+ T['io.flow.export.v0.models.unharmonized_item_export_type'],
22185
+ T['io.flow.export.v0.models.order_export_type'],
22186
+ T['io.flow.export.v0.models.price_book_item_export_type'],
22187
+ T['io.flow.export.v0.models.solidus_product_export_type'],
22188
+ T['io.flow.export.v0.models.solidus_variant_export_type'],
22189
+ T['io.flow.export.v0.models.localized_item_prices_export_type'],
22190
+ T['io.flow.export.v0.models.marketing_feeds_export_type'],
22191
+ T['io.flow.export.v0.models.exclusion_rules_export_type'],
22192
+ ]);
22193
+
22194
+ T['io.flow.export.v0.models.scheduled_export_form'] = PropTypes.exact({
22195
+ user_id: PropTypes.string.isRequired,
22196
+ organization_q: PropTypes.string.isRequired,
22197
+ hour: PropTypes.number.isRequired,
22198
+ minute: PropTypes.number.isRequired,
22199
+ timezone: PropTypes.string.isRequired,
22200
+ types: PropTypes.arrayOf(T['io.flow.export.v0.unions.export_type']).isRequired,
22408
22201
  });
22409
22202
 
22410
- T['io.flow.internal.v0.models.account_settings_upserted'] = PropTypes.exact({
22411
- discriminator: PropTypes.oneOf(['account_settings_upserted']).isRequired,
22412
- event_id: PropTypes.string.isRequired,
22413
- timestamp: PropTypes.string.isRequired,
22414
- settings: T['io.flow.internal.v0.models.account_settings'].isRequired,
22203
+ T['io.flow.export.v0.models.export_form'] = PropTypes.exact({
22204
+ type: T['io.flow.export.v0.unions.export_type'].isRequired,
22205
+ emails: PropTypes.arrayOf(PropTypes.string),
22206
+ organization_q: PropTypes.string,
22415
22207
  });
22416
22208
 
22417
- T['io.flow.internal.v0.models.account_processing_rates'] = PropTypes.exact({
22209
+ T['io.flow.export.v0.models.export'] = PropTypes.exact({
22418
22210
  id: PropTypes.string.isRequired,
22419
- query: PropTypes.string.isRequired,
22420
- capture: PropTypes.number.isRequired,
22421
- refund: PropTypes.number.isRequired,
22422
- fraud: PropTypes.number.isRequired,
22423
- position: PropTypes.number.isRequired,
22211
+ type: T['io.flow.export.v0.unions.export_type'].isRequired,
22212
+ status: T['io.flow.export.v0.enums.export_status'].isRequired,
22213
+ organization_q: PropTypes.string.isRequired,
22214
+ created_at: PropTypes.string.isRequired,
22215
+ started_at: PropTypes.string,
22216
+ completed_at: PropTypes.string,
22217
+ url: PropTypes.string,
22218
+ deliveries: PropTypes.arrayOf(T['io.flow.export.v0.unions.export_delivery']).isRequired,
22424
22219
  });
22425
22220
 
22426
- T['io.flow.internal.v0.models.account_processing_rates_upserted'] = PropTypes.exact({
22427
- discriminator: PropTypes.oneOf(['account_processing_rates_upserted']).isRequired,
22428
- event_id: PropTypes.string.isRequired,
22221
+ T['io.flow.export.v0.models.export_version'] = PropTypes.exact({
22222
+ id: PropTypes.string.isRequired,
22429
22223
  timestamp: PropTypes.string.isRequired,
22430
- rates: T['io.flow.internal.v0.models.account_processing_rates'].isRequired,
22224
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
22225
+ 'export': T['io.flow.export.v0.models.export'].isRequired,
22431
22226
  });
22432
22227
 
22433
- T['io.flow.internal.v0.models.account_processing_rate_form'] = PropTypes.exact({
22434
- query: PropTypes.string.isRequired,
22435
- capture: PropTypes.number.isRequired,
22436
- refund: PropTypes.number.isRequired,
22437
- fraud: PropTypes.number.isRequired,
22228
+ T['io.flow.internal.v0.models.store_connection'] = PropTypes.exact({
22229
+ organization: T['io.flow.common.v0.models.organization_reference'],
22230
+ id: PropTypes.string.isRequired,
22231
+ domain: PropTypes.string.isRequired,
22438
22232
  });
22439
22233
 
22440
- T['io.flow.internal.v0.models.account_processing_rates_form'] = PropTypes.exact({
22441
- processing_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.account_processing_rate_form']).isRequired,
22234
+ T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'] = PropTypes.exact({
22235
+ id: PropTypes.string.isRequired,
22236
+ organization_reference: T['io.flow.common.v0.models.organization_reference'].isRequired,
22237
+ order_number: PropTypes.string.isRequired,
22238
+ monitor: T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'].isRequired,
22442
22239
  });
22443
22240
 
22444
- T['io.flow.internal.v0.enums.billing_transaction_status'] = PropTypes.oneOf(['pending', 'pending_proof', 'posted']);
22241
+ T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review'] = PropTypes.exact({
22242
+ id: PropTypes.string.isRequired,
22243
+ order_monitor: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'].isRequired,
22244
+ status: T['io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status'].isRequired,
22245
+ });
22445
22246
 
22446
- T['io.flow.internal.v0.models.account_transactions_export_request'] = PropTypes.exact({
22447
- discriminator: PropTypes.oneOf(['account_transactions_export_request']).isRequired,
22247
+ T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'] = PropTypes.exact({
22248
+ discriminator: PropTypes.oneOf(['shopify_monitoring_order_monitor_event_upserted']).isRequired,
22448
22249
  event_id: PropTypes.string.isRequired,
22449
22250
  timestamp: PropTypes.string.isRequired,
22450
22251
  organization: PropTypes.string.isRequired,
22451
- export_id: PropTypes.string.isRequired,
22452
- account_id: PropTypes.string,
22453
- statement_id: PropTypes.string,
22454
- status: T['io.flow.internal.v0.enums.billing_transaction_status'],
22455
- posted_from: PropTypes.string,
22456
- posted_to: PropTypes.string,
22457
- posted_on_or_after: PropTypes.string,
22458
- posted_after: PropTypes.string,
22459
- posted_on_or_before: PropTypes.string,
22460
- posted_before: PropTypes.string,
22461
- created_from: PropTypes.string,
22462
- created_to: PropTypes.string,
22463
- created_on_or_after: PropTypes.string,
22464
- created_after: PropTypes.string,
22465
- created_on_or_before: PropTypes.string,
22466
- created_before: PropTypes.string,
22252
+ order_monitor: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'].isRequired,
22467
22253
  });
22468
22254
 
22469
- T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
22470
- 'manual',
22471
- 'subscription',
22472
- 'invoice',
22473
- 'transfer',
22474
- 'adjustment',
22475
- 'reversal',
22476
- 'capture',
22477
- 'refund',
22478
- 'virtual_card_capture',
22479
- 'virtual_card_refund',
22480
- 'tax_remittance',
22481
- 'fully_subsidized_order',
22482
- 'credit_payment',
22483
- 'dispute',
22484
- 'channel',
22485
- 'label',
22486
- 'order',
22487
- 'channel_billed',
22488
- 'tax',
22489
- 'duty',
22490
- ]);
22491
-
22492
- T['io.flow.internal.v0.models.account_orders_export_request'] = PropTypes.exact({
22493
- discriminator: PropTypes.oneOf(['account_orders_export_request']).isRequired,
22255
+ T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'] = PropTypes.exact({
22256
+ discriminator: PropTypes.oneOf(['shopify_monitoring_order_monitor_event_deleted']).isRequired,
22494
22257
  event_id: PropTypes.string.isRequired,
22495
22258
  timestamp: PropTypes.string.isRequired,
22496
22259
  organization: PropTypes.string.isRequired,
22497
- export_id: PropTypes.string.isRequired,
22498
- account_id: PropTypes.string,
22499
- statement_id: PropTypes.string,
22500
- transaction_type: T['io.flow.internal.v0.enums.billing_transaction_type'],
22501
- transaction_status: T['io.flow.internal.v0.enums.billing_transaction_status'],
22502
- transaction_posted_from: PropTypes.string,
22503
- transaction_posted_to: PropTypes.string,
22504
- transaction_posted_on_or_after: PropTypes.string,
22505
- transaction_posted_after: PropTypes.string,
22506
- transaction_posted_on_or_before: PropTypes.string,
22507
- transaction_posted_before: PropTypes.string,
22508
- transaction_created_from: PropTypes.string,
22509
- transaction_created_to: PropTypes.string,
22510
- transaction_created_on_or_after: PropTypes.string,
22511
- transaction_created_after: PropTypes.string,
22512
- transaction_created_on_or_before: PropTypes.string,
22513
- transaction_created_before: PropTypes.string,
22514
- });
22515
-
22516
- T['io.flow.internal.v0.models.account_deposit_rule_form'] = PropTypes.exact({
22517
- target: PropTypes.number.isRequired,
22518
- rate: PropTypes.number.isRequired,
22519
- });
22520
-
22521
- T['io.flow.internal.v0.models.simple_account_reference'] = PropTypes.exact({
22522
- id: PropTypes.string.isRequired,
22260
+ order_monitor: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'].isRequired,
22523
22261
  });
22524
22262
 
22525
- T['io.flow.internal.v0.models.account_contact'] = PropTypes.exact({
22263
+ T['io.flow.internal.v0.models.shop'] = PropTypes.exact({
22526
22264
  id: PropTypes.string.isRequired,
22527
- email: PropTypes.string.isRequired,
22528
- first_name: PropTypes.string,
22529
- last_name: PropTypes.string,
22530
- phone: PropTypes.string,
22531
- account: T['io.flow.internal.v0.models.simple_account_reference'],
22265
+ organization: T['io.flow.common.v0.models.organization_reference'],
22266
+ myshopify_domain: PropTypes.string.isRequired,
22267
+ domain: PropTypes.string,
22532
22268
  });
22533
22269
 
22534
- T['io.flow.internal.v0.models.account_contact_upserted'] = PropTypes.exact({
22535
- discriminator: PropTypes.oneOf(['account_contact_upserted']).isRequired,
22270
+ T['io.flow.internal.v0.models.shopify_shop_upserted'] = PropTypes.exact({
22271
+ discriminator: PropTypes.oneOf(['shopify_shop_upserted']).isRequired,
22536
22272
  event_id: PropTypes.string.isRequired,
22537
22273
  timestamp: PropTypes.string.isRequired,
22538
- account_contact: T['io.flow.internal.v0.models.account_contact'].isRequired,
22539
- });
22540
-
22541
- T['io.flow.common.v0.models.price'] = PropTypes.exact({
22542
- amount: PropTypes.number.isRequired,
22543
- currency: PropTypes.string.isRequired,
22544
- label: PropTypes.string.isRequired,
22274
+ shop: T['io.flow.internal.v0.models.shop'].isRequired,
22545
22275
  });
22546
22276
 
22547
- T['io.flow.fulfillment.v0.models.flat_rate'] = PropTypes.exact({
22548
- discriminator: PropTypes.oneOf(['flat_rate']).isRequired,
22549
- price: T['io.flow.common.v0.models.price'].isRequired,
22550
- zero_amount_indicator: T['io.flow.fulfillment.v0.enums.zero_amount_indicator'],
22277
+ T['io.flow.internal.v0.models.shop_version'] = PropTypes.exact({
22278
+ id: PropTypes.string.isRequired,
22279
+ timestamp: PropTypes.string.isRequired,
22280
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
22281
+ shop: T['io.flow.internal.v0.models.shop'].isRequired,
22551
22282
  });
22552
22283
 
22553
- T['io.flow.fulfillment.v0.models.delivery_option_summary'] = PropTypes.exact({
22284
+ T['io.flow.internal.v0.models.ratecard_internal_summary'] = PropTypes.exact({
22554
22285
  id: PropTypes.string.isRequired,
22555
- cost: T['io.flow.common.v0.models.price'].isRequired,
22556
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
22557
- price: T['io.flow.common.v0.models.price'].isRequired,
22558
- service: T['io.flow.fulfillment.v0.models.service_reference'].isRequired,
22559
- tier: T['io.flow.fulfillment.v0.models.tier_reference'].isRequired,
22560
- window: T['io.flow.common.v0.models.datetime_range'].isRequired,
22286
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22287
+ number: PropTypes.string.isRequired,
22561
22288
  });
22562
22289
 
22563
- T['io.flow.fulfillment.v0.models.delivery_option_version'] = PropTypes.exact({
22290
+ T['io.flow.internal.v0.models.ratecard_standard_configuration'] = PropTypes.exact({
22564
22291
  id: PropTypes.string.isRequired,
22565
- timestamp: PropTypes.string.isRequired,
22566
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
22567
- delivery_option: T['io.flow.fulfillment.v0.models.delivery_option_summary'].isRequired,
22292
+ key: PropTypes.string.isRequired,
22293
+ source_ratecard: T['io.flow.internal.v0.models.ratecard_internal_summary'].isRequired,
22294
+ settings: T['io.flow.internal.v0.models.ratecard_standard_settings'].isRequired,
22568
22295
  });
22569
22296
 
22570
- T['io.flow.fulfillment.v0.models.delivery_option_cost_component'] = PropTypes.exact({
22571
- key: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
22572
- currency: PropTypes.string.isRequired,
22573
- amount: PropTypes.number.isRequired,
22574
- label: PropTypes.string.isRequired,
22575
- base: T['io.flow.common.v0.models.price'],
22297
+ T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'] = PropTypes.exact({
22298
+ discriminator: PropTypes.oneOf(['ratecard_standard_configuration_upserted']).isRequired,
22299
+ event_id: PropTypes.string.isRequired,
22300
+ timestamp: PropTypes.string.isRequired,
22301
+ organization: PropTypes.string.isRequired,
22302
+ configuration: T['io.flow.internal.v0.models.ratecard_standard_configuration'].isRequired,
22576
22303
  });
22577
22304
 
22578
- T['io.flow.fulfillment.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
22579
- source: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_source'].isRequired,
22580
- ratecard_id: PropTypes.string,
22581
- currency: PropTypes.string.isRequired,
22582
- amount: PropTypes.number.isRequired,
22583
- label: PropTypes.string.isRequired,
22584
- base: T['io.flow.common.v0.models.price'],
22585
- components: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_component']).isRequired,
22305
+ T['io.flow.internal.v0.models.ratecard_service_fees_override'] = PropTypes.exact({
22306
+ ratecard: T['io.flow.internal.v0.models.ratecard_internal_summary'].isRequired,
22307
+ service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
22586
22308
  });
22587
22309
 
22588
- T['io.flow.fulfillment.v0.models.price_with_base_and_details'] = PropTypes.exact({
22589
- currency: PropTypes.string.isRequired,
22590
- amount: PropTypes.number.isRequired,
22591
- label: PropTypes.string.isRequired,
22592
- base: T['io.flow.common.v0.models.price'],
22593
- details: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_detail']),
22310
+ T['io.flow.internal.v0.models.organization_boolean_value'] = PropTypes.exact({
22311
+ id: PropTypes.string.isRequired,
22312
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22313
+ feature: T['io.flow.internal.v0.models.feature_id_reference'].isRequired,
22314
+ value: PropTypes.bool.isRequired,
22594
22315
  });
22595
22316
 
22596
- T['io.flow.fulfillment.v0.models.item_shipping_pricing'] = PropTypes.exact({
22597
- min: T['io.flow.common.v0.models.price'].isRequired,
22598
- max: T['io.flow.common.v0.models.price'],
22317
+ T['io.flow.internal.v0.models.organization_boolean_value_upserted'] = PropTypes.exact({
22318
+ discriminator: PropTypes.oneOf(['organization_boolean_value_upserted']).isRequired,
22319
+ event_id: PropTypes.string.isRequired,
22320
+ timestamp: PropTypes.string.isRequired,
22321
+ value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
22599
22322
  });
22600
22323
 
22601
- T['io.flow.fulfillment.v0.models.country_shipping_pricing'] = PropTypes.exact({
22602
- pricing: T['io.flow.fulfillment.v0.models.item_shipping_pricing'].isRequired,
22603
- countries: PropTypes.arrayOf(PropTypes.string).isRequired,
22324
+ T['io.flow.internal.v0.models.organization_boolean_value_deleted'] = PropTypes.exact({
22325
+ discriminator: PropTypes.oneOf(['organization_boolean_value_deleted']).isRequired,
22326
+ event_id: PropTypes.string.isRequired,
22327
+ timestamp: PropTypes.string.isRequired,
22328
+ value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
22604
22329
  });
22605
22330
 
22606
- T['io.flow.fulfillment.v0.models.shipping_configuration_item_shipping_pricing'] = PropTypes.exact({
22331
+ T['io.flow.common.v0.models.organization'] = PropTypes.exact({
22332
+ discriminator: PropTypes.oneOf(['organization']).isRequired,
22607
22333
  id: PropTypes.string.isRequired,
22608
- item: T['io.flow.common.v0.models.item_reference'].isRequired,
22609
- shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_summary'].isRequired,
22610
- country_shipping_pricings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.country_shipping_pricing']).isRequired,
22334
+ name: PropTypes.string.isRequired,
22335
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
22336
+ parent: T['io.flow.common.v0.models.organization_reference'],
22337
+ defaults: T['io.flow.common.v0.models.organization_defaults'],
22338
+ created_at: PropTypes.string,
22339
+ status: T['io.flow.common.v0.enums.organization_status'],
22340
+ type: T['io.flow.common.v0.enums.organization_type'],
22611
22341
  });
22612
22342
 
22613
- T['io.flow.fulfillment.v0.models.amount_margin'] = PropTypes.exact({
22614
- discriminator: PropTypes.oneOf(['amount_margin']).isRequired,
22615
- margin: T['io.flow.common.v0.models.price'].isRequired,
22343
+ T['io.flow.organization.v0.models.organization_version'] = PropTypes.exact({
22344
+ id: PropTypes.string.isRequired,
22345
+ timestamp: PropTypes.string.isRequired,
22346
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
22347
+ organization: T['io.flow.common.v0.models.organization'].isRequired,
22616
22348
  });
22617
22349
 
22618
- T['io.flow.fulfillment.v0.unions.tier_rule_outcome'] = PropTypes.oneOfType([
22619
- T['io.flow.fulfillment.v0.models.amount_margin'],
22620
- T['io.flow.fulfillment.v0.models.at_cost'],
22621
- T['io.flow.fulfillment.v0.models.flat_rate'],
22622
- T['io.flow.fulfillment.v0.models.percent_margin'],
22350
+ T['io.flow.common.v0.unions.expandable_organization'] = PropTypes.oneOfType([
22351
+ T['io.flow.common.v0.models.organization'],
22352
+ T['io.flow.common.v0.models.organization_reference'],
22623
22353
  ]);
22624
22354
 
22625
- T['io.flow.fulfillment.v0.models.tier_rule'] = PropTypes.exact({
22355
+ T['io.flow.organization.v0.models.invitation'] = PropTypes.exact({
22626
22356
  id: PropTypes.string.isRequired,
22627
- position: PropTypes.number.isRequired,
22628
- query: PropTypes.string.isRequired,
22629
- outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome'].isRequired,
22357
+ organization: T['io.flow.common.v0.unions.expandable_organization'].isRequired,
22358
+ email: PropTypes.string.isRequired,
22359
+ name: T['io.flow.common.v0.models.name'].isRequired,
22360
+ role: T['io.flow.common.v0.enums.role'],
22361
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
22362
+ expiration: PropTypes.string.isRequired,
22630
22363
  });
22631
22364
 
22632
- T['io.flow.fulfillment.v0.models.tier_rule_version'] = PropTypes.exact({
22365
+ T['io.flow.organization.v0.models.invitation_version'] = PropTypes.exact({
22633
22366
  id: PropTypes.string.isRequired,
22634
22367
  timestamp: PropTypes.string.isRequired,
22635
22368
  type: T['io.flow.common.v0.enums.change_type'].isRequired,
22636
- tier_rule: T['io.flow.fulfillment.v0.models.tier_rule'].isRequired,
22637
- });
22638
-
22639
- T['io.flow.fulfillment.v0.models.tier'] = PropTypes.exact({
22640
- id: PropTypes.string.isRequired,
22641
- direction: T['io.flow.fulfillment.v0.enums.lane_direction'].isRequired,
22642
- integration: T['io.flow.fulfillment.v0.enums.shipment_integration_type'].isRequired,
22643
- name: PropTypes.string.isRequired,
22644
- message: PropTypes.string,
22645
- rules: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier_rule']).isRequired,
22646
- services: PropTypes.arrayOf(T['io.flow.reference.v0.models.carrier_service']).isRequired,
22647
- strategy: T['io.flow.fulfillment.v0.enums.tier_strategy'].isRequired,
22648
- visibility: T['io.flow.common.v0.enums.visibility'].isRequired,
22649
- currency: PropTypes.string.isRequired,
22650
- description: PropTypes.string,
22651
- display: T['io.flow.fulfillment.v0.models.tier_display'],
22652
- shipping_lane: PropTypes.string,
22653
- surcharge_settings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.surcharge_setting']),
22654
- lane: T['io.flow.fulfillment.v0.models.shipping_lane_summary'],
22655
- settings: T['io.flow.fulfillment.v0.models.tier_settings'],
22369
+ invitation: T['io.flow.organization.v0.models.invitation'].isRequired,
22656
22370
  });
22657
22371
 
22658
- T['io.flow.fulfillment.v0.models.shipping_lane'] = PropTypes.exact({
22372
+ T['io.flow.internal.v0.models.onboarding_audit_snapshot'] = PropTypes.exact({
22373
+ id: PropTypes.string.isRequired,
22374
+ organization: T['io.flow.common.v0.models.organization'].isRequired,
22375
+ result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
22376
+ theme_reports: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_theme_report']).isRequired,
22377
+ requested_by: T['io.flow.common.v0.models.user'].isRequired,
22378
+ requested_at: PropTypes.string.isRequired,
22379
+ });
22380
+
22381
+ T['io.flow.internal.v0.models.onboarding_audit_report'] = PropTypes.exact({
22382
+ organization: T['io.flow.common.v0.models.organization'].isRequired,
22383
+ result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
22384
+ theme_reports: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_theme_report']).isRequired,
22385
+ });
22386
+
22387
+ T['io.flow.internal.v0.models.merchant_application_summary'] = PropTypes.exact({
22388
+ merchant_application: T['io.flow.merchant.onboarding.v0.unions.merchant_application'].isRequired,
22389
+ organization_reference: T['io.flow.common.v0.models.organization'].isRequired,
22390
+ });
22391
+
22392
+ T['io.flow.internal.v0.models.merchant_application_summaries'] = PropTypes.exact({
22393
+ summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.merchant_application_summary']).isRequired,
22394
+ total: PropTypes.number.isRequired,
22395
+ });
22396
+
22397
+ T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
22398
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22399
+ name: PropTypes.string.isRequired,
22400
+ vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
22401
+ identifiers: PropTypes.arrayOf(T['io.flow.common.v0.models.entity_identifier']),
22402
+ streets: PropTypes.arrayOf(PropTypes.string).isRequired,
22403
+ city: PropTypes.string.isRequired,
22404
+ province: PropTypes.string,
22405
+ postal: PropTypes.string,
22406
+ country: PropTypes.string.isRequired,
22407
+ phone: PropTypes.string,
22408
+ email: PropTypes.string,
22409
+ });
22410
+
22411
+ T['io.flow.internal.v0.models.merchant_of_record_entity_settings'] = PropTypes.exact({
22412
+ id: PropTypes.string.isRequired,
22413
+ merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
22414
+ starts_at: PropTypes.string.isRequired,
22415
+ ends_at: PropTypes.string,
22416
+ center: PropTypes.string,
22417
+ currency: PropTypes.string,
22418
+ });
22419
+
22420
+ T['io.flow.internal.v0.models.liability'] = PropTypes.exact({
22421
+ delivery_key: PropTypes.string.isRequired,
22422
+ tax_jurisdiction: PropTypes.string.isRequired,
22423
+ liability_type: T['io.flow.internal.v0.enums.liability_type'].isRequired,
22424
+ reporting_scheme: T['io.flow.internal.v0.enums.reporting_scheme'].isRequired,
22425
+ nature_of_sale: T['io.flow.internal.v0.enums.nature_of_sale'].isRequired,
22426
+ liable_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
22427
+ funding_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
22428
+ reporting_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
22429
+ remitting_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
22430
+ seller: T['io.flow.common.v0.models.merchant_of_record_entity'],
22431
+ buyer: T['io.flow.common.v0.models.merchant_of_record_entity'],
22432
+ importer: T['io.flow.internal.v0.models.liability_party_details'],
22433
+ exporter: T['io.flow.internal.v0.models.liability_party_details'],
22434
+ amount: T['io.flow.internal.v0.models.liability_money'].isRequired,
22435
+ rate: PropTypes.number.isRequired,
22436
+ name: PropTypes.string.isRequired,
22437
+ basis: T['io.flow.internal.v0.models.liability_money'].isRequired,
22438
+ items: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability_item']).isRequired,
22439
+ tax_number_short_name: PropTypes.string.isRequired,
22440
+ });
22441
+
22442
+ T['io.flow.internal.v0.models.liability_remittance_plan'] = PropTypes.exact({
22443
+ id: PropTypes.string.isRequired,
22444
+ organization: PropTypes.string.isRequired,
22445
+ order_number: PropTypes.string.isRequired,
22446
+ liabilities: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability']).isRequired,
22447
+ total_tax: T['io.flow.common.v0.models.money_with_base'].isRequired,
22448
+ });
22449
+
22450
+ T['io.flow.internal.v0.models.liability_remittance_plan_upserted'] = PropTypes.exact({
22451
+ discriminator: PropTypes.oneOf(['liability_remittance_plan_upserted']).isRequired,
22452
+ event_id: PropTypes.string.isRequired,
22453
+ timestamp: PropTypes.string.isRequired,
22454
+ organization: PropTypes.string.isRequired,
22455
+ order_number: PropTypes.string.isRequired,
22456
+ liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
22457
+ });
22458
+
22459
+ T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.exact({
22460
+ discriminator: PropTypes.oneOf(['liability_remittance_plan_deleted']).isRequired,
22461
+ event_id: PropTypes.string.isRequired,
22462
+ timestamp: PropTypes.string.isRequired,
22463
+ organization: PropTypes.string.isRequired,
22464
+ order_number: PropTypes.string.isRequired,
22465
+ liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
22466
+ });
22467
+
22468
+ T['io.flow.internal.v0.models.checkout_error'] = PropTypes.exact({
22469
+ code: T['io.flow.internal.v0.enums.checkout_error_code'].isRequired,
22470
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
22471
+ organization: T['io.flow.common.v0.models.organization_reference'],
22472
+ redirect: T['io.flow.internal.v0.models.checkout_redirect'],
22473
+ });
22474
+
22475
+ T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
22476
+ id: PropTypes.string.isRequired,
22477
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22478
+ key: PropTypes.string.isRequired,
22479
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
22480
+ name: PropTypes.string.isRequired,
22481
+ slug: PropTypes.string,
22482
+ defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
22483
+ attributes: PropTypes.objectOf(PropTypes.string),
22484
+ });
22485
+
22486
+ T['io.flow.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
22487
+ organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
22488
+ tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_channel_organization_tokens']).isRequired,
22489
+ });
22490
+
22491
+ T['io.flow.internal.v0.models.billing_order_transaction_order_reference'] = PropTypes.exact({
22492
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22493
+ number: PropTypes.string.isRequired,
22494
+ });
22495
+
22496
+ T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
22497
+ id: PropTypes.string.isRequired,
22498
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
22499
+ evidence: T['io.flow.internal.v0.unions.order_cancellation_evidence'].isRequired,
22500
+ });
22501
+
22502
+ T['io.flow.common.v0.models.price'] = PropTypes.exact({
22503
+ amount: PropTypes.number.isRequired,
22504
+ currency: PropTypes.string.isRequired,
22505
+ label: PropTypes.string.isRequired,
22506
+ });
22507
+
22508
+ T['io.flow.fulfillment.v0.models.flat_rate'] = PropTypes.exact({
22509
+ discriminator: PropTypes.oneOf(['flat_rate']).isRequired,
22510
+ price: T['io.flow.common.v0.models.price'].isRequired,
22511
+ zero_amount_indicator: T['io.flow.fulfillment.v0.enums.zero_amount_indicator'],
22512
+ });
22513
+
22514
+ T['io.flow.fulfillment.v0.models.delivery_option_summary'] = PropTypes.exact({
22515
+ id: PropTypes.string.isRequired,
22516
+ cost: T['io.flow.common.v0.models.price'].isRequired,
22517
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
22518
+ price: T['io.flow.common.v0.models.price'].isRequired,
22519
+ service: T['io.flow.fulfillment.v0.models.service_reference'].isRequired,
22520
+ tier: T['io.flow.fulfillment.v0.models.tier_reference'].isRequired,
22521
+ window: T['io.flow.common.v0.models.datetime_range'].isRequired,
22522
+ });
22523
+
22524
+ T['io.flow.fulfillment.v0.models.delivery_option_version'] = PropTypes.exact({
22525
+ id: PropTypes.string.isRequired,
22526
+ timestamp: PropTypes.string.isRequired,
22527
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
22528
+ delivery_option: T['io.flow.fulfillment.v0.models.delivery_option_summary'].isRequired,
22529
+ });
22530
+
22531
+ T['io.flow.fulfillment.v0.models.delivery_option_cost_component'] = PropTypes.exact({
22532
+ key: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
22533
+ currency: PropTypes.string.isRequired,
22534
+ amount: PropTypes.number.isRequired,
22535
+ label: PropTypes.string.isRequired,
22536
+ base: T['io.flow.common.v0.models.price'],
22537
+ });
22538
+
22539
+ T['io.flow.fulfillment.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
22540
+ source: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_source'].isRequired,
22541
+ ratecard_id: PropTypes.string,
22542
+ currency: PropTypes.string.isRequired,
22543
+ amount: PropTypes.number.isRequired,
22544
+ label: PropTypes.string.isRequired,
22545
+ base: T['io.flow.common.v0.models.price'],
22546
+ components: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_component']).isRequired,
22547
+ });
22548
+
22549
+ T['io.flow.fulfillment.v0.models.price_with_base_and_details'] = PropTypes.exact({
22550
+ currency: PropTypes.string.isRequired,
22551
+ amount: PropTypes.number.isRequired,
22552
+ label: PropTypes.string.isRequired,
22553
+ base: T['io.flow.common.v0.models.price'],
22554
+ details: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_detail']),
22555
+ });
22556
+
22557
+ T['io.flow.fulfillment.v0.models.item_shipping_pricing'] = PropTypes.exact({
22558
+ min: T['io.flow.common.v0.models.price'].isRequired,
22559
+ max: T['io.flow.common.v0.models.price'],
22560
+ });
22561
+
22562
+ T['io.flow.fulfillment.v0.models.country_shipping_pricing'] = PropTypes.exact({
22563
+ pricing: T['io.flow.fulfillment.v0.models.item_shipping_pricing'].isRequired,
22564
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
22565
+ });
22566
+
22567
+ T['io.flow.fulfillment.v0.models.shipping_configuration_item_shipping_pricing'] = PropTypes.exact({
22568
+ id: PropTypes.string.isRequired,
22569
+ item: T['io.flow.common.v0.models.item_reference'].isRequired,
22570
+ shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_summary'].isRequired,
22571
+ country_shipping_pricings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.country_shipping_pricing']).isRequired,
22572
+ });
22573
+
22574
+ T['io.flow.fulfillment.v0.models.amount_margin'] = PropTypes.exact({
22575
+ discriminator: PropTypes.oneOf(['amount_margin']).isRequired,
22576
+ margin: T['io.flow.common.v0.models.price'].isRequired,
22577
+ });
22578
+
22579
+ T['io.flow.fulfillment.v0.unions.tier_rule_outcome'] = PropTypes.oneOfType([
22580
+ T['io.flow.fulfillment.v0.models.amount_margin'],
22581
+ T['io.flow.fulfillment.v0.models.at_cost'],
22582
+ T['io.flow.fulfillment.v0.models.flat_rate'],
22583
+ T['io.flow.fulfillment.v0.models.percent_margin'],
22584
+ ]);
22585
+
22586
+ T['io.flow.fulfillment.v0.models.tier_rule'] = PropTypes.exact({
22587
+ id: PropTypes.string.isRequired,
22588
+ position: PropTypes.number.isRequired,
22589
+ query: PropTypes.string.isRequired,
22590
+ outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome'].isRequired,
22591
+ });
22592
+
22593
+ T['io.flow.fulfillment.v0.models.tier_rule_version'] = PropTypes.exact({
22594
+ id: PropTypes.string.isRequired,
22595
+ timestamp: PropTypes.string.isRequired,
22596
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
22597
+ tier_rule: T['io.flow.fulfillment.v0.models.tier_rule'].isRequired,
22598
+ });
22599
+
22600
+ T['io.flow.fulfillment.v0.models.tier'] = PropTypes.exact({
22601
+ id: PropTypes.string.isRequired,
22602
+ direction: T['io.flow.fulfillment.v0.enums.lane_direction'].isRequired,
22603
+ integration: T['io.flow.fulfillment.v0.enums.shipment_integration_type'].isRequired,
22604
+ name: PropTypes.string.isRequired,
22605
+ message: PropTypes.string,
22606
+ rules: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier_rule']).isRequired,
22607
+ services: PropTypes.arrayOf(T['io.flow.reference.v0.models.carrier_service']).isRequired,
22608
+ strategy: T['io.flow.fulfillment.v0.enums.tier_strategy'].isRequired,
22609
+ visibility: T['io.flow.common.v0.enums.visibility'].isRequired,
22610
+ currency: PropTypes.string.isRequired,
22611
+ description: PropTypes.string,
22612
+ display: T['io.flow.fulfillment.v0.models.tier_display'],
22613
+ shipping_lane: PropTypes.string,
22614
+ surcharge_settings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.surcharge_setting']),
22615
+ lane: T['io.flow.fulfillment.v0.models.shipping_lane_summary'],
22616
+ settings: T['io.flow.fulfillment.v0.models.tier_settings'],
22617
+ });
22618
+
22619
+ T['io.flow.fulfillment.v0.models.shipping_lane'] = PropTypes.exact({
22659
22620
  id: PropTypes.string.isRequired,
22660
22621
  shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_reference'].isRequired,
22661
22622
  region: PropTypes.string.isRequired,
@@ -22961,100 +22922,9 @@ T['io.flow.return.v0.models.return_version'] = PropTypes.exact({
22961
22922
  'return': T['io.flow.return.v0.models.return'].isRequired,
22962
22923
  });
22963
22924
 
22964
- T['io.flow.internal.v0.models.transfer_transaction'] = PropTypes.exact({
22965
- discriminator: PropTypes.oneOf(['transfer_transaction']).isRequired,
22966
- method: T['io.flow.internal.v0.enums.transfer_method'].isRequired,
22925
+ T['io.flow.internal.v0.models.subscription'] = PropTypes.exact({
22967
22926
  id: PropTypes.string.isRequired,
22968
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
22969
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
22970
- posted_at: PropTypes.string,
22971
- value: T['io.flow.common.v0.models.price'].isRequired,
22972
- description: PropTypes.string.isRequired,
22973
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
22974
- created_at: PropTypes.string.isRequired,
22975
- });
22976
-
22977
- T['io.flow.internal.v0.models.transfer_transaction_upserted_v2'] = PropTypes.exact({
22978
- discriminator: PropTypes.oneOf(['transfer_transaction_upserted_v2']).isRequired,
22979
- event_id: PropTypes.string.isRequired,
22980
- timestamp: PropTypes.string.isRequired,
22981
- transfer_transaction: T['io.flow.internal.v0.models.transfer_transaction'].isRequired,
22982
- });
22983
-
22984
- T['io.flow.internal.v0.models.transfer_transaction_upserted'] = PropTypes.exact({
22985
- discriminator: PropTypes.oneOf(['transfer_transaction_upserted']).isRequired,
22986
- event_id: PropTypes.string.isRequired,
22987
- timestamp: PropTypes.string.isRequired,
22988
- organization: PropTypes.string.isRequired,
22989
- transfer_transaction: T['io.flow.internal.v0.models.transfer_transaction'].isRequired,
22990
- });
22991
-
22992
- T['io.flow.internal.v0.models.transfer_transaction_deleted'] = PropTypes.exact({
22993
- discriminator: PropTypes.oneOf(['transfer_transaction_deleted']).isRequired,
22994
- event_id: PropTypes.string.isRequired,
22995
- timestamp: PropTypes.string.isRequired,
22996
- organization: PropTypes.string.isRequired,
22997
- transfer_transaction: T['io.flow.internal.v0.models.transfer_transaction'].isRequired,
22998
- });
22999
-
23000
- T['io.flow.internal.v0.models.tax_transaction'] = PropTypes.exact({
23001
- discriminator: PropTypes.oneOf(['tax_transaction']).isRequired,
23002
- order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
23003
- id: PropTypes.string.isRequired,
23004
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23005
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
23006
- posted_at: PropTypes.string,
23007
- value: T['io.flow.common.v0.models.price'].isRequired,
23008
- description: PropTypes.string.isRequired,
23009
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
23010
- created_at: PropTypes.string.isRequired,
23011
- });
23012
-
23013
- T['io.flow.internal.v0.models.tax_transaction_upserted'] = PropTypes.exact({
23014
- discriminator: PropTypes.oneOf(['tax_transaction_upserted']).isRequired,
23015
- event_id: PropTypes.string.isRequired,
23016
- timestamp: PropTypes.string.isRequired,
23017
- tax_transaction: T['io.flow.internal.v0.models.tax_transaction'].isRequired,
23018
- });
23019
-
23020
- T['io.flow.internal.v0.models.tax_remittance_transaction'] = PropTypes.exact({
23021
- discriminator: PropTypes.oneOf(['tax_remittance_transaction']).isRequired,
23022
- order: T['io.flow.internal.v0.models.billing_order_summary'].isRequired,
23023
- invoice: T['io.flow.internal.v0.models.billing_invoice_summary'].isRequired,
23024
- id: PropTypes.string.isRequired,
23025
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23026
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
23027
- posted_at: PropTypes.string,
23028
- value: T['io.flow.common.v0.models.price'].isRequired,
23029
- description: PropTypes.string.isRequired,
23030
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
23031
- created_at: PropTypes.string.isRequired,
23032
- });
23033
-
23034
- T['io.flow.internal.v0.models.tax_remittance_transaction_upserted'] = PropTypes.exact({
23035
- discriminator: PropTypes.oneOf(['tax_remittance_transaction_upserted']).isRequired,
23036
- event_id: PropTypes.string.isRequired,
23037
- timestamp: PropTypes.string.isRequired,
23038
- organization: PropTypes.string.isRequired,
23039
- transaction: T['io.flow.internal.v0.models.tax_remittance_transaction'].isRequired,
23040
- });
23041
-
23042
- T['io.flow.internal.v0.models.subscription_transaction'] = PropTypes.exact({
23043
- discriminator: PropTypes.oneOf(['subscription_transaction']).isRequired,
23044
- period: T['io.flow.common.v0.models.datetime_range'].isRequired,
23045
- id: PropTypes.string.isRequired,
23046
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23047
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
23048
- posted_at: PropTypes.string,
23049
- value: T['io.flow.common.v0.models.price'].isRequired,
23050
- description: PropTypes.string.isRequired,
23051
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
23052
- created_at: PropTypes.string.isRequired,
23053
- });
23054
-
23055
- T['io.flow.internal.v0.models.subscription'] = PropTypes.exact({
23056
- id: PropTypes.string.isRequired,
23057
- organization: PropTypes.string.isRequired,
22927
+ organization: PropTypes.string.isRequired,
23058
22928
  value: T['io.flow.common.v0.models.price'].isRequired,
23059
22929
  frequency: T['io.flow.internal.v0.enums.subscription_frequency'].isRequired,
23060
22930
  starts_at: PropTypes.string.isRequired,
@@ -23095,14 +22965,6 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
23095
22965
  updated_at: PropTypes.string.isRequired,
23096
22966
  });
23097
22967
 
23098
- T['io.flow.internal.v0.models.pending_bank_payment'] = PropTypes.exact({
23099
- source: T['io.flow.internal.v0.models.account_source'].isRequired,
23100
- account: T['io.flow.internal.v0.models.account_reference'].isRequired,
23101
- recommended_reference: PropTypes.string.isRequired,
23102
- total: T['io.flow.common.v0.models.price'].isRequired,
23103
- details: PropTypes.arrayOf(T['io.flow.internal.v0.models.pending_bank_payment_detail']).isRequired,
23104
- });
23105
-
23106
22968
  T['io.flow.internal.v0.models.payment_summary_v2'] = PropTypes.exact({
23107
22969
  discriminator: PropTypes.oneOf(['payment_summary_v2']).isRequired,
23108
22970
  id: PropTypes.string.isRequired,
@@ -23121,26 +22983,6 @@ T['io.flow.internal.v0.unions.transaction_summary'] = PropTypes.oneOfType([
23121
22983
  T['io.flow.internal.v0.models.fraud_summary'],
23122
22984
  ]);
23123
22985
 
23124
- T['io.flow.internal.v0.models.order_transaction'] = PropTypes.exact({
23125
- discriminator: PropTypes.oneOf(['order_transaction']).isRequired,
23126
- order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
23127
- id: PropTypes.string.isRequired,
23128
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23129
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
23130
- posted_at: PropTypes.string,
23131
- value: T['io.flow.common.v0.models.price'].isRequired,
23132
- description: PropTypes.string.isRequired,
23133
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
23134
- created_at: PropTypes.string.isRequired,
23135
- });
23136
-
23137
- T['io.flow.internal.v0.models.order_transaction_upserted'] = PropTypes.exact({
23138
- discriminator: PropTypes.oneOf(['order_transaction_upserted']).isRequired,
23139
- event_id: PropTypes.string.isRequired,
23140
- timestamp: PropTypes.string.isRequired,
23141
- order_transaction: T['io.flow.internal.v0.models.order_transaction'].isRequired,
23142
- });
23143
-
23144
22986
  T['io.flow.internal.v0.models.order_revenue_timeline_data_point'] = PropTypes.exact({
23145
22987
  timestamp: PropTypes.string.isRequired,
23146
22988
  count: PropTypes.number.isRequired,
@@ -23243,108 +23085,12 @@ T['io.flow.internal.v0.models.order_rates_published_v3'] = PropTypes.exact({
23243
23085
  data: T['io.flow.internal.v0.models.order_rates_data_v3'].isRequired,
23244
23086
  });
23245
23087
 
23246
- T['io.flow.internal.v0.models.manual_transaction'] = PropTypes.exact({
23247
- discriminator: PropTypes.oneOf(['manual_transaction']).isRequired,
23248
- category: T['io.flow.internal.v0.enums.manual_transaction_category'],
23249
- order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
23250
- attributes: PropTypes.objectOf(PropTypes.string),
23251
- id: PropTypes.string.isRequired,
23252
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23253
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
23254
- posted_at: PropTypes.string,
23255
- value: T['io.flow.common.v0.models.price'].isRequired,
23256
- description: PropTypes.string.isRequired,
23257
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
23258
- created_at: PropTypes.string.isRequired,
23259
- });
23260
-
23261
- T['io.flow.internal.v0.models.main_transaction'] = PropTypes.exact({
23262
- id: PropTypes.string.isRequired,
23263
- account: T['io.flow.internal.v0.models.account_reference'].isRequired,
23264
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23265
- value: T['io.flow.common.v0.models.price'].isRequired,
23266
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
23267
- posted_at: PropTypes.string,
23268
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
23269
- created_at: PropTypes.string.isRequired,
23270
- original_at: PropTypes.string,
23271
- disposition: T['io.flow.internal.v0.enums.billing_statement_review_status'],
23272
- });
23273
-
23274
- T['io.flow.internal.v0.models.main_transaction_upserted_v2'] = PropTypes.exact({
23275
- discriminator: PropTypes.oneOf(['main_transaction_upserted_v2']).isRequired,
23276
- event_id: PropTypes.string.isRequired,
23277
- timestamp: PropTypes.string.isRequired,
23278
- main_transaction: T['io.flow.internal.v0.models.main_transaction'].isRequired,
23279
- });
23280
-
23281
- T['io.flow.internal.v0.models.main_transaction_upserted'] = PropTypes.exact({
23282
- discriminator: PropTypes.oneOf(['main_transaction_upserted']).isRequired,
23283
- event_id: PropTypes.string.isRequired,
23284
- timestamp: PropTypes.string.isRequired,
23285
- organization: PropTypes.string.isRequired,
23286
- main_transaction: T['io.flow.internal.v0.models.main_transaction'].isRequired,
23287
- });
23288
-
23289
- T['io.flow.internal.v0.models.main_transaction_deleted'] = PropTypes.exact({
23290
- discriminator: PropTypes.oneOf(['main_transaction_deleted']).isRequired,
23291
- event_id: PropTypes.string.isRequired,
23292
- timestamp: PropTypes.string.isRequired,
23293
- organization: PropTypes.string.isRequired,
23294
- main_transaction: T['io.flow.internal.v0.models.main_transaction'].isRequired,
23295
- });
23296
-
23297
- T['io.flow.internal.v0.models.label_transaction'] = PropTypes.exact({
23298
- discriminator: PropTypes.oneOf(['label_transaction']).isRequired,
23299
- label: T['io.flow.internal.v0.models.billing_label_summary'].isRequired,
23300
- order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
23301
- tracking: T['io.flow.internal.v0.models.billing_label_tracking_summary_reference'].isRequired,
23302
- id: PropTypes.string.isRequired,
23303
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23304
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
23305
- posted_at: PropTypes.string,
23306
- value: T['io.flow.common.v0.models.price'].isRequired,
23307
- description: PropTypes.string.isRequired,
23308
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
23309
- created_at: PropTypes.string.isRequired,
23310
- });
23311
-
23312
- T['io.flow.internal.v0.models.label_transaction_upserted'] = PropTypes.exact({
23313
- discriminator: PropTypes.oneOf(['label_transaction_upserted']).isRequired,
23314
- event_id: PropTypes.string.isRequired,
23315
- timestamp: PropTypes.string.isRequired,
23316
- label_transaction: T['io.flow.internal.v0.models.label_transaction'].isRequired,
23317
- });
23318
-
23319
23088
  T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
23320
23089
  id: PropTypes.string.isRequired,
23321
23090
  description: PropTypes.string.isRequired,
23322
23091
  value: T['io.flow.common.v0.models.price'].isRequired,
23323
23092
  });
23324
23093
 
23325
- T['io.flow.internal.v0.models.invoice'] = PropTypes.exact({
23326
- id: PropTypes.string.isRequired,
23327
- number: PropTypes.string.isRequired,
23328
- date: PropTypes.string.isRequired,
23329
- terms: T['io.flow.internal.v0.enums.payment_term'].isRequired,
23330
- due_date: PropTypes.string.isRequired,
23331
- lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.invoice_line']).isRequired,
23332
- total: T['io.flow.common.v0.models.price'].isRequired,
23333
- });
23334
-
23335
- T['io.flow.internal.v0.models.invoice_transaction'] = PropTypes.exact({
23336
- discriminator: PropTypes.oneOf(['invoice_transaction']).isRequired,
23337
- invoice: T['io.flow.internal.v0.models.invoice'].isRequired,
23338
- id: PropTypes.string.isRequired,
23339
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23340
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
23341
- posted_at: PropTypes.string,
23342
- value: T['io.flow.common.v0.models.price'].isRequired,
23343
- description: PropTypes.string.isRequired,
23344
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
23345
- created_at: PropTypes.string.isRequired,
23346
- });
23347
-
23348
23094
  T['io.flow.internal.v0.models.gift_card'] = PropTypes.exact({
23349
23095
  id: PropTypes.string.isRequired,
23350
23096
  number: PropTypes.string.isRequired,
@@ -23366,39 +23112,6 @@ T['io.flow.internal.v0.models.gift_card_authorization_error'] = PropTypes.exact(
23366
23112
  gift_card_program: T['io.flow.internal.v0.models.gift_card_program'].isRequired,
23367
23113
  });
23368
23114
 
23369
- T['io.flow.internal.v0.models.duty_transaction'] = PropTypes.exact({
23370
- discriminator: PropTypes.oneOf(['duty_transaction']).isRequired,
23371
- order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
23372
- id: PropTypes.string.isRequired,
23373
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23374
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
23375
- posted_at: PropTypes.string,
23376
- value: T['io.flow.common.v0.models.price'].isRequired,
23377
- description: PropTypes.string.isRequired,
23378
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
23379
- created_at: PropTypes.string.isRequired,
23380
- });
23381
-
23382
- T['io.flow.internal.v0.models.duty_transaction_upserted'] = PropTypes.exact({
23383
- discriminator: PropTypes.oneOf(['duty_transaction_upserted']).isRequired,
23384
- event_id: PropTypes.string.isRequired,
23385
- timestamp: PropTypes.string.isRequired,
23386
- duty_transaction: T['io.flow.internal.v0.models.duty_transaction'].isRequired,
23387
- });
23388
-
23389
- T['io.flow.internal.v0.models.dispute_transaction'] = PropTypes.exact({
23390
- discriminator: PropTypes.oneOf(['dispute_transaction']).isRequired,
23391
- authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
23392
- id: PropTypes.string.isRequired,
23393
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23394
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
23395
- posted_at: PropTypes.string,
23396
- value: T['io.flow.common.v0.models.price'].isRequired,
23397
- description: PropTypes.string.isRequired,
23398
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
23399
- created_at: PropTypes.string.isRequired,
23400
- });
23401
-
23402
23115
  T['io.flow.internal.v0.models.components'] = PropTypes.exact({
23403
23116
  vat: T['io.flow.common.v0.models.price'].isRequired,
23404
23117
  duty: T['io.flow.common.v0.models.price'].isRequired,
@@ -23663,56 +23376,10 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
23663
23376
  transfer: T['io.flow.internal.v0.models.fee'],
23664
23377
  });
23665
23378
 
23666
- T['io.flow.internal.v0.models.channel_transaction'] = PropTypes.exact({
23667
- discriminator: PropTypes.oneOf(['channel_transaction']).isRequired,
23668
- transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
23669
- fees: PropTypes.arrayOf(T['io.flow.internal.v0.models.fee']).isRequired,
23670
- id: PropTypes.string.isRequired,
23671
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23672
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
23673
- posted_at: PropTypes.string,
23674
- value: T['io.flow.common.v0.models.price'].isRequired,
23675
- description: PropTypes.string.isRequired,
23676
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
23677
- created_at: PropTypes.string.isRequired,
23678
- });
23679
-
23680
- T['io.flow.internal.v0.models.channel_transaction_upserted'] = PropTypes.exact({
23681
- discriminator: PropTypes.oneOf(['channel_transaction_upserted']).isRequired,
23682
- event_id: PropTypes.string.isRequired,
23683
- timestamp: PropTypes.string.isRequired,
23684
- channel_transaction: T['io.flow.internal.v0.models.channel_transaction'].isRequired,
23685
- });
23686
-
23687
- T['io.flow.internal.v0.models.channel_billed_transaction'] = PropTypes.exact({
23688
- discriminator: PropTypes.oneOf(['channel_billed_transaction']).isRequired,
23689
- order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
23690
- id: PropTypes.string.isRequired,
23691
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23692
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
23693
- posted_at: PropTypes.string,
23694
- value: T['io.flow.common.v0.models.price'].isRequired,
23695
- description: PropTypes.string.isRequired,
23696
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
23697
- created_at: PropTypes.string.isRequired,
23698
- });
23699
-
23700
- T['io.flow.internal.v0.models.channel_billed_transaction_upserted'] = PropTypes.exact({
23701
- discriminator: PropTypes.oneOf(['channel_billed_transaction_upserted']).isRequired,
23702
- event_id: PropTypes.string.isRequired,
23703
- timestamp: PropTypes.string.isRequired,
23704
- channel_billed_transaction: T['io.flow.internal.v0.models.channel_billed_transaction'].isRequired,
23705
- });
23706
-
23707
- T['io.flow.internal.v0.models.billing_transaction'] = PropTypes.exact({
23708
- id: PropTypes.string.isRequired,
23709
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23710
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
23711
- posted_at: PropTypes.string,
23712
- value: T['io.flow.common.v0.models.price'].isRequired,
23713
- description: PropTypes.string.isRequired,
23714
- created_at: PropTypes.string.isRequired,
23715
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
23379
+ T['io.flow.internal.v0.models.next_billing_statement'] = PropTypes.exact({
23380
+ date: PropTypes.string.isRequired,
23381
+ amount: T['io.flow.common.v0.models.price'].isRequired,
23382
+ conditions: PropTypes.string,
23716
23383
  });
23717
23384
 
23718
23385
  T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
@@ -23740,7 +23407,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
23740
23407
 
23741
23408
  T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact({
23742
23409
  id: PropTypes.string.isRequired,
23743
- account: T['io.flow.internal.v0.models.account_reference'].isRequired,
23410
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
23744
23411
  period: T['io.flow.common.v0.models.datetime_range'].isRequired,
23745
23412
  totals: T['io.flow.internal.v0.models.billing_statement_totals'].isRequired,
23746
23413
  attachments: PropTypes.arrayOf(T['io.flow.internal.v0.models.billing_statement_attachment']).isRequired,
@@ -23748,7 +23415,7 @@ T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact
23748
23415
 
23749
23416
  T['io.flow.internal.v0.models.channel_billing_statement'] = PropTypes.exact({
23750
23417
  id: PropTypes.string.isRequired,
23751
- account: T['io.flow.internal.v0.models.account_reference'].isRequired,
23418
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
23752
23419
  period: T['io.flow.common.v0.models.datetime_range'].isRequired,
23753
23420
  totals: T['io.flow.internal.v0.models.billing_statement_totals'].isRequired,
23754
23421
  attachments: PropTypes.arrayOf(T['io.flow.internal.v0.models.billing_statement_attachment']).isRequired,
@@ -23756,7 +23423,7 @@ T['io.flow.internal.v0.models.channel_billing_statement'] = PropTypes.exact({
23756
23423
 
23757
23424
  T['io.flow.internal.v0.models.billing_statement_summary'] = PropTypes.exact({
23758
23425
  id: PropTypes.string.isRequired,
23759
- account: T['io.flow.internal.v0.models.account_reference'].isRequired,
23426
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
23760
23427
  period: T['io.flow.common.v0.models.datetime_range'].isRequired,
23761
23428
  totals: T['io.flow.internal.v0.models.billing_statement_totals'].isRequired,
23762
23429
  attachments: PropTypes.arrayOf(T['io.flow.internal.v0.models.billing_statement_attachment']).isRequired,
@@ -23769,18 +23436,13 @@ T['io.flow.internal.v0.models.billing_statement_upserted'] = PropTypes.exact({
23769
23436
  statement: T['io.flow.internal.v0.models.billing_statement_summary'].isRequired,
23770
23437
  });
23771
23438
 
23772
- T['io.flow.internal.v0.models.billing_statement_pending_review'] = PropTypes.exact({
23773
- source: T['io.flow.internal.v0.models.account_source'].isRequired,
23774
- statement: T['io.flow.internal.v0.models.billing_statement_summary'].isRequired,
23775
- });
23776
-
23777
23439
  T['io.flow.internal.v0.models.bank_payment'] = PropTypes.exact({
23778
23440
  id: PropTypes.string.isRequired,
23779
23441
  key: PropTypes.string.isRequired,
23780
- account: T['io.flow.internal.v0.models.account_reference'].isRequired,
23442
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
23781
23443
  reference: PropTypes.string,
23782
23444
  sent_on: PropTypes.string.isRequired,
23783
- status: T['io.flow.billing.v0.models.payout_status'].isRequired,
23445
+ status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
23784
23446
  expected_delivery_by: PropTypes.string.isRequired,
23785
23447
  total: T['io.flow.common.v0.models.price'].isRequired,
23786
23448
  });
@@ -24104,22 +23766,6 @@ T['io.flow.customer.v0.models.customer_bundle'] = PropTypes.exact({
24104
23766
  last_used: T['io.flow.customer.v0.models.customer_last_used'],
24105
23767
  });
24106
23768
 
24107
- T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
24108
- discriminator: PropTypes.oneOf(['virtual_card_transaction']).isRequired,
24109
- virtual_card: T['io.flow.payment.v0.models.virtual_card_reference'].isRequired,
24110
- authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
24111
- original: T['io.flow.common.v0.models.price_with_base'].isRequired,
24112
- processing_fee: T['io.flow.internal.v0.models.fee'].isRequired,
24113
- id: PropTypes.string.isRequired,
24114
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24115
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24116
- posted_at: PropTypes.string,
24117
- value: T['io.flow.common.v0.models.price'].isRequired,
24118
- description: PropTypes.string.isRequired,
24119
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24120
- created_at: PropTypes.string.isRequired,
24121
- });
24122
-
24123
23769
  T['io.flow.internal.v0.models.shopify_order_line_content'] = PropTypes.exact({
24124
23770
  item_number: PropTypes.string.isRequired,
24125
23771
  quantity: PropTypes.number.isRequired,
@@ -24143,72 +23789,6 @@ T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'
24143
23789
  total: T['io.flow.common.v0.models.price_with_base'].isRequired,
24144
23790
  });
24145
23791
 
24146
- T['io.flow.internal.v0.models.processing_transaction'] = PropTypes.exact({
24147
- discriminator: PropTypes.oneOf(['processing_transaction']).isRequired,
24148
- merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
24149
- logistics_responsibility: PropTypes.arrayOf(T['io.flow.internal.v0.enums.responsible_party']).isRequired,
24150
- original_at: PropTypes.string,
24151
- reference: PropTypes.string.isRequired,
24152
- psp_reference_id: PropTypes.string.isRequired,
24153
- reference_id: PropTypes.string.isRequired,
24154
- reference_key: PropTypes.string.isRequired,
24155
- primary_identifier: PropTypes.string,
24156
- payment_method: PropTypes.string.isRequired,
24157
- original: T['io.flow.common.v0.models.price_with_base'].isRequired,
24158
- original_base_at_spot_rate: T['io.flow.common.v0.models.price'],
24159
- fees: T['io.flow.internal.v0.models.fees'].isRequired,
24160
- components: T['io.flow.internal.v0.models.components'],
24161
- withholdings: T['io.flow.internal.v0.models.components'].isRequired,
24162
- parent_transaction_id: PropTypes.string,
24163
- order: T['io.flow.internal.v0.models.billing_order_summary'],
24164
- spot_rate: PropTypes.number.isRequired,
24165
- flow_rate: PropTypes.number.isRequired,
24166
- flow_margin: PropTypes.number.isRequired,
24167
- revenue_share: T['io.flow.common.v0.models.price'],
24168
- disposition: T['io.flow.internal.v0.enums.billing_statement_review_status'],
24169
- id: PropTypes.string.isRequired,
24170
- type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24171
- status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24172
- posted_at: PropTypes.string,
24173
- value: T['io.flow.common.v0.models.price'].isRequired,
24174
- description: PropTypes.string.isRequired,
24175
- statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24176
- created_at: PropTypes.string.isRequired,
24177
- });
24178
-
24179
- T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
24180
- T['io.flow.internal.v0.models.invoice_transaction'],
24181
- T['io.flow.internal.v0.models.manual_transaction'],
24182
- T['io.flow.internal.v0.models.processing_transaction'],
24183
- T['io.flow.internal.v0.models.subscription_transaction'],
24184
- T['io.flow.internal.v0.models.tax_remittance_transaction'],
24185
- T['io.flow.internal.v0.models.transfer_transaction'],
24186
- T['io.flow.internal.v0.models.virtual_card_transaction'],
24187
- T['io.flow.internal.v0.models.dispute_transaction'],
24188
- T['io.flow.internal.v0.models.channel_transaction'],
24189
- T['io.flow.internal.v0.models.label_transaction'],
24190
- T['io.flow.internal.v0.models.order_transaction'],
24191
- T['io.flow.internal.v0.models.channel_billed_transaction'],
24192
- T['io.flow.internal.v0.models.tax_transaction'],
24193
- T['io.flow.internal.v0.models.duty_transaction'],
24194
- ]);
24195
-
24196
- T['io.flow.internal.v0.models.processing_transaction_upserted'] = PropTypes.exact({
24197
- discriminator: PropTypes.oneOf(['processing_transaction_upserted']).isRequired,
24198
- event_id: PropTypes.string.isRequired,
24199
- timestamp: PropTypes.string.isRequired,
24200
- organization: PropTypes.string.isRequired,
24201
- processing_transaction: T['io.flow.internal.v0.models.processing_transaction'].isRequired,
24202
- });
24203
-
24204
- T['io.flow.internal.v0.models.processing_transaction_deleted'] = PropTypes.exact({
24205
- discriminator: PropTypes.oneOf(['processing_transaction_deleted']).isRequired,
24206
- event_id: PropTypes.string.isRequired,
24207
- timestamp: PropTypes.string.isRequired,
24208
- organization: PropTypes.string.isRequired,
24209
- processing_transaction: T['io.flow.internal.v0.models.processing_transaction'].isRequired,
24210
- });
24211
-
24212
23792
  T['io.flow.export.v0.models.export_localized_item_prices_detail'] = PropTypes.exact({
24213
23793
  item: T['io.flow.catalog.v0.models.localized_item_price'].isRequired,
24214
23794
  vat: T['io.flow.catalog.v0.models.localized_item_vat'],
@@ -24658,67 +24238,659 @@ T['io.flow.internal.v0.models.v1_checkout'] = PropTypes.exact({
24658
24238
  customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
24659
24239
  });
24660
24240
 
24661
- T['io.flow.internal.v0.models.checkout_bundle'] = PropTypes.exact({
24662
- cart: T['io.flow.shopify.v0.models.shopify_cart'],
24663
- order: T['io.flow.experience.v0.models.order'].isRequired,
24664
- order_errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
24665
- checkout: T['io.flow.internal.v0.models.checkout_content_summary'],
24666
- optins: PropTypes.arrayOf(T['io.flow.internal.v0.models.optin_prompt']).isRequired,
24667
- destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
24668
- features: T['io.flow.internal.v0.models.feature_value_result'].isRequired,
24669
- provinces: PropTypes.arrayOf(T['io.flow.reference.v0.models.province']).isRequired,
24670
- checkout_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content']).isRequired,
24671
- metadata: T['io.flow.internal.v0.models.checkout_bundle_metadata'],
24672
- configuration: T['io.flow.internal.v0.models.checkout_configuration'],
24673
- address_configurations: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration']),
24674
- customer: T['io.flow.customer.v0.models.customer'],
24675
- address_book: T['io.flow.customer.v0.models.customer_address_book'],
24676
- payment_sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source']),
24677
- customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
24241
+ T['io.flow.internal.v0.models.checkout_bundle'] = PropTypes.exact({
24242
+ cart: T['io.flow.shopify.v0.models.shopify_cart'],
24243
+ order: T['io.flow.experience.v0.models.order'].isRequired,
24244
+ order_errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
24245
+ checkout: T['io.flow.internal.v0.models.checkout_content_summary'],
24246
+ optins: PropTypes.arrayOf(T['io.flow.internal.v0.models.optin_prompt']).isRequired,
24247
+ destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
24248
+ features: T['io.flow.internal.v0.models.feature_value_result'].isRequired,
24249
+ provinces: PropTypes.arrayOf(T['io.flow.reference.v0.models.province']).isRequired,
24250
+ checkout_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content']).isRequired,
24251
+ metadata: T['io.flow.internal.v0.models.checkout_bundle_metadata'],
24252
+ configuration: T['io.flow.internal.v0.models.checkout_configuration'],
24253
+ address_configurations: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration']),
24254
+ customer: T['io.flow.customer.v0.models.customer'],
24255
+ address_book: T['io.flow.customer.v0.models.customer_address_book'],
24256
+ payment_sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source']),
24257
+ customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
24258
+ });
24259
+
24260
+ T['io.flow.internal.v0.models.shipped_item_value'] = PropTypes.exact({
24261
+ item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
24262
+ taxes: T['io.flow.common.v0.models.price_with_base'].isRequired,
24263
+ duties: T['io.flow.common.v0.models.price_with_base'].isRequired,
24264
+ total: T['io.flow.common.v0.models.price_with_base'].isRequired,
24265
+ });
24266
+
24267
+ T['io.flow.internal.v0.models.items_shipped'] = PropTypes.exact({
24268
+ discriminator: PropTypes.oneOf(['items_shipped']).isRequired,
24269
+ event_id: PropTypes.string.isRequired,
24270
+ timestamp: PropTypes.string.isRequired,
24271
+ organization: PropTypes.string.isRequired,
24272
+ order_number: PropTypes.string.isRequired,
24273
+ order: T['io.flow.experience.v0.models.order'].isRequired,
24274
+ fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']).isRequired,
24275
+ flow_tracking_number: PropTypes.string.isRequired,
24276
+ shipped_item_values: PropTypes.arrayOf(T['io.flow.internal.v0.models.shipped_item_value']).isRequired,
24277
+ });
24278
+
24279
+ T['io.flow.internal.v0.models.authorized_shipping_charge'] = PropTypes.exact({
24280
+ discriminator: PropTypes.oneOf(['authorized_shipping_charge']).isRequired,
24281
+ price: T['io.flow.common.v0.models.price_with_base'].isRequired,
24282
+ charge_trigger: T['io.flow.internal.v0.enums.order_charge_trigger'].isRequired,
24283
+ });
24284
+
24285
+ T['io.flow.internal.v0.unions.authorized_order_charge'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.authorized_shipping_charge']]);
24286
+
24287
+ T['io.flow.internal.v0.models.authorized_line_item_charge'] = PropTypes.exact({
24288
+ item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
24289
+ line_number: PropTypes.number,
24290
+ price: T['io.flow.common.v0.models.price_with_base'].isRequired,
24291
+ taxes: T['io.flow.common.v0.models.price_with_base'].isRequired,
24292
+ duties: T['io.flow.common.v0.models.price_with_base'].isRequired,
24293
+ });
24294
+
24295
+ T['io.flow.internal.v0.models.authorized_charge_status'] = PropTypes.exact({
24296
+ line_item_charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.authorized_line_item_charge']).isRequired,
24297
+ order_charges: PropTypes.arrayOf(T['io.flow.internal.v0.unions.authorized_order_charge']).isRequired,
24298
+ authorized: T['io.flow.common.v0.models.price_with_base'].isRequired,
24299
+ captured: T['io.flow.common.v0.models.price_with_base'].isRequired,
24300
+ cancelled: T['io.flow.common.v0.models.price_with_base'].isRequired,
24301
+ refunded: T['io.flow.common.v0.models.price_with_base'].isRequired,
24302
+ });
24303
+
24304
+ T['io.flow.internal.v0.models.account_statistics'] = PropTypes.exact({
24305
+ transfers: T['io.flow.common.v0.models.price'].isRequired,
24306
+ balance: T['io.flow.common.v0.models.price'].isRequired,
24307
+ pending: T['io.flow.common.v0.models.price'].isRequired,
24308
+ });
24309
+
24310
+ T['io.flow.internal.v0.enums.account_type'] = PropTypes.oneOf(['channel', 'organization']);
24311
+
24312
+ T['io.flow.internal.v0.models.account_source'] = PropTypes.exact({
24313
+ id: PropTypes.string.isRequired,
24314
+ type: T['io.flow.internal.v0.enums.account_type'].isRequired,
24315
+ });
24316
+
24317
+ T['io.flow.internal.v0.models.pending_bank_payment'] = PropTypes.exact({
24318
+ source: T['io.flow.internal.v0.models.account_source'].isRequired,
24319
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
24320
+ recommended_reference: PropTypes.string.isRequired,
24321
+ total: T['io.flow.common.v0.models.price'].isRequired,
24322
+ details: PropTypes.arrayOf(T['io.flow.internal.v0.models.pending_bank_payment_detail']).isRequired,
24323
+ });
24324
+
24325
+ T['io.flow.internal.v0.models.billing_statement_pending_review'] = PropTypes.exact({
24326
+ source: T['io.flow.internal.v0.models.account_source'].isRequired,
24327
+ statement: T['io.flow.internal.v0.models.billing_statement_summary'].isRequired,
24328
+ });
24329
+
24330
+ T['io.flow.internal.v0.enums.account_setting_liabilities_method'] = PropTypes.oneOf(['withholding', 'transaction']);
24331
+ T['io.flow.internal.v0.enums.fees_source'] = PropTypes.oneOf(['settings', 'authorization_bundle']);
24332
+ T['io.flow.internal.v0.enums.statement_transfer_transaction_location'] = PropTypes.oneOf(['transactions_file', 'summary']);
24333
+ T['io.flow.internal.v0.enums.transaction_posting_method'] = PropTypes.oneOf(['time', 'proof']);
24334
+ T['io.flow.internal.v0.enums.transfer_method'] = PropTypes.oneOf(['ach']);
24335
+ T['io.flow.internal.v0.enums.payment_term'] = PropTypes.oneOf(['net7', 'net15', 'net30']);
24336
+
24337
+ T['io.flow.internal.v0.models.invoice'] = PropTypes.exact({
24338
+ id: PropTypes.string.isRequired,
24339
+ number: PropTypes.string.isRequired,
24340
+ date: PropTypes.string.isRequired,
24341
+ terms: T['io.flow.internal.v0.enums.payment_term'].isRequired,
24342
+ due_date: PropTypes.string.isRequired,
24343
+ lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.invoice_line']).isRequired,
24344
+ total: T['io.flow.common.v0.models.price'].isRequired,
24345
+ });
24346
+
24347
+ T['io.flow.internal.v0.enums.responsible_party'] = PropTypes.oneOf(['flow', 'organization']);
24348
+
24349
+ T['io.flow.internal.v0.models.external_fulfillment_proof_form'] = PropTypes.exact({
24350
+ responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
24351
+ tracking: PropTypes.arrayOf(T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form']),
24352
+ });
24353
+
24354
+ T['io.flow.internal.v0.models.external_fulfillment_proof'] = PropTypes.exact({
24355
+ id: PropTypes.string.isRequired,
24356
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
24357
+ responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
24358
+ tracking: PropTypes.arrayOf(T['io.flow.internal.v0.models.external_fulfillment_proof_tracking']).isRequired,
24359
+ });
24360
+
24361
+ T['io.flow.internal.v0.models.tiered_fee_tier'] = PropTypes.exact({
24362
+ count: PropTypes.number.isRequired,
24363
+ amount: PropTypes.number.isRequired,
24364
+ });
24365
+
24366
+ T['io.flow.internal.v0.models.tiered_fee'] = PropTypes.exact({
24367
+ currency: PropTypes.string.isRequired,
24368
+ tiers: PropTypes.arrayOf(T['io.flow.internal.v0.models.tiered_fee_tier']).isRequired,
24369
+ });
24370
+
24371
+ T['io.flow.internal.v0.models.billing_organization_settings'] = PropTypes.exact({
24372
+ id: PropTypes.string.isRequired,
24373
+ days_until_posted: PropTypes.number.isRequired,
24374
+ logistics: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
24375
+ include_transaction_created_at: PropTypes.bool.isRequired,
24376
+ include_order_exchange_rate: PropTypes.bool.isRequired,
24377
+ send_statements_to_flow_ftp_server: PropTypes.bool.isRequired,
24378
+ invoicing_terms: T['io.flow.internal.v0.enums.payment_term'],
24379
+ transfer_method: T['io.flow.internal.v0.enums.transfer_method'],
24380
+ b2b_tax_remittance_days: PropTypes.number,
24381
+ mor_fee: PropTypes.number,
24382
+ duty_guarantee_fee: PropTypes.number,
24383
+ order_service_fee: T['io.flow.internal.v0.models.tiered_fee'],
24384
+ label_fee: T['io.flow.internal.v0.models.tiered_fee'],
24385
+ });
24386
+
24387
+ T['io.flow.internal.v0.models.billing_organization_settings_upserted'] = PropTypes.exact({
24388
+ discriminator: PropTypes.oneOf(['billing_organization_settings_upserted']).isRequired,
24389
+ event_id: PropTypes.string.isRequired,
24390
+ timestamp: PropTypes.string.isRequired,
24391
+ organization: PropTypes.string.isRequired,
24392
+ settings: T['io.flow.internal.v0.models.billing_organization_settings'].isRequired,
24393
+ });
24394
+
24395
+ T['io.flow.internal.v0.models.account_setting_label_fees'] = PropTypes.exact({
24396
+ flow: T['io.flow.internal.v0.models.tiered_fee'],
24397
+ organization: T['io.flow.internal.v0.models.tiered_fee'],
24398
+ revenue_share: PropTypes.number,
24399
+ });
24400
+
24401
+ T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
24402
+ id: PropTypes.string.isRequired,
24403
+ days_until_posted: PropTypes.number.isRequired,
24404
+ logistics: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
24405
+ include_transaction_created_at: PropTypes.bool.isRequired,
24406
+ include_order_exchange_rate: PropTypes.bool.isRequired,
24407
+ send_statements_to_flow_ftp_server: PropTypes.bool.isRequired,
24408
+ invoicing_terms: T['io.flow.internal.v0.enums.payment_term'],
24409
+ transfer_method: T['io.flow.internal.v0.enums.transfer_method'],
24410
+ b2b_tax_remittance_days: PropTypes.number,
24411
+ merchant_of_record_fee: PropTypes.number,
24412
+ duty_guarantee_fee: PropTypes.number,
24413
+ transfer_fee: PropTypes.number,
24414
+ order_service_fee: T['io.flow.internal.v0.models.tiered_fee'],
24415
+ label_fees: T['io.flow.internal.v0.models.account_setting_label_fees'],
24416
+ charge_label_cost_directly: PropTypes.bool.isRequired,
24417
+ transaction_posting_method: T['io.flow.internal.v0.enums.transaction_posting_method'].isRequired,
24418
+ statement_transfer_transaction_location: T['io.flow.internal.v0.enums.statement_transfer_transaction_location'].isRequired,
24419
+ fees_source: T['io.flow.internal.v0.enums.fees_source'].isRequired,
24420
+ require_payment_request: PropTypes.bool.isRequired,
24421
+ round_individual_transactions: PropTypes.bool.isRequired,
24422
+ liabilities_method: T['io.flow.internal.v0.enums.account_setting_liabilities_method'].isRequired,
24423
+ enable_fee_reversals: PropTypes.bool.isRequired,
24424
+ });
24425
+
24426
+ T['io.flow.internal.v0.models.account_settings_upserted'] = PropTypes.exact({
24427
+ discriminator: PropTypes.oneOf(['account_settings_upserted']).isRequired,
24428
+ event_id: PropTypes.string.isRequired,
24429
+ timestamp: PropTypes.string.isRequired,
24430
+ settings: T['io.flow.internal.v0.models.account_settings'].isRequired,
24431
+ });
24432
+
24433
+ T['io.flow.internal.v0.models.account_processing_rates'] = PropTypes.exact({
24434
+ id: PropTypes.string.isRequired,
24435
+ query: PropTypes.string.isRequired,
24436
+ capture: PropTypes.number.isRequired,
24437
+ refund: PropTypes.number.isRequired,
24438
+ fraud: PropTypes.number.isRequired,
24439
+ position: PropTypes.number.isRequired,
24440
+ });
24441
+
24442
+ T['io.flow.internal.v0.models.account_processing_rates_upserted'] = PropTypes.exact({
24443
+ discriminator: PropTypes.oneOf(['account_processing_rates_upserted']).isRequired,
24444
+ event_id: PropTypes.string.isRequired,
24445
+ timestamp: PropTypes.string.isRequired,
24446
+ rates: T['io.flow.internal.v0.models.account_processing_rates'].isRequired,
24447
+ });
24448
+
24449
+ T['io.flow.internal.v0.models.account_processing_rate_form'] = PropTypes.exact({
24450
+ query: PropTypes.string.isRequired,
24451
+ capture: PropTypes.number.isRequired,
24452
+ refund: PropTypes.number.isRequired,
24453
+ fraud: PropTypes.number.isRequired,
24454
+ });
24455
+
24456
+ T['io.flow.internal.v0.models.account_processing_rates_form'] = PropTypes.exact({
24457
+ processing_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.account_processing_rate_form']).isRequired,
24458
+ });
24459
+
24460
+ T['io.flow.internal.v0.enums.billing_transaction_status'] = PropTypes.oneOf(['pending', 'pending_proof', 'posted']);
24461
+
24462
+ T['io.flow.internal.v0.models.account_transactions_export_request'] = PropTypes.exact({
24463
+ discriminator: PropTypes.oneOf(['account_transactions_export_request']).isRequired,
24464
+ event_id: PropTypes.string.isRequired,
24465
+ timestamp: PropTypes.string.isRequired,
24466
+ organization: PropTypes.string.isRequired,
24467
+ export_id: PropTypes.string.isRequired,
24468
+ account_id: PropTypes.string,
24469
+ statement_id: PropTypes.string,
24470
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'],
24471
+ posted_from: PropTypes.string,
24472
+ posted_to: PropTypes.string,
24473
+ posted_on_or_after: PropTypes.string,
24474
+ posted_after: PropTypes.string,
24475
+ posted_on_or_before: PropTypes.string,
24476
+ posted_before: PropTypes.string,
24477
+ created_from: PropTypes.string,
24478
+ created_to: PropTypes.string,
24479
+ created_on_or_after: PropTypes.string,
24480
+ created_after: PropTypes.string,
24481
+ created_on_or_before: PropTypes.string,
24482
+ created_before: PropTypes.string,
24483
+ });
24484
+
24485
+ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
24486
+ 'manual',
24487
+ 'subscription',
24488
+ 'invoice',
24489
+ 'transfer',
24490
+ 'adjustment',
24491
+ 'reversal',
24492
+ 'capture',
24493
+ 'refund',
24494
+ 'virtual_card_capture',
24495
+ 'virtual_card_refund',
24496
+ 'tax_remittance',
24497
+ 'fully_subsidized_order',
24498
+ 'credit_payment',
24499
+ 'dispute',
24500
+ 'channel',
24501
+ 'label',
24502
+ 'order',
24503
+ 'channel_billed',
24504
+ 'tax',
24505
+ 'duty',
24506
+ ]);
24507
+
24508
+ T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
24509
+ discriminator: PropTypes.oneOf(['virtual_card_transaction']).isRequired,
24510
+ virtual_card: T['io.flow.payment.v0.models.virtual_card_reference'].isRequired,
24511
+ authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
24512
+ original: T['io.flow.common.v0.models.price_with_base'].isRequired,
24513
+ processing_fee: T['io.flow.internal.v0.models.fee'].isRequired,
24514
+ id: PropTypes.string.isRequired,
24515
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24516
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24517
+ posted_at: PropTypes.string,
24518
+ value: T['io.flow.common.v0.models.price'].isRequired,
24519
+ description: PropTypes.string.isRequired,
24520
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24521
+ created_at: PropTypes.string.isRequired,
24522
+ });
24523
+
24524
+ T['io.flow.internal.v0.models.transfer_transaction'] = PropTypes.exact({
24525
+ discriminator: PropTypes.oneOf(['transfer_transaction']).isRequired,
24526
+ method: T['io.flow.internal.v0.enums.transfer_method'].isRequired,
24527
+ id: PropTypes.string.isRequired,
24528
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24529
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24530
+ posted_at: PropTypes.string,
24531
+ value: T['io.flow.common.v0.models.price'].isRequired,
24532
+ description: PropTypes.string.isRequired,
24533
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24534
+ created_at: PropTypes.string.isRequired,
24535
+ });
24536
+
24537
+ T['io.flow.internal.v0.models.transfer_transaction_upserted_v2'] = PropTypes.exact({
24538
+ discriminator: PropTypes.oneOf(['transfer_transaction_upserted_v2']).isRequired,
24539
+ event_id: PropTypes.string.isRequired,
24540
+ timestamp: PropTypes.string.isRequired,
24541
+ transfer_transaction: T['io.flow.internal.v0.models.transfer_transaction'].isRequired,
24542
+ });
24543
+
24544
+ T['io.flow.internal.v0.models.transfer_transaction_upserted'] = PropTypes.exact({
24545
+ discriminator: PropTypes.oneOf(['transfer_transaction_upserted']).isRequired,
24546
+ event_id: PropTypes.string.isRequired,
24547
+ timestamp: PropTypes.string.isRequired,
24548
+ organization: PropTypes.string.isRequired,
24549
+ transfer_transaction: T['io.flow.internal.v0.models.transfer_transaction'].isRequired,
24550
+ });
24551
+
24552
+ T['io.flow.internal.v0.models.transfer_transaction_deleted'] = PropTypes.exact({
24553
+ discriminator: PropTypes.oneOf(['transfer_transaction_deleted']).isRequired,
24554
+ event_id: PropTypes.string.isRequired,
24555
+ timestamp: PropTypes.string.isRequired,
24556
+ organization: PropTypes.string.isRequired,
24557
+ transfer_transaction: T['io.flow.internal.v0.models.transfer_transaction'].isRequired,
24558
+ });
24559
+
24560
+ T['io.flow.internal.v0.models.tax_transaction'] = PropTypes.exact({
24561
+ discriminator: PropTypes.oneOf(['tax_transaction']).isRequired,
24562
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
24563
+ id: PropTypes.string.isRequired,
24564
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24565
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24566
+ posted_at: PropTypes.string,
24567
+ value: T['io.flow.common.v0.models.price'].isRequired,
24568
+ description: PropTypes.string.isRequired,
24569
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24570
+ created_at: PropTypes.string.isRequired,
24571
+ });
24572
+
24573
+ T['io.flow.internal.v0.models.tax_transaction_upserted'] = PropTypes.exact({
24574
+ discriminator: PropTypes.oneOf(['tax_transaction_upserted']).isRequired,
24575
+ event_id: PropTypes.string.isRequired,
24576
+ timestamp: PropTypes.string.isRequired,
24577
+ tax_transaction: T['io.flow.internal.v0.models.tax_transaction'].isRequired,
24578
+ });
24579
+
24580
+ T['io.flow.internal.v0.models.tax_remittance_transaction'] = PropTypes.exact({
24581
+ discriminator: PropTypes.oneOf(['tax_remittance_transaction']).isRequired,
24582
+ order: T['io.flow.internal.v0.models.billing_order_summary'].isRequired,
24583
+ invoice: T['io.flow.internal.v0.models.billing_invoice_summary'].isRequired,
24584
+ id: PropTypes.string.isRequired,
24585
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24586
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24587
+ posted_at: PropTypes.string,
24588
+ value: T['io.flow.common.v0.models.price'].isRequired,
24589
+ description: PropTypes.string.isRequired,
24590
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24591
+ created_at: PropTypes.string.isRequired,
24592
+ });
24593
+
24594
+ T['io.flow.internal.v0.models.tax_remittance_transaction_upserted'] = PropTypes.exact({
24595
+ discriminator: PropTypes.oneOf(['tax_remittance_transaction_upserted']).isRequired,
24596
+ event_id: PropTypes.string.isRequired,
24597
+ timestamp: PropTypes.string.isRequired,
24598
+ organization: PropTypes.string.isRequired,
24599
+ transaction: T['io.flow.internal.v0.models.tax_remittance_transaction'].isRequired,
24600
+ });
24601
+
24602
+ T['io.flow.internal.v0.models.subscription_transaction'] = PropTypes.exact({
24603
+ discriminator: PropTypes.oneOf(['subscription_transaction']).isRequired,
24604
+ period: T['io.flow.common.v0.models.datetime_range'].isRequired,
24605
+ id: PropTypes.string.isRequired,
24606
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24607
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24608
+ posted_at: PropTypes.string,
24609
+ value: T['io.flow.common.v0.models.price'].isRequired,
24610
+ description: PropTypes.string.isRequired,
24611
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24612
+ created_at: PropTypes.string.isRequired,
24613
+ });
24614
+
24615
+ T['io.flow.internal.v0.models.processing_transaction'] = PropTypes.exact({
24616
+ discriminator: PropTypes.oneOf(['processing_transaction']).isRequired,
24617
+ merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
24618
+ logistics_responsibility: PropTypes.arrayOf(T['io.flow.internal.v0.enums.responsible_party']).isRequired,
24619
+ original_at: PropTypes.string,
24620
+ reference: PropTypes.string.isRequired,
24621
+ psp_reference_id: PropTypes.string.isRequired,
24622
+ reference_id: PropTypes.string.isRequired,
24623
+ reference_key: PropTypes.string.isRequired,
24624
+ primary_identifier: PropTypes.string,
24625
+ payment_method: PropTypes.string.isRequired,
24626
+ original: T['io.flow.common.v0.models.price_with_base'].isRequired,
24627
+ original_base_at_spot_rate: T['io.flow.common.v0.models.price'],
24628
+ fees: T['io.flow.internal.v0.models.fees'].isRequired,
24629
+ components: T['io.flow.internal.v0.models.components'],
24630
+ withholdings: T['io.flow.internal.v0.models.components'].isRequired,
24631
+ parent_transaction_id: PropTypes.string,
24632
+ order: T['io.flow.internal.v0.models.billing_order_summary'],
24633
+ spot_rate: PropTypes.number.isRequired,
24634
+ flow_rate: PropTypes.number.isRequired,
24635
+ flow_margin: PropTypes.number.isRequired,
24636
+ revenue_share: T['io.flow.common.v0.models.price'],
24637
+ disposition: T['io.flow.internal.v0.enums.billing_statement_review_status'],
24638
+ id: PropTypes.string.isRequired,
24639
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24640
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24641
+ posted_at: PropTypes.string,
24642
+ value: T['io.flow.common.v0.models.price'].isRequired,
24643
+ description: PropTypes.string.isRequired,
24644
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24645
+ created_at: PropTypes.string.isRequired,
24646
+ });
24647
+
24648
+ T['io.flow.internal.v0.models.processing_transaction_upserted'] = PropTypes.exact({
24649
+ discriminator: PropTypes.oneOf(['processing_transaction_upserted']).isRequired,
24650
+ event_id: PropTypes.string.isRequired,
24651
+ timestamp: PropTypes.string.isRequired,
24652
+ organization: PropTypes.string.isRequired,
24653
+ processing_transaction: T['io.flow.internal.v0.models.processing_transaction'].isRequired,
24654
+ });
24655
+
24656
+ T['io.flow.internal.v0.models.processing_transaction_deleted'] = PropTypes.exact({
24657
+ discriminator: PropTypes.oneOf(['processing_transaction_deleted']).isRequired,
24658
+ event_id: PropTypes.string.isRequired,
24659
+ timestamp: PropTypes.string.isRequired,
24660
+ organization: PropTypes.string.isRequired,
24661
+ processing_transaction: T['io.flow.internal.v0.models.processing_transaction'].isRequired,
24662
+ });
24663
+
24664
+ T['io.flow.internal.v0.models.order_transaction'] = PropTypes.exact({
24665
+ discriminator: PropTypes.oneOf(['order_transaction']).isRequired,
24666
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
24667
+ id: PropTypes.string.isRequired,
24668
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24669
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24670
+ posted_at: PropTypes.string,
24671
+ value: T['io.flow.common.v0.models.price'].isRequired,
24672
+ description: PropTypes.string.isRequired,
24673
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24674
+ created_at: PropTypes.string.isRequired,
24675
+ });
24676
+
24677
+ T['io.flow.internal.v0.models.order_transaction_upserted'] = PropTypes.exact({
24678
+ discriminator: PropTypes.oneOf(['order_transaction_upserted']).isRequired,
24679
+ event_id: PropTypes.string.isRequired,
24680
+ timestamp: PropTypes.string.isRequired,
24681
+ order_transaction: T['io.flow.internal.v0.models.order_transaction'].isRequired,
24682
+ });
24683
+
24684
+ T['io.flow.internal.v0.models.manual_transaction'] = PropTypes.exact({
24685
+ discriminator: PropTypes.oneOf(['manual_transaction']).isRequired,
24686
+ category: T['io.flow.internal.v0.enums.manual_transaction_category'],
24687
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
24688
+ attributes: PropTypes.objectOf(PropTypes.string),
24689
+ id: PropTypes.string.isRequired,
24690
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24691
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24692
+ posted_at: PropTypes.string,
24693
+ value: T['io.flow.common.v0.models.price'].isRequired,
24694
+ description: PropTypes.string.isRequired,
24695
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24696
+ created_at: PropTypes.string.isRequired,
24697
+ });
24698
+
24699
+ T['io.flow.internal.v0.models.main_transaction'] = PropTypes.exact({
24700
+ id: PropTypes.string.isRequired,
24701
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
24702
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24703
+ value: T['io.flow.common.v0.models.price'].isRequired,
24704
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24705
+ posted_at: PropTypes.string,
24706
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24707
+ created_at: PropTypes.string.isRequired,
24708
+ original_at: PropTypes.string,
24709
+ disposition: T['io.flow.internal.v0.enums.billing_statement_review_status'],
24710
+ });
24711
+
24712
+ T['io.flow.internal.v0.models.main_transaction_upserted_v2'] = PropTypes.exact({
24713
+ discriminator: PropTypes.oneOf(['main_transaction_upserted_v2']).isRequired,
24714
+ event_id: PropTypes.string.isRequired,
24715
+ timestamp: PropTypes.string.isRequired,
24716
+ main_transaction: T['io.flow.internal.v0.models.main_transaction'].isRequired,
24717
+ });
24718
+
24719
+ T['io.flow.internal.v0.models.main_transaction_upserted'] = PropTypes.exact({
24720
+ discriminator: PropTypes.oneOf(['main_transaction_upserted']).isRequired,
24721
+ event_id: PropTypes.string.isRequired,
24722
+ timestamp: PropTypes.string.isRequired,
24723
+ organization: PropTypes.string.isRequired,
24724
+ main_transaction: T['io.flow.internal.v0.models.main_transaction'].isRequired,
24725
+ });
24726
+
24727
+ T['io.flow.internal.v0.models.main_transaction_deleted'] = PropTypes.exact({
24728
+ discriminator: PropTypes.oneOf(['main_transaction_deleted']).isRequired,
24729
+ event_id: PropTypes.string.isRequired,
24730
+ timestamp: PropTypes.string.isRequired,
24731
+ organization: PropTypes.string.isRequired,
24732
+ main_transaction: T['io.flow.internal.v0.models.main_transaction'].isRequired,
24733
+ });
24734
+
24735
+ T['io.flow.internal.v0.models.label_transaction'] = PropTypes.exact({
24736
+ discriminator: PropTypes.oneOf(['label_transaction']).isRequired,
24737
+ label: T['io.flow.internal.v0.models.billing_label_summary'].isRequired,
24738
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
24739
+ tracking: T['io.flow.internal.v0.models.billing_label_tracking_summary_reference'].isRequired,
24740
+ id: PropTypes.string.isRequired,
24741
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24742
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24743
+ posted_at: PropTypes.string,
24744
+ value: T['io.flow.common.v0.models.price'].isRequired,
24745
+ description: PropTypes.string.isRequired,
24746
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24747
+ created_at: PropTypes.string.isRequired,
24748
+ });
24749
+
24750
+ T['io.flow.internal.v0.models.label_transaction_upserted'] = PropTypes.exact({
24751
+ discriminator: PropTypes.oneOf(['label_transaction_upserted']).isRequired,
24752
+ event_id: PropTypes.string.isRequired,
24753
+ timestamp: PropTypes.string.isRequired,
24754
+ label_transaction: T['io.flow.internal.v0.models.label_transaction'].isRequired,
24755
+ });
24756
+
24757
+ T['io.flow.internal.v0.models.invoice_transaction'] = PropTypes.exact({
24758
+ discriminator: PropTypes.oneOf(['invoice_transaction']).isRequired,
24759
+ invoice: T['io.flow.internal.v0.models.invoice'].isRequired,
24760
+ id: PropTypes.string.isRequired,
24761
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24762
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24763
+ posted_at: PropTypes.string,
24764
+ value: T['io.flow.common.v0.models.price'].isRequired,
24765
+ description: PropTypes.string.isRequired,
24766
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24767
+ created_at: PropTypes.string.isRequired,
24768
+ });
24769
+
24770
+ T['io.flow.internal.v0.models.duty_transaction'] = PropTypes.exact({
24771
+ discriminator: PropTypes.oneOf(['duty_transaction']).isRequired,
24772
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
24773
+ id: PropTypes.string.isRequired,
24774
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24775
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24776
+ posted_at: PropTypes.string,
24777
+ value: T['io.flow.common.v0.models.price'].isRequired,
24778
+ description: PropTypes.string.isRequired,
24779
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24780
+ created_at: PropTypes.string.isRequired,
24781
+ });
24782
+
24783
+ T['io.flow.internal.v0.models.duty_transaction_upserted'] = PropTypes.exact({
24784
+ discriminator: PropTypes.oneOf(['duty_transaction_upserted']).isRequired,
24785
+ event_id: PropTypes.string.isRequired,
24786
+ timestamp: PropTypes.string.isRequired,
24787
+ duty_transaction: T['io.flow.internal.v0.models.duty_transaction'].isRequired,
24788
+ });
24789
+
24790
+ T['io.flow.internal.v0.models.dispute_transaction'] = PropTypes.exact({
24791
+ discriminator: PropTypes.oneOf(['dispute_transaction']).isRequired,
24792
+ authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
24793
+ id: PropTypes.string.isRequired,
24794
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24795
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24796
+ posted_at: PropTypes.string,
24797
+ value: T['io.flow.common.v0.models.price'].isRequired,
24798
+ description: PropTypes.string.isRequired,
24799
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24800
+ created_at: PropTypes.string.isRequired,
24678
24801
  });
24679
24802
 
24680
- T['io.flow.internal.v0.models.shipped_item_value'] = PropTypes.exact({
24681
- item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
24682
- taxes: T['io.flow.common.v0.models.price_with_base'].isRequired,
24683
- duties: T['io.flow.common.v0.models.price_with_base'].isRequired,
24684
- total: T['io.flow.common.v0.models.price_with_base'].isRequired,
24803
+ T['io.flow.internal.v0.models.channel_transaction'] = PropTypes.exact({
24804
+ discriminator: PropTypes.oneOf(['channel_transaction']).isRequired,
24805
+ transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
24806
+ fees: PropTypes.arrayOf(T['io.flow.internal.v0.models.fee']).isRequired,
24807
+ id: PropTypes.string.isRequired,
24808
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24809
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24810
+ posted_at: PropTypes.string,
24811
+ value: T['io.flow.common.v0.models.price'].isRequired,
24812
+ description: PropTypes.string.isRequired,
24813
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24814
+ created_at: PropTypes.string.isRequired,
24685
24815
  });
24686
24816
 
24687
- T['io.flow.internal.v0.models.items_shipped'] = PropTypes.exact({
24688
- discriminator: PropTypes.oneOf(['items_shipped']).isRequired,
24817
+ T['io.flow.internal.v0.models.channel_transaction_upserted'] = PropTypes.exact({
24818
+ discriminator: PropTypes.oneOf(['channel_transaction_upserted']).isRequired,
24689
24819
  event_id: PropTypes.string.isRequired,
24690
24820
  timestamp: PropTypes.string.isRequired,
24691
- organization: PropTypes.string.isRequired,
24692
- order_number: PropTypes.string.isRequired,
24693
- order: T['io.flow.experience.v0.models.order'].isRequired,
24694
- fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']).isRequired,
24695
- flow_tracking_number: PropTypes.string.isRequired,
24696
- shipped_item_values: PropTypes.arrayOf(T['io.flow.internal.v0.models.shipped_item_value']).isRequired,
24821
+ channel_transaction: T['io.flow.internal.v0.models.channel_transaction'].isRequired,
24697
24822
  });
24698
24823
 
24699
- T['io.flow.internal.v0.models.authorized_shipping_charge'] = PropTypes.exact({
24700
- discriminator: PropTypes.oneOf(['authorized_shipping_charge']).isRequired,
24701
- price: T['io.flow.common.v0.models.price_with_base'].isRequired,
24702
- charge_trigger: T['io.flow.internal.v0.enums.order_charge_trigger'].isRequired,
24824
+ T['io.flow.internal.v0.models.channel_billed_transaction'] = PropTypes.exact({
24825
+ discriminator: PropTypes.oneOf(['channel_billed_transaction']).isRequired,
24826
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
24827
+ id: PropTypes.string.isRequired,
24828
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24829
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24830
+ posted_at: PropTypes.string,
24831
+ value: T['io.flow.common.v0.models.price'].isRequired,
24832
+ description: PropTypes.string.isRequired,
24833
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24834
+ created_at: PropTypes.string.isRequired,
24703
24835
  });
24704
24836
 
24705
- T['io.flow.internal.v0.unions.authorized_order_charge'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.authorized_shipping_charge']]);
24837
+ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
24838
+ T['io.flow.internal.v0.models.invoice_transaction'],
24839
+ T['io.flow.internal.v0.models.manual_transaction'],
24840
+ T['io.flow.internal.v0.models.processing_transaction'],
24841
+ T['io.flow.internal.v0.models.subscription_transaction'],
24842
+ T['io.flow.internal.v0.models.tax_remittance_transaction'],
24843
+ T['io.flow.internal.v0.models.transfer_transaction'],
24844
+ T['io.flow.internal.v0.models.virtual_card_transaction'],
24845
+ T['io.flow.internal.v0.models.dispute_transaction'],
24846
+ T['io.flow.internal.v0.models.channel_transaction'],
24847
+ T['io.flow.internal.v0.models.label_transaction'],
24848
+ T['io.flow.internal.v0.models.order_transaction'],
24849
+ T['io.flow.internal.v0.models.channel_billed_transaction'],
24850
+ T['io.flow.internal.v0.models.tax_transaction'],
24851
+ T['io.flow.internal.v0.models.duty_transaction'],
24852
+ ]);
24706
24853
 
24707
- T['io.flow.internal.v0.models.authorized_line_item_charge'] = PropTypes.exact({
24708
- item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
24709
- line_number: PropTypes.number,
24710
- price: T['io.flow.common.v0.models.price_with_base'].isRequired,
24711
- taxes: T['io.flow.common.v0.models.price_with_base'].isRequired,
24712
- duties: T['io.flow.common.v0.models.price_with_base'].isRequired,
24854
+ T['io.flow.internal.v0.models.channel_billed_transaction_upserted'] = PropTypes.exact({
24855
+ discriminator: PropTypes.oneOf(['channel_billed_transaction_upserted']).isRequired,
24856
+ event_id: PropTypes.string.isRequired,
24857
+ timestamp: PropTypes.string.isRequired,
24858
+ channel_billed_transaction: T['io.flow.internal.v0.models.channel_billed_transaction'].isRequired,
24713
24859
  });
24714
24860
 
24715
- T['io.flow.internal.v0.models.authorized_charge_status'] = PropTypes.exact({
24716
- line_item_charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.authorized_line_item_charge']).isRequired,
24717
- order_charges: PropTypes.arrayOf(T['io.flow.internal.v0.unions.authorized_order_charge']).isRequired,
24718
- authorized: T['io.flow.common.v0.models.price_with_base'].isRequired,
24719
- captured: T['io.flow.common.v0.models.price_with_base'].isRequired,
24720
- cancelled: T['io.flow.common.v0.models.price_with_base'].isRequired,
24721
- refunded: T['io.flow.common.v0.models.price_with_base'].isRequired,
24861
+ T['io.flow.internal.v0.models.billing_transaction'] = PropTypes.exact({
24862
+ id: PropTypes.string.isRequired,
24863
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24864
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24865
+ posted_at: PropTypes.string,
24866
+ value: T['io.flow.common.v0.models.price'].isRequired,
24867
+ description: PropTypes.string.isRequired,
24868
+ created_at: PropTypes.string.isRequired,
24869
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24870
+ });
24871
+
24872
+ T['io.flow.internal.v0.models.account_orders_export_request'] = PropTypes.exact({
24873
+ discriminator: PropTypes.oneOf(['account_orders_export_request']).isRequired,
24874
+ event_id: PropTypes.string.isRequired,
24875
+ timestamp: PropTypes.string.isRequired,
24876
+ organization: PropTypes.string.isRequired,
24877
+ export_id: PropTypes.string.isRequired,
24878
+ account_id: PropTypes.string,
24879
+ statement_id: PropTypes.string,
24880
+ transaction_type: T['io.flow.internal.v0.enums.billing_transaction_type'],
24881
+ transaction_status: T['io.flow.internal.v0.enums.billing_transaction_status'],
24882
+ transaction_posted_from: PropTypes.string,
24883
+ transaction_posted_to: PropTypes.string,
24884
+ transaction_posted_on_or_after: PropTypes.string,
24885
+ transaction_posted_after: PropTypes.string,
24886
+ transaction_posted_on_or_before: PropTypes.string,
24887
+ transaction_posted_before: PropTypes.string,
24888
+ transaction_created_from: PropTypes.string,
24889
+ transaction_created_to: PropTypes.string,
24890
+ transaction_created_on_or_after: PropTypes.string,
24891
+ transaction_created_after: PropTypes.string,
24892
+ transaction_created_on_or_before: PropTypes.string,
24893
+ transaction_created_before: PropTypes.string,
24722
24894
  });
24723
24895
 
24724
24896
  T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
@@ -24743,19 +24915,7 @@ T['io.flow.common.v0.models.repeat_hourly'] = PropTypes.exact({
24743
24915
  interval: PropTypes.number.isRequired,
24744
24916
  });
24745
24917
 
24746
- T['io.flow.internal.v0.models.next_billing_statement'] = PropTypes.exact({
24747
- date: PropTypes.string.isRequired,
24748
- amount: T['io.flow.common.v0.models.price'].isRequired,
24749
- conditions: PropTypes.string,
24750
- });
24751
-
24752
- T['io.flow.internal.v0.models.account_statistics'] = PropTypes.exact({
24753
- transfers: T['io.flow.common.v0.models.price'].isRequired,
24754
- balance: T['io.flow.common.v0.models.price'].isRequired,
24755
- pending: T['io.flow.common.v0.models.price'].isRequired,
24756
- });
24757
-
24758
- T['io.flow.internal.v0.models.account_deposit_rule'] = PropTypes.exact({
24918
+ T['io.flow.internal.v0.models.account_deposit_rule_form'] = PropTypes.exact({
24759
24919
  target: PropTypes.number.isRequired,
24760
24920
  rate: PropTypes.number.isRequired,
24761
24921
  });
@@ -24767,22 +24927,8 @@ T['io.flow.common.v0.unions.repeat_schedule'] = PropTypes.oneOfType([
24767
24927
  T['io.flow.common.v0.models.repeat_monthly'],
24768
24928
  ]);
24769
24929
 
24770
- T['io.flow.internal.v0.models.account_form'] = PropTypes.exact({
24771
- timezone: PropTypes.string.isRequired,
24772
- payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
24773
- payment_conditions: PropTypes.string,
24774
- deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule_form'],
24775
- center_key: PropTypes.string,
24776
- });
24777
-
24778
- T['io.flow.reference.v0.models.timezone'] = PropTypes.exact({
24779
- name: PropTypes.string.isRequired,
24780
- description: PropTypes.string.isRequired,
24781
- offset: PropTypes.number.isRequired,
24782
- });
24783
-
24784
- T['io.flow.internal.v0.models.organization_account'] = PropTypes.exact({
24785
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
24930
+ T['io.flow.internal.v0.models.channel_account'] = PropTypes.exact({
24931
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
24786
24932
  id: PropTypes.string.isRequired,
24787
24933
  currency: PropTypes.string.isRequired,
24788
24934
  updated_at: PropTypes.string.isRequired,
@@ -24796,15 +24942,15 @@ T['io.flow.internal.v0.models.organization_account'] = PropTypes.exact({
24796
24942
  created_at: PropTypes.string.isRequired,
24797
24943
  });
24798
24944
 
24799
- T['io.flow.internal.v0.models.organization_account_upserted_v2'] = PropTypes.exact({
24800
- discriminator: PropTypes.oneOf(['organization_account_upserted_v2']).isRequired,
24945
+ T['io.flow.internal.v0.models.channel_account_upserted_v2'] = PropTypes.exact({
24946
+ discriminator: PropTypes.oneOf(['channel_account_upserted_v2']).isRequired,
24801
24947
  event_id: PropTypes.string.isRequired,
24802
24948
  timestamp: PropTypes.string.isRequired,
24803
- organization_account: T['io.flow.internal.v0.models.organization_account'].isRequired,
24949
+ channel_account: T['io.flow.internal.v0.models.channel_account'].isRequired,
24804
24950
  });
24805
24951
 
24806
- T['io.flow.internal.v0.models.channel_account'] = PropTypes.exact({
24807
- channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
24952
+ T['io.flow.internal.v0.models.flow_account'] = PropTypes.exact({
24953
+ source: T['io.flow.internal.v0.models.account_source'].isRequired,
24808
24954
  id: PropTypes.string.isRequired,
24809
24955
  currency: PropTypes.string.isRequired,
24810
24956
  updated_at: PropTypes.string.isRequired,
@@ -24818,14 +24964,15 @@ T['io.flow.internal.v0.models.channel_account'] = PropTypes.exact({
24818
24964
  created_at: PropTypes.string.isRequired,
24819
24965
  });
24820
24966
 
24821
- T['io.flow.internal.v0.models.channel_account_upserted_v2'] = PropTypes.exact({
24822
- discriminator: PropTypes.oneOf(['channel_account_upserted_v2']).isRequired,
24967
+ T['io.flow.internal.v0.models.account_upserted_v2'] = PropTypes.exact({
24968
+ discriminator: PropTypes.oneOf(['account_upserted_v2']).isRequired,
24823
24969
  event_id: PropTypes.string.isRequired,
24824
24970
  timestamp: PropTypes.string.isRequired,
24825
- channel_account: T['io.flow.internal.v0.models.channel_account'].isRequired,
24971
+ account: T['io.flow.internal.v0.models.flow_account'].isRequired,
24826
24972
  });
24827
24973
 
24828
- T['io.flow.internal.v0.models.account'] = PropTypes.exact({
24974
+ T['io.flow.internal.v0.models.organization_account'] = PropTypes.exact({
24975
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
24829
24976
  id: PropTypes.string.isRequired,
24830
24977
  currency: PropTypes.string.isRequired,
24831
24978
  updated_at: PropTypes.string.isRequired,
@@ -24839,11 +24986,11 @@ T['io.flow.internal.v0.models.account'] = PropTypes.exact({
24839
24986
  created_at: PropTypes.string.isRequired,
24840
24987
  });
24841
24988
 
24842
- T['io.flow.internal.v0.models.account_upserted_v2'] = PropTypes.exact({
24843
- discriminator: PropTypes.oneOf(['account_upserted_v2']).isRequired,
24989
+ T['io.flow.internal.v0.models.organization_account_upserted_v2'] = PropTypes.exact({
24990
+ discriminator: PropTypes.oneOf(['organization_account_upserted_v2']).isRequired,
24844
24991
  event_id: PropTypes.string.isRequired,
24845
24992
  timestamp: PropTypes.string.isRequired,
24846
- account: T['io.flow.internal.v0.models.account'].isRequired,
24993
+ organization_account: T['io.flow.internal.v0.models.organization_account'].isRequired,
24847
24994
  });
24848
24995
 
24849
24996
  T['io.flow.internal.v0.models.account_upserted'] = PropTypes.exact({
@@ -24851,7 +24998,35 @@ T['io.flow.internal.v0.models.account_upserted'] = PropTypes.exact({
24851
24998
  event_id: PropTypes.string.isRequired,
24852
24999
  timestamp: PropTypes.string.isRequired,
24853
25000
  organization: PropTypes.string.isRequired,
24854
- account: T['io.flow.internal.v0.models.account'].isRequired,
25001
+ account: T['io.flow.internal.v0.models.organization_account'].isRequired,
25002
+ });
25003
+
25004
+ T['io.flow.internal.v0.models.account_form'] = PropTypes.exact({
25005
+ timezone: PropTypes.string.isRequired,
25006
+ payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
25007
+ payment_conditions: PropTypes.string,
25008
+ deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule_form'],
25009
+ center_key: PropTypes.string,
25010
+ });
25011
+
25012
+ T['io.flow.internal.v0.models.simple_account_reference'] = PropTypes.exact({
25013
+ id: PropTypes.string.isRequired,
25014
+ });
25015
+
25016
+ T['io.flow.internal.v0.models.account_contact'] = PropTypes.exact({
25017
+ id: PropTypes.string.isRequired,
25018
+ email: PropTypes.string.isRequired,
25019
+ first_name: PropTypes.string,
25020
+ last_name: PropTypes.string,
25021
+ phone: PropTypes.string,
25022
+ account: T['io.flow.internal.v0.models.simple_account_reference'],
25023
+ });
25024
+
25025
+ T['io.flow.internal.v0.models.account_contact_upserted'] = PropTypes.exact({
25026
+ discriminator: PropTypes.oneOf(['account_contact_upserted']).isRequired,
25027
+ event_id: PropTypes.string.isRequired,
25028
+ timestamp: PropTypes.string.isRequired,
25029
+ account_contact: T['io.flow.internal.v0.models.account_contact'].isRequired,
24855
25030
  });
24856
25031
 
24857
25032
  T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
@@ -24863,6 +25038,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
24863
25038
  T['io.flow.internal.v0.models.adyen_capture_upserted'],
24864
25039
  T['io.flow.internal.v0.models.adyen_refund_deleted'],
24865
25040
  T['io.flow.internal.v0.models.adyen_refund_upserted'],
25041
+ T['io.flow.internal.v0.models.test_upserted'],
25042
+ T['io.flow.internal.v0.models.test_deleted'],
24866
25043
  T['io.flow.internal.v0.models.account_upserted'],
24867
25044
  T['io.flow.internal.v0.models.account_upserted_v2'],
24868
25045
  T['io.flow.internal.v0.models.account_deleted_v2'],
@@ -25048,6 +25225,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
25048
25225
  T['io.flow.internal.v0.models.fulfillment_cancel'],
25049
25226
  T['io.flow.internal.v0.models.order_shipped'],
25050
25227
  T['io.flow.internal.v0.models.items_shipped'],
25228
+ T['io.flow.internal.v0.models.organization_business_entity_deleted'],
25229
+ T['io.flow.internal.v0.models.organization_business_entity_upserted'],
25051
25230
  T['io.flow.internal.v0.models.organization_restriction_approval_upserted'],
25052
25231
  T['io.flow.internal.v0.models.organization_restriction_approval_deleted'],
25053
25232
  T['io.flow.internal.v0.models.internal_authorization_upserted'],
@@ -25089,6 +25268,12 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
25089
25268
  T['io.flow.internal.v0.models.ratecard_service_fee_deleted'],
25090
25269
  T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'],
25091
25270
  T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'],
25271
+ T['io.flow.internal.v0.models.ratecard_rate_level_upserted'],
25272
+ T['io.flow.internal.v0.models.ratecard_rate_level_deleted'],
25273
+ T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_upserted'],
25274
+ T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_deleted'],
25275
+ T['io.flow.internal.v0.models.ratecard_rate_level_organization_upserted'],
25276
+ T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'],
25092
25277
  T['io.flow.internal.v0.models.organization_restriction_snapshot_upserted'],
25093
25278
  T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'],
25094
25279
  T['io.flow.internal.v0.models.restriction_organization_status_upserted'],
@@ -25345,6 +25530,7 @@ T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
25345
25530
 
25346
25531
  T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
25347
25532
  T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
25533
+ T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'] = PropTypes.oneOf(['auto_reject']);
25348
25534
  T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing']);
25349
25535
  T['io.flow.internal.v0.enums.compliance_type'] = PropTypes.oneOf(['weee']);
25350
25536
  T['io.flow.internal.v0.enums.content_type_cast'] = PropTypes.oneOf(['markdown_to_html', 'markdown_to_text']);
@@ -25363,6 +25549,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
25363
25549
  'adyen_capture_upserted',
25364
25550
  'adyen_refund_deleted',
25365
25551
  'adyen_refund_upserted',
25552
+ 'test_upserted',
25553
+ 'test_deleted',
25366
25554
  'account_upserted',
25367
25555
  'account_upserted_v2',
25368
25556
  'account_deleted_v2',
@@ -25548,6 +25736,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
25548
25736
  'fulfillment_cancel',
25549
25737
  'order_shipped',
25550
25738
  'items_shipped',
25739
+ 'organization_business_entity_deleted',
25740
+ 'organization_business_entity_upserted',
25551
25741
  'organization_restriction_approval_upserted',
25552
25742
  'organization_restriction_approval_deleted',
25553
25743
  'internal_authorization_upserted',
@@ -25589,6 +25779,12 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
25589
25779
  'ratecard_service_fee_deleted',
25590
25780
  'ratecard_lane_aggregate_upserted',
25591
25781
  'ratecard_lane_aggregate_deleted',
25782
+ 'ratecard_rate_level_upserted',
25783
+ 'ratecard_rate_level_deleted',
25784
+ 'ratecard_rate_level_ratecard_upserted',
25785
+ 'ratecard_rate_level_ratecard_deleted',
25786
+ 'ratecard_rate_level_organization_upserted',
25787
+ 'ratecard_rate_level_organization_deleted',
25592
25788
  'organization_restriction_snapshot_upserted',
25593
25789
  'organization_restriction_snapshot_deleted',
25594
25790
  'restriction_organization_status_upserted',
@@ -25900,6 +26096,10 @@ T['io.flow.internal.v0.models.classification_requeue_request'] = PropTypes.exact
25900
26096
  message: PropTypes.string.isRequired,
25901
26097
  });
25902
26098
 
26099
+ T['io.flow.internal.v0.models.commercial_invoice_comparison'] = PropTypes.exact({
26100
+ urls: PropTypes.arrayOf(PropTypes.string).isRequired,
26101
+ });
26102
+
25903
26103
  T['io.flow.internal.v0.models.consumer_optin_activity'] = PropTypes.exact({
25904
26104
  optin_attribute_key: PropTypes.string.isRequired,
25905
26105
  optin_region: PropTypes.string.isRequired,
@@ -26027,6 +26227,10 @@ T['io.flow.internal.v0.models.financial_reporting_statement_form'] = PropTypes.e
26027
26227
  flow_entity_country_code: PropTypes.string,
26028
26228
  });
26029
26229
 
26230
+ T['io.flow.internal.v0.models.flow_channel_organization'] = PropTypes.exact({
26231
+ placeholder: PropTypes.string,
26232
+ });
26233
+
26030
26234
  T['io.flow.internal.v0.models.flow_lab_project'] = PropTypes.exact({
26031
26235
  id: PropTypes.string.isRequired,
26032
26236
  key: PropTypes.string.isRequired,
@@ -26053,6 +26257,11 @@ T['io.flow.internal.v0.models.flow_label_setting_form'] = PropTypes.exact({
26053
26257
  default_contents: PropTypes.string.isRequired,
26054
26258
  });
26055
26259
 
26260
+ T['io.flow.internal.v0.models.generate_load'] = PropTypes.exact({
26261
+ organization_id: PropTypes.string.isRequired,
26262
+ num_events: PropTypes.number.isRequired,
26263
+ });
26264
+
26056
26265
  T['io.flow.internal.v0.models.gift_card_form'] = PropTypes.exact({
26057
26266
  number: PropTypes.string.isRequired,
26058
26267
  pin: PropTypes.string,
@@ -26327,6 +26536,19 @@ T['io.flow.internal.v0.models.rate_data'] = PropTypes.exact({
26327
26536
  rate_lock_value: PropTypes.number.isRequired,
26328
26537
  });
26329
26538
 
26539
+ T['io.flow.internal.v0.models.rate_level_form'] = PropTypes.exact({
26540
+ name: PropTypes.string.isRequired,
26541
+ });
26542
+
26543
+ T['io.flow.internal.v0.models.rate_level_organization_form'] = PropTypes.exact({
26544
+ rate_level_id: PropTypes.string.isRequired,
26545
+ effective_at: PropTypes.string.isRequired,
26546
+ });
26547
+
26548
+ T['io.flow.internal.v0.models.rate_level_ratecard_form'] = PropTypes.exact({
26549
+ ratecard_id: PropTypes.string.isRequired,
26550
+ });
26551
+
26330
26552
  T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes.exact({
26331
26553
  source_ratecard_organization: PropTypes.string.isRequired,
26332
26554
  source_ratecard_number: PropTypes.string.isRequired,
@@ -26509,11 +26731,6 @@ T['io.flow.internal.v0.models.task_count'] = PropTypes.exact({
26509
26731
  count: PropTypes.number.isRequired,
26510
26732
  });
26511
26733
 
26512
- T['io.flow.internal.v0.models.test'] = PropTypes.exact({
26513
- id: PropTypes.string.isRequired,
26514
- name: PropTypes.string.isRequired,
26515
- });
26516
-
26517
26734
  T['io.flow.internal.v0.models.test_form'] = PropTypes.exact({
26518
26735
  name: PropTypes.string.isRequired,
26519
26736
  });
@@ -27072,6 +27289,17 @@ T['io.flow.shopify.markets.v0.models.shopify_order_count'] = PropTypes.exact({
27072
27289
  count: PropTypes.number.isRequired,
27073
27290
  });
27074
27291
 
27292
+ T['io.flow.shopify.markets.v0.models.shopify_order_origin_location'] = PropTypes.exact({
27293
+ id: PropTypes.number.isRequired,
27294
+ country_code: PropTypes.string.isRequired,
27295
+ province_code: PropTypes.string.isRequired,
27296
+ name: PropTypes.string.isRequired,
27297
+ address1: PropTypes.string.isRequired,
27298
+ address2: PropTypes.string.isRequired,
27299
+ city: PropTypes.string.isRequired,
27300
+ zip: PropTypes.string.isRequired,
27301
+ });
27302
+
27075
27303
  T['io.flow.shopify.markets.v0.models.shopify_webhook_shop_redact'] = PropTypes.exact({
27076
27304
  shop_id: PropTypes.number.isRequired,
27077
27305
  shop_domain: PropTypes.string.isRequired,
@@ -27475,7 +27703,6 @@ T['io.flow.session.v0.models.session_put_form'] = PropTypes.exact({
27475
27703
  });
27476
27704
 
27477
27705
  export const acceptance = T['io.flow.internal.v0.models.acceptance'];
27478
- export const account = T['io.flow.internal.v0.models.account'];
27479
27706
  export const accountContact = T['io.flow.internal.v0.models.account_contact'];
27480
27707
  export const accountContactDeleted = T['io.flow.internal.v0.models.account_contact_deleted'];
27481
27708
  export const accountContactForm = T['io.flow.internal.v0.models.account_contact_form'];
@@ -27490,7 +27717,6 @@ export const accountProcessingRates = T['io.flow.internal.v0.models.account_proc
27490
27717
  export const accountProcessingRatesDeleted = T['io.flow.internal.v0.models.account_processing_rates_deleted'];
27491
27718
  export const accountProcessingRatesForm = T['io.flow.internal.v0.models.account_processing_rates_form'];
27492
27719
  export const accountProcessingRatesUpserted = T['io.flow.internal.v0.models.account_processing_rates_upserted'];
27493
- export const accountReference = T['io.flow.internal.v0.models.account_reference'];
27494
27720
  export const accountSettingLabelFees = T['io.flow.internal.v0.models.account_setting_label_fees'];
27495
27721
  export const accountSettingLiabilitiesMethod = T['io.flow.internal.v0.enums.account_setting_liabilities_method'];
27496
27722
  export const accountSettings = T['io.flow.internal.v0.models.account_settings'];
@@ -27591,6 +27817,7 @@ export const bankPayment = T['io.flow.internal.v0.models.bank_payment'];
27591
27817
  export const bankPaymentDeleted = T['io.flow.internal.v0.models.bank_payment_deleted'];
27592
27818
  export const bankPaymentDeletedV2 = T['io.flow.internal.v0.models.bank_payment_deleted_v2'];
27593
27819
  export const bankPaymentForm = T['io.flow.internal.v0.models.bank_payment_form'];
27820
+ export const bankPaymentStatusCode = T['io.flow.internal.v0.enums.bank_payment_status_code'];
27594
27821
  export const bankPaymentStatusForm = T['io.flow.internal.v0.models.bank_payment_status_form'];
27595
27822
  export const bankPaymentUpserted = T['io.flow.internal.v0.models.bank_payment_upserted'];
27596
27823
  export const bankPaymentUpsertedV2 = T['io.flow.internal.v0.models.bank_payment_upserted_v2'];
@@ -27733,6 +27960,7 @@ export const channelMembershipForm = T['io.flow.internal.v0.models.channel_membe
27733
27960
  export const channelMembershipPutForm = T['io.flow.internal.v0.models.channel_membership_put_form'];
27734
27961
  export const channelOrderAcceptance = T['io.flow.internal.v0.models.channel_order_acceptance'];
27735
27962
  export const channelOrderAcceptanceDeleted = T['io.flow.internal.v0.models.channel_order_acceptance_deleted'];
27963
+ export const channelOrderAcceptanceErrorAction = T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'];
27736
27964
  export const channelOrderAcceptanceForm = T['io.flow.internal.v0.models.channel_order_acceptance_form'];
27737
27965
  export const channelOrderAcceptanceReason = T['io.flow.internal.v0.models.channel_order_acceptance_reason'];
27738
27966
  export const channelOrderAcceptanceRejectionReason = T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'];
@@ -28313,6 +28541,7 @@ export const classificationTaxonomy = T['io.flow.internal.v0.unions.classificati
28313
28541
  export const classificationWrapper = T['io.flow.internal.v0.models.classification_wrapper'];
28314
28542
  export const classifiedProduct = T['io.flow.internal.v0.models.classified_product'];
28315
28543
  export const classifiedProductDetail = T['io.flow.internal.v0.models.classified_product_detail'];
28544
+ export const commercialInvoiceComparison = T['io.flow.internal.v0.models.commercial_invoice_comparison'];
28316
28545
  export const compliance = T['io.flow.internal.v0.models.compliance'];
28317
28546
  export const complianceData = T['io.flow.internal.v0.unions.compliance_data'];
28318
28547
  export const complianceForm = T['io.flow.internal.v0.unions.compliance_form'];
@@ -28376,6 +28605,7 @@ export const debugTransactionQueued = T['io.flow.internal.v0.models.debug_transa
28376
28605
  export const decision = T['io.flow.internal.v0.models.decision'];
28377
28606
  export const declineReason = T['io.flow.internal.v0.unions.decline_reason'];
28378
28607
  export const declineReasonChannelOrderAcceptance = T['io.flow.internal.v0.models.decline_reason_channel_order_acceptance'];
28608
+ export const declineReasonFraud = T['io.flow.internal.v0.models.decline_reason_fraud'];
28379
28609
  export const decryptCipherForm = T['io.flow.internal.v0.models.decrypt_cipher_form'];
28380
28610
  export const decryptedCipher = T['io.flow.internal.v0.models.decrypted_cipher'];
28381
28611
  export const deleteIndexTask = T['io.flow.internal.v0.models.delete_index_task'];
@@ -28568,7 +28798,9 @@ export const fiservAuthenticationForm = T['io.flow.internal.v0.models.fiserv_aut
28568
28798
  export const fiservMerchant = T['io.flow.internal.v0.models.fiserv_merchant'];
28569
28799
  export const fiservMerchantModificationForm = T['io.flow.internal.v0.models.fiserv_merchant_modification_form'];
28570
28800
  export const fiservMerchantPutForm = T['io.flow.internal.v0.models.fiserv_merchant_put_form'];
28801
+ export const flowAccount = T['io.flow.internal.v0.models.flow_account'];
28571
28802
  export const flowApp = T['io.flow.internal.v0.enums.flow_app'];
28803
+ export const flowChannelOrganization = T['io.flow.internal.v0.models.flow_channel_organization'];
28572
28804
  export const flowLabProject = T['io.flow.internal.v0.models.flow_lab_project'];
28573
28805
  export const flowLabProjectPostForm = T['io.flow.internal.v0.models.flow_lab_project_post_form'];
28574
28806
  export const flowLabProjectPutForm = T['io.flow.internal.v0.models.flow_lab_project_put_form'];
@@ -28621,6 +28853,7 @@ export const fxRevenueRecognitionOrder = T['io.flow.internal.v0.models.fx_revenu
28621
28853
  export const fxRevenueRecognitionOrganization = T['io.flow.internal.v0.models.fx_revenue_recognition_organization'];
28622
28854
  export const fxRevenueRecognitionRate = T['io.flow.internal.v0.models.fx_revenue_recognition_rate'];
28623
28855
  export const fxRevenueRecognitionSource = T['io.flow.internal.v0.models.fx_revenue_recognition_source'];
28856
+ export const generateLoad = T['io.flow.internal.v0.models.generate_load'];
28624
28857
  export const giftCard = T['io.flow.internal.v0.models.gift_card'];
28625
28858
  export const giftCardAuthorizationError = T['io.flow.internal.v0.models.gift_card_authorization_error'];
28626
28859
  export const giftCardForm = T['io.flow.internal.v0.models.gift_card_form'];
@@ -28991,6 +29224,9 @@ export const organizationBillingStatement = T['io.flow.internal.v0.models.organi
28991
29224
  export const organizationBooleanValue = T['io.flow.internal.v0.models.organization_boolean_value'];
28992
29225
  export const organizationBooleanValueDeleted = T['io.flow.internal.v0.models.organization_boolean_value_deleted'];
28993
29226
  export const organizationBooleanValueUpserted = T['io.flow.internal.v0.models.organization_boolean_value_upserted'];
29227
+ export const organizationBusinessEntity = T['io.flow.internal.v0.models.organization_business_entity'];
29228
+ export const organizationBusinessEntityDeleted = T['io.flow.internal.v0.models.organization_business_entity_deleted'];
29229
+ export const organizationBusinessEntityUpserted = T['io.flow.internal.v0.models.organization_business_entity_upserted'];
28994
29230
  export const organizationCapability = T['io.flow.internal.v0.enums.organization_capability'];
28995
29231
  export const organizationCurrencySetting = T['io.flow.internal.v0.models.organization_currency_setting'];
28996
29232
  export const organizationCurrencySettingDeleted = T['io.flow.internal.v0.models.organization_currency_setting_deleted'];
@@ -29149,6 +29385,12 @@ export const rateDestinationFreshnessSummary = T['io.flow.internal.v0.models.rat
29149
29385
  export const rateFreshnessSummary = T['io.flow.internal.v0.models.rate_freshness_summary'];
29150
29386
  export const rateFreshnessSummaryDeleted = T['io.flow.internal.v0.models.rate_freshness_summary_deleted'];
29151
29387
  export const rateFreshnessSummaryUpserted = T['io.flow.internal.v0.models.rate_freshness_summary_upserted'];
29388
+ export const rateLevel = T['io.flow.internal.v0.models.rate_level'];
29389
+ export const rateLevelForm = T['io.flow.internal.v0.models.rate_level_form'];
29390
+ export const rateLevelOrganization = T['io.flow.internal.v0.models.rate_level_organization'];
29391
+ export const rateLevelOrganizationForm = T['io.flow.internal.v0.models.rate_level_organization_form'];
29392
+ export const rateLevelRatecard = T['io.flow.internal.v0.models.rate_level_ratecard'];
29393
+ export const rateLevelRatecardForm = T['io.flow.internal.v0.models.rate_level_ratecard_form'];
29152
29394
  export const rateNameSummary = T['io.flow.internal.v0.models.rate_name_summary'];
29153
29395
  export const rateSource = T['io.flow.internal.v0.enums.rate_source'];
29154
29396
  export const rateSourceCompositionSummary = T['io.flow.internal.v0.models.rate_source_composition_summary'];
@@ -29166,6 +29408,12 @@ export const ratecardLaneAggregate = T['io.flow.internal.v0.models.ratecard_lane
29166
29408
  export const ratecardLaneAggregateDeleted = T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'];
29167
29409
  export const ratecardLaneAggregateUpserted = T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'];
29168
29410
  export const ratecardLanesImportRequest = T['io.flow.internal.v0.models.ratecard_lanes_import_request'];
29411
+ export const ratecardRateLevelDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_deleted'];
29412
+ export const ratecardRateLevelOrganizationDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'];
29413
+ export const ratecardRateLevelOrganizationUpserted = T['io.flow.internal.v0.models.ratecard_rate_level_organization_upserted'];
29414
+ export const ratecardRateLevelRatecardDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_deleted'];
29415
+ export const ratecardRateLevelRatecardUpserted = T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_upserted'];
29416
+ export const ratecardRateLevelUpserted = T['io.flow.internal.v0.models.ratecard_rate_level_upserted'];
29169
29417
  export const ratecardServiceFeeDeleted = T['io.flow.internal.v0.models.ratecard_service_fee_deleted'];
29170
29418
  export const ratecardServiceFeeUpserted = T['io.flow.internal.v0.models.ratecard_service_fee_upserted'];
29171
29419
  export const ratecardServiceFeesOverride = T['io.flow.internal.v0.models.ratecard_service_fees_override'];
@@ -29186,6 +29434,7 @@ export const redirectActionCompleted = T['io.flow.internal.v0.models.redirect_ac
29186
29434
  export const redirectReason = T['io.flow.internal.v0.enums.redirect_reason'];
29187
29435
  export const registeredExporterTariffEligibilityData = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'];
29188
29436
  export const registeredExporterTariffEligibilityForm = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_form'];
29437
+ export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
29189
29438
  export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
29190
29439
  export const reportingScheme = T['io.flow.internal.v0.enums.reporting_scheme'];
29191
29440
  export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_form'];
@@ -29441,7 +29690,9 @@ export const taxTransactionUpserted = T['io.flow.internal.v0.models.tax_transact
29441
29690
  export const taxonomyCategory = PropTypes.any;
29442
29691
  export const taxonomyNode = PropTypes.any;
29443
29692
  export const test = T['io.flow.internal.v0.models.test'];
29693
+ export const testDeleted = T['io.flow.internal.v0.models.test_deleted'];
29444
29694
  export const testForm = T['io.flow.internal.v0.models.test_form'];
29695
+ export const testUpserted = T['io.flow.internal.v0.models.test_upserted'];
29445
29696
  export const thirdPartyLogisticsPartner = T['io.flow.internal.v0.models.third_party_logistics_partner'];
29446
29697
  export const thirdPartyLogisticsPickUpTimeWindow = T['io.flow.internal.v0.models.third_party_logistics_pick_up_time_window'];
29447
29698
  export const tieredFee = T['io.flow.internal.v0.models.tiered_fee'];